mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-11-01 14:20:07 +00:00
74 lines
2.0 KiB
PHP
74 lines
2.0 KiB
PHP
<?php
|
|
namespace wcf\data\chat\room;
|
|
use \wcf\system\WCF;
|
|
|
|
/**
|
|
* Provides functions to edit chat rooms.
|
|
*
|
|
* @author Tim Düsterhus
|
|
* @copyright 2010-2012 Tim Düsterhus
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
|
* @package be.bastelstu.wcf.chat
|
|
* @subpackage data.chat.room
|
|
*/
|
|
class ChatRoomEditor extends \wcf\data\DatabaseObjectEditor implements \wcf\data\IEditableCachedObject {
|
|
/**
|
|
* @see \wcf\data\DatabaseObjectDecorator::$baseClass
|
|
*/
|
|
protected static $baseClass = '\wcf\data\chat\room\ChatRoom';
|
|
|
|
|
|
/**
|
|
* @see \wcf\data\DatabaseObjectEditor::deleteAll()
|
|
*/
|
|
public static function deleteAll(array $objectIDs = array()) {
|
|
parent::deleteAll($objectIDs);
|
|
$packageID = \wcf\util\ChatUtil::getPackageID();
|
|
|
|
WCF::getDB()->beginTransaction();
|
|
foreach ($objectIDs as $objectID) {
|
|
\wcf\system\language\I18nHandler::getInstance()->remove('wcf.chat.room.title'.$objectID, $packageID);
|
|
\wcf\system\language\I18nHandler::getInstance()->remove('wcf.chat.room.topic'.$objectID, $packageID);
|
|
}
|
|
WCF::getDB()->commitTransaction();
|
|
|
|
return count($objectIDs);
|
|
}
|
|
|
|
/**
|
|
* Deletes temporary rooms that are unused.
|
|
*
|
|
* @return integer Number of deleted rooms
|
|
*/
|
|
public static function prune() {
|
|
$baseClass = self::$baseClass;
|
|
$sql = "SELECT
|
|
".$baseClass::getDatabaseTableIndexName()."
|
|
FROM
|
|
".$baseClass::getDatabaseTableName()."
|
|
WHERE
|
|
permanent = ?
|
|
AND roomID NOT IN(
|
|
SELECT
|
|
fieldValue AS roomID
|
|
FROM
|
|
wcf".WCF_N."_user_storage
|
|
WHERE
|
|
packageID = ?
|
|
AND field = ?)";
|
|
$stmt = \wcf\system\WCF::getDB()->prepareStatement($sql);
|
|
$stmt->execute(array(0, \wcf\util\ChatUtil::getPackageID(), 'roomID'));
|
|
$objectIDs = array();
|
|
|
|
while ($objectIDs[] = $stmt->fetchColumn());
|
|
return self::deleteAll($objectIDs);
|
|
}
|
|
|
|
/**
|
|
* Clears the room cache.
|
|
*/
|
|
public static function resetCache() {
|
|
\wcf\system\cache\CacheHandler::getInstance()->clear(WCF_DIR.'cache', 'cache.chatrooms.php');
|
|
}
|
|
}
|