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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
|
package FixMyStreet::Cobrand::UK;
use base 'FixMyStreet::Cobrand::Default';
use strict;
use Encode;
use JSON::MaybeXS;
use LWP::UserAgent;
use Path::Tiny;
use Time::Piece;
use mySociety::MaPit;
use mySociety::VotingArea;
use Utils;
use HighwaysEngland;
sub country { return 'GB'; }
sub area_types { [ 'DIS', 'LBO', 'MTD', 'UTA', 'CTY', 'COI', 'LGD' ] }
sub area_types_children { $mySociety::VotingArea::council_child_types }
sub csp_config {
my $self = shift;
return $self->feature('content_security_policy');
}
sub enter_postcode_text {
my ( $self ) = @_;
return _("Enter a nearby UK postcode, or street name and area");
}
sub example_places {
return [ 'B2 4QA', 'Tib St, Manchester' ];
}
sub disambiguate_location {
return {
country => 'gb',
google_country => 'uk',
bing_culture => 'en-GB',
bing_country => 'United Kingdom'
};
}
sub process_open311_extras {
my $self = shift;
my $ctx = shift;
my $body = shift;
my $extra = shift;
my $fields = shift || [];
if ( $body && $body->name =~ /Bromley/ ) {
my @fields = ( 'fms_extra_title', @$fields );
for my $field ( @fields ) {
my $value = $ctx->get_param($field);
if ( !$value ) {
$ctx->stash->{field_errors}->{ $field } = _('This information is required');
}
push @$extra, {
name => $field,
description => uc( $field),
value => $value || '',
};
}
if ( $ctx->get_param('fms_extra_title') ) {
$ctx->stash->{fms_extra_title} = $ctx->get_param('fms_extra_title');
$ctx->stash->{extra_name_info} = 1;
}
}
}
sub geocode_postcode {
my ( $self, $s ) = @_;
if ($s =~ /^\d+$/) {
return {
error => 'FixMyStreet is a UK-based website. Please enter either a UK postcode, or street name and area.'
};
} elsif (mySociety::PostcodeUtil::is_valid_postcode($s)) {
my $location = mySociety::MaPit::call('postcode', $s);
if ($location->{error}) {
return {
error => $location->{code} =~ /^4/
? _('That postcode was not recognised, sorry.')
: $location->{error}
};
}
my $island = $location->{coordsyst};
if (!$island) {
return {
error => _("Sorry, that appears to be a Crown dependency postcode, which we don't cover.")
};
}
return {
latitude => $location->{wgs84_lat},
longitude => $location->{wgs84_lon},
};
} elsif (my $junction_location = HighwaysEngland::junction_lookup($s)) {
return $junction_location;
}
return {};
}
sub short_name {
my $self = shift;
my ($area) = @_;
my $name = $area->{name} || $area->name;
# Special case Durham as it's the only place with two councils of the same name
return 'Durham+County' if $name eq 'Durham County Council';
return 'Durham+City' if $name eq 'Durham City Council';
$name =~ s/^(Royal|London) Borough of //;
$name =~ s/ (Borough|City|District|County) Council$//;
$name =~ s/ Council$//;
$name =~ s/ & / and /;
$name =~ tr{/}{_};
$name = URI::Escape::uri_escape_utf8($name);
$name =~ s/%20/+/g;
return $name;
}
sub find_closest {
my ($self, $data) = @_;
$data = { problem => $data } if ref $data ne 'HASH';
my $problem = $data->{problem};
my $lat = $problem ? $problem->latitude : $data->{latitude};
my $lon = $problem ? $problem->longitude : $data->{longitude};
my $closest = $self->SUPER::find_closest($data);
($lat, $lon) = map { Utils::truncate_coordinate($_) } $lat, $lon;
my $j = mySociety::MaPit::call('nearest', "4326/$lon,$lat");
if ($j->{postcode}) {
$closest->{postcode} = $j->{postcode};
}
return $closest;
}
sub reports_body_check {
my ( $self, $c, $code ) = @_;
# Deal with Bexley and Greenwich name not starting with short name
if ($code =~ /bexley|greenwich/i) {
my $body = $c->model('DB::Body')->search( { name => { -like => "%$code%" } } )->single;
$c->stash->{body} = $body;
return $body;
}
# Manual misspelling redirect
if ($code =~ /^rhondda cynon taff$/i) {
my $url = $c->uri_for( '/reports/Rhondda+Cynon+Taf' );
$c->res->redirect( $url );
$c->detach();
}
# Old ONS codes
if ($code =~ /^(\d\d)([a-z]{2})?([a-z]{2})?$/i) {
my $area = mySociety::MaPit::call( 'area', uc $code );
$c->detach( 'redirect_index' ) if $area->{error}; # Given a bad/old ONS code
if (length($code) == 6) {
my $council = mySociety::MaPit::call( 'area', $area->{parent_area} );
$c->stash->{ward} = $area;
$c->stash->{body} = $council;
} else {
$c->stash->{body} = $area;
}
$c->detach( 'redirect_body' );
}
# New ONS codes
if ($code =~ /^[ESWN]\d{8}$/i) {
my $area = mySociety::MaPit::call( 'area', uc $code );
$c->detach( 'redirect_index' ) if $area->{error}; # Given a bad/old ONS code
if ($code =~ /^(E05|W05|S13)/) {
my $council = mySociety::MaPit::call( 'area', $area->{parent_area} );
$c->stash->{ward} = $area;
$c->stash->{body} = $council;
$c->detach( 'redirect_body' );
} elsif ($code =~ /^(W06|S12|E0[6-9]|E10)/) {
$c->stash->{body} = $area;
$c->detach( 'redirect_body' );
}
}
return;
}
sub council_rss_alert_options {
my $self = shift;
my $all_areas = shift;
my $c = shift;
my %councils = map { $_ => 1 } @{$self->area_types};
my $num_councils = scalar keys %$all_areas;
my ( @options, @reported_to_options );
if ( $num_councils == 1 or $num_councils == 2 ) {
my ($council, $ward);
my $body = FixMyStreet::DB->resultset('Body')->active->search({ name => { '!=' => 'TfL' } })->for_areas(keys %$all_areas)->first;
foreach (values %$all_areas) {
if ($councils{$_->{type}}) {
$council = $_;
$council->{id} = $body->id; # Want to use body ID, not MapIt area ID
$council->{short_name} = $self->short_name( $council );
( $council->{id_name} = $council->{short_name} ) =~ tr/+/_/;
} else {
$ward = $_;
$ward->{short_name} = $self->short_name( $ward );
( $ward->{id_name} = $ward->{short_name} ) =~ tr/+/_/;
}
}
$council->{name} = 'London Borough of Bromley'
if $council->{name} eq 'Bromley Council';
my $council_text;
if ( $c->cobrand->is_council ) {
$council_text = 'All problems within the council';
} else {
$council_text = sprintf( _('Problems within %s'), $council->{name});
}
push @options, {
type => 'council',
id => sprintf( 'council:%s:%s', $council->{id}, $council->{id_name} ),
text => $council_text,
rss_text => sprintf( _('RSS feed of problems within %s'), $council->{name}),
uri => $c->uri_for( '/rss/reports/' . $council->{short_name} ),
};
push @options, {
type => 'ward',
id => sprintf( 'ward:%s:%s:%s:%s', $council->{id}, $ward->{id}, $council->{id_name}, $ward->{id_name} ),
rss_text => sprintf( _('RSS feed of problems within %s ward'), $ward->{name}),
text => sprintf( _('Problems within %s ward'), $ward->{name}),
uri => $c->uri_for( '/rss/reports/' . $council->{short_name} . '/' . $ward->{short_name} ),
} if $ward;
} elsif ( $num_councils == 4 ) {
# Two-tier council
my ($county, $district, $c_ward, $d_ward);
foreach (values %$all_areas) {
$_->{short_name} = $self->short_name( $_ );
( $_->{id_name} = $_->{short_name} ) =~ tr/+/_/;
if ($_->{type} eq 'CTY') {
$county = $_;
} elsif ($_->{type} eq 'DIS') {
$district = $_;
} elsif ($_->{type} eq 'CED') {
$c_ward = $_;
} elsif ($_->{type} eq 'DIW') {
$d_ward = $_;
}
}
my $district_name = $district->{name};
my $d_ward_name = $d_ward->{name};
my $county_name = $county->{name};
my $c_ward_name = $c_ward->{name};
my $body_dis = FixMyStreet::DB->resultset('Body')->active->for_areas($district->{id})->first;
my $body_cty = FixMyStreet::DB->resultset('Body')->active->for_areas($county->{id})->first;
push @options, {
type => 'area',
id => sprintf( 'area:%s:%s', $district->{id}, $district->{id_name} ),
text => sprintf( _('Problems within %s'), $district_name ),
rss_text => sprintf( _('RSS feed for %s'), $district_name ),
uri => $c->uri_for( '/rss/area/' . $district->{short_name} )
}, {
type => 'area',
id => sprintf( 'area:%s:%s:%s:%s', $district->{id}, $d_ward->{id}, $district->{id_name}, $d_ward->{id_name} ),
text => sprintf( _('Problems within %s ward, %s'), $d_ward_name, $district_name ),
rss_text => sprintf( _('RSS feed for %s ward, %s'), $d_ward_name, $district_name ),
uri => $c->uri_for( '/rss/area/' . $district->{short_name} . '/' . $d_ward->{short_name} )
}, {
type => 'area',
id => sprintf( 'area:%s:%s', $county->{id}, $county->{id_name} ),
text => sprintf( _('Problems within %s'), $county_name ),
rss_text => sprintf( _('RSS feed for %s'), $county_name ),
uri => $c->uri_for( '/rss/area/' . $county->{short_name} )
}, {
type => 'area',
id => sprintf( 'area:%s:%s:%s:%s', $county->{id}, $c_ward->{id}, $county->{id_name}, $c_ward->{id_name} ),
text => sprintf( _('Problems within %s ward, %s'), $c_ward_name, $county_name ),
rss_text => sprintf( _('RSS feed for %s ward, %s'), $c_ward_name, $county_name ),
uri => $c->uri_for( '/rss/area/' . $county->{short_name} . '/' . $c_ward->{short_name} )
};
push @reported_to_options, {
type => 'council',
id => sprintf( 'council:%s:%s', $body_dis->id, $district->{id_name} ),
text => sprintf( _('Reports sent to %s'), $district->{name} ),
rss_text => sprintf( _('RSS feed of %s'), $district->{name}),
uri => $c->uri_for( '/rss/reports/' . $district->{short_name} ),
}, {
type => 'ward',
id => sprintf( 'ward:%s:%s:%s:%s', $body_dis->id, $d_ward->{id}, $district->{id_name}, $d_ward->{id_name} ),
rss_text => sprintf( _('RSS feed of %s, within %s ward'), $district->{name}, $d_ward->{name}),
text => sprintf( _('Reports sent to %s, within %s ward'), $district->{name}, $d_ward->{name}),
uri => $c->uri_for( '/rss/reports/' . $district->{short_name} . '/' . $d_ward->{short_name} ),
}
if $body_dis;
push @reported_to_options, {
type => 'council',
id => sprintf( 'council:%s:%s', $body_cty->id, $county->{id_name} ),
text => sprintf( _('Reports sent to %s'), $county->{name} ),
rss_text => sprintf( _('RSS feed of %s'), $county->{name}),
uri => $c->uri_for( '/rss/reports/' . $county->{short_name} ),
}, {
type => 'ward',
id => sprintf( 'ward:%s:%s:%s:%s', $body_cty->id, $c_ward->{id}, $county->{id_name}, $c_ward->{id_name} ),
rss_text => sprintf( _('RSS feed of %s, within %s ward'), $county->{name}, $c_ward->{name}),
text => sprintf( _('Reports sent to %s, within %s ward'), $county->{name}, $c_ward->{name}),
uri => $c->uri_for( '/rss/reports/' . $county->{short_name} . '/' . $c_ward->{short_name} ),
}
if $body_cty;
} else {
throw Error::Simple('An area with three tiers of council? Impossible! '. join('|',keys %$all_areas));
}
return ( \@options, @reported_to_options ? \@reported_to_options : undef );
}
sub report_check_for_errors {
my $self = shift;
my $c = shift;
my %errors = $self->next::method($c);
my $report = $c->stash->{report};
if (!$errors{name} && (length($report->name) < 5
|| $report->name !~ m/\s/
|| $report->name =~ m/\ba\s*n+on+((y|o)mo?u?s)?(ly)?\b/i))
{
$errors{name} = _(
'Please enter your full name, councils need this information – if you do not wish your name to be shown on the site, untick the box below'
);
}
my $cobrand = $self->get_body_handler_for_problem($report);
if ( $cobrand->can('report_validation') ) {
$cobrand->report_validation( $report, \%errors );
}
return %errors;
}
=head2 get_body_handler_for_problem
Returns a cobrand for the body that a problem was logged against.
my $handler = $cobrand->get_body_handler_for_problem($row);
my $handler = $cobrand_class->get_body_handler_for_problem($row);
If the UK council in bodies_str has a FMS.com cobrand then an instance of that
cobrand class is returned, otherwise the default FixMyStreet cobrand is used.
=cut
sub get_body_handler_for_problem {
my ($self, $row) = @_;
if ($row->to_body_named('TfL')) {
return FixMyStreet::Cobrand::TfL->new;
}
# Do not do anything for Highways England here, as we don't want it to
# treat this as a cobrand for e.g. submit report emails made on .com
my @bodies = values %{$row->bodies};
my %areas = map { %{$_->areas} } grep { $_->name !~ /TfL|Highways England/ } @bodies;
my $cobrand = FixMyStreet::Cobrand->body_handler(\%areas);
return $cobrand if $cobrand;
return ref $self ? $self : $self->new;
}
=head2 link_to_council_cobrand
If a problem was sent to a UK council who has a FMS cobrand and the report is
currently being viewed on a different cobrand, then link the council's name to
that problem on the council's cobrand.
=cut
sub link_to_council_cobrand {
my ( $self, $problem ) = @_;
# If the report was sent to a cobrand that we're not currently on,
# include a link to view it on the responsible cobrand.
# This only occurs if the report was sent to a single body and we're not already
# using the body name as a link to all problem reports.
my $handler = $self->get_body_handler_for_problem($problem);
$self->{c}->log->debug( sprintf "bodies: %s areas: %s self: %s handler: %s", $problem->bodies_str, $problem->areas, $self->moniker, $handler->moniker );
my $bodies_str_ids = $problem->bodies_str_ids;
if ( !FixMyStreet->config('AREA_LINKS_FROM_PROBLEMS') &&
scalar(@$bodies_str_ids) == 1 && $handler->is_council &&
$handler->moniker ne $self->{c}->cobrand->moniker
) {
my $url = sprintf("%s%s", $handler->base_url, $problem->url);
return sprintf("<a href='%s'>%s</a>", $url, $problem->body);
} else {
return $problem->body;
}
}
sub lookup_by_ref_regex {
return qr/^\s*(\d+)\s*$/;
}
sub report_new_munge_before_insert {
my ($self, $report) = @_;
if ($report->to_body_named('TfL')) {
my $tfl = FixMyStreet::Cobrand->get_class_for_moniker('tfl')->new();
$tfl->report_new_munge_before_insert($report);
}
}
# To use recaptcha, add a RECAPTCHA key to your config, with subkeys secret and
# site_key, taken from the recaptcha site. This shows it to non-UK IP addresses
# on alert and report pages.
sub requires_recaptcha {
my $self = shift;
my $c = $self->{c};
return 0 if $c->user_exists;
return 0 if !FixMyStreet->config('RECAPTCHA');
return 0 unless $c->action =~ /^(alert|report|around)/;
return 0 if $c->user_country eq 'GB';
return 1;
}
sub check_recaptcha {
my $self = shift;
my $c = $self->{c};
return unless $self->requires_recaptcha;
my $url = 'https://www.google.com/recaptcha/api/siteverify';
my $res = LWP::UserAgent->new->post($url, {
secret => FixMyStreet->config('RECAPTCHA')->{secret},
response => $c->get_param('g-recaptcha-response'),
remoteip => $c->req->address,
});
$res = decode_json($res->content);
$c->detach('/page_error_400_bad_request', ['Bad recaptcha'])
unless $res->{success};
}
sub public_holidays {
my $nation = shift || 'england-and-wales';
my $json = _get_bank_holiday_json();
return [ map { $_->{date} } @{$json->{$nation}{events}} ];
}
sub is_public_holiday {
my %args = @_;
$args{date} ||= localtime;
$args{date} = $args{date}->date;
$args{nation} ||= 'england-and-wales';
my $json = _get_bank_holiday_json();
for my $event (@{$json->{$args{nation}}{events}}) {
if ($event->{date} eq $args{date}) {
return 1;
}
}
}
sub _get_bank_holiday_json {
my $file = 'bank-holidays.json';
my $cache_file = path(FixMyStreet->path_to("../data/$file"));
my $js;
if (-s $cache_file && -M $cache_file <= 7 && !FixMyStreet->config('STAGING_SITE')) {
# uncoverable statement
$js = $cache_file->slurp_utf8;
} else {
$js = _fetch_url("https://www.gov.uk/$file");
# uncoverable branch false
$js = decode_utf8($js) if !utf8::is_utf8($js);
if ($js && !FixMyStreet->config('STAGING_SITE')) {
# uncoverable statement
$cache_file->spew_utf8($js);
}
}
$js = JSON->new->decode($js) if $js;
return $js;
}
sub _fetch_url {
my $url = shift;
my $ua = LWP::UserAgent->new;
$ua->timeout(5);
$ua->get($url)->content;
}
1;
|