mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-11-01 14:20:07 +00:00
199 lines
5.0 KiB
PHP
199 lines
5.0 KiB
PHP
<?php
|
|
namespace wcf\data\chat\room;
|
|
use \wcf\data\chat\suspension\ChatSuspension;
|
|
use \wcf\system\cache\CacheHandler;
|
|
use \wcf\system\WCF;
|
|
|
|
/**
|
|
* Represents a chat room.
|
|
*
|
|
* @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 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<wcf\data\chat\room\ChatRoom>
|
|
*/
|
|
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(\wcf\data\user\User $user = null) {
|
|
if ($user === null) $user = WCF::getUser();
|
|
|
|
$ph = new \wcf\system\chat\permission\ChatPermissionHandler($user);
|
|
$suspensions = ChatSuspension::getSuspensionsForUser($user);
|
|
|
|
$canEnter = $ph->getPermission($this, 'user.canEnter');
|
|
// room suspension
|
|
if ($canEnter && isset($suspensions[$this->roomID][ChatSuspension::TYPE_BAN])) {
|
|
if ($suspensions[$this->roomID][ChatSuspension::TYPE_BAN]['time'] > TIME_NOW) {
|
|
$canEnter = false;
|
|
}
|
|
}
|
|
|
|
// global suspension
|
|
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(\wcf\data\user\User $user = null) {
|
|
if ($user === null) $user = WCF::getUser();
|
|
|
|
$ph = new \wcf\system\chat\permission\ChatPermissionHandler($user);
|
|
$suspensions = ChatSuspension::getSuspensionsForUser($user);
|
|
|
|
$canWrite = $ph->getPermission($this, 'user.canWrite');
|
|
// room suspension
|
|
if ($canWrite && isset($suspensions[$this->roomID][ChatSuspension::TYPE_MUTE])) {
|
|
if ($suspensions[$this->roomID][ChatSuspension::TYPE_MUTE]['time'] > TIME_NOW) {
|
|
$canWrite = false;
|
|
}
|
|
}
|
|
|
|
// global suspension
|
|
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.*,
|
|
st.fieldValue AS awayStatus
|
|
FROM
|
|
wcf".WCF_N."_user u
|
|
LEFT JOIN
|
|
wcf".WCF_N."_user_storage st
|
|
ON (
|
|
u.userID = st.userID
|
|
AND st.field = ?
|
|
AND st.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');
|
|
}
|
|
}
|