2022-09-23 17:26:15 +00:00
|
|
|
<?php
|
|
|
|
require_once __DIR__."/app/required.php";
|
|
|
|
|
|
|
|
use App\Account;
|
|
|
|
use App\Diff;
|
|
|
|
|
|
|
|
$user_info = new Account;
|
|
|
|
$diff = new Diff();
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<?php require_once __DIR__."/assets/ui/header.php"; ?>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<?php require_once __DIR__."/assets/ui/nav.php"; ?>
|
|
|
|
|
|
|
|
<div class="group-root">
|
|
|
|
<?php
|
|
|
|
if (!isset($_GET['id']) || empty($_GET['id'])) {
|
|
|
|
header("Location: index.php");
|
|
|
|
} elseif (isset($_GET['id'])) {
|
|
|
|
$sql = "SELECT * FROM groups WHERE id = ?";
|
|
|
|
|
|
|
|
if ($stmt = mysqli_prepare($conn, $sql)) {
|
|
|
|
// Bind variables to the prepared statement as parameters
|
|
|
|
mysqli_stmt_bind_param($stmt, "i", $param_group_id);
|
|
|
|
|
|
|
|
$param_group_id = $_GET['id'];
|
|
|
|
|
|
|
|
$stmt->execute();
|
|
|
|
$query = $stmt->get_result();
|
|
|
|
|
|
|
|
$group = mysqli_fetch_array($query);
|
|
|
|
|
2022-09-23 23:02:59 +00:00
|
|
|
$image_list = array_reverse(explode(" ", $group['image_list']));
|
2022-09-23 17:26:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<h2><?php echo $group['group_name']; ?></h2>
|
2022-09-23 23:02:59 +00:00
|
|
|
<?php
|
|
|
|
$user = $user_info->get_user_info($conn, $group['author']);
|
|
|
|
|
|
|
|
if (isset($user['username'])) {
|
|
|
|
echo "<p>By: ".$user['username']."</p>";
|
|
|
|
} else {
|
|
|
|
echo "<p>By: Deleted User</p>";
|
|
|
|
}
|
|
|
|
|
|
|
|
$upload_time = new DateTime($group['created_on']);
|
|
|
|
echo "<p id='updateTime'>Created at: ".$upload_time->format('d/m/Y H:i:s T')."</p>";
|
|
|
|
?>
|
|
|
|
<script>
|
|
|
|
// Updating time to Viewers local
|
|
|
|
var updateDate = new Date('<?php echo $upload_time->format('m/d/Y H:i:s T'); ?>');
|
|
|
|
var format = {year: 'numeric',
|
|
|
|
month: 'short',
|
|
|
|
day: 'numeric'
|
|
|
|
};
|
|
|
|
|
|
|
|
updateDate = updateDate.toLocaleDateString('en-GB', format);
|
|
|
|
|
|
|
|
$("#updateTime").html("Created at: "+updateDate);
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<p>Last Modified: <?php echo $diff->time($group['last_modified']); ?></p>
|
2022-09-23 17:26:15 +00:00
|
|
|
<?php
|
|
|
|
if ($_SESSION['id'] == $group['author'] || $user_info->is_admin($conn, $_SESSION['id'])) {
|
|
|
|
$privilaged = True;
|
|
|
|
} else {
|
|
|
|
$privilaged = False;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_GET['mode']) && $_GET['mode'] == "edit") {
|
|
|
|
if (!$privilaged) header("Location: group.php?id=".$_GET['id']);
|
|
|
|
|
2022-09-23 23:02:59 +00:00
|
|
|
echo "<button class='btn btn-bad'>Delete</button>";
|
|
|
|
|
|
|
|
?>
|
|
|
|
<button id='editTitle' class='btn btn-bad'>Update title</button>
|
|
|
|
<script>
|
|
|
|
$('#editTitle').click(function() {
|
|
|
|
var header = "Enter new Description/Alt";
|
|
|
|
var description = "Newwww photo group name!";
|
|
|
|
var actionBox = "<form id='titleForm' action='app/image/edit_description.php' method='POST'>\
|
|
|
|
<input id='titleText' class='btn btn-neutral' type='text' placeholder='New title'>\
|
|
|
|
<button id='titleSubmit' class='btn btn-bad' type='submit'><img class='svg' src='assets/icons/edit.svg'>Update title</button>\
|
|
|
|
</form>";
|
|
|
|
flyoutShow(header, description, actionBox);
|
|
|
|
|
|
|
|
$("#titleForm").submit(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
var titleText = $("#titleText").val();
|
|
|
|
var titleSubmit = $("#titleSubmit").val();
|
|
|
|
$("#sniffle").load("app/image/group.php", {
|
|
|
|
group_id: <?php echo $_GET['id']; ?>,
|
|
|
|
group_title: titleText,
|
|
|
|
title_submit: titleSubmit
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
2022-09-23 17:26:15 +00:00
|
|
|
|
|
|
|
$image_request = mysqli_query($conn, "SELECT * FROM images");
|
|
|
|
echo "<form id='groupForm'>";
|
|
|
|
while ($image = mysqli_fetch_array($image_request)) {
|
|
|
|
if (in_array($image['id'], $image_list)) {
|
|
|
|
echo "<input style='display: none;' type='checkbox' id='".$image['id']."' name='".$image['id']."' checked/>";
|
|
|
|
} else {
|
|
|
|
echo "<input style='display: none;' type='checkbox' id='".$image['id']."' name='".$image['id']."'/>";
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 23:02:59 +00:00
|
|
|
echo "<button id='groupSubmit' class='btn btn-good' type='submit'>Update Images</button></form>";
|
2022-09-23 17:26:15 +00:00
|
|
|
|
2022-09-23 23:02:59 +00:00
|
|
|
echo "<a href='group.php?id=".$_GET['id']."' class='btn btn-neutral'>Back</a>";
|
2022-09-23 17:26:15 +00:00
|
|
|
} else {
|
|
|
|
if ($privilaged) echo "<a href='group.php?id=".$_GET['id']."&mode=edit' class='btn btn-neutral'>Edit</a>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="gallery-root">
|
|
|
|
<?php
|
|
|
|
if (isset($_GET['mode']) && $_GET['mode'] == "edit") {
|
|
|
|
$image_request = mysqli_query($conn, "SELECT * FROM images ORDER BY id DESC");
|
|
|
|
|
|
|
|
while ($image = mysqli_fetch_array($image_request)) {
|
|
|
|
// Getting thumbnail
|
|
|
|
if (file_exists("images/thumbnails/".$image['imagename'])) {
|
|
|
|
$image_path = "images/thumbnails/".$image['imagename'];
|
|
|
|
} else {
|
|
|
|
$image_path = "images/".$image['imagename'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array($image['id'], $image_list)) {
|
|
|
|
echo "<div id='".$image['id']."' class='gallery-item selectedImage'>
|
|
|
|
<img class='gallery-image' loading='lazy' src='".$image_path."' id='".$image['id']."'>
|
|
|
|
</div>";
|
|
|
|
} else {
|
|
|
|
echo "<div id='".$image['id']."' class='gallery-item'>
|
|
|
|
<img class='gallery-image' loading='lazy' src='".$image_path."' id='".$image['id']."'>
|
|
|
|
</div>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<script>
|
|
|
|
$(".gallery-item").click(function() {
|
|
|
|
if (this.classList.contains("selectedImage")) {
|
|
|
|
deselect(this);
|
|
|
|
} else {
|
|
|
|
select(this);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function select(item) {
|
|
|
|
document.getElementById(item.id).checked = true;
|
|
|
|
|
|
|
|
item.classList.add("selectedImage");
|
|
|
|
}
|
|
|
|
function deselect(item) {
|
|
|
|
document.getElementById(item.id).checked = false;
|
|
|
|
|
|
|
|
item.classList.remove("selectedImage");
|
|
|
|
}
|
|
|
|
|
|
|
|
function getList() {
|
|
|
|
var checkedBoxes = document.querySelectorAll('input[type=checkbox]:checked');
|
|
|
|
var images = [];
|
|
|
|
|
|
|
|
checkedBoxes.forEach(element => {
|
|
|
|
images.push(element.id);
|
|
|
|
});
|
|
|
|
|
|
|
|
return images;
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#groupForm").submit(function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
var groupSubmit = $("#groupSubmit").val();
|
|
|
|
var images = getList();
|
|
|
|
|
|
|
|
$("#sniffle").load("app/image/group.php", {
|
|
|
|
group_images: images,
|
|
|
|
group_id: <?php echo $_GET['id']; ?>,
|
|
|
|
group_submit: groupSubmit
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
} else {
|
|
|
|
foreach ($image_list as $image) {
|
|
|
|
// Reading images from table
|
|
|
|
$image_request = mysqli_query($conn, "SELECT * FROM images WHERE id = ".$image);
|
|
|
|
|
|
|
|
while ($image = mysqli_fetch_array($image_request)) {
|
|
|
|
// Getting thumbnail
|
|
|
|
if (file_exists("images/thumbnails/".$image['imagename'])) {
|
|
|
|
$image_path = "images/thumbnails/".$image['imagename'];
|
|
|
|
} else {
|
|
|
|
$image_path = "images/".$image['imagename'];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for NSFW tag
|
|
|
|
if (str_contains($image['tags'], "nsfw")) {
|
|
|
|
echo "<div class='gallery-item'>
|
|
|
|
<a href='image.php?id=".$image['id']."' class='nsfw-warning'><img class='svg' src='assets/icons/warning_red.svg'><span>NSFW</span></a>
|
|
|
|
<a href='image.php?id=".$image['id']."'><img class='gallery-image nsfw-blur' loading='lazy' src='".$image_path."' id='".$image['id']."'></a>
|
|
|
|
</div>";
|
|
|
|
} else {
|
|
|
|
echo "<div class='gallery-item'>
|
|
|
|
<a href='image.php?id=".$image['id']."'><img class='gallery-image' loading='lazy' src='".$image_path."' id='".$image['id']."'></a>
|
|
|
|
</div>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php require_once __DIR__."/assets/ui/footer.php"; ?>
|
|
|
|
</body>
|
|
|
|
</html>
|