Remove unused endpoint and set default marketplaceicons.state to 0

This commit is contained in:
2025-08-24 22:02:38 -07:00
parent 42490aaf37
commit 7ad4525b0e
2 changed files with 2 additions and 26 deletions

View File

@@ -3,7 +3,7 @@
-- https://www.phpmyadmin.net/ -- https://www.phpmyadmin.net/
-- --
-- Host: 127.0.0.1:3306 -- Host: 127.0.0.1:3306
-- Generation Time: Aug 25, 2025 at 06:58 AM -- Generation Time: Aug 25, 2025 at 07:02 AM
-- Server version: 11.8.3-MariaDB-ubu2404 -- Server version: 11.8.3-MariaDB-ubu2404
-- PHP Version: 8.1.33 -- PHP Version: 8.1.33
@@ -78,7 +78,7 @@ CREATE TABLE `marketplaceicons` (
`data` text NOT NULL, `data` text NOT NULL,
`hash` text NOT NULL, `hash` text NOT NULL,
`timestamp` bigint(20) NOT NULL, `timestamp` bigint(20) NOT NULL,
`state` tinyint(1) NOT NULL DEFAULT 1, `state` tinyint(1) NOT NULL DEFAULT 0,
`price` int(11) NOT NULL DEFAULT 0, `price` int(11) NOT NULL DEFAULT 0,
`name` text NOT NULL `name` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=COMPRESSED; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=COMPRESSED;

View File

@@ -1,24 +0,0 @@
<?php
require __DIR__ . '/../incl/util.php';
setPlainHeader();
checkClientDatabaseVersion();
$post = getPostData();
$birdicon = $post['birdicon'] ?? '';
$conn = newConnection();
$stmt = $conn->prepare("SELECT data FROM marketplaceicons WHERE birdicon = ?");
$stmt->bind_param("s", $birdicon);
$stmt->execute();
$result = $stmt->get_result();
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
echo encrypt(json_encode(["success" => true, "data" => $row['data']]));
} else {
echo encrypt(json_encode(["success" => false, "message" => "Icon not found"]));
}
$stmt->close();
$conn->close();