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
|
package FixMyStreet::Cobrand::BathNES;
use parent 'FixMyStreet::Cobrand::Whitelabel';
use strict;
use warnings;
sub council_area_id { return 2551; }
sub council_area { return 'Bath and North East Somerset'; }
sub council_name { return 'Bath and North East Somerset Council'; }
sub council_url { return 'bathnes'; }
sub contact_email {
my $self = shift;
return join( '@', 'fixmystreet', 'bathnes.gov.uk' );
}
sub map_type { 'BathNES' }
sub example_places {
return ( 'BA1 1JQ', "Lansdown Grove" );
}
sub get_geocoder {
return 'OSM'; # default of Bing gives poor results, let's try overriding.
}
sub disambiguate_location {
my $self = shift;
my $string = shift;
my $town = 'Bath and North East Somerset';
return {
%{ $self->SUPER::disambiguate_location() },
town => $town,
centre => '51.3559192103294,-2.47522827137605',
span => '0.166437921041471,0.429359043406088',
bounds => [ 51.2730478766607, -2.70792015294201, 51.4394857977022, -2.27856110953593 ],
};
}
sub pin_colour {
my ( $self, $p, $context ) = @_;
return 'grey' if $p->state eq 'not responsible';
return 'green' if $p->is_fixed || $p->is_closed;
return 'red' if $p->state eq 'confirmed';
return 'yellow';
}
sub send_questionnaires { 0 }
sub enable_category_groups { 1 }
sub default_show_name { 0 }
sub default_map_zoom { 3 }
sub map_js_extra {
my ($self, $c) = @_;
return unless $c->user_exists;
my $banes_user = $c->user->from_body && $c->user->from_body->areas->{$self->council_area_id};
if ( $banes_user || $c->user->is_superuser ) {
return ['/cobrands/bathnes/staff.js'];
}
}
sub category_extra_hidden {
my ($self, $meta) = @_;
return 1 if $meta eq 'unitid' || $meta eq 'asset_details';
return 0;
}
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);
}
1;
|