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
|
#!/usr/bin/perl
#
# Problems.pm:
# Various problem report database fetching related functions for FixMyStreet.
#
# Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved.
# Email: matthew@mysociety.org; WWW: http://www.mysociety.org/
#
# $Id: Problems.pm,v 1.33 2010-01-20 11:09:45 matthew Exp $
#
package Problems;
use strict;
use Encode;
use Memcached;
use mySociety::DBHandle qw/dbh select_all/;
use mySociety::Locale;
use mySociety::Web qw/ent/;
use mySociety::MaPit;
my $site_restriction = '';
my $site_key = 0;
# Admin view functions
=item problem_search SEARCH
Returns all problems containing the search term in their name, email, title,
detail or council, or whose ID is the search term. Uses any site_restriction
defined by a cobrand.
=cut
sub problem_search {
my ($search) = @_;
my $search_n = 0;
$search_n = int($search) if $search =~ /^\d+$/;
my $problems = select_all("select problem.id, council, category, title, problem.name,
email, anonymous, cobrand, cobrand_data, created, confirmed, state, service, lastupdate,
whensent, send_questionnaire from problem, users where problem.user_id = users.id
and (problem.id=? or email ilike '%'||?||'%' or problem.name ilike '%'||?||'%' or title ilike '%'||?||'%' or
detail ilike '%'||?||'%' or council like '%'||?||'%' or cobrand_data like '%'||?||'%')
$site_restriction
order by (state='hidden'),created", $search_n,
$search, $search, $search, $search, $search, $search);
return $problems;
}
=item update_search SEARCH
Returns all updates containing the search term in their name, email or text, or whose ID
is the search term. Uses any site_restriction defined by a cobrand.
=cut
sub update_search {
my ($search) = @_;
my $search_n = 0;
$search_n = int($search) if $search =~ /^\d+$/;
my $updates = select_all("select comment.*, problem.council, problem.state as problem_state
from comment, problem, users where problem.id = comment.problem_id and comment.user_id = users.id
and (comment.id=? or
problem_id=? or users.email ilike '%'||?||'%' or comment.name ilike '%'||?||'%' or
comment.text ilike '%'||?||'%' or comment.cobrand_data ilike '%'||?||'%')
$site_restriction
order by (comment.state='hidden'),(problem.state='hidden'),created", $search_n, $search_n, $search, $search,
$search, $search);
return $updates;
}
=item update_counts
An array reference of updates grouped by state. Uses any site_restriction defined by a cobrand.
=cut
sub update_counts {
return dbh()->selectcol_arrayref("select comment.state, count(comment.*) as c from comment, problem
where problem.id = comment.problem_id
$site_restriction
group by comment.state", { Columns => [1,2] });
}
=item problem_counts
An array reference of problems grouped by state. Uses any site_restriction defined by a cobrand.
=cut
sub problem_counts {
return dbh()->selectcol_arrayref("select state, count(*) as c from problem
where id=id $site_restriction
group by state", { Columns => [1,2] });
}
=item
An array reference of alerts grouped by state (specific to the cobrand if there is one).
=cut
sub alert_counts {
my ($cobrand) = @_;
my $cobrand_clause = '';
if ($cobrand) {
$cobrand_clause = " where cobrand = '$cobrand'";
}
return dbh()->selectcol_arrayref("select confirmed, count(*) as c
from alert
$cobrand_clause
group by confirmed", { Columns => [1,2] });
}
=item questionnaire_counts
An array reference of questionnaires. Restricted to questionnaires related to
problems submitted through the cobrand if a cobrand is specified.
=cut
sub questionnaire_counts {
my ($cobrand) = @_;
my $cobrand_clause = '';
if ($cobrand) {
$cobrand_clause = " and cobrand = '$cobrand'";
}
my $questionnaires = dbh()->selectcol_arrayref("select (whenanswered is not null), count(questionnaire.*) as c
from questionnaire, problem
where problem.id = questionnaire.problem_id
$cobrand_clause
group by (whenanswered is not null)", { Columns => [1,2] });
return $questionnaires;
}
=item contact_counts COBRAND
An array reference of contacts. Restricted to contacts relevant to
the cobrand if a cobrand is specified.
=cut
sub contact_counts {
my ( $c ) = @_;
my $contact_restriction = $c->cobrand->contact_restriction;
my $contacts = dbh()->selectcol_arrayref("select confirmed, count(*) as c from contacts $contact_restriction group by confirmed", { Columns => [1,2] });
return $contacts;
}
=item admin_fetch_problem ID
Return an array reference of data relating to a problem, to be used in the admin interface.
Uses any site_restriction defined by a cobrand.
=cut
sub admin_fetch_problem {
my ($id) = @_;
my $problem = dbh()->selectall_arrayref("select problem.*, users.email from problem, users
where problem.id=? and users.id = problem.user_id
$site_restriction", { Slice=>{} }, $id);
return $problem;
}
=item admin_fetch_update ID
Return an array reference of data relating to an update, to be used in the admin interface.
Uses any site_restriction defined by a cobrand.
=cut
sub admin_fetch_update {
my ($id) = @_;
my $update = dbh()->selectall_arrayref("select comment.*, problem.council, users.email from comment, problem, users
where comment.id=?
and problem.id = comment.problem_id
and users.id = comment.user_id
$site_restriction", { Slice=>{} }, $id);
return $update;
}
=item timeline_problems
Return a reference to an array of problems suitable for display in the admin timeline.
Uses any site_restriction defined by a cobrand.
=cut
sub timeline_problems {
my $current_timestamp = current_timestamp();
my $problems = select_all("select state,problem.id,problem.name,users.email,title,council,category,service,cobrand,cobrand_data,
extract(epoch from created) as created,
extract(epoch from confirmed) as confirmed,
extract(epoch from whensent) as whensent
from problem, users
where problem.user_id = users.id
and (created>=$current_timestamp-'7 days'::interval
or confirmed>=$current_timestamp-'7 days'::interval
or whensent>=$current_timestamp-'7 days'::interval)
$site_restriction");
return $problems;
}
=item timeline_updates
Return a reference to an array of updates suitable for display in the admin timeline.
Uses any site_restriction defined by a cobrand.
=cut
sub timeline_updates {
my $updates = select_all("select comment.*,
extract(epoch from comment.created) as created,
users.email,
problem.council
from comment, problem, users
where comment.problem_id = problem.id
and comment.user_id = users.id
and comment.state='confirmed'
and comment.created>=" . current_timestamp() . "-'7 days'::interval
$site_restriction");
return $updates;
}
=item timeline_alerts COBRAND
Return a reference to an array of alerts suitable for display in the admin timeline. Restricted to
cobranded alerts if a cobrand is specified.
=cut
sub timeline_alerts {
my ($cobrand) = @_;
my $cobrand_clause = '';
if ($cobrand) {
$cobrand_clause = " and cobrand = '$cobrand'";
}
my $alerts = select_all("select alert.*, users.email, users.name,
extract(epoch from whensubscribed) as whensubscribed
from alert, users
where alert.user_id = users.id
and whensubscribed>=" . current_timestamp() . "-'7 days'::interval
and confirmed=1
$cobrand_clause");
return $alerts;
}
=item timeline_deleted_alerts COBRAND
Return a reference to an array of deleted alerts suitable for display in the admin timeline. Restricted to
cobranded alerts if a cobrand is specified.
=cut
sub timeline_deleted_alerts {
my ($cobrand) = @_;
my $cobrand_clause = '';
if ($cobrand) {
$cobrand_clause = " and cobrand = '$cobrand'";
}
my $alerts = select_all("select *,
extract(epoch from whensubscribed) as whensubscribed,
extract(epoch from whendisabled) as whendisabled
from alert where whendisabled>=" . current_timestamp() . "-'7 days'::interval
$cobrand_clause");
return $alerts;
}
=item timeline_questionnaires
Return a reference to an array of questionnaires suitable for display in the admin timeline. Restricted to
questionnaires for cobranded problems if a cobrand is specified.
=cut
sub timeline_questionnaires {
my ($cobrand) = @_;
my $cobrand_clause = '';
if ($cobrand) {
$cobrand_clause = " and cobrand = '$cobrand'";
}
my $current_timestamp = current_timestamp();
my $questionnaire = select_all("select questionnaire.*,
extract(epoch from questionnaire.whensent) as whensent,
extract(epoch from questionnaire.whenanswered) as whenanswered
from questionnaire, problem
where questionnaire.problem_id = problem.id
and (questionnaire.whensent>=$current_timestamp-'7 days'::interval
or questionnaire.whenanswered>=$current_timestamp-'7 days'::interval)
$cobrand_clause");
}
1;
|