2011-11-26 15:47:28 +00:00
|
|
|
<?php
|
|
|
|
namespace wcf\data\chat\room;
|
2012-05-19 19:25:50 +00:00
|
|
|
use \wcf\data\chat\suspension\ChatSuspension;
|
2011-11-26 16:37:46 +00:00
|
|
|
use \wcf\system\cache\CacheHandler;
|
2012-03-01 21:17:40 +00:00
|
|
|
use \wcf\system\WCF;
|
2011-11-26 15:47:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a chat room.
|
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
2012-01-28 16:50:33 +00:00
|
|
|
* @copyright 2010-2012 Tim Düsterhus
|
2011-11-26 15:47:28 +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-26 15:47:28 +00:00
|
|
|
* @subpackage data.chat.room
|
|
|
|
*/
|
2011-11-26 16:56:51 +00:00
|
|
|
class ChatRoom extends \wcf\data\DatabaseObject implements \wcf\system\request\IRouteController {
|
2011-11-26 15:47:28 +00:00
|
|
|
/**
|
2012-02-26 16:55:44 +00:00
|
|
|
* @see \wcf\data\DatabaseObject::$databaseTableName
|
2011-11-26 15:47:28 +00:00
|
|
|
*/
|
|
|
|
protected static $databaseTableName = 'chat_room';
|
|
|
|
|
|
|
|
/**
|
2012-02-26 16:55:44 +00:00
|
|
|
* @see \wcf\data\DatabaseObject::$databaseTableIndexName
|
2011-11-26 15:47:28 +00:00
|
|
|
*/
|
|
|
|
protected static $databaseTableIndexName = 'roomID';
|
2012-03-22 17:45:36 +00:00
|
|
|
|
2011-11-26 15:47:28 +00:00
|
|
|
/**
|
|
|
|
* Caches rooms.
|
|
|
|
*
|
|
|
|
* @var array<wcf\data\chat\room\ChatRoom>
|
|
|
|
*/
|
|
|
|
protected static $cache = null;
|
|
|
|
|
2012-03-01 21:11:20 +00:00
|
|
|
/**
|
|
|
|
* @see \wcf\data\chat\room\ChatRoom::getTitle();
|
|
|
|
*/
|
|
|
|
public function __toString() {
|
|
|
|
return $this->getTitle();
|
|
|
|
}
|
|
|
|
|
2012-03-24 20:47:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether the user is allowed to enter the room.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function canEnter() {
|
|
|
|
$ph = \wcf\system\chat\permission\ChatPermissionHandler::getInstance();
|
2012-05-19 19:25:50 +00:00
|
|
|
$suspensions = ChatSuspension::getSuspensionsForUser();
|
2012-03-24 20:47:03 +00:00
|
|
|
|
2012-05-19 19:25:50 +00:00
|
|
|
$canEnter = $ph->getPermission($this, 'user.canEnter');
|
|
|
|
if (isset($suspensions[$this->roomID][ChatSuspension::TYPE_BAN])) {
|
|
|
|
if ($suspensions[$this->roomID][ChatSuspension::TYPE_BAN]['time'] > TIME_NOW) {
|
|
|
|
$canEnter = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $canEnter || $ph->getPermission($this, 'mod.canAlwaysEnter');
|
2012-03-24 20:47:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether the user is allowed to write messages in this room.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function canWrite() {
|
|
|
|
$ph = \wcf\system\chat\permission\ChatPermissionHandler::getInstance();
|
2012-05-19 19:25:50 +00:00
|
|
|
$suspensions = ChatSuspension::getSuspensionsForUser();
|
2012-03-24 20:47:03 +00:00
|
|
|
|
2012-05-19 19:25:50 +00:00
|
|
|
$canWrite = $ph->getPermission($this, 'user.canWrite');
|
|
|
|
if (isset($suspensions[$this->roomID][ChatSuspension::TYPE_MUTE])) {
|
|
|
|
if ($suspensions[$this->roomID][ChatSuspension::TYPE_MUTE]['time'] > TIME_NOW) {
|
|
|
|
$canWrite = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $canWrite || $ph->getPermission($this, 'mod.canAlwaysWrite');
|
2012-03-24 20:47:03 +00:00
|
|
|
}
|
|
|
|
|
2012-03-01 21:11:20 +00:00
|
|
|
/**
|
|
|
|
* Returns the number of users currently active in this room.
|
|
|
|
*
|
|
|
|
* @return integer
|
|
|
|
*/
|
|
|
|
public function countUsers() {
|
|
|
|
$sql = "SELECT
|
2012-03-22 17:45:36 +00:00
|
|
|
COUNT(*)
|
2012-03-01 21:11:20 +00:00
|
|
|
FROM
|
|
|
|
wcf".WCF_N."_user_storage
|
|
|
|
WHERE
|
2012-03-22 17:45:36 +00:00
|
|
|
field = ?
|
|
|
|
AND packageID = ?
|
|
|
|
AND fieldValue = ?";
|
2012-03-01 21:11:20 +00:00
|
|
|
$stmt = WCF::getDB()->prepareStatement($sql);
|
2012-03-22 17:45:36 +00:00
|
|
|
$stmt->execute(array('roomID', \wcf\util\ChatUtil::getPackageID(), $this->roomID));
|
2012-03-01 21:11:20 +00:00
|
|
|
|
2012-03-22 17:45:36 +00:00
|
|
|
return $stmt->fetchColumn();
|
2012-03-01 21:11:20 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 15:47:28 +00:00
|
|
|
/**
|
|
|
|
* Loads the room cache.
|
|
|
|
*/
|
2011-11-26 16:37:46 +00:00
|
|
|
public static function getCache() {
|
|
|
|
if (self::$cache === null) {
|
|
|
|
CacheHandler::getInstance()->addResource(
|
|
|
|
'chatrooms',
|
|
|
|
WCF_DIR.'cache/cache.chatrooms.php',
|
2012-03-01 21:11:20 +00:00
|
|
|
'\wcf\system\cache\builder\ChatRoomCacheBuilder'
|
2011-11-26 16:37:46 +00:00
|
|
|
);
|
|
|
|
self::$cache = CacheHandler::getInstance()->get('chatrooms');
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$cache;
|
2011-11-26 15:47:28 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 16:56:51 +00:00
|
|
|
/**
|
2012-03-01 21:11:20 +00:00
|
|
|
* Returns the ID of this chat-room.
|
|
|
|
*
|
|
|
|
* @see \wcf\system\request\IRouteController
|
2011-11-26 16:56:51 +00:00
|
|
|
*/
|
2012-03-01 21:11:20 +00:00
|
|
|
public function getID() {
|
|
|
|
return $this->roomID;
|
2011-11-26 16:56:51 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 15:47:28 +00:00
|
|
|
/**
|
|
|
|
* Returns the name of this chat-room.
|
|
|
|
*
|
2011-11-26 16:56:51 +00:00
|
|
|
* @see \wcf\system\request\IRouteController
|
2011-11-26 15:47:28 +00:00
|
|
|
*/
|
2011-11-26 16:56:51 +00:00
|
|
|
public function getTitle() {
|
2011-12-11 22:29:43 +00:00
|
|
|
return \wcf\system\WCF::getLanguage()->get($this->title);
|
2011-11-26 15:47:28 +00:00
|
|
|
}
|
2011-11-26 16:56:51 +00:00
|
|
|
|
|
|
|
/**
|
2012-03-01 21:11:20 +00:00
|
|
|
* Returns the users that are currently active in this room.
|
|
|
|
*
|
|
|
|
* @return array<\wcf\data\user\User>
|
2011-11-26 16:56:51 +00:00
|
|
|
*/
|
2012-03-01 21:11:20 +00:00
|
|
|
public function getUsers() {
|
2012-03-08 21:07:46 +00:00
|
|
|
$packageID = \wcf\util\ChatUtil::getPackageID();
|
2012-03-22 17:45:36 +00:00
|
|
|
|
2012-03-01 21:11:20 +00:00
|
|
|
$sql = "SELECT
|
|
|
|
userID
|
|
|
|
FROM
|
|
|
|
wcf".WCF_N."_user_storage
|
|
|
|
WHERE
|
2012-03-22 17:45:36 +00:00
|
|
|
field = ?
|
|
|
|
AND packageID = ?
|
|
|
|
AND fieldValue = ?";
|
2012-03-01 21:11:20 +00:00
|
|
|
$stmt = WCF::getDB()->prepareStatement($sql);
|
2012-03-22 17:45:36 +00:00
|
|
|
$stmt->execute(array('roomID', $packageID, $this->roomID));
|
2012-03-01 21:11:20 +00:00
|
|
|
$userIDs = array();
|
2012-03-22 17:45:36 +00:00
|
|
|
while ($userIDs[] = $stmt->fetchColumn());
|
|
|
|
|
2012-05-19 18:49:50 +00:00
|
|
|
if (!count($userIDs)) return array();
|
2012-03-22 17:45:36 +00:00
|
|
|
|
2012-03-01 21:11:20 +00:00
|
|
|
$sql = "SELECT
|
2012-03-22 17:45:36 +00:00
|
|
|
u.*,
|
|
|
|
s.fieldValue AS awayStatus
|
2012-03-01 21:11:20 +00:00
|
|
|
FROM
|
2012-03-22 17:45:36 +00:00
|
|
|
wcf".WCF_N."_user u
|
|
|
|
LEFT JOIN
|
|
|
|
wcf".WCF_N."_user_storage s
|
|
|
|
ON (
|
|
|
|
u.userID = s.userID
|
2012-05-19 18:49:50 +00:00
|
|
|
AND s.field = ?
|
|
|
|
AND s.packageID = ?
|
2012-03-22 17:45:36 +00:00
|
|
|
)
|
2012-03-01 21:11:20 +00:00
|
|
|
WHERE
|
2012-05-19 18:49:50 +00:00
|
|
|
u.userID IN (".rtrim(str_repeat('?,', count($userIDs)), ',').")
|
2012-03-01 21:11:20 +00:00
|
|
|
ORDER BY
|
2012-03-22 17:45:36 +00:00
|
|
|
u.username ASC";
|
2012-03-01 21:11:20 +00:00
|
|
|
$stmt = WCF::getDB()->prepareStatement($sql);
|
2012-05-19 18:49:50 +00:00
|
|
|
array_unshift($userIDs, 'away', $packageID);
|
|
|
|
$stmt->execute($userIDs);
|
2012-03-22 17:45:36 +00:00
|
|
|
|
2012-03-01 21:11:20 +00:00
|
|
|
return $stmt->fetchObjects('\wcf\data\user\User');
|
2011-11-26 16:56:51 +00:00
|
|
|
}
|
2011-11-26 15:47:28 +00:00
|
|
|
}
|