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
|
package FixMyStreet::DB::ResultSet::Problem;
use base 'DBIx::Class::ResultSet';
use strict;
use warnings;
use CronFns;
use Utils;
use mySociety::Config;
use mySociety::EmailUtil;
use mySociety::MaPit;
use FixMyStreet::App;
use FixMyStreet::SendReport;
my $site_restriction;
my $site_key;
sub set_restriction {
my ( $rs, $sql, $key, $restriction ) = @_;
$site_key = $key;
$site_restriction = $restriction;
}
# Front page statistics
sub recent_fixed {
my $rs = shift;
my $key = "recent_fixed:$site_key";
my $result = Memcached::get($key);
unless ($result) {
$result = $rs->search( {
state => [ FixMyStreet::DB::Result::Problem->fixed_states() ],
lastupdate => { '>', \"current_timestamp-'1 month'::interval" },
} )->count;
Memcached::set($key, $result, 3600);
}
return $result;
}
sub number_comments {
my $rs = shift;
my $key = "number_comments:$site_key";
my $result = Memcached::get($key);
unless ($result) {
$result = $rs->search(
{ 'comments.state' => 'confirmed' },
{ join => 'comments' }
)->count;
Memcached::set($key, $result, 3600);
}
return $result;
}
sub recent_new {
my ( $rs, $interval ) = @_;
(my $key = $interval) =~ s/\s+//g;
$key = "recent_new:$site_key:$key";
my $result = Memcached::get($key);
unless ($result) {
$result = $rs->search( {
state => [ FixMyStreet::DB::Result::Problem->visible_states() ],
confirmed => { '>', \"current_timestamp-'$interval'::interval" },
} )->count;
Memcached::set($key, $result, 3600);
}
return $result;
}
# Front page recent lists
sub recent {
my ( $rs ) = @_;
return _recent( $rs, 5 );
}
sub recent_photos {
my ( $rs, $num, $lat, $lon, $dist ) = @_;
return _recent( $rs, $num, $lat, $lon, $dist, 1);
}
sub _recent {
my ( $rs, $num, $lat, $lon, $dist, $photos ) = @_;
my $key = $photos ? 'recent_photos' : 'recent';
$key .= ":$site_key:$num";
my $query = {
state => [ FixMyStreet::DB::Result::Problem->visible_states() ],
};
$query->{photo} = { '!=', undef } if $photos;
my $attrs = {
columns => [ 'id', 'title', 'confirmed' ],
order_by => { -desc => 'confirmed' },
rows => $num,
};
my $probs;
my $new = 0;
if (defined $lat) {
my $dist2 = $dist; # Create a copy of the variable to stop it being stringified into a locale in the next line!
$key .= ":$lat:$lon:$dist2";
$probs = Memcached::get($key);
unless ($probs) {
$attrs->{bind} = [ $lat, $lon, $dist ];
$attrs->{join} = 'nearby';
$probs = [ mySociety::Locale::in_gb_locale {
$rs->search( $query, $attrs )->all;
} ];
$new = 1;
}
} else {
$probs = Memcached::get($key);
unless ($probs) {
$probs = [ $rs->search( $query, $attrs )->all ];
$new = 1;
}
}
if ( $new ) {
Memcached::set($key, $probs, 3600);
} else {
# Need to reattach schema so that confirmed column gets reinflated.
$probs->[0]->result_source->schema( $rs->result_source->schema ) if $probs->[0];
}
return $probs;
}
# Problems around a location
sub around_map {
my ( $rs, $min_lat, $max_lat, $min_lon, $max_lon, $interval, $limit ) = @_;
my $attr = {
order_by => { -desc => 'created' },
columns => [
'id', 'title', 'latitude', 'longitude', 'state', 'confirmed',
{ photo => 'photo is not null' },
],
};
$attr->{rows} = $limit if $limit;
my $q = {
state => [ FixMyStreet::DB::Result::Problem->visible_states() ],
latitude => { '>=', $min_lat, '<', $max_lat },
longitude => { '>=', $min_lon, '<', $max_lon },
};
$q->{'current_timestamp - lastupdate'} = { '<', \"'$interval'::interval" }
if $interval;
my @problems = mySociety::Locale::in_gb_locale { $rs->search( $q, $attr )->all };
return \@problems;
}
# Admin functions
sub timeline {
my ( $rs ) = @_;
my $prefetch =
FixMyStreet::App->model('DB')->schema->storage->sql_maker->quote_char ?
[ qw/user/ ] :
[];
return $rs->search(
{
-or => {
created => { '>=', \"ms_current_timestamp()-'7 days'::interval" },
confirmed => { '>=', \"ms_current_timestamp()-'7 days'::interval" },
whensent => { '>=', \"ms_current_timestamp()-'7 days'::interval" },
}
},
{
prefetch => $prefetch,
}
);
}
sub summary_count {
my ( $rs ) = @_;
return $rs->search(
undef,
{
group_by => ['state'],
select => [ 'state', { count => 'id' } ],
as => [qw/state state_count/]
}
);
}
sub unique_users {
my ( $rs ) = @_;
return $rs->search( {
state => [ FixMyStreet::DB::Result::Problem->visible_states() ],
}, {
select => [ { count => { distinct => 'user_id' } } ],
as => [ 'count' ]
} )->first->get_column('count');
}
sub categories_summary {
my ( $rs ) = @_;
my $fixed_case = "case when state IN ( '" . join( "', '", FixMyStreet::DB::Result::Problem->fixed_states() ) . "' ) then 1 else null end";
my $categories = $rs->search( {
state => [ FixMyStreet::DB::Result::Problem->visible_states() ],
whensent => { '<' => \"NOW() - INTERVAL '4 weeks'" },
}, {
select => [ 'category', { count => 'id' }, { count => \$fixed_case } ],
as => [ 'category', 'c', 'fixed' ],
group_by => [ 'category' ],
result_class => 'DBIx::Class::ResultClass::HashRefInflator'
} );
my %categories = map { $_->{category} => { total => $_->{c}, fixed => $_->{fixed} } } $categories->all;
return \%categories;
}
sub send_reports {
# Set up site, language etc.
my ($verbose, $nomail) = CronFns::options();
my $base_url = mySociety::Config::get('BASE_URL');
my $site = CronFns::site($base_url);
my $unsent = FixMyStreet::App->model("DB::Problem")->search( {
state => [ 'confirmed', 'fixed' ],
whensent => undef,
council => { '!=', undef },
} );
my (%notgot, %note);
my $send_report = FixMyStreet::SendReport->new();
my $senders = $send_report->get_senders;
my %sending_skipped_by_method;
while (my $row = $unsent->next) {
my $cobrand = FixMyStreet::Cobrand->get_class_for_moniker($row->cobrand)->new();
# Cobranded and non-cobranded messages can share a database. In this case, the conf file
# should specify a vhost to send the reports for each cobrand, so that they don't get sent
# more than once if there are multiple vhosts running off the same database. The email_host
# call checks if this is the host that sends mail for this cobrand.
next unless $cobrand->email_host();
$cobrand->set_lang_and_domain($row->lang, 1);
if ( $row->is_from_abuser ) {
$row->update( { state => 'hidden' } );
next;
}
# Template variables for the email
my $email_base_url = $cobrand->base_url_for_emails($row->cobrand_data);
my %h = map { $_ => $row->$_ } qw/id title detail name category latitude longitude used_map/;
map { $h{$_} = $row->user->$_ } qw/email phone/;
$h{confirmed} = DateTime::Format::Pg->format_datetime( $row->confirmed->truncate (to => 'second' ) );
$h{query} = $row->postcode;
$h{url} = $email_base_url . '/report/' . $row->id;
$h{phone_line} = $h{phone} ? _('Phone:') . " $h{phone}\n\n" : '';
if ($row->photo) {
$h{has_photo} = _("This web page also contains a photo of the problem, provided by the user.") . "\n\n";
$h{image_url} = $email_base_url . '/photo/' . $row->id . '.full.jpeg';
} else {
$h{has_photo} = '';
$h{image_url} = '';
}
$h{fuzzy} = $row->used_map ? _('To view a map of the precise location of this issue')
: _('The user could not locate the problem on a map, but to see the area around the location they entered');
$h{closest_address} = '';
# If we are in the UK include eastings and northings, and nearest stuff
$h{easting_northing} = '';
if ( $cobrand->country eq 'GB' ) {
( $h{easting}, $h{northing} ) = Utils::convert_latlon_to_en( $h{latitude}, $h{longitude} );
# email templates don't have conditionals so we need to farmat this here
$h{easting_northing} #
= "Easting: $h{easting}\n\n" #
. "Northing: $h{northing}\n\n";
}
if ( $row->used_map ) {
$h{closest_address} = $cobrand->find_closest( $h{latitude}, $h{longitude}, $row );
}
my %reporters = ();
my (@to, @recips, $template, $areas_info, $sender_count );
if ($site eq 'emptyhomes') {
my $council = $row->council;
$areas_info = mySociety::MaPit::call('areas', $council);
my $name = $areas_info->{$council}->{name};
my $sender = "FixMyStreet::SendReport::EmptyHomes";
$reporters{ $sender } = $sender->new() unless $reporters{$sender};
$reporters{ $sender }->add_council( $council, $name );
$template = Utils::read_file("$FindBin::Bin/../templates/email/emptyhomes/" . $row->lang . "/submit.txt");
} else {
# XXX Needs locks!
my @all_councils = split /,|\|/, $row->council;
my ($councils, $missing) = $row->council =~ /^([\d,]+)(?:\|([\d,]+))?/;
my @councils = split(/,/, $councils);
$areas_info = mySociety::MaPit::call('areas', \@all_councils);
my @dear;
foreach my $council (@councils) {
my $name = $areas_info->{$council}->{name};
my $sender = $cobrand->get_council_sender( $council, $areas_info->{$council} );
$sender = "FixMyStreet::SendReport::$sender";
if ( ! exists $senders->{ $sender } ) {
warn "No such sender [ $sender ] for council $name ( $council )";
next;
}
$reporters{ $sender } ||= $sender->new();
if ( $reporters{ $sender }->should_skip( $row ) ) {
$sending_skipped_by_method{ $sender }++ if
$reporters{ $sender }->skipped;
} else {
push @dear, $name;
$reporters{ $sender }->add_council( $council, $name );
}
}
$template = 'submit.txt';
$template = 'submit-brent.txt' if $row->council eq 2488 || $row->council eq 2237;
my $template_path = FixMyStreet->path_to( "templates", "email", $cobrand->moniker, $template )->stringify;
$template_path = FixMyStreet->path_to( "templates", "email", "default", $template )->stringify
unless -e $template_path;
$template = Utils::read_file( $template_path );
if ($h{category} eq _('Other')) {
$h{category_footer} = _('this type of local problem');
$h{category_line} = '';
} else {
$h{category_footer} = "'" . $h{category} . "'";
$h{category_line} = sprintf(_("Category: %s"), $h{category}) . "\n\n";
}
$h{councils_name} = join(_(' and '), @dear);
if ($h{category} eq _('Other')) {
$h{multiple} = @dear>1 ? "[ " . _("This email has been sent to both councils covering the location of the problem, as the user did not categorise it; please ignore it if you're not the correct council to deal with the issue, or let us know what category of problem this is so we can add it to our system.") . " ]\n\n"
: '';
} else {
$h{multiple} = @dear>1 ? "[ " . _("This email has been sent to several councils covering the location of the problem, as the category selected is provided for all of them; please ignore it if you're not the correct council to deal with the issue.") . " ]\n\n"
: '';
}
$h{missing} = '';
if ($missing) {
my $name = $areas_info->{$missing}->{name};
$h{missing} = '[ '
. sprintf(_('We realise this problem might be the responsibility of %s; however, we don\'t currently have any contact details for them. If you know of an appropriate contact address, please do get in touch.'), $name)
. " ]\n\n";
}
$sender_count = scalar @dear;
}
unless ( keys %reporters ) {
die 'Report not going anywhere for ID ' . $row->id . '!';
}
next unless $sender_count;
if (mySociety::Config::get('STAGING_SITE')) {
# on a staging server send emails to ourselves rather than the councils
my @testing_councils = split( '\|', mySociety::Config::get('TESTING_COUNCILS') );
unless ( grep { $row->council eq $_ } @testing_councils ) {
%reporters = (
'FixMyStreet::SendReport::Email' => $reporters{ 'FixMyStreet::SendReport::Email' } || FixMyStreet::SendReport::Email->new()
);
}
}
# Multiply results together, so one success counts as a success.
my $result = -1;
for my $sender ( keys %reporters ) {
$result *= $reporters{ $sender }->send(
$row, \%h, \@to, $template, \@recips, $nomail, $areas_info
);
}
if ($result == mySociety::EmailUtil::EMAIL_SUCCESS) {
$row->update( {
whensent => \'ms_current_timestamp()',
lastupdate => \'ms_current_timestamp()',
} );
} else {
my @errors;
for my $sender ( keys %reporters ) {
unless ( $reporters{ $sender }->success ) {
push @errors, $reporters{ $sender }->error;
}
}
$row->update_send_failed( join( '|', @errors ) );
}
}
if ($verbose) {
print "Council email addresses that need checking:\n" if keys %notgot;
foreach my $e (keys %notgot) {
foreach my $c (keys %{$notgot{$e}}) {
print $notgot{$e}{$c} . " problem, to $e category $c (" . $note{$e}{$c}. ")\n";
}
}
if (keys %sending_skipped_by_method) {
my $c = 0;
print "\nProblem reports that send-reports did not attempt to send the following:\n";
foreach my $send_method (sort keys %sending_skipped_by_method) {
printf " %-24s %4d\n", "$send_method:", $sending_skipped_by_method{$send_method};
$c+=$sending_skipped_by_method{$send_method};
}
printf " %-24s %4d\n", "Total:", $c;
}
}
}
1;
|