php-gallery/index.php

85 lines
2.2 KiB
PHP
Raw Normal View History

2022-07-20 23:06:21 +00:00
<!DOCTYPE html>
<html>
2022-08-11 18:28:52 +00:00
2022-09-06 16:14:43 +00:00
<head>
<?php include __DIR__."/ui/header.php"; ?>
2022-07-20 23:06:21 +00:00
</head>
2022-09-06 16:14:43 +00:00
2022-07-20 23:06:21 +00:00
<body>
2022-08-11 18:28:52 +00:00
<?php
2022-09-06 16:14:43 +00:00
include __DIR__."/ui/required.php";
include __DIR__."/ui/nav.php";
2022-08-11 18:28:52 +00:00
?>
<script>
if (params.del == "true") {
sniffleAdd("Image Deleted", "Successfully deleted image: <?php echo $_GET['id']; ?>", "var(--green)", "<?php echo $root_dir ?>assets/icons/trash.svg");
}
</script>
<div class="info-text">
<?php
// Set time for message
$time = date("H");
$timezone = date("e");
if ($time < "12") {
$time_welc = "Good morning";
} else if ($time >= "12" && $time < "17") {
$time_welc = "Good afternoon";
} else if ($time >= "17" && $time < "19") {
$time_welc = "Good evening";
} else if ($time >= "19") {
$time_welc = "Good night";
}
// Welcome depending on if user is logged in or not
if (isset($_SESSION["username"])) {
echo "<h1>".$time_welc." ".$_SESSION['username']."!</h1>";
} else {
echo "<h1>".$time_welc."!</h1>";
}
// Random welcome message
2022-09-06 16:14:43 +00:00
$import_welcome = file_get_contents("default.json");
$import_decode = json_decode($import_welcome, true);
$welcome_message = $import_decode['welcome_msg'];
2022-08-11 18:28:52 +00:00
echo "<p>".$welcome_message[array_rand($welcome_message, 1)]."</p>";
?>
</div>
<div class="gallery-root flex-left">
<?php
// Reading images from table
$image_request = mysqli_query($conn, "SELECT * FROM swag_table 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'];
}
2022-08-14 16:43:54 +00:00
// Check for NSFW tag
if (str_contains($image['tags'], "nsfw")) {
$image_nsfw = "nsfw-blur";
2022-09-06 16:14:43 +00:00
$nsfw_warning = "<a href='image.php?id=".$image['id']."' class='nsfw-warning'><img class='svg' src='assets/icons/warning_red.svg'><span>NSFW</span></a>";
2022-08-14 16:43:54 +00:00
} else {
$image_nsfw = "";
2022-08-14 21:27:10 +00:00
$nsfw_warning = "";
2022-08-14 16:43:54 +00:00
}
2022-08-11 18:28:52 +00:00
// Image loading
echo "<div class='gallery-item'>";
2022-08-14 21:27:10 +00:00
echo $nsfw_warning;
2022-08-14 16:43:54 +00:00
echo "<a href='image.php?id=".$image['id']."'><img class='gallery-image ".$image_nsfw."' loading='lazy' src='".$image_path."' id='".$image['id']."'></a>";
2022-08-11 18:28:52 +00:00
echo "</div>";
}
?>
</div>
2022-09-06 16:14:43 +00:00
<?php include __DIR__."/ui/footer.php"; ?>
2022-07-20 23:06:21 +00:00
</body>
</html>