|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* SuccessController.php |
|
4
|
|
|
* |
|
5
|
|
|
* @author Bram de Leeuw |
|
6
|
|
|
* Date: 16/03/17 |
|
7
|
|
|
*/ |
|
8
|
|
|
|
|
9
|
|
|
namespace Broarm\EventTickets; |
|
10
|
|
|
|
|
11
|
|
|
use Config; |
|
12
|
|
|
use Email; |
|
13
|
|
|
use SiteConfig; |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* Class SuccessController |
|
17
|
|
|
* |
|
18
|
|
|
* @package Broarm\EventTickets |
|
19
|
|
|
*/ |
|
20
|
|
|
class SuccessController extends CheckoutStepController |
|
21
|
|
|
{ |
|
22
|
|
|
protected $step = 'success'; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* @var Reservation |
|
26
|
|
|
*/ |
|
27
|
|
|
protected $reservation; |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* The address to whom the ticket notifications are sent |
|
31
|
|
|
* By default the admin email is used |
|
32
|
|
|
* |
|
33
|
|
|
* @config |
|
34
|
|
|
* @var string |
|
35
|
|
|
*/ |
|
36
|
|
|
private static $mail_sender; |
|
|
|
|
|
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* The address from where the ticket mails are sent |
|
40
|
|
|
* By default the admin email is used |
|
41
|
|
|
* |
|
42
|
|
|
* @config |
|
43
|
|
|
* @var string |
|
44
|
|
|
*/ |
|
45
|
|
|
private static $mail_receiver; |
|
|
|
|
|
|
46
|
|
|
|
|
47
|
|
|
public function init() |
|
48
|
|
|
{ |
|
49
|
|
|
parent::init(); |
|
50
|
|
|
|
|
51
|
|
|
if ($this->reservation = ReservationSession::get()) { |
|
|
|
|
|
|
52
|
|
|
// If we get to the success controller form any state except PENDING or PAID |
|
53
|
|
|
// This would mean someone would be clever and change the url from summary to success bypassing the payment |
|
54
|
|
|
// End the session, thus removing the reservation, and redirect back |
|
55
|
|
|
if (!in_array($this->reservation->Status, array('PENDING', 'PAID'))) { |
|
56
|
|
|
ReservationSession::end(); |
|
57
|
|
|
$this->redirect($this->Link('/')); |
|
58
|
|
|
} else { |
|
59
|
|
|
$this->reservation->createFiles(); |
|
60
|
|
|
if ($this->sendReservation()) { |
|
61
|
|
|
$this->reservation->changeState('PAID'); |
|
62
|
|
|
$this->sendTickets(); |
|
63
|
|
|
$this->sendNotification(); |
|
64
|
|
|
$this->extend('afterPaymentComplete', $this->reservation); |
|
65
|
|
|
$this->reservation->write(); |
|
66
|
|
|
} |
|
67
|
|
|
} |
|
68
|
|
|
} |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
/** |
|
72
|
|
|
* Send the reservation mail |
|
73
|
|
|
* |
|
74
|
|
|
* @return bool |
|
75
|
|
|
*/ |
|
76
|
|
|
public function sendReservation() |
|
77
|
|
|
{ |
|
78
|
|
|
// State changes after the files have been sent |
|
79
|
|
|
// this check makes sure the files aren't sent again after a refresh |
|
80
|
|
|
if ($this->reservation->Status === 'PAID') { |
|
81
|
|
|
return false; |
|
82
|
|
|
} |
|
83
|
|
|
|
|
84
|
|
|
// Get the mail sender or fallback to the admin email |
|
85
|
|
|
if (empty($from = self::config()->get('mail_sender'))) { |
|
86
|
|
|
$from = Config::inst()->get('Email', 'admin_email'); |
|
87
|
|
|
} |
|
88
|
|
|
|
|
89
|
|
|
// Create the email with given template and reservation data |
|
90
|
|
|
$email = new Email(); |
|
91
|
|
|
$email->setSubject(_t( |
|
92
|
|
|
'ReservationMail.TITLE', |
|
93
|
|
|
'Your order at {sitename}', |
|
94
|
|
|
null, |
|
95
|
|
|
array( |
|
|
|
|
|
|
96
|
|
|
'sitename' => SiteConfig::current_site_config()->Title |
|
97
|
|
|
) |
|
98
|
|
|
)); |
|
99
|
|
|
$email->setFrom($from); |
|
100
|
|
|
$email->setTo($this->reservation->MainContact()->Email); |
|
|
|
|
|
|
101
|
|
|
$email->setTemplate('ReservationMail'); |
|
102
|
|
|
$email->populateTemplate($this->reservation); |
|
103
|
|
|
$this->extend('updateReservationMail', $email); |
|
104
|
|
|
$email->send(); |
|
105
|
|
|
return true; |
|
106
|
|
|
} |
|
107
|
|
|
|
|
108
|
|
|
/** |
|
109
|
|
|
* Send the reservation mail |
|
110
|
|
|
*/ |
|
111
|
|
|
public function sendTickets() |
|
112
|
|
|
{ |
|
113
|
|
|
// Get the mail sender or fallback to the admin email |
|
114
|
|
|
if (empty($from = self::config()->get('mail_sender'))) { |
|
115
|
|
|
$from = Config::inst()->get('Email', 'admin_email'); |
|
116
|
|
|
} |
|
117
|
|
|
|
|
118
|
|
|
// Send the tickets to the main contact |
|
119
|
|
|
$email = new Email(); |
|
120
|
|
|
$email->setSubject(_t( |
|
121
|
|
|
'MainContactMail.TITLE', |
|
122
|
|
|
'Uw tickets voor {event}', |
|
123
|
|
|
null, |
|
124
|
|
|
array( |
|
|
|
|
|
|
125
|
|
|
'event' => $this->reservation->Event()->Title |
|
|
|
|
|
|
126
|
|
|
) |
|
127
|
|
|
)); |
|
128
|
|
|
$email->setFrom($from); |
|
129
|
|
|
$email->setTo($this->reservation->MainContact()->Email); |
|
|
|
|
|
|
130
|
|
|
$email->setTemplate('MainContactMail'); |
|
131
|
|
|
$email->populateTemplate($this->reservation); |
|
132
|
|
|
$this->extend('updateMainContactMail', $email); |
|
133
|
|
|
$email->send(); |
|
134
|
|
|
|
|
135
|
|
|
|
|
136
|
|
|
// Get the attendees for this event that are checked as receiver |
|
137
|
|
|
$ticketReceivers = $this->reservation->Attendees()->filter('TicketReceiver', 1)->exclude('ID', $this->reservation->MainContactID); |
|
|
|
|
|
|
138
|
|
|
if ($ticketReceivers->exists()) { |
|
139
|
|
|
/** @var Attendee $ticketReceiver */ |
|
140
|
|
|
foreach ($ticketReceivers as $ticketReceiver) { |
|
141
|
|
|
$email = new Email(); |
|
142
|
|
|
$email->setSubject(_t( |
|
143
|
|
|
'AttendeeMail.TITLE', |
|
144
|
|
|
'Your ticket for {event}', |
|
145
|
|
|
null, |
|
146
|
|
|
array( |
|
|
|
|
|
|
147
|
|
|
'event' => $this->reservation->Event()->Title |
|
|
|
|
|
|
148
|
|
|
) |
|
149
|
|
|
)); |
|
150
|
|
|
$email->setFrom($from); |
|
151
|
|
|
$email->setTo($ticketReceiver->Email); |
|
152
|
|
|
$email->setTemplate('AttendeeMail'); |
|
153
|
|
|
$email->populateTemplate($ticketReceiver); |
|
154
|
|
|
$this->extend('updateTicketMail', $email); |
|
155
|
|
|
$email->send(); |
|
156
|
|
|
} |
|
157
|
|
|
} |
|
158
|
|
|
} |
|
159
|
|
|
|
|
160
|
|
|
|
|
161
|
|
|
/** |
|
162
|
|
|
* Send a booking notification tot the ticket mail sender or the site admin |
|
163
|
|
|
*/ |
|
164
|
|
|
public function sendNotification() |
|
165
|
|
|
{ |
|
166
|
|
|
if (empty($from = self::config()->get('mail_sender'))) { |
|
167
|
|
|
$from = Config::inst()->get('Email', 'admin_email'); |
|
168
|
|
|
} |
|
169
|
|
|
|
|
170
|
|
|
if (empty($to = self::config()->get('mail_receiver'))) { |
|
171
|
|
|
$to = Config::inst()->get('Email', 'admin_email'); |
|
172
|
|
|
} |
|
173
|
|
|
|
|
174
|
|
|
$email = new Email(); |
|
175
|
|
|
$email->setSubject(_t( |
|
176
|
|
|
'NotificationMail.TITLE', |
|
177
|
|
|
'Nieuwe reservering voor {event}', |
|
178
|
|
|
null, array('event' => $this->reservation->Event()->Title) |
|
|
|
|
|
|
179
|
|
|
)); |
|
180
|
|
|
|
|
181
|
|
|
$email->setFrom($from); |
|
182
|
|
|
$email->setTo($to); |
|
183
|
|
|
$email->setTemplate('NotificationMail'); |
|
184
|
|
|
$email->populateTemplate($this->reservation); |
|
185
|
|
|
$this->extend('updateNotificationMail', $email); |
|
186
|
|
|
$email->send(); |
|
187
|
|
|
} |
|
188
|
|
|
|
|
189
|
|
|
/** |
|
190
|
|
|
* Get the download link |
|
191
|
|
|
* |
|
192
|
|
|
* @return string |
|
193
|
|
|
*/ |
|
194
|
|
|
public function getDownloadLink() |
|
195
|
|
|
{ |
|
196
|
|
|
return $this->reservation->Attendees()->first()->TicketFile()->Link(); |
|
|
|
|
|
|
197
|
|
|
} |
|
198
|
|
|
} |
|
199
|
|
|
|
This check marks private properties in classes that are never used. Those properties can be removed.