* @package be.bastelstu.wcf.chat * @subpackage data.chat.room */ class ChatRoom extends \wcf\data\DatabaseObject implements \wcf\system\request\IRouteController { /** * @see \wcf\data\DatabaseObject::$databaseTableName */ protected static $databaseTableName = 'chat_room'; /** * @see \wcf\data\DatabaseObject::$databaseTableIndexName */ protected static $databaseTableIndexName = 'roomID'; /** * Caches rooms. * * @var array */ protected static $cache = null; /** * @see \wcf\data\chat\room\ChatRoom::getTitle(); */ public function __toString() { return $this->getTitle(); } /** * Returns whether the user is allowed to enter the room. * * @return boolean */ public function canEnter() { $ph = \wcf\system\chat\permission\ChatPermissionHandler::getInstance(); $suspensions = ChatSuspension::getSuspensionsForUser(); $canEnter = $ph->getPermission($this, 'user.canEnter'); if ($canEnter && isset($suspensions[$this->roomID][ChatSuspension::TYPE_BAN])) { if ($suspensions[$this->roomID][ChatSuspension::TYPE_BAN]['time'] > TIME_NOW) { $canEnter = false; } } if ($canEnter && isset($suspensions[null][ChatSuspension::TYPE_BAN])) { if ($suspensions[null][ChatSuspension::TYPE_BAN]['time'] > TIME_NOW) { $canEnter = false; } } return $canEnter || $ph->getPermission($this, 'mod.canAlwaysEnter'); } /** * Returns whether the user is allowed to write messages in this room. * * @return boolean */ public function canWrite() { $ph = \wcf\system\chat\permission\ChatPermissionHandler::getInstance(); $suspensions = ChatSuspension::getSuspensionsForUser(); $canWrite = $ph->getPermission($this, 'user.canWrite'); if ($canWrite && isset($suspensions[$this->roomID][ChatSuspension::TYPE_MUTE])) { if ($suspensions[$this->roomID][ChatSuspension::TYPE_MUTE]['time'] > TIME_NOW) { $canWrite = false; } } if ($canWrite && isset($suspensions[null][ChatSuspension::TYPE_MUTE])) { if ($suspensions[null][ChatSuspension::TYPE_MUTE]['time'] > TIME_NOW) { $canWrite = false; } } return $canWrite || $ph->getPermission($this, 'mod.canAlwaysWrite'); } /** * Returns the number of users currently active in this room. * * @return integer */ public function countUsers() { $sql = "SELECT COUNT(*) FROM wcf".WCF_N."_user_storage WHERE field = ? AND packageID = ? AND fieldValue = ?"; $stmt = WCF::getDB()->prepareStatement($sql); $stmt->execute(array('roomID', \wcf\util\ChatUtil::getPackageID(), $this->roomID)); return $stmt->fetchColumn(); } /** * Loads the room cache. */ public static function getCache() { if (self::$cache === null) { CacheHandler::getInstance()->addResource( 'chatrooms', WCF_DIR.'cache/cache.chatrooms.php', '\wcf\system\cache\builder\ChatRoomCacheBuilder' ); self::$cache = CacheHandler::getInstance()->get('chatrooms'); } return self::$cache; } /** * Returns the ID of this chat-room. * * @see \wcf\system\request\IRouteController */ public function getID() { return $this->roomID; } /** * Returns the name of this chat-room. * * @see \wcf\system\request\IRouteController */ public function getTitle() { return \wcf\system\WCF::getLanguage()->get($this->title); } /** * Returns the users that are currently active in this room. * * @return array<\wcf\data\user\User> */ public function getUsers() { $packageID = \wcf\util\ChatUtil::getPackageID(); $sql = "SELECT userID FROM wcf".WCF_N."_user_storage WHERE field = ? AND packageID = ? AND fieldValue = ?"; $stmt = WCF::getDB()->prepareStatement($sql); $stmt->execute(array('roomID', $packageID, $this->roomID)); $userIDs = array(); while ($userIDs[] = $stmt->fetchColumn()); if (!count($userIDs)) return array(); $sql = "SELECT u.*, s.fieldValue AS awayStatus FROM wcf".WCF_N."_user u LEFT JOIN wcf".WCF_N."_user_storage s ON ( u.userID = s.userID AND s.field = ? AND s.packageID = ? ) WHERE u.userID IN (".rtrim(str_repeat('?,', count($userIDs)), ',').") ORDER BY u.username ASC"; $stmt = WCF::getDB()->prepareStatement($sql); array_unshift($userIDs, 'away', $packageID); $stmt->execute($userIDs); return $stmt->fetchObjects('\wcf\data\user\User'); } }