-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEuklesEventSubscriber.php
More file actions
256 lines (226 loc) · 7.38 KB
/
Copy pathEuklesEventSubscriber.php
File metadata and controls
256 lines (226 loc) · 7.38 KB
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<?php
/**
* CatLab Events - Event ticketing system
* Copyright (C) 2017 Thijs Van der Schaeghe
* CatLab Interactive bvba, Gent, Belgium
* http://www.catlab.eu/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
namespace App\Listeners;
use App\Events\DonationCancelled;
use App\Events\DonationReceived;
use App\Events\GroupMemberJoined;
use App\Events\OrderCancelled;
use App\Events\OrderConfirmed;
use App\Events\PreparingOrder;
use App\Events\SubscribedToWaitingList;
use Illuminate\Events\Dispatcher;
/**
* Class EuklesEventSubscriber
* @package App\Listeners
*/
class EuklesEventSubscriber
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* @param PreparingOrder $e
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function onPreparingOrder(PreparingOrder $e)
{
$euklesProperties = [
'actor' => $e->actor,
'event' => $e->event,
'session' => $e->session,
'ticketCategory' => $e->ticketCategory
];
if ($e->group) {
$euklesProperties['group'] = $e->group;
}
$euklesEvent = \Eukles::createEvent(
'event.order.initialize',
$euklesProperties
)->link($e->actor, 'registering', $e->event);
if ($e->group) {
foreach ($e->group->members as $member) {
if ($member->user) {
$euklesEvent->setObject('member', $member->user);
}
}
}
// Track on ze eukles.
\Eukles::trackEvent($euklesEvent);
}
/**
* @param OrderConfirmed $e
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function onOrderConfirmed(OrderConfirmed $e)
{
$order = $e->order;
$attributes = [
'event' => $order->event,
'order' => $order,
'ticketCategory' => $order->ticketCategory
];
if ($order->group) {
$attributes['group'] = $order->group;
$attributes['subject'] = $order->group;
} else {
$attributes['subject'] = $order->user;
}
// Track on ze eukles.
$euklesEvent = \Eukles::createEvent('event.order.confirmed', $attributes);
$euklesEvent->unlink($order->user, 'registering', $order->event);
if ($order->group) {
$euklesEvent->link($order->group, 'attends', $order->event);
foreach ($order->group->members as $member) {
if ($member->user) {
$euklesEvent->setObject('member', $member->user);
}
}
}
\Eukles::trackEvent($euklesEvent);
}
/**
* @param OrderCancelled $e
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function onOrderCancelled(OrderCancelled $e)
{
$order = $e->order;
// Only trigger event when the order was previously 'confirmed'.
if (!$e->wasConfirmed) {
return;
}
$attributes = [
'event' => $order->event,
'order' => $order,
'ticketCategory' => $order->ticketCategory
];
if ($order->group) {
$attributes['group'] = $order->group;
$attributes['subject'] = $order->group;
} else {
$attributes['subject'] = $order->user;
}
// Track on ze eukles.
$euklesEvent = \Eukles::createEvent('event.order.cancel', $attributes);
if ($order->group) {
$euklesEvent->unlink($order->group, 'attends', $order->event);
foreach ($order->group->members as $member) {
if ($member->user) {
$euklesEvent->setObject('member', $member->user);
}
}
}
\Eukles::trackEvent($euklesEvent);
}
/**
* @param DonationCancelled $e
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function onDonationCancelled(DonationCancelled $e)
{
// payment canceled, restock items
\Eukles::trackEvent(
\Eukles::createEvent(
'donation.cancelled',
$e->transaction
)
);
}
/**
* @param DonationReceived $e
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function onDonationReceived(DonationReceived $e)
{
// process the payment
// Track on ze eukles.
\Eukles::trackEvent(
\Eukles::createEvent(
'donation.success',
$e->transaction
)
);
}
/**
* @param GroupMemberJoined $e
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function onGroupJoin(GroupMemberJoined $e)
{
$group = $e->group;
$user = $e->member->user;
// Track on ze eukles.
\Eukles::trackEvent(
\Eukles::createEvent(
'group.member.join',
[
'group' => $group,
'user' => $user
]
)
->link($user, 'ismemberof', $group)
);
}
/**
* @param SubscribedToWaitingList $e
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function onSubscribedToWaitingList(SubscribedToWaitingList $e)
{
// Track on ze eukles.
\Eukles::trackEvent(
\Eukles::createEvent(
'event.waitinglist.subscribe',
[
'user' => $e->user,
'event' => $e->event
]
)
->link($e->user, 'waitinglist', $e->event)
);
}
/**
* Register the listeners for the subscriber.
*
* @param \Illuminate\Events\Dispatcher $events
*/
public function subscribe(Dispatcher $events)
{
// If eukles is not defined, don't bother registering the events.
if (!config('eukles.key')) {
return;
}
$events->listen(PreparingOrder::class, EuklesEventSubscriber::class . '@onPreparingOrder');
$events->listen(OrderConfirmed::class, EuklesEventSubscriber::class . '@onOrderConfirmed');
$events->listen(OrderCancelled::class, EuklesEventSubscriber::class . '@onOrderCancelled');
$events->listen(DonationCancelled::class, EuklesEventSubscriber::class . '@onDonationCancelled');
$events->listen(DonationReceived::class, EuklesEventSubscriber::class . '@onDonationReceived');
$events->listen(GroupMemberJoined::class, EuklesEventSubscriber::class . '@onGroupJoin');
$events->listen(SubscribedToWaitingList::class, EuklesEventSubscriber::class . '@onSubscribedToWaitingList');
}
}