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
|
package FixMyStreet::Cobrand::Northamptonshire;
use parent 'FixMyStreet::Cobrand::Whitelabel';
use strict;
use warnings;
use Moo;
with 'FixMyStreet::Roles::ConfirmValidation';
sub council_area_id { 2234 }
sub council_area { 'Northamptonshire' }
sub council_name { 'Northamptonshire County Council' }
sub council_url { 'northamptonshire' }
sub example_places { ( 'NN1 1NS', "Bridge Street" ) }
sub enter_postcode_text { 'Enter a Northamptonshire postcode, street name and area, or check an existing report number' }
sub base_url {
my $self = shift;
return $self->next::method() if FixMyStreet->config('STAGING_SITE');
return 'https://fixmystreet.northamptonshire.gov.uk';
}
sub disambiguate_location {
my $self = shift;
my $string = shift;
return {
%{ $self->SUPER::disambiguate_location() },
centre => '52.30769080650276,-0.8647071378799923',
bounds => [ 51.97726778979222, -1.332346116362747, 52.643600776698605, -0.3416080408721255 ],
};
}
sub categories_restriction {
my ($self, $rs) = @_;
return $rs->search( [ { 'body.name' => 'Northamptonshire County Council' } ], { join => { body => 'body_areas' } });
}
sub send_questionnaires { 0 }
sub on_map_default_status { 'open' }
sub report_sent_confirmation_email { 'id' }
sub problems_on_map_restriction {
my ($self, $rs) = @_;
# Northamptonshire don't want to show district/borough reports
# on the site
return $self->problems_restriction($rs);
}
sub contact_email {
my $self = shift;
return join( '@', 'highways', $self->council_url . '.gov.uk' );
}
sub privacy_policy_url {
'https://www3.northamptonshire.gov.uk/councilservices/council-and-democracy/transparency/information-policies/privacy-notice/place/Pages/street-doctor.aspx'
}
sub enable_category_groups { 1 }
sub is_two_tier { 1 }
sub get_geocoder { 'OSM' }
sub map_type { 'OSM' }
sub open311_config {
my ($self, $row, $h, $params) = @_;
my $extra = $row->get_extra_fields;
# remove the emergency category which is informational only
@$extra = grep { $_->{name} ne 'emergency' } @$extra;
push @$extra,
{ name => 'report_url',
value => $h->{url} },
{ name => 'title',
value => $row->title },
{ name => 'description',
value => $row->detail },
{ name => 'category',
value => $row->category };
$row->set_extra_fields(@$extra);
$params->{multi_photos} = 1;
}
# sending updates not part of initial phase
sub should_skip_sending_update { 1; }
sub report_validation {
my ($self, $report, $errors) = @_;
if ( length( $report->title ) > 120 ) {
$errors->{title} = sprintf( _('Summaries are limited to %s characters in length. Please shorten your summary'), 120 );
}
}
1;
|