1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/data/room/Room.class.php

188 lines
5.1 KiB
PHP
Raw Normal View History

2011-11-26 15:47:28 +00:00
<?php
2013-01-19 19:36:40 +00:00
namespace chat\data\room;
use \chat\data\suspension\Suspension;
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
2013-01-19 19:36:40 +00:00
* @copyright 2010-2013 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>
2013-01-19 19:36:40 +00:00
* @package be.bastelstu.chat
* @subpackage data.room
2011-11-26 15:47:28 +00:00
*/
class Room extends \chat\data\CHATDatabaseObject implements \wcf\system\request\IRouteController {
2011-11-26 15:47:28 +00:00
/**
* @see \wcf\data\DatabaseObject::$databaseTableName
2011-11-26 15:47:28 +00:00
*/
2013-01-19 19:36:40 +00:00
protected static $databaseTableName = 'room';
2011-11-26 15:47:28 +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
/**
* cached users
*
* @var array<\wcf\data\user\UserProfile>
*/
protected static $users = null;
/**
* @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.
2012-10-20 14:23:00 +00:00
*
* @param \wcf\data\user\User $user
2012-03-24 20:47:03 +00:00
* @return boolean
*/
public function canEnter(\wcf\data\user\User $user = null) {
if ($user === null) $user = WCF::getUser();
if (!$user->userID) return false;
2013-06-22 15:57:33 +00:00
$user = new \wcf\data\user\UserProfile($user);
2013-06-22 15:57:33 +00:00
if ($user->getPermission('admin.chat.canManageSuspensions')) return true;
if ($user->getPermission('mod.chat.canGban')) return true;
$ph = new \chat\system\permission\PermissionHandler($user->getDecoratedObject());
if ($ph->getPermission($this, 'mod.canAlwaysEnter')) return true;
if ($ph->getPermission($this, 'mod.canBan')) return true;
2012-03-24 20:47:03 +00:00
2013-06-22 16:28:50 +00:00
if (!$ph->getPermission($this, 'user.canEnter')) return false;
2013-06-22 15:57:33 +00:00
$suspensions = Suspension::getSuspensionsForUser($user->getDecoratedObject());
2012-06-04 19:10:03 +00:00
// room suspension
2013-06-22 16:28:50 +00:00
if (isset($suspensions[$this->roomID][Suspension::TYPE_BAN])) {
2013-05-23 23:21:46 +00:00
if ($suspensions[$this->roomID][Suspension::TYPE_BAN]->isValid()) {
2013-06-22 16:28:50 +00:00
return false;
2012-05-19 19:25:50 +00:00
}
}
2012-06-04 19:10:03 +00:00
// global suspension
2013-06-22 16:28:50 +00:00
if (isset($suspensions[null][Suspension::TYPE_BAN])) {
2013-05-23 23:21:46 +00:00
if ($suspensions[null][Suspension::TYPE_BAN]->isValid()) {
2013-06-22 16:28:50 +00:00
return false;
}
}
2013-06-22 16:28:50 +00:00
return true;
2012-03-24 20:47:03 +00:00
}
/**
* Returns whether the user is allowed to write messages in this room.
*
2012-10-20 14:23:00 +00:00
* @param \wcf\data\user\User $user
2012-03-24 20:47:03 +00:00
* @return boolean
*/
public function canWrite(\wcf\data\user\User $user = null) {
if ($user === null) $user = WCF::getUser();
if (!$user->userID) return false;
2013-06-22 15:57:33 +00:00
$user = new \wcf\data\user\UserProfile($user);
if ($user->getPermission('admin.chat.canManageSuspensions')) return true;
if ($user->getPermission('mod.chat.canGmute')) return true;
$ph = new \chat\system\permission\PermissionHandler($user->getDecoratedObject());
if ($ph->getPermission($this, 'mod.canAlwaysWrite')) return true;
if ($ph->getPermission($this, 'mod.canMute')) return true;
2013-06-22 16:28:50 +00:00
if (!$ph->getPermission($this, 'user.canWrite')) return false;
2012-03-24 20:47:03 +00:00
2013-06-22 15:57:33 +00:00
$suspensions = Suspension::getSuspensionsForUser($user->getDecoratedObject());
2012-06-04 19:10:03 +00:00
// room suspension
2013-06-22 16:28:50 +00:00
if (isset($suspensions[$this->roomID][Suspension::TYPE_MUTE])) {
2013-05-23 23:21:46 +00:00
if ($suspensions[$this->roomID][Suspension::TYPE_MUTE]->isValid()) {
2013-06-22 16:28:50 +00:00
return false;
2012-05-19 19:25:50 +00:00
}
}
2012-06-04 19:10:03 +00:00
// global suspension
2013-06-22 16:28:50 +00:00
if (isset($suspensions[null][Suspension::TYPE_MUTE])) {
2013-05-23 23:21:46 +00:00
if ($suspensions[null][Suspension::TYPE_MUTE]->isValid()) {
2013-06-22 16:28:50 +00:00
return false;
}
}
2012-05-19 19:25:50 +00:00
2013-06-22 16:28:50 +00:00
return true;
2012-03-24 20:47:03 +00:00
}
/**
* Returns the ID of this chatroom.
*
* @see \wcf\system\request\IRouteController
*/
public function getID() {
return $this->roomID;
}
2011-11-26 15:47:28 +00:00
/**
* Returns the name of this chatroom.
2011-11-26 15:47:28 +00:00
*
* @see \wcf\system\request\IRouteController
2011-11-26 15:47:28 +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
}
/**
* Returns the topic of this chat room
*
* @return string
*/
public function getTopic() {
return \wcf\system\WCF::getLanguage()->get($this->topic);
}
/**
* Returns the users that are currently active in this room.
*
* @return array<\wcf\data\user\UserProfile>
*/
public function getUsers() {
if (self::$users === null) {
$userList = new \wcf\data\user\UserProfileList();
$userList->getConditionBuilder()->add('user_table.chatRoomID IS NOT NULL', array());
$userList->readObjects();
$users = $userList->getObjects();
foreach ($users as $user) {
if (!isset(self::$users[$user->chatRoomID])) self::$users[$user->chatRoomID] = array();
self::$users[$user->chatRoomID][] = $user;
}
}
if (!isset(self::$users[$this->roomID])) self::$users[$this->roomID] = array();
2012-03-22 17:45:36 +00:00
return self::$users[$this->roomID];
}
2013-04-26 22:38:53 +00:00
/**
* Returns the users that "timed out".
*
* @return \wcf\data\user\UserList
*/
public static function getDeadUsers() {
2013-05-04 14:16:00 +00:00
if (\wcf\system\nodePush\NodePushHandler::getInstance()->isEnabled()) {
$time = TIME_NOW - 180;
2013-04-26 22:38:53 +00:00
}
else {
$time = TIME_NOW;
}
$userList = new \wcf\data\user\UserList();
$userList->getConditionBuilder()->add('user_table.chatRoomID IS NOT NULL', array());
$userList->getConditionBuilder()->add('user_table.chatLastActivity < ?', array($time - 30));
2013-04-26 22:38:53 +00:00
$userList->readObjects();
return $userList;
}
2011-11-26 15:47:28 +00:00
}