* @package be.bastelstu.chat * @subpackage system.chat.command.commands */ class MuteCommand extends \chat\system\command\AbstractRestrictedCommand { public $user = null; public $time = 0; public $suspensionAction = null; public $link = ''; public $room = null; public function __construct(\chat\system\command\CommandHandler $commandHandler) { parent::__construct($commandHandler); try { list($username, $modifier) = explode(',', $commandHandler->getParameters(), 2); $modifier = ChatUtil::timeModifier(\wcf\util\StringUtil::trim($modifier)); $this->time = strtotime($modifier, TIME_NOW); $this->time = min(max(-0x80000000, $this->time), 0x7FFFFFFF); } catch (\wcf\system\exception\SystemException $e) { throw new \chat\system\command\NotFoundException(); } $this->user = User::getUserByUsername($username); if (!$this->user->userID) throw new \chat\system\command\UserNotFoundException($username); $profile = \wcf\system\request\LinkHandler::getInstance()->getLink('User', array( 'object' => $this->user )); $this->link = "[url='".$profile."']".$this->user->username.'[/url]'; $this->executeAction(); $this->didInit(); } public function executeAction() { if ($suspension = suspension\Suspension::getSuspensionByUserRoomAndType($this->user, $this->room, suspension\Suspension::TYPE_MUTE)) { if ($suspension->time > $this->time) { throw new \wcf\system\exception\UserInputException('text', WCF::getLanguage()->get('wcf.chat.suspension.exists')); } $action = new suspension\SuspensionAction(array($suspension), 'delete'); $action->executeAction(); } $this->suspensionAction = new suspension\SuspensionAction(array(), 'create', array( 'data' => array( 'userID' => $this->user->userID, 'roomID' => ChatUtil::readUserData('roomID'), 'type' => suspension\Suspension::TYPE_MUTE, 'time' => $this->time ) )); $this->suspensionAction->executeAction(); } /** * @see \chat\system\command\IRestrictedChatCommand::checkPermission() */ public function checkPermission() { parent::checkPermission(); $this->room = $this->commandHandler->getRoom(); $ph = new \chat\system\permission\PermissionHandler(); if (!$ph->getPermission($this->room, 'mod.can'.str_replace(array('chat\system\command\commands\\', 'Command'), '', get_class($this)))) throw new \wcf\system\exception\PermissionDeniedException(); } /** * @see \chat\system\command\ICommand::getType() */ public function getType() { return \chat\data\message\Message::TYPE_MODERATE; } /** * @see \chat\system\command\ICommand::getMessage() */ public function getMessage() { return serialize(array( 'link' => $this->link, 'until' => $this->time, 'type' => str_replace(array('chat\system\command\commands\\', 'command'), '', strtolower(get_class($this))) )); } }