mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-12 18:36:29 +00:00
42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<?
|
|
authorize();
|
|
|
|
if (!Bookmarks::can_bookmark($_GET['type'])) {
|
|
error(404);
|
|
}
|
|
|
|
$Type = $_GET['type'];
|
|
|
|
list($Table, $Col) = Bookmarks::bookmark_schema($Type);
|
|
|
|
if (!is_number($_GET['id'])) {
|
|
error(0);
|
|
}
|
|
$PageID = $_GET['id'];
|
|
|
|
$DB->query("
|
|
DELETE FROM $Table
|
|
WHERE UserID = $LoggedUser[ID]
|
|
AND $Col = $PageID");
|
|
$Cache->delete_value("bookmarks_{$Type}_$UserID");
|
|
|
|
if ($DB->affected_rows()) {
|
|
if ($Type === 'torrent') {
|
|
$Cache->delete_value("bookmarks_group_ids_$UserID");
|
|
} elseif ($Type === 'request') {
|
|
$DB->query("
|
|
SELECT UserID
|
|
FROM $Table
|
|
WHERE $Col = $PageID");
|
|
if ($DB->record_count() < 100) {
|
|
// Sphinx doesn't like huge MVA updates. Update sphinx_requests_delta
|
|
// and live with the <= 1 minute delay if we have more than 100 bookmarkers
|
|
$Bookmarkers = implode(',', $DB->collect('UserID'));
|
|
$SphQL = new SphinxqlQuery();
|
|
$SphQL->raw_query("UPDATE requests, requests_delta SET bookmarker = ($Bookmarkers) WHERE id = $PageID");
|
|
} else {
|
|
Requests::update_sphinx_requests($PageID);
|
|
}
|
|
}
|
|
}
|