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
|
package FixMyStreet::Cobrand::FixMyStreet;
use base 'FixMyStreet::Cobrand::UK';
use strict;
use warnings;
use constant COUNCIL_ID_BROMLEY => 2482;
use constant COUNCIL_ID_ISLEOFWIGHT => 2636;
sub on_map_default_status { return 'open'; }
# Show TfL pins as grey
sub pin_colour {
my ( $self, $p, $context ) = @_;
return 'grey' if $p->to_body_named('TfL');
return $self->next::method($p, $context);
}
# Special extra
sub path_to_web_templates {
my $self = shift;
return [
FixMyStreet->path_to( 'templates/web/fixmystreet.com' ),
];
}
sub path_to_email_templates {
my ( $self, $lang_code ) = @_;
return [
FixMyStreet->path_to( 'templates', 'email', 'fixmystreet.com'),
];
}
# FixMyStreet should return all cobrands
sub restriction {
return {};
}
# FixMyStreet needs to not show TfL reports...
sub problems_restriction {
my ($self, $rs) = @_;
my $table = ref $rs eq 'FixMyStreet::DB::ResultSet::Nearby' ? 'problem' : 'me';
return $rs->search({ "$table.cobrand" => { '!=' => 'tfl' } });
}
sub problems_sql_restriction {
my $self = shift;
return "AND cobrand != 'tfl'";
}
sub relative_url_for_report {
my ( $self, $report ) = @_;
return $report->cobrand eq 'tfl' ? FixMyStreet::Cobrand::TfL->base_url : "";
}
sub munge_around_category_where {
my ($self, $where) = @_;
my $user = $self->{c}->user;
my @iow = grep { $_->name eq 'Isle of Wight Council' } @{ $self->{c}->stash->{around_bodies} };
return unless @iow;
# display all the categories on Isle of Wight at the moment as there's no way to
# do the expand bit later as we fetch it using ajax which uses a bounding box so
# can't determine the body
$where->{send_method} = [ { '!=' => 'Triage' }, undef ];
return $where;
}
sub munge_reports_categories_list {
my ($self, $categories) = @_;
my %bodies = map { $_->body->name => $_->body } @$categories;
if ( $bodies{'Isle of Wight Council'} ) {
my $user = $self->{c}->user;
my $b = $bodies{'Isle of Wight Council'};
if ( $user && ( $user->is_superuser || $user->belongs_to_body( $b->id ) ) ) {
@$categories = grep { !$_->send_method || $_->send_method ne 'Triage' } @$categories;
return @$categories;
}
@$categories = grep { $_->send_method && $_->send_method eq 'Triage' } @$categories;
return @$categories;
}
}
sub munge_report_new_category_list {
my ($self, $options, $contacts, $extras) = @_;
my %bodies = map { $_->body->name => $_->body } @$contacts;
if ( $bodies{'Isle of Wight Council'} ) {
my $user = $self->{c}->user;
if ( $user && ( $user->is_superuser || $user->belongs_to_body( $bodies{'Isle of Wight Council'}->id ) ) ) {
@$contacts = grep { !$_->send_method || $_->send_method ne 'Triage' } @$contacts;
my $seen = { map { $_->category => 1 } @$contacts };
@$options = grep { my $c = ($_->{category} || $_->category); $c =~ 'Pick a category' || $seen->{ $c } } @$options;
return;
}
@$contacts = grep { $_->send_method && $_->send_method eq 'Triage' } @$contacts;
my $seen = { map { $_->category => 1 } @$contacts };
@$options = grep { my $c = ($_->{category} || $_->category); $c =~ 'Pick a category' || $seen->{ $c } } @$options;
}
if ( $bodies{'TfL'} ) {
# Presented categories vary if we're on/off a red route
my $tfl = FixMyStreet::Cobrand->get_class_for_moniker( 'tfl' )->new({ c => $self->{c} });
$tfl->munge_red_route_categories($options, $contacts);
}
}
sub munge_load_and_group_problems {
my ($self, $where, $filter) = @_;
return unless $where->{category} && $self->{c}->stash->{body}->name eq 'Isle of Wight Council';
$where->{category} = $self->expand_triage_cat_list($where->{category});
}
sub expand_triage_cat_list {
my ($self, $categories) = @_;
my $b = $self->{c}->stash->{body};
my $all_cats = $self->{c}->model('DB::Contact')->not_deleted->search(
{
body_id => $b->id,
send_method => [{ '!=', 'Triage'}, undef]
}
);
my %group_to_category;
while ( my $cat = $all_cats->next ) {
next unless $cat->get_extra_metadata('group');
my $groups = $cat->get_extra_metadata('group');
$groups = ref $groups eq 'ARRAY' ? $groups : [ $groups ];
for my $group ( @$groups ) {
$group_to_category{$group} //= [];
push @{ $group_to_category{$group} }, $cat->category;
}
}
my $cats = $self->{c}->model('DB::Contact')->not_deleted->search(
{
body_id => $b->id,
category => $categories
}
);
my @cat_names;
while ( my $cat = $cats->next ) {
if ( $cat->send_method && $cat->send_method eq 'Triage' ) {
# include the category itself
push @cat_names, $cat->category;
push @cat_names, @{ $group_to_category{$cat->category} } if $group_to_category{$cat->category};
} else {
push @cat_names, $cat->category;
}
}
return \@cat_names;
}
sub title_list {
my $self = shift;
my $areas = shift;
my $first_area = ( values %$areas )[0];
return ["MR", "MISS", "MRS", "MS", "DR"] if $first_area->{id} eq COUNCIL_ID_BROMLEY;
return undef;
}
sub extra_contact_validation {
my $self = shift;
my $c = shift;
my %errors;
$c->stash->{dest} = $c->get_param('dest');
if (!$c->get_param('dest')) {
$errors{dest} = "Please enter who your message is for";
} elsif ( $c->get_param('dest') eq 'council' || $c->get_param('dest') eq 'update' ) {
$errors{not_for_us} = 1;
}
return %errors;
}
=head2 council_dashboard_hook
This is for council-specific dashboard pages, which can only be seen by
superusers and logged-in users with an email domain matching a body name.
=cut
sub council_dashboard_hook {
my $self = shift;
my $c = $self->{c};
unless ( $c->user_exists ) {
$c->res->redirect('/about/council-dashboard');
$c->detach;
}
$c->forward('/admin/fetch_contacts');
$c->detach('/reports/summary') if $c->user->is_superuser;
my $body = $c->user->from_body || _user_to_body($c);
if ($body) {
# Matching URL and user's email body
$c->detach('/reports/summary') if $body->id eq $c->stash->{body}->id;
# Matched /a/ body, redirect to its summary page
$c->stash->{body} = $body;
$c->stash->{wards} = [ { name => 'summary' } ];
$c->detach('/reports/redirect_body');
}
$c->res->redirect('/about/council-dashboard');
}
sub _user_to_body {
my $c = shift;
my $email = lc $c->user->email;
return _email_to_body($c, $email);
}
sub _email_to_body {
my ($c, $email) = @_;
my ($domain) = $email =~ m{ @ (.*) \z }x;
my @data = eval { FixMyStreet->path_to('../data/fixmystreet-councils.csv')->slurp };
my $body;
foreach (@data) {
chomp;
my ($d, $b) = split /\|/;
if ($d eq $domain || $d eq $email) {
$body = $b;
last;
}
}
# If we didn't find a lookup entry, default to the first part of the domain
unless ($body) {
$domain =~ s/\.gov\.uk$//;
$body = ucfirst $domain;
}
$body = $c->forward('/reports/body_find', [ $body ]);
return $body;
}
sub about_hook {
my $self = shift;
my $c = $self->{c};
if ($c->stash->{template} eq 'about/council-dashboard.html') {
$c->stash->{form_name} = $c->get_param('name') || '';
$c->stash->{email} = $c->get_param('username') || '';
if ($c->user_exists) {
my $body = $c->user->from_body || _user_to_body($c);
if ($body) {
$c->stash->{body} = $body;
$c->stash->{wards} = [ { name => 'summary' } ];
$c->detach('/reports/redirect_body');
}
}
if (my $email = $c->get_param('username')) {
$email = lc $email;
$email =~ s/\s+//g;
my $body = _email_to_body($c, $email);
if ($body) {
# Send confirmation email (hopefully)
$c->stash->{template} = 'auth/general.html';
$c->detach('/auth/general', []);
} else {
$c->stash->{error} = 'bad_email';
}
}
}
}
sub updates_disallowed_config {
my ($self, $problem) = @_;
# This is a hash of council name to match, and what to do
my $cfg = $self->feature('updates_allowed') || {};
my $type = '';
my $body;
foreach (keys %$cfg) {
if ($problem->to_body_named($_)) {
$type = $cfg->{$_};
$body = $_;
last;
}
}
return ($type, $body);
}
sub updates_disallowed {
my $self = shift;
my ($problem) = @_;
my $c = $self->{c};
my ($type, $body) = $self->updates_disallowed_config($problem);
if ($type eq 'none') {
return 1;
} elsif ($type eq 'staff') {
# Only staff and superusers can leave updates
my $staff = $c->user_exists && $c->user->from_body && $c->user->from_body->name =~ /$body/;
my $superuser = $c->user_exists && $c->user->is_superuser;
return 1 unless $staff || $superuser;
}
if ($type =~ /reporter/) {
return 1 if !$c->user_exists || $c->user->id != $problem->user->id;
}
if ($type =~ /open/) {
return 1 if $problem->is_fixed || $problem->is_closed;
}
return $self->next::method(@_);
}
sub suppress_reporter_alerts {
my $self = shift;
my $c = $self->{c};
my $problem = $c->stash->{report};
if ($problem->to_body_named('Westminster')) {
return 1;
}
return 0;
}
sub must_have_2fa {
my ($self, $user) = @_;
return 1 if $user->is_superuser;
return 1 if $user->from_body && $user->from_body->name eq 'TfL';
return 0;
}
sub send_questionnaire {
my ($self, $problem) = @_;
my $cobrand = $problem->get_cobrand_logged;
return 0 if $cobrand->moniker eq 'tfl';
return 0 if $problem->to_body_named('TfL');
return 1;
}
sub update_email_shortlisted_user {
my ($self, $update) = @_;
FixMyStreet::Cobrand::TfL::update_email_shortlisted_user($self, $update);
}
1;
|