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
|
package FixMyStreet::SendReport::Open311;
use FixMyStreet::App;
use mySociety::Config;
use Open311;
my %councils = ();
my @to;
sub reset {
%councils = ();
@to = ();
}
sub add_council {
my $council = shift;
my $name = shift;
$councils{ $council } = $name;
}
sub send {
return if mySociety::Config::get('STAGING_SITE');
my $self = shift;
my ( $row, $h, $to, $template, $recips, $nomail ) = @_;
foreach my $council ( keys %{ $self->councils } ) {
my $conf = FixMyStreet::App->model("DB::Open311conf")->search( { area_id => $self->councils->{ $council }, endpoint => { '!=', '' } } )->first;
#print 'posting to end point for ' . $conf->area_id . "\n" if $verbose;
# FIXME: we've already looked this up before
my $contact = FixMyStreet::App->model("DB::Contact")->find( {
deleted => 0,
area_id => $conf->area_id,
category => $row->category
} );
my $open311 = Open311->new(
jurisdiction => $conf->jurisdiction,
endpoint => $conf->endpoint,
api_key => $conf->api_key,
);
# non standard west berks end points
if ( $row->council =~ /2619/ ) {
$open311->endpoints( { services => 'Services', requests => 'Requests' } );
}
# required to get round issues with CRM constraints
if ( $row->council =~ /2218/ ) {
$row->user->name( $row->user->id . ' ' . $row->user->name );
}
my $resp = $open311->send_service_request( $row, $h, $contact->email );
# make sure we don't save user changes from above
if ( $row->council =~ /2218/ ) {
$row->discard_changes();
}
if ( $resp ) {
$row->external_id( $resp );
$result *= 0;
} else {
$result *= 1;
# temporary fix to resolve some issues with west berks
if ( $row->council =~ /2619/ ) {
$result *= 0;
}
}
}
}
1;
|