-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeme.php
More file actions
501 lines (501 loc) · 9.31 KB
/
meme.php
File metadata and controls
501 lines (501 loc) · 9.31 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
<?php
require_once "db_connect.php";
session_start();
function yid(int $size = 11): string
{
return implode(
"",
array_map(
fn() => "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"[
random_int(0, 63)
],
range(1, $size)
)
);
}
$memeId = $_GET["id"] ?? null;
if (!$memeId) {
header("Location: 404.php");
exit();
}
if (isset($_SESSION["user_id"])) {
$userId = (int) $_SESSION["user_id"];
try {
$pdo = getDbConnection();
$stmt = $pdo->prepare('
SELECT
1
FROM
user_interactions
WHERE
user_id = ?
AND interaction_type = "view"
AND content_type = "meme"
AND content_id = ?
AND DATE(created_at) = CURRENT_DATE()
LIMIT
1
');
$stmt->execute([$userId, $memeId]);
if (!$stmt->fetch()) {
$pdo->beginTransaction();
$pdo->prepare(
'
INSERT INTO
user_interactions (
user_id,
interaction_type,
content_type,
content_id
)
VALUES
(?, "view", "meme", ?)
'
)->execute([$userId, $memeId]);
$pdo->prepare(
"
UPDATE
memes
SET
view_count = view_count + 1
WHERE
meme_id = ?
"
)->execute([$memeId]);
$pdo->commit();
}
} catch (\PDOException $e) {
throw $e;
header("Location: status.php");
exit();
} catch (\Exception $e) {
throw $e;
}
}
if ($_SERVER["REQUEST_METHOD"] === "POST") {
if (!isset($_SESSION["user_id"])) {
$_SESSION["login_redirect"] = $_SERVER["REQUEST_URI"] ?? "index.php";
header("Location: login.html");
exit();
}
$userId = (int) $_SESSION["user_id"];
$action = $_POST["action"] ?? "";
try {
$pdo = getDbConnection();
switch ($action) {
case "liked":
case "cringe":
case "based":
case "steal":
$interactionMap = [
"liked" => ["like", "like_count"],
"cringe" => ["dislike", "dislike_count"],
"based" => ["upvote", "upvote_count"],
"steal" => ["save", "saved_count"],
];
[$interactionType, $countColumn] = $interactionMap[$action];
$stmt = $pdo->prepare('
SELECT
1
FROM
user_interactions
WHERE
user_id = ?
AND interaction_type = ?
AND content_type = "meme"
AND content_id = ?
');
$stmt->execute([$userId, $interactionType, $memeId]);
if ($stmt->fetch()) {
$pdo->prepare(
'
DELETE FROM
user_interactions
WHERE
user_id = ?
AND interaction_type = ?
AND content_type = "meme"
AND content_id = ?
'
)->execute([$userId, $interactionType, $memeId]);
$pdo->prepare(
"
UPDATE
memes
SET
$countColumn = $countColumn - 1
WHERE
meme_id = ?
"
)->execute([$memeId]);
} else {
$pdo->prepare(
'
INSERT INTO
user_interactions (
user_id,
interaction_type,
content_type,
content_id
)
VALUES
(?, ?, "meme", ?)
'
)->execute([$userId, $interactionType, $memeId]);
$pdo->prepare(
"
UPDATE
memes
SET
$countColumn = $countColumn + 1
WHERE
meme_id = ?
"
)->execute([$memeId]);
}
break;
case "comment":
$content = trim($_POST["comment"] ?? "");
$parentId = $_POST["parent_id"] ?? null;
if ($content !== "") {
$commentId = yid();
$pdo->prepare(
"
INSERT INTO
comments (comment_id, meme_id, user_id, content, parent_id)
VALUES
(?, ?, ?, ?, ?)
"
)->execute([
$commentId,
$memeId,
$userId,
$content,
$parentId ?: null,
]);
$pdo->prepare(
"
UPDATE
memes
SET
comment_count = comment_count + 1
WHERE
meme_id = ?
"
)->execute([$memeId]);
}
break;
case "delete_comment":
$commentId = $_POST["comment_id"] ?? "";
if ($commentId) {
$pdo->beginTransaction();
$stmt = $pdo->prepare("
SELECT
parent_id
FROM
comments
WHERE
comment_id = ?
AND user_id = ?
");
$stmt->execute([$commentId, $userId]);
$comment = $stmt->fetch();
if ($comment) {
$parentId = $comment["parent_id"];
$pdo->prepare(
"
UPDATE
comments
SET
parent_id = ?
WHERE
parent_id = ?
"
)->execute([$parentId, $commentId]);
$pdo->prepare(
"
DELETE FROM
comments
WHERE
comment_id = ?
"
)->execute([$commentId]);
$pdo->prepare(
"
UPDATE
memes
SET
comment_count = comment_count - 1
WHERE
meme_id = ?
"
)->execute([$memeId]);
}
$pdo->commit();
}
break;
case "delete_meme":
$stmt = $pdo->prepare("
SELECT
1
FROM
memes
WHERE
meme_id = ?
AND user_id = ?
");
$stmt->execute([$memeId, $userId]);
if ($stmt->fetch()) {
$pdo->prepare(
"
DELETE FROM
memes
WHERE
meme_id = ?
"
)->execute([$memeId]);
header("Location: index.php");
exit();
}
break;
}
} catch (\PDOException $e) {
throw $e;
header("Location: status.php");
exit();
} catch (\Exception $e) {
throw $e;
}
header("Location: " . $_SERVER["REQUEST_URI"]);
exit();
}
try {
$pdo = getDbConnection();
$stmt = $pdo->prepare('
SELECT
m.*,
u.handle,
u.display_name,
u.avatar,
u.joined_at
FROM
memes AS m
JOIN users AS u ON u.user_id = m.user_id
WHERE
m.meme_id = ?
AND m.status = "published"
');
$stmt->execute([$memeId]);
$meme = $stmt->fetch();
if (!$meme) {
header("Location: 404.php");
exit();
}
$joinDate = new DateTime($meme["joined_at"] ?? date("Y-m-d H:i:s"));
$joinDateFormatted = $joinDate->format("F Y");
$isOwner =
isset($_SESSION["user_id"]) &&
(int) $_SESSION["user_id"] === (int) $meme["user_id"];
$stmt = $pdo->prepare("
SELECT
t.tag_id,
t.name,
t.slug
FROM
meme_tags AS mt
JOIN tags AS t ON t.tag_id = mt.tag_id
WHERE
mt.meme_id = ?
");
$stmt->execute([$memeId]);
$tags = $stmt->fetchAll();
$flags = [
"liked" => false,
"cringe" => false,
"based" => false,
"steal" => false,
];
if (isset($_SESSION["user_id"])) {
$stmt = $pdo->prepare('
SELECT
interaction_type
FROM
user_interactions
WHERE
user_id = ?
AND content_type = "meme"
AND content_id = ?
');
$stmt->execute([$_SESSION["user_id"], $memeId]);
$interactionMap = [
"like" => "liked",
"dislike" => "cringe",
"upvote" => "based",
"save" => "steal",
];
foreach ($stmt->fetchAll(PDO::FETCH_COLUMN) as $interactionType) {
if (isset($interactionMap[$interactionType])) {
$flags[$interactionMap[$interactionType]] = true;
}
}
}
$stmt = $pdo->prepare("
SELECT
c.*,
u.handle,
u.display_name,
u.avatar
FROM
comments AS c
JOIN users AS u ON u.user_id = c.user_id
WHERE
c.meme_id = ?
ORDER BY
c.created_at ASC
");
$stmt->execute([$memeId]);
$comments = $stmt->fetchAll();
$commentsByID = [];
$tree = [];
foreach ($comments as $comment) {
$comment["children"] = [];
$commentsByID[$comment["comment_id"]] = $comment;
}
foreach ($commentsByID as &$comment) {
if (
$comment["parent_id"] &&
isset($commentsByID[$comment["parent_id"]])
) {
$commentsByID[$comment["parent_id"]]["children"][] = &$comment;
} else {
$tree[] = &$comment;
}
}
unset($comment);
$tagIdsIn = implode(",", array_column($tags, "tag_id") ?: [0]);
$titleKeywords =
"%" . preg_replace("/[^ -_0-9A-Za-z]/", " ", $meme["title"]) . "%";
$contentKeywords =
"%" . preg_replace("/[^ -_0-9A-Za-z]/", " ", $meme["title"]) . "%";
$stmt = $pdo->prepare("
SELECT
DISTINCT m.meme_id,
m.title,
m.media_url,
m.slug,
m.spiciness,
m.like_count,
m.comment_count,
u.handle AS creator,
SUM(
CASE
WHEN mt.tag_id IN ($tagIdsIn) THEN 1
ELSE 0
END
) AS tag_score
FROM
memes AS m
JOIN users AS u ON u.user_id = m.user_id
LEFT JOIN meme_tags AS mt ON mt.meme_id = m.meme_id
WHERE
m.meme_id <> ?
AND m.status = 'published'
AND m.visibility = 'public'
AND (
mt.tag_id IN ($tagIdsIn)
OR m.title LIKE ?
OR m.content LIKE ?
)
GROUP BY
m.meme_id
ORDER BY
tag_score DESC,
m.like_count DESC
LIMIT
6
");
$stmt->execute([$memeId, $titleKeywords, $contentKeywords]);
$uniqueMemes = [];
foreach ($stmt->fetchAll(PDO::FETCH_ASSOC) as $related) {
$uniqueMemes[$related["meme_id"]] = $related;
}
if (count($uniqueMemes) < 3) {
$excludeList = implode(
",",
array_map(
[$pdo, "quote"],
array_merge([$memeId], array_keys($uniqueMemes))
)
);
$stmt = $pdo->query(
"
SELECT
m.meme_id,
m.title,
m.media_url,
m.slug,
m.spiciness,
m.like_count,
m.comment_count,
u.handle AS creator
FROM
memes AS m
JOIN users AS u ON u.user_id = m.user_id
WHERE
m.meme_id NOT IN ($excludeList)
AND m.status = 'published'
AND m.visibility = 'public'
ORDER BY
RAND()
LIMIT
" .
(3 - count($uniqueMemes))
);
foreach ($stmt->fetchAll(PDO::FETCH_ASSOC) as $similar) {
$uniqueMemes[$similar["meme_id"]] = $similar;
}
while (count($uniqueMemes) < 3) {
$id = "placeholder-" . count($uniqueMemes);
$uniqueMemes[$id] = [
"meme_id" => $id,
"title" => "No similar memes found",
"media_url" => "",
"slug" => "",
"creator" => "system",
"like_count" => 0,
"comment_count" => 0,
"tags" => [],
];
}
}
$similarMemes = array_slice(array_values($uniqueMemes), 0, 3);
foreach ($similarMemes as $key => $similar) {
if (
isset($similar["meme_id"]) &&
!preg_match("/^(placeholder|duplicate)-/", $similar["meme_id"])
) {
$stmt = $pdo->prepare("
SELECT
t.name,
t.slug
FROM
tags AS t
JOIN meme_tags AS mt ON t.tag_id = mt.tag_id
WHERE
mt.meme_id = ?
");
$stmt->execute([$similar["meme_id"]]);
$similarMemes[$key]["tags"] = $stmt->fetchAll(PDO::FETCH_ASSOC);
} else {
$similarMemes[$key]["tags"] = [];
}
}
} catch (\PDOException $e) {
throw $e;
header("Location: status.php");
exit();
} catch (\Exception $e) {
throw $e;
}
include "meme.html";
?>