From 1d29d12f235a68c43b0c0acf0d5c8fdb6e4bfeb1 Mon Sep 17 00:00:00 2001 From: Kablersalat Date: Sun, 23 Feb 2025 05:00:04 +0100 Subject: worst way to fix it but IDs wont break as badly anymore --- admin/tools/edit_database.php | 3 +- admin/tools/edit_row.php | 112 ++++++++++++++++++++++++++++++------------ 2 files changed, 82 insertions(+), 33 deletions(-) diff --git a/admin/tools/edit_database.php b/admin/tools/edit_database.php index bc5489a..3d03dbc 100644 --- a/admin/tools/edit_database.php +++ b/admin/tools/edit_database.php @@ -249,6 +249,7 @@ if (isset($_POST['reassign_ids'])) { + @@ -337,8 +338,6 @@ if (isset($_POST['reassign_ids'])) { - - diff --git a/admin/tools/edit_row.php b/admin/tools/edit_row.php index ceb59f3..3c93f6e 100644 --- a/admin/tools/edit_row.php +++ b/admin/tools/edit_row.php @@ -1,6 +1,11 @@ querySingle("SELECT sql FROM sqlite_master WHERE name='$table';"); + +// Check if the ID exists +$checkId = $db->querySingle('SELECT COUNT(*) FROM "' . $table . '" WHERE "id" = ' . (int) $id); +if ($checkId == 0) { + $idError = "No row found for ID $id in table $table."; +} + +// Fetch columns $columns = []; -$columnsResult = $db->query("PRAGMA table_info($table)"); +$columnsResult = $db->query('PRAGMA table_info("' . $table . '")'); while ($row = $columnsResult->fetchArray(SQLITE3_ASSOC)) { $columns[] = $row['name']; } -$stmt = $db->prepare("SELECT * FROM $table WHERE id = :id"); -$stmt->bindValue(':id', $id, SQLITE3_INTEGER); +// Fetch row +$stmt = $db->prepare('SELECT * FROM "' . $table . '" WHERE "id" = :id'); +$stmt->bindValue(':id', (int) $id, SQLITE3_INTEGER); $result = $stmt->execute(); -if ($result) { - $row = $result->fetchArray(SQLITE3_ASSOC); -} else { - $row = null; -} +$row = $result ? $result->fetchArray(SQLITE3_ASSOC) : null; -if (isset($_POST['save_changes'])) { +// Handle form submission +if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['save_changes'])) { foreach ($columns as $column) { + if (!isset($_POST[$column])) continue; + $value = $_POST[$column] ?: null; - if ($column == 'date' && empty($value)) { + if ($column === 'date' && empty($value)) { $value = date('Y-m-d H:i:s'); } - if ($table == 'content' && $column == 'custom_html') { - $value = $value ? 1 : 0; - } - $stmt = $db->prepare("UPDATE $table SET $column = :value WHERE id = :id"); - $stmt->bindValue(':value', $value, SQLITE3_TEXT); - $stmt->bindValue(':id', $id, SQLITE3_INTEGER); - $stmt->execute(); + + $updateStmt = $db->prepare('UPDATE "' . $table . '" SET "' . $column . '" = :value WHERE "id" = :id'); + $updateStmt->bindValue(':id', (int) $id, SQLITE3_INTEGER); + $updateStmt->bindValue(':value', $value, SQLITE3_TEXT); + $updateStmt->execute(); } - header("Location: edit_database.php?table=$table"); + header("Location: edit_database.php?table=" . urlencode($table)); + exit(); +} + +// Handle Fix IDs +if (isset($_POST['fix_ids'])) { + // Step 1: Create a backup table + $db->exec('CREATE TABLE IF NOT EXISTS "content_backup" AS SELECT * FROM "content"'); + + // Step 2: Add a new ID column with auto-increment + $db->exec('ALTER TABLE "content" RENAME TO "content_old"'); + $db->exec('CREATE TABLE "content" ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + page TEXT, + title TEXT, + content TEXT, + date TEXT, + parent TEXT + )'); + + // Step 3: Copy data and reassign IDs + $db->exec('INSERT INTO "content" (page, title, content, date, parent) + SELECT page, title, content, date, parent FROM "content_old"'); + + // Step 4: Remove old table + $db->exec('DROP TABLE "content_old"'); + + header("Location: edit_database.php?table=content&fix_success=1"); exit(); } ?> + @@ -63,18 +104,27 @@ if (isset($_POST['save_changes'])) {

Edit Row in Table:

-
- - - - - - - -
- - -
+ + +

+
+ +
+ +
+ + + + + + + +
+ + +
+ + Back to Table - + \ No newline at end of file -- cgit v1.2.3-70-g09d2