2011-11-27 19:20:13 +00:00
|
|
|
<?php
|
|
|
|
namespace wcf\data\chat\room;
|
2012-02-04 20:57:39 +00:00
|
|
|
use \wcf\system\WCF;
|
2011-11-27 19:20:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides functions to edit chat rooms.
|
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
2012-01-28 16:50:33 +00:00
|
|
|
* @copyright 2010-2012 Tim Düsterhus
|
2011-11-27 19:20:13 +00:00
|
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
2012-03-12 16:18:15 +00:00
|
|
|
* @package be.bastelstu.wcf.chat
|
2011-11-27 19:20:13 +00:00
|
|
|
* @subpackage data.chat.room
|
|
|
|
*/
|
2011-12-13 21:18:04 +00:00
|
|
|
class ChatRoomEditor extends \wcf\data\DatabaseObjectEditor implements \wcf\data\IEditableCachedObject {
|
2011-11-27 19:20:13 +00:00
|
|
|
/**
|
2012-02-26 16:55:44 +00:00
|
|
|
* @see \wcf\data\DatabaseObjectDecorator::$baseClass
|
2011-11-27 19:20:13 +00:00
|
|
|
*/
|
|
|
|
protected static $baseClass = '\wcf\data\chat\room\ChatRoom';
|
|
|
|
|
2012-06-04 19:10:03 +00:00
|
|
|
|
2012-02-04 20:57:39 +00:00
|
|
|
/**
|
2012-02-26 16:55:44 +00:00
|
|
|
* @see \wcf\data\DatabaseObjectEditor::deleteAll()
|
2012-02-04 20:57:39 +00:00
|
|
|
*/
|
|
|
|
public static function deleteAll(array $objectIDs = array()) {
|
|
|
|
WCF::getDB()->beginTransaction();
|
|
|
|
foreach ($objectIDs as $objectID) {
|
2013-01-09 16:35:30 +00:00
|
|
|
\wcf\system\language\I18nHandler::getInstance()->remove('wcf.chat.room.title'.$objectID);
|
|
|
|
\wcf\system\language\I18nHandler::getInstance()->remove('wcf.chat.room.topic'.$objectID);
|
2012-02-04 20:57:39 +00:00
|
|
|
}
|
|
|
|
|
2012-04-16 20:12:44 +00:00
|
|
|
$sql = "SELECT
|
|
|
|
position
|
|
|
|
FROM
|
|
|
|
wcf".WCF_N."_chat_room
|
|
|
|
WHERE
|
|
|
|
roomID = ?
|
|
|
|
FOR UPDATE";
|
|
|
|
$select = WCF::getDB()->prepareStatement($sql);
|
|
|
|
|
|
|
|
$sql = "UPDATE
|
|
|
|
wcf".WCF_N."_chat_room
|
|
|
|
SET
|
|
|
|
position = position - 1
|
|
|
|
WHERE
|
|
|
|
position > ?";
|
|
|
|
$update = WCF::getDB()->prepareStatement($sql);
|
|
|
|
|
|
|
|
foreach ($objectIDs as $objectID) {
|
|
|
|
$select->execute(array($objectID));
|
|
|
|
$update->execute(array($select->fetchColumn()));
|
|
|
|
}
|
|
|
|
|
2012-03-22 15:26:52 +00:00
|
|
|
// The transaction is being committed in parent::deleteAll()
|
|
|
|
// The beginTransaction() call in there is simply ignored.
|
|
|
|
return parent::deleteAll($objectIDs);
|
2012-02-04 20:57:39 +00:00
|
|
|
}
|
2012-03-08 21:07:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clears the room cache.
|
|
|
|
*/
|
|
|
|
public static function resetCache() {
|
|
|
|
\wcf\system\cache\CacheHandler::getInstance()->clear(WCF_DIR.'cache', 'cache.chatrooms.php');
|
|
|
|
}
|
2011-11-27 19:20:13 +00:00
|
|
|
}
|