1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
|
-- schema.sql:
-- Schema for FixMyStreet database.
--
-- Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved.
-- Email: matthew@mysociety.org; WWW: http://www.mysociety.org/
--
-- secret
-- A random secret.
create table secret (
secret text not null
);
-- If a row is present, that is date which is "today". Used for debugging
-- to advance time without having to wait.
create table debugdate (
override_today date
);
-- Returns the timestamp of current time, but with possibly overriden "today".
create function ms_current_timestamp()
returns timestamp as '
declare
today date;
begin
today = (select override_today from debugdate);
if today is not null then
return today + current_time;
else
return current_timestamp;
end if;
end;
' language 'plpgsql';
-- table for sessions - needed by Catalyst::Plugin::Session::Store::DBIC
create table sessions (
id char(72) primary key,
session_data text,
expires integer
);
-- users table
create table users (
id serial not null primary key,
email text not null unique,
name text,
phone text,
password text not null default '',
from_body integer,
flagged boolean not null default 'f',
title text
);
-- Record details of reporting bodies, including open311 configuration details
create table body (
id serial primary key,
name text not null,
external_url text,
parent integer references body(id),
endpoint text,
jurisdiction text,
api_key text,
send_method text,
send_comments boolean not null default 'f',
comment_user_id int references users(id),
suppress_alerts boolean not null default 'f',
can_be_devolved boolean not null default 'f',
send_extended_statuses boolean not null default 'f',
deleted boolean not null default 'f'
);
create table body_areas (
body_id integer not null references body(id),
area_id integer not null
);
create unique index body_areas_body_id_area_id_idx on body_areas(body_id, area_id);
-- Now can create reference from users to body
ALTER TABLE users ADD CONSTRAINT users_from_body_fkey
FOREIGN KEY (from_body) REFERENCES body(id);
-- The contact for a category within a particular body
create table contacts (
id serial primary key,
body_id integer not null references body(id),
category text not null default 'Other',
email text not null,
confirmed boolean not null,
deleted boolean not null,
-- last editor
editor text not null,
-- time of last change
whenedited timestamp not null,
-- what the last change was for: author's notes
note text not null,
-- extra fields required for open311
extra text,
-- for things like missed bin collections
non_public boolean default 'f',
-- per contact endpoint configuration
endpoint text,
jurisdiction text default '',
api_key text default '',
send_method text
);
create unique index contacts_body_id_category_idx on contacts(body_id, category);
-- History of changes to contacts - automatically updated
-- whenever contacts is changed, using trigger below.
create table contacts_history (
contacts_history_id serial not null primary key,
contact_id integer not null,
body_id integer not null,
category text not null default 'Other',
email text not null,
confirmed boolean not null,
deleted boolean not null,
-- editor
editor text not null,
-- time of entry
whenedited timestamp not null,
-- what the change was for: author's notes
note text not null
);
-- Create a trigger to update the contacts history on any update
-- to the contacts table.
create function contacts_updated()
returns trigger as '
begin
insert into contacts_history (contact_id, body_id, category, email, editor, whenedited, note, confirmed, deleted) values (new.id, new.body_id, new.category, new.email, new.editor, new.whenedited, new.note, new.confirmed, new.deleted);
return new;
end;
' language 'plpgsql';
create trigger contacts_update_trigger after update on contacts
for each row execute procedure contacts_updated();
create trigger contacts_insert_trigger after insert on contacts
for each row execute procedure contacts_updated();
-- Problems reported by users of site
create table problem (
id serial not null primary key,
-- Problem details
postcode text not null,
latitude double precision not null,
longitude double precision not null,
bodies_str text, -- the body(s) we'll report this problem to
areas text not null, -- the mapit areas this location is in
category text not null default 'Other',
title text not null,
detail text not null,
photo bytea,
used_map boolean not null,
-- User's details
user_id int references users(id) not null,
name text not null,
anonymous boolean not null,
-- External information
external_id text,
external_body text,
external_team text,
-- Metadata
created timestamp not null default ms_current_timestamp(),
confirmed timestamp,
state text not null check (
state = 'unconfirmed'
or state = 'confirmed'
or state = 'investigating'
or state = 'planned'
or state = 'in progress'
or state = 'action scheduled'
or state = 'closed'
or state = 'fixed'
or state = 'fixed - council'
or state = 'fixed - user'
or state = 'hidden'
or state = 'partial'
or state = 'unable to fix'
or state = 'not responsible'
or state = 'duplicate'
or state = 'internal referral'
),
lang text not null default 'en-gb',
service text not null default '',
cobrand text not null default '' check (cobrand ~* '^[a-z0-9]*$'),
cobrand_data text not null default '' check (cobrand_data ~* '^[a-z0-9]*$'), -- Extra data used in cobranded versions of the site
lastupdate timestamp not null default ms_current_timestamp(),
whensent timestamp,
send_questionnaire boolean not null default 't',
extra text, -- extra fields required for open311
flagged boolean not null default 'f',
geocode bytea,
-- logging sending failures (used by webservices)
send_fail_count integer not null default 0,
send_fail_reason text,
send_fail_timestamp timestamp,
-- record send_method used, which can be used to infer usefulness of external_id
send_method_used text,
-- for things like missed bin collections
non_public BOOLEAN default 'f',
-- record details about messages from external sources, eg. message manager
external_source text,
external_source_id text,
-- number of me toos
interest_count integer default 0,
-- subcategory to enable filtering in reporting --
subcategory text
);
create index problem_state_latitude_longitude_idx on problem(state, latitude, longitude);
create index problem_user_id_idx on problem ( user_id );
create index problem_external_body_idx on problem(lower(external_body));
create index problem_radians_latitude_longitude_idx on problem(radians(latitude), radians(longitude));
create table questionnaire (
id serial not null primary key,
problem_id integer not null references problem(id),
whensent timestamp not null,
whenanswered timestamp,
-- whether have ever previously reported a problem to a council or not
ever_reported boolean,
-- problem state before and after questionnaire
old_state text,
new_state text
);
create index questionnaire_problem_id_idx on questionnaire using btree (problem_id);
-- R_e
-- Radius of the earth, in km. This is something like 6372.8 km:
-- http://en.wikipedia.org/wiki/Earth_radius
create function R_e()
returns double precision as '
select 6372.8::double precision;
' language sql immutable;
create type problem_nearby_match as (
problem_id integer,
distance double precision -- km
);
-- problem_find_nearby LATITUDE LONGITUDE DISTANCE
-- Find locations within DISTANCE (km) of (LATITUDE, LONGITUDE).
create function problem_find_nearby(double precision, double precision, double precision)
returns setof problem_nearby_match as
-- Write as SQL function so that we don't have to construct a temporary
-- table or results set in memory. That means we can't check the values of
-- the parameters, sadly.
-- Through sheer laziness, just use great-circle distance; that'll be off
-- by ~0.1%.
-- We index locations on lat/lon so that we can select the locations which lie
-- within a wedge of side about 2 * DISTANCE. That cuts down substantially
-- on the amount of work we have to do.
-- http://janmatuschek.de/LatitudeLongitudeBoundingCoordinates
'
-- trunc due to inaccuracies in floating point arithmetic
select problem.id,
R_e() * acos(trunc(
(sin(radians($1)) * sin(radians(latitude))
+ cos(radians($1)) * cos(radians(latitude))
* cos(radians($2 - longitude)))::numeric, 14)
) as distance
from problem
where
longitude is not null and latitude is not null
and radians(latitude) > radians($1) - ($3 / R_e())
and radians(latitude) < radians($1) + ($3 / R_e())
and (
abs(radians($1)) + ($3 / R_e()) > pi() / 2 -- case where search pt is near pole
or (
radians(longitude) > radians($2) - asin(sin($3 / R_e())/cos(radians($1)))
and radians(longitude) < radians($2) + asin(sin($3 / R_e())/cos(radians($1)))
)
)
-- ugly -- unable to use attribute name "distance" here, sadly
and R_e() * acos(trunc(
(sin(radians($1)) * sin(radians(latitude))
+ cos(radians($1)) * cos(radians(latitude))
* cos(radians($2 - longitude)))::numeric, 14)
) < $3
order by distance desc
' language sql stable;
-- Comments/q&a on problems.
create table comment (
id serial not null primary key,
problem_id integer not null references problem(id),
user_id int references users(id) not null,
anonymous bool not null,
name text, -- null means anonymous
website text,
created timestamp not null default ms_current_timestamp(),
confirmed timestamp,
text text not null, -- as entered by comment author
photo bytea,
state text not null check (
state = 'unconfirmed'
or state = 'confirmed'
or state = 'hidden'
),
cobrand text not null default '' check (cobrand ~* '^[a-z0-9]*$'),
lang text not null default 'en-gb',
cobrand_data text not null default '' check (cobrand_data ~* '^[a-z0-9]*$'), -- Extra data used in cobranded versions of the site
mark_fixed boolean not null,
mark_open boolean not null default 'f',
problem_state text check (
problem_state = 'confirmed'
or problem_state = 'investigating'
or problem_state = 'planned'
or problem_state = 'in progress'
or problem_state = 'action scheduled'
or problem_state = 'closed'
or problem_state = 'fixed'
or problem_state = 'fixed - council'
or problem_state = 'fixed - user'
or problem_state = 'unable to fix'
or problem_state = 'not responsible'
or problem_state = 'duplicate'
or problem_state = 'internal referral'
),
-- other fields? one to indicate whether this was written by the council
-- and should be highlighted in the display?
external_id text,
extra text,
send_fail_count integer not null default 0,
send_fail_reason text,
send_fail_timestamp timestamp,
whensent timestamp
);
create index comment_user_id_idx on comment(user_id);
create index comment_problem_id_idx on comment(problem_id);
create index comment_problem_id_created_idx on comment(problem_id, created);
-- Tokens for confirmations
create table token (
scope text not null,
token text not null,
data bytea not null,
created timestamp not null default ms_current_timestamp(),
primary key (scope, token)
);
-- Alerts
create table alert_type (
ref text not null primary key,
head_sql_query text not null,
head_table text not null,
head_title text not null,
head_link text not null,
head_description text not null,
item_table text not null,
item_where text not null,
item_order text not null,
item_title text not null,
item_link text not null,
item_description text not null,
template text not null
);
create table alert (
id serial not null primary key,
alert_type text not null references alert_type(ref),
parameter text, -- e.g. Problem ID for new updates, Longitude for local problem alerts
parameter2 text, -- e.g. Latitude for local problem alerts
user_id int references users(id) not null,
confirmed integer not null default 0,
lang text not null default 'en-gb',
cobrand text not null default '' check (cobrand ~* '^[a-z0-9]*$'),
cobrand_data text not null default '' check (cobrand_data ~* '^[a-z0-9]*$'), -- Extra data used in cobranded versions of the site
whensubscribed timestamp not null default ms_current_timestamp(),
whendisabled timestamp default null
);
create index alert_user_id_idx on alert ( user_id );
create index alert_alert_type_confirmed_whendisabled_idx on alert(alert_type, confirmed, whendisabled);
create index alert_whendisabled_cobrand_idx on alert(whendisabled, cobrand);
create index alert_whensubscribed_confirmed_cobrand_idx on alert(whensubscribed, confirmed, cobrand);
-- Possible indexes - unique (alert_type,user_id,parameter)
create table alert_sent (
alert_id integer not null references alert(id),
parameter text, -- e.g. Update ID for new updates
whenqueued timestamp not null default ms_current_timestamp()
);
create index alert_sent_alert_id_parameter_idx on alert_sent(alert_id, parameter);
-- To record details of people who submit via Flickr/ iPhone/ etc.
create table partial_user (
id serial not null primary key,
service text not null,
nsid text not null,
name text not null,
email text not null,
phone text not null
);
create index partial_user_service_email_idx on partial_user(service, email);
-- Record imported Flickr photos so we don't fetch them twice
create table flickr_imported (
id text not null,
problem_id integer not null references problem(id)
);
create unique index flickr_imported_id_idx on flickr_imported(id);
create table abuse (
email text primary key check( lower(email) = email )
);
create table textmystreet (
name text not null,
email text not null,
postcode text not null,
mobile text not null
);
-- Record basic information about edits made through the admin interface
create table admin_log (
id serial not null primary key,
admin_user text not null,
object_type text not null check (
object_type = 'problem'
or object_type = 'update'
or object_type = 'user'
),
object_id integer not null,
action text not null,
whenedited timestamp not null default ms_current_timestamp(),
user_id int references users(id) null,
reason text not null default ''
);
create table moderation_original_data (
id serial not null primary key,
-- Problem details
problem_id int references problem(id) ON DELETE CASCADE not null,
comment_id int references comment(id) ON DELETE CASCADE unique,
title text null,
detail text null, -- or text for comment
photo bytea,
anonymous bool not null,
-- Metadata
created timestamp not null default ms_current_timestamp()
);
create table user_body_permissions (
id serial not null primary key,
user_id int references users(id) not null,
body_id int references body(id) not null,
permission_type text not null check(
permission_type='moderate' or
-- for future expansion --
permission_type='admin'
),
unique(user_id, body_id, permission_type)
);
|