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
|
package FixMyStreet::Cobrand::IsleOfWight;
use parent 'FixMyStreet::Cobrand::Whitelabel';
use strict;
use warnings;
sub council_area_id { 2636 }
sub council_area { 'Isle of Wight' }
sub council_name { 'Island Roads' }
sub council_url { 'isleofwight' }
sub all_reports_single_body { { name => "Isle of Wight Council" } }
sub link_to_council_cobrand { "Island Roads" }
sub enter_postcode_text {
my ($self) = @_;
return 'Enter an ' . $self->council_area . ' postcode, or street name and area';
}
sub on_map_default_status { 'open' }
sub send_questionnaires { 0 }
sub report_sent_confirmation_email { 'external_id' }
sub map_type { 'OSM' }
sub disambiguate_location {
my $self = shift;
my $string = shift;
return {
%{ $self->SUPER::disambiguate_location() },
centre => '50.675761,-1.296571',
bounds => [ 50.574653, -1.591732, 50.767567, -1.062957 ],
};
}
sub updates_disallowed {
my ($self, $problem) = @_;
my $c = $self->{c};
return 0 if $c->user_exists && $c->user->id eq $problem->user->id;
return 1;
}
sub get_geocoder { 'OSM' }
sub open311_get_update_munging {
my ($self, $comment) = @_;
# If we've received an update via Open311 that's closed
# or fixed the report, also close it to updates.
$comment->problem->set_extra_metadata(closed_updates => 1)
if !$comment->problem->is_open;
}
sub open311_config {
my ($self, $row, $h, $params) = @_;
my $extra = $row->get_extra_fields;
push @$extra,
{ name => 'report_url',
value => $h->{url} },
{ name => 'title',
value => $row->title },
{ name => 'description',
value => $row->detail };
$row->set_extra_fields(@$extra);
}
sub open311_munge_update_params {
my ($self, $params, $comment, $body) = @_;
if ($comment->mark_fixed) {
$params->{description} = "[The customer indicated that this issue had been fixed]\n\n" . $params->{description};
}
$params->{description} = "FMS-Update: " . $params->{description};
}
1;
|