-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStreamRepository.php
More file actions
253 lines (219 loc) · 8.54 KB
/
StreamRepository.php
File metadata and controls
253 lines (219 loc) · 8.54 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
<?php
namespace App\Repositories;
use App\Models\Event;
use App\Models\Stream;
use App\Models\User;
use Exception;
use PDO;
class StreamRepository
{
public function __construct(
private PDO $pdo,
private string $prefix
) {}
public function selectList(): array
{
$stmt = $this->pdo->query('
SELECT c.*, u.email as admin
FROM ' . $this->prefix . 'charity_stream c
INNER JOIN ' . $this->prefix . 'user_right r ON r.id_charity_stream = c.id
INNER JOIN ' . $this->prefix . 'users u ON u.id = r.id_user
ORDER BY c.creation_date DESC
');
$stmt->setFetchMode(PDO::FETCH_CLASS, Stream::class);
return $stmt->fetchAll();
}
public function selectByGuid(string $guid): ?Stream
{
$stmt = $this->pdo->prepare('
SELECT *
FROM ' . $this->prefix . 'charity_stream
WHERE guid = ?
');
$stmt->setFetchMode(PDO::FETCH_CLASS, Stream::class);
$stmt->execute([$guid]);
return $stmt->fetch() ?: null;
}
public function selectListByUser(User $user): array
{
$stmt = $this->pdo->prepare('
SELECT c.*, u.email as admin
FROM ' . $this->prefix . 'charity_stream c
INNER JOIN ' . $this->prefix . 'user_right ur on ur.id_charity_stream = c.id
INNER JOIN ' . $this->prefix . 'users u ON u.id = ur.id_user
WHERE ur.id_user = :id_user
UNION
SELECT c.*, u.email as admin
FROM ' . $this->prefix . 'charity_stream c
INNER JOIN ' . $this->prefix . 'user_right ur on ur.id_charity_event = c.charity_event_id
INNER JOIN ' . $this->prefix . 'users u ON u.id = ur.id_user
WHERE ur.id_user = :id_user
ORDER BY creation_date DESC
');
$stmt->setFetchMode(PDO::FETCH_CLASS, Stream::class);
$stmt->execute([':id_user' => $user->id]);
return $stmt->fetchAll();
}
public function selectListByEvent(Event $event): array
{
$stmt = $this->pdo->prepare('
SELECT *
FROM ' . $this->prefix . 'charity_stream
WHERE charity_event_id = :id
');
$stmt->setFetchMode(PDO::FETCH_CLASS, Stream::class);
$stmt->execute([':id' => $event->id]);
return $stmt->fetchAll();
}
public function selectByUserAndGuid(User $user, string $guid): ?Stream
{
if ($user->role === "ADMIN") {
$stmt = $this->pdo->prepare('
SELECT c.*
FROM ' . $this->prefix . 'charity_stream c
WHERE c.guid = ?
');
$stmt->setFetchMode(PDO::FETCH_CLASS, Stream::class);
$stmt->execute([$guid]);
} else {
$stmt = $this->pdo->prepare('
SELECT c.*
FROM ' . $this->prefix . 'charity_stream c
INNER JOIN ' . $this->prefix . 'user_right ur on ur.id_charity_stream = c.id
WHERE ur.id_user = :id_user
AND c.guid = :guid
UNION
SELECT c.*
FROM ' . $this->prefix . 'charity_stream c
INNER JOIN ' . $this->prefix . 'user_right ur on ur.id_charity_event = c.charity_event_id
WHERE ur.id_user = :id_user
AND c.guid = :guid
');
$stmt->setFetchMode(PDO::FETCH_CLASS, Stream::class);
$stmt->execute([":id_user" => $user->id, ":guid" => $guid]);
}
$stream = $stmt->fetch();
return $stream ?: null;
}
public function insert(string $form_slug, string $organization_slug, string $title, ?int $parent = null, string $form_type = 'Donation'): Stream
{
$guid = bin2hex(random_bytes(16));
$this->pdo->beginTransaction();
try {
$query = 'INSERT INTO ' . $this->prefix . 'charity_stream (guid, form_slug, form_type, organization_slug, title, charity_event_id)
VALUES (:guid, :form_slug, :form_type, :organization_slug, :title, :charity_event_id)';
$stmt = $this->pdo->prepare($query);
$stmt->execute([
':guid' => $guid,
':form_slug' => $form_slug,
':form_type' => $form_type,
':organization_slug' => $organization_slug,
':title' => $title,
':charity_event_id' => $parent
]);
$id = $this->pdo->lastInsertId();
$query = 'INSERT INTO ' . $this->prefix . 'widget_donation_goal_bar (charity_stream_guid)
VALUES (:guid)';
$stmt = $this->pdo->prepare($query);
$stmt->execute([
':guid' => $guid
]);
$query = 'INSERT INTO ' . $this->prefix . 'widget_alert_box (charity_stream_guid, alert_duration, message_template, sound_volume)
VALUES (:guid, 5, "{pseudo} vient de donner {amount}<br/>{message}", 50)';
$stmt = $this->pdo->prepare($query);
$stmt->execute([
':guid' => $guid
]);
$query = 'INSERT INTO ' . $this->prefix . 'widget_card (charity_stream_guid, description)
VALUES (:guid, "")';
try {
$stmt = $this->pdo->prepare($query);
$stmt->execute([':guid' => $guid]);
} catch (Exception $e) {
// Table may not exist yet (migration not run) — skip silently
}
$this->pdo->commit();
$stream = new Stream();
$stream->id = $id;
$stream->guid = $guid;
$stream->form_slug = $form_slug;
$stream->form_type = $form_type;
$stream->organization_slug = $organization_slug;
$stream->title = $title;
return $stream;
} catch (Exception $e) {
$this->pdo->rollBack();
throw $e;
}
}
public function updateEventLink(Stream $stream, ?int $eventId): void
{
$stmt = $this->pdo->prepare('
UPDATE ' . $this->prefix . 'charity_stream
SET charity_event_id = ?
WHERE id = ?
');
$stmt->execute([$eventId, $stream->id]);
$stream->charity_event_id = $eventId;
}
public function update(Stream $stream, array $data): void
{
$fields = [];
$params = [];
if (array_key_exists('title', $data)) {
$fields[] = 'title = ?';
$params[] = $data['title'];
}
if (array_key_exists('goal', $data)) {
$fields[] = 'goal = ?';
$params[] = $data['goal'];
}
if (array_key_exists('is_test_mode', $data)) {
$fields[] = 'is_test_mode = ?';
$params[] = (int) $data['is_test_mode'];
}
if (array_key_exists('test_amount', $data)) {
$fields[] = 'test_amount = ?';
$params[] = (int) $data['test_amount'];
}
if (empty($fields)) return;
$params[] = $stream->id;
$sql = 'UPDATE ' . $this->prefix . 'charity_stream SET ' . implode(', ', $fields) . ' WHERE id = ?';
$stmt = $this->pdo->prepare($sql);
$stmt->execute($params);
}
public function delete(Stream $stream): void
{
$this->pdo->beginTransaction();
try {
$query = 'DELETE FROM ' . $this->prefix . 'widget_donation_goal_bar
WHERE charity_stream_guid = ?';
$stmt = $this->pdo->prepare($query);
$stmt->execute([$stream->guid]);
$query = 'DELETE FROM ' . $this->prefix . 'widget_alert_box
WHERE charity_stream_guid = ?';
$stmt = $this->pdo->prepare($query);
$stmt->execute([$stream->guid]);
$query = 'DELETE FROM ' . $this->prefix . 'widget_card
WHERE charity_stream_guid = ?';
try {
$stmt = $this->pdo->prepare($query);
$stmt->execute([$stream->guid]);
} catch (Exception $e) {
// Table may not exist yet — skip silently
}
$query = 'DELETE FROM ' . $this->prefix . 'user_right
WHERE id_charity_stream = ?';
$stmt = $this->pdo->prepare($query);
$stmt->execute([$stream->id]);
$query = 'DELETE FROM ' . $this->prefix . 'charity_stream
WHERE id = ?';
$stmt = $this->pdo->prepare($query);
$stmt->execute([$stream->id]);
$this->pdo->commit();
} catch (Exception $e) {
$this->pdo->rollBack();
throw $e;
}
}
}