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
|
package FixMyStreet::Cobrand::UK;
use base 'FixMyStreet::Cobrand::Default';
use strict;
use JSON::MaybeXS;
use mySociety::MaPit;
use mySociety::VotingArea;
sub country { return 'GB'; }
sub area_types { [ 'DIS', 'LBO', 'MTD', 'UTA', 'CTY', 'COI', 'LGD' ] }
sub area_types_children { $mySociety::VotingArea::council_child_types }
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_id = shift;
my $extra = shift;
my $fields = shift || [];
# XXX Hardcoded body ID matching mapit area ID
if ( $body_id eq '2482' ) {
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},
};
}
return {};
}
sub remove_redundant_areas {
my $self = shift;
my $all_areas = shift;
# Norwich is responsible for everything in its areas, not Norfolk
delete $all_areas->{2233} #
if $all_areas->{2391};
}
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/ (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, $latitude, $longitude, $problem ) = @_;
my $str = $self->SUPER::find_closest( $latitude, $longitude, $problem );
my $url = "http://mapit.mysociety.org/nearest/4326/$longitude,$latitude";
my $j = LWP::Simple::get($url);
if ($j) {
$j = JSON->new->utf8->allow_nonref->decode($j);
if ($j->{postcode}) {
$str .= sprintf(_("Nearest postcode to the pin placed on the map (automatically generated): %s (%sm away)"),
$j->{postcode}{postcode}, $j->{postcode}{distance}) . "\n\n";
}
}
return $str;
}
sub reports_body_check {
my ( $self, $c, $code ) = @_;
# 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);
foreach (values %$all_areas) {
if ($councils{$_->{type}}) {
$council = $_;
$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};
push @options, {
type => 'area',
id => sprintf( 'area:%s:%s', $district->{id}, $district->{id_name} ),
text => $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( _('%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 => $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( _('%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', $district->{id}, $district->{id_name} ),
text => $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', $district->{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( _('%s, within %s ward'), $district->{name}, $d_ward->{name}),
uri => $c->uri_for( '/rss/reports/' . $district->{short_name} . '/' . $d_ward->{short_name} ),
}, {
type => 'council',
id => sprintf( 'council:%s:%s', $county->{id}, $county->{id_name} ),
text => $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', $county->{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( _('%s, within %s ward'), $county->{name}, $c_ward->{name}),
uri => $c->uri_for( '/rss/reports/' . $county->{short_name} . '/' . $c_ward->{short_name} ),
};
} 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'
);
}
# XXX Hardcoded body ID matching mapit area ID
if ( $report->bodies_str && $report->detail ) {
# Custom character limit:
# Bromley Council
if ( $report->bodies_str eq '2482' && length($report->detail) > 1750 ) {
$errors{detail} = sprintf( _('Reports are limited to %s characters in length. Please shorten your report'), 1750 );
}
# Oxfordshire
if ( $report->bodies_str eq '2237' && length($report->detail) > 1700 ) {
$errors{detail} = sprintf( _('Reports are limited to %s characters in length. Please shorten your report'), 1700 );
}
}
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) = @_;
my @bodies = values %{$row->bodies};
my %areas = map { %{$_->areas} } @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 ( !mySociety::Config::get('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( $self->{c} ));
} else {
return $problem->body( $self->{c} );
}
}
sub lookup_by_ref_regex {
return qr/^\s*(\d+)\s*$/;
}
sub category_extra_hidden {
my ($self, $meta) = @_;
return 1 if $meta eq 'usrn' || $meta eq 'asset_id';
return 0;
}
1;
|