mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
74 lines
1.9 KiB
PHP
74 lines
1.9 KiB
PHP
<?php
|
|
|
|
//require_once 'class_mass_user_torrents_editor.php';
|
|
|
|
/**
|
|
* This class helps with mass-editing bookmarked torrents.
|
|
*
|
|
* It can later be used for other bookmark tables.
|
|
*
|
|
*/
|
|
class MASS_USER_BOOKMARKS_EDITOR extends MASS_USER_TORRENTS_EDITOR
|
|
{
|
|
public function __construct ($Table = 'bookmarks_torrents')
|
|
{
|
|
parent::__construct();
|
|
$this->set_table($Table);
|
|
}
|
|
|
|
/**
|
|
* Runs a SQL query and clears the bookmarks_torrent_{$UserID}_full Cache key
|
|
*
|
|
* $Cache->delete_value didn't always work, but setting the key to null, did. (?)
|
|
*
|
|
* @param string $sql
|
|
*/
|
|
protected function query_and_clear_cache ($sql)
|
|
{
|
|
if (is_string($sql) && $this->DB->query($sql)) {
|
|
$this->Cache->cache_value('bookmarks_torrent_' . $this->UserID, null, 0);
|
|
$this->Cache->cache_value('bookmarks_torrent_' . $this->UserID . '_full', null, 0);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Uses (checkboxes) $_POST['remove'] to delete entries.
|
|
*
|
|
* Uses an IN() to match multiple items in one query.
|
|
*/
|
|
public function mass_remove () {
|
|
$SQL = array();
|
|
foreach ($_POST['remove'] as $GroupID => $K) {
|
|
if (is_number($GroupID))
|
|
$SQL[] = sprintf('%d', $GroupID);
|
|
}
|
|
|
|
if (!empty($SQL)) {
|
|
$SQL = sprintf('DELETE FROM %s WHERE UserID = %d AND GroupID IN (%s)',
|
|
$this->Table,
|
|
$this->UserID,
|
|
implode(', ', $SQL)
|
|
);
|
|
$this->query_and_clear_cache($SQL);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Uses $_POST['sort'] values to update the DB.
|
|
*/
|
|
public function mass_update () {
|
|
$SQL = array();
|
|
foreach ($_POST['sort'] as $GroupID => $Sort) {
|
|
if (is_number($Sort) && is_number($GroupID))
|
|
$SQL[] = sprintf('(%d, %d, %d)', $GroupID, $Sort, $this->UserID);
|
|
}
|
|
|
|
if (!empty($SQL)) {
|
|
$SQL = sprintf('INSERT INTO %s (GroupID, Sort, UserID) VALUES %s
|
|
ON DUPLICATE KEY UPDATE Sort = VALUES (Sort)',
|
|
$this->Table,
|
|
implode(', ', $SQL));
|
|
$this->query_and_clear_cache($SQL);
|
|
}
|
|
}
|
|
} |