2024-04-11 10:36:40 +02:00
|
|
|
<?php
|
|
|
|
|
2024-04-25 22:50:35 +02:00
|
|
|
require_once "lib/upload.php";
|
2024-04-26 01:17:49 +02:00
|
|
|
require_once "lib/account.php";
|
2024-04-25 22:50:35 +02:00
|
|
|
|
2024-04-25 22:53:14 +02:00
|
|
|
function addMeme(string $title, string $memeText, int $imageID): array
|
2024-04-11 10:36:40 +02:00
|
|
|
{
|
|
|
|
global $mysqli;
|
2024-04-25 22:53:14 +02:00
|
|
|
$output = ["Status" => "Fail"];
|
2024-04-25 23:20:46 +02:00
|
|
|
if (isLoggedIn() && fileExists($imageID, false) && !empty($title) && !empty($memeText) && !empty($imageID) && $imageID > 0) {
|
2024-04-25 09:45:28 +02:00
|
|
|
$stmtMemeAdd = $mysqli->prepare('INSERT INTO Memes (AuthorID, Title, TextContent, FileID) VALUES (?, ?, ?, ?)');
|
2024-04-25 10:19:24 +02:00
|
|
|
$stmtMemeAdd->bind_param('issi', $_SESSION['ID'], htmlspecialchars($title), htmlspecialchars($memeText), $imageID);
|
2024-04-26 01:17:49 +02:00
|
|
|
if ($stmtMemeAdd->execute() && $stmtMemeAdd->affected_rows > 0) {
|
2024-04-25 22:55:00 +02:00
|
|
|
$output["Status"] = "Success";
|
2024-04-25 23:16:13 +02:00
|
|
|
$output["Meme"] = "Funny";
|
2024-04-25 22:55:00 +02:00
|
|
|
}
|
2024-04-11 10:36:40 +02:00
|
|
|
}
|
2024-04-25 22:53:14 +02:00
|
|
|
return $output;
|
2024-04-11 10:36:40 +02:00
|
|
|
}
|
|
|
|
|
2024-04-26 09:46:10 +02:00
|
|
|
function renderMeme(int $id, int $authorId, string $title, string $textContent, string $createdAt, string $filePath, string $userNickname, string $meme_template): string
|
2024-04-25 09:40:21 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
$meme_out = str_replace('__TEMPLATE_MEME_TITLE__', htmlspecialchars($title), $meme_template);
|
|
|
|
$meme_out = str_replace('__TEMPLATE_MEME_AUTHOR__', htmlspecialchars($userNickname), $meme_out);
|
|
|
|
$meme_out = str_replace('__TEMPLATE_MEME_DATE__', htmlspecialchars($createdAt), $meme_out);
|
2024-04-25 23:42:39 +02:00
|
|
|
$meme_out = str_replace('__TEMPLATE_MEME_IMAGE__', '/' . htmlspecialchars($filePath), $meme_out);
|
2024-04-26 09:46:10 +02:00
|
|
|
$meme_out = str_replace('__TEMPLATE_MEME_DELETE_BUTTON__', (isModerator() || $_SESSION['ID'] == $authorId) ? "<button onclick=\"deleteMeme($id);\"><i class='ri-delete-bin-line'></i></button>" : '', $meme_out);
|
2024-04-26 01:17:49 +02:00
|
|
|
|
2024-04-27 10:30:01 +02:00
|
|
|
$meme_votes = calculateNetVotes($id);
|
|
|
|
$meme_upvote = isLoggedIn() ? "<button onclick=\"voteMeme($id, true);\"> <i class=\"ri-arrow-up-line\"></i></button>" : '';
|
|
|
|
$meme_downvote = isLoggedIn() ? "<button onclick=\"voteMeme($id, false);\"> <i class=\"ri-arrow-down-line\"></i></button>" : '';
|
|
|
|
|
|
|
|
$meme_out = str_replace('__TEMPLATE_MEME_VOTES_NUMBER__', $meme_votes, $meme_out);
|
|
|
|
$meme_out = str_replace('__TEMPLATE_MEME_UPVOTE__', $meme_upvote, $meme_out);
|
|
|
|
$meme_out = str_replace('__TEMPLATE_MEME_DOWNVOTE__', $meme_downvote, $meme_out);
|
|
|
|
$meme_out = str_replace('__TEMPLATE_MEME_ID__', $id, $meme_out);
|
2024-04-25 09:40:21 +02:00
|
|
|
|
|
|
|
return str_replace('__TEMPLATE_MEME_TEXT__', htmlspecialchars($textContent), $meme_out);
|
|
|
|
}
|
|
|
|
|
2024-04-25 09:04:10 +02:00
|
|
|
function renderMemeGallery(): string
|
2024-04-11 10:36:40 +02:00
|
|
|
{
|
2024-04-25 09:04:10 +02:00
|
|
|
global $mysqli;
|
2024-04-25 09:40:21 +02:00
|
|
|
global $routerConfig;
|
2024-04-26 09:46:10 +02:00
|
|
|
$stmtlist = $mysqli->prepare('SELECT Memes.ID, Memes.Title, Memes.TextContent, Memes.CreatedAt, Memes.AuthorID, Files.Path, Files.Type, Users.Nickname FROM Memes INNER JOIN Users ON Memes.AuthorID = Users.ID INNER JOIN Files ON Memes.FileID = Files.ID');
|
2024-04-25 09:04:10 +02:00
|
|
|
|
|
|
|
// Execute the prepared statement
|
|
|
|
$memeID = 0;
|
2024-04-26 09:46:10 +02:00
|
|
|
$authorID = 0;
|
2024-04-25 09:04:10 +02:00
|
|
|
$title = "";
|
|
|
|
$textContent = "";
|
|
|
|
$filePath = "";
|
|
|
|
$fileType = "";
|
|
|
|
$userNickname = "";
|
|
|
|
$createdAt = "";
|
|
|
|
// Bind the result variables
|
2024-04-26 09:46:10 +02:00
|
|
|
$stmtlist->bind_result($memeID, $title, $textContent, $createdAt, $authorID, $filePath, $fileType, $userNickname);
|
2024-04-25 23:40:27 +02:00
|
|
|
$stmtlist->execute();
|
2024-04-25 09:04:10 +02:00
|
|
|
|
2024-04-25 09:45:28 +02:00
|
|
|
$meme_gallery_template = file_get_contents($routerConfig['template_dir'] . 'meme_gallery.html');
|
2024-04-25 09:04:10 +02:00
|
|
|
|
2024-04-25 09:40:21 +02:00
|
|
|
// Fetch the results
|
|
|
|
$memes_out = '';
|
2024-04-26 20:24:09 +02:00
|
|
|
$meme_template = file_get_contents($routerConfig['template_dir'] . "meme.html");
|
2024-04-27 10:32:07 +02:00
|
|
|
$stmtlist->store_result();
|
2024-04-25 09:40:21 +02:00
|
|
|
while ($stmtlist->fetch()) {
|
2024-04-25 23:42:07 +02:00
|
|
|
if (str_starts_with($fileType, 'image')) {
|
2024-04-26 20:24:09 +02:00
|
|
|
$memes_out .= renderMeme($memeID, $authorID, $title, $textContent, $createdAt, $filePath, $userNickname, $meme_template);
|
2024-04-25 09:40:21 +02:00
|
|
|
}
|
2024-04-25 09:04:10 +02:00
|
|
|
}
|
2024-04-26 20:24:09 +02:00
|
|
|
$meme_add = isLoggedIn() ? file_get_contents($routerConfig['template_dir'] . 'meme_add.html') : '';
|
2024-04-25 09:40:21 +02:00
|
|
|
$meme_gallery_out = str_replace('__TEMPLATE_MEMES_HERE__', $memes_out, $meme_gallery_template);
|
2024-04-26 20:24:09 +02:00
|
|
|
$meme_gallery_out = str_replace('__TEMPLATE_MEME_ADD__', $meme_add, $meme_gallery_out);
|
2024-04-25 09:04:10 +02:00
|
|
|
|
|
|
|
// Close the statement
|
|
|
|
$stmtlist->close();
|
2024-04-25 09:40:21 +02:00
|
|
|
return $meme_gallery_out;
|
2024-04-26 01:17:49 +02:00
|
|
|
}
|
|
|
|
|
2024-04-27 10:30:01 +02:00
|
|
|
function deleteMeme(int $memeID): array
|
2024-04-26 01:17:49 +02:00
|
|
|
{
|
|
|
|
global $mysqli;
|
|
|
|
$out = ["Status" => "Fail"];
|
|
|
|
if (isLoggedIn()) {
|
2024-04-26 10:52:11 +02:00
|
|
|
$query = !isModerator() ? 'DELETE FROM Memes WHERE ID = ? AND AuthorID = ?' : 'DELETE FROM Memes WHERE ID = ?';
|
2024-04-26 01:17:49 +02:00
|
|
|
$stmtDelete = $mysqli->prepare($query);
|
2024-04-26 10:52:11 +02:00
|
|
|
if (!isModerator()) {
|
2024-04-27 10:30:01 +02:00
|
|
|
$stmtDelete->bind_param('ii', $memeID, $_SESSION['ID']);
|
2024-04-26 01:17:49 +02:00
|
|
|
} else {
|
2024-04-27 10:30:01 +02:00
|
|
|
$stmtDelete->bind_param('i', $memeID);
|
2024-04-26 01:17:49 +02:00
|
|
|
}
|
|
|
|
$stmtDelete->execute();
|
|
|
|
if ($stmtDelete->affected_rows > 0) {
|
|
|
|
$out['Status'] = 'Success';
|
|
|
|
}
|
2024-04-27 10:30:01 +02:00
|
|
|
$stmtDelete->close();
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
|
|
|
function voteMeme(int $memeID, bool $isUpvote): array
|
|
|
|
{
|
|
|
|
global $mysqli;
|
|
|
|
$out = ["Status" => "Fail"];
|
|
|
|
$vote = $isUpvote ? 1 : 0;
|
|
|
|
$memeVoteConn = $mysqli->prepare('INSERT INTO MemeVotes (MemeID, UserID, isUpvote) VALUES (?, ?, ?) ON DUPLICATE KEY UPDATE isUpvote = VALUES(isUpvote)');
|
|
|
|
$memeVoteConn->bind_param('iii', $memeID, $_SESSION['ID'], $vote);
|
|
|
|
$memeVoteConn->execute();
|
|
|
|
if ($memeVoteConn->affected_rows > 0) {
|
|
|
|
$out['Status'] = 'Success';
|
2024-04-26 01:17:49 +02:00
|
|
|
}
|
2024-04-27 10:30:01 +02:00
|
|
|
$memeVoteConn->close();
|
2024-04-26 01:17:49 +02:00
|
|
|
return $out;
|
2024-04-27 10:30:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function calculateNetVotes(int $memeID): int
|
|
|
|
{
|
|
|
|
global $mysqli;
|
|
|
|
|
|
|
|
$query = 'SELECT isUpvote FROM MemeVotes WHERE MemeID = ?';
|
|
|
|
$stmt = $mysqli->prepare($query);
|
|
|
|
$stmt->bind_param('i', $memeID);
|
|
|
|
$stmt->execute();
|
|
|
|
$result = $stmt->get_result();
|
|
|
|
|
|
|
|
$netVotes = 0;
|
|
|
|
while ($row = $result->fetch_assoc()) {
|
|
|
|
$netVotes += ($row['isUpvote'] == 1) ? 1 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$stmt->close();
|
|
|
|
|
|
|
|
return $netVotes;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getMemeVotes(int $memeID): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
"Status" => "Success",
|
|
|
|
"NetVotes" => calculateNetVotes($memeID)
|
|
|
|
];
|
2024-04-11 10:36:40 +02:00
|
|
|
}
|