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
|
package FixMyStreet::SendReport::Email;
use Moo;
use FixMyStreet::Email;
use Utils::Email;
BEGIN { extends 'FixMyStreet::SendReport'; }
sub build_recipient_list {
my ( $self, $row, $h ) = @_;
my $all_confirmed = 1;
foreach my $body ( @{ $self->bodies } ) {
my $contact = $self->fetch_category($body, $row) or next;
my ($body_email, $state, $note) = ( $contact->email, $contact->state, $contact->note );
$body_email = swandt_contact($row->latitude, $row->longitude)
if $body->name eq 'Somerset West and Taunton Council' && $body_email eq 'SPECIAL';
unless ($state eq 'confirmed') {
$all_confirmed = 0;
$note = 'Body ' . $row->bodies_str . ' deleted'
unless $note;
$body_email = 'N/A' unless $body_email;
$self->unconfirmed_counts->{$body_email}{$row->category}++;
$self->unconfirmed_notes->{$body_email}{$row->category} = $note;
}
my @emails;
# allow multiple emails per contact
if ( $body_email =~ /,/ ) {
@emails = split(/,/, $body_email);
} else {
@emails = ( $body_email );
}
for my $email ( @emails ) {
push @{ $self->to }, [ $email, $body->name ];
}
}
return $all_confirmed && @{$self->to};
}
sub get_template {
my ( $self, $row ) = @_;
return 'submit.txt';
}
sub send_from {
my ( $self, $row ) = @_;
return [ $row->user->email, $row->name ];
}
sub envelope_sender {
my ($self, $row) = @_;
if ($row->user->email && $row->user->email_verified) {
return FixMyStreet::Email::unique_verp_id('report', $row->id);
}
return $row->get_cobrand_logged->do_not_reply_email;
}
sub send {
my $self = shift;
my ( $row, $h ) = @_;
my $recips = @{$self->to} ? 1 : $self->build_recipient_list( $row, $h );
# on a staging server send emails to ourselves rather than the bodies
if (FixMyStreet->staging_flag('send_reports', 0) && !FixMyStreet->test_mode) {
$recips = 1;
@{$self->to} = [ $row->user->email, $self->to->[0][1] || $row->name ];
}
unless ($recips) {
$self->error( 'No recipients' );
return 1;
}
my ($verbose, $nomail) = CronFns::options();
my $cobrand = $row->get_cobrand_logged;
$cobrand = $cobrand->call_hook(get_body_handler_for_problem => $row) || $cobrand;
my $params = {
To => $self->to,
};
$cobrand->call_hook(munge_sendreport_params => $row, $h, $params);
$params->{Bcc} = $self->bcc if @{$self->bcc};
my $sender = $self->envelope_sender($row);
if ($row->user->email && $row->user->email_verified) {
$params->{From} = $self->send_from( $row );
} else {
my $name = sprintf(_("On behalf of %s"), @{ $self->send_from($row) }[1]);
$params->{From} = [ $sender, $name ];
}
if (FixMyStreet::Email::test_dmarc($params->{From}[0])
|| Utils::Email::same_domain($params->{From}, $params->{To})) {
$params->{'Reply-To'} = [ $params->{From} ];
$params->{From} = [ $sender, $params->{From}[1] ];
}
my $result = FixMyStreet::Email::send_cron($row->result_source->schema,
$self->get_template($row), {
%$h,
cobrand => $cobrand, # For correct logo that uses cobrand object
},
$params, $sender, $nomail, $cobrand, $row->lang);
unless ($result) {
$row->set_extra_metadata('sent_to' => email_list($params->{To}));
$self->success(1);
} else {
$self->error( 'Failed to send email' );
}
return $result;
}
sub email_list {
my $list = shift;
my @list = map { ref $_ ? $_->[0] : $_ } @$list;
return \@list;
}
# SW&T has different contact addresses depending upon the old district
sub swandt_contact {
my $district = _get_district_for_contact(@_);
my $email;
$email = ['customerservices', 'westsomerset'] if $district == 2427;
$email = ['enquiries', 'tauntondeane'] if $district == 2429;
return join('@', $email->[0], $email->[1] . '.gov.uk');
}
sub _get_district_for_contact {
my ( $lat, $lon ) = @_;
my $district =
FixMyStreet::MapIt::call( 'point', "4326/$lon,$lat", type => 'DIS', generation => 34 );
($district) = keys %$district;
return $district;
}
1;
|