mirror of
https://github.com/pi-hole/web.git
synced 2025-12-26 21:46:22 +00:00
73 lines
2.1 KiB
PHP
73 lines
2.1 KiB
PHP
|
|
<?php
|
|
/* Pi-hole: A black hole for Internet advertisements
|
|
* (c) 2021 Pi-hole, LLC (https://pi-hole.net)
|
|
* Network-wide ad blocking via your own hardware.
|
|
*
|
|
* This file is copyright under the latest version of the EUPL.
|
|
* Please see LICENSE file for your rights under this license. */
|
|
|
|
require_once('auth.php');
|
|
|
|
// Authentication checks
|
|
if (!isset($api)) {
|
|
if (isset($_POST['token'])) {
|
|
check_cors();
|
|
check_csrf($_POST['token']);
|
|
} else {
|
|
log_and_die('Not allowed (login session invalid or expired, please relogin on the Pi-hole dashboard)!');
|
|
}
|
|
}
|
|
|
|
$reload = false;
|
|
|
|
require_once('func.php');
|
|
require_once('database.php');
|
|
$QueriesDB = getQueriesDBFilename();
|
|
$db = SQLite3_connect($QueriesDB, SQLITE3_OPEN_READWRITE);
|
|
|
|
function JSON_success($message = null)
|
|
{
|
|
header('Content-type: application/json');
|
|
echo json_encode(array('success' => true, 'message' => $message));
|
|
}
|
|
|
|
function JSON_error($message = null)
|
|
{
|
|
header('Content-type: application/json');
|
|
$response = array('success' => false, 'message' => $message);
|
|
if (isset($_POST['action'])) {
|
|
array_push($response, array('action' => $_POST['action']));
|
|
}
|
|
echo json_encode($response);
|
|
}
|
|
|
|
// Delete message identified by IDs
|
|
if ($_POST['action'] == 'delete_message' && isset($_POST['id'])) {
|
|
try {
|
|
$ids = json_decode($_POST['id']);
|
|
// Explot prevention: Ensure all entries in the ID array are integers
|
|
foreach($ids as $value) {
|
|
if (!is_numeric($value)) {
|
|
throw new Exception('Invalid payload: id');
|
|
}
|
|
}
|
|
$stmt = $db->prepare('DELETE FROM message WHERE id IN ('.implode(",",$ids).')');
|
|
if (!$stmt) {
|
|
throw new Exception('While preparing message statement: ' . $db->lastErrorMsg());
|
|
}
|
|
|
|
if (!$stmt->execute()) {
|
|
throw new Exception('While executing message statement: ' . $db->lastErrorMsg());
|
|
}
|
|
|
|
|
|
$reload = true;
|
|
JSON_success();
|
|
} catch (\Exception $ex) {
|
|
JSON_error($ex->getMessage());
|
|
}
|
|
} else {
|
|
log_and_die('Requested action not supported!');
|
|
}
|