* @package be.bastelstu.wcf.chat * @subpackage action */ class ChatLeaveAction extends AbstractAction { /** * @see wcf\action\AbstractAction::$loginRequired */ public $loginRequired = true; /** * @see \wcf\action\AbstractAction::$neededModules */ public $neededModules = array('CHAT_ACTIVE'); /** * @see \wcf\page\AbstractPage::$neededPermissions */ public $neededPermissions = array(); /** * The current room. * * @var \wcf\data\chat\room\ChatRoom */ public $room = null; /** * Values read from the UserStorage of the current user. * * @var array */ public $userData = array(); /** * shortcut for the active request * @see wcf\system\request\Request::getRequestObject() */ public $request = null; /** * Disallows direct access. * * @see wcf\page\IPage::__run() */ public function __run() { if (($this->request = \wcf\system\request\RequestHandler::getInstance()->getActiveRequest()->getRequestObject()) === $this) throw new IllegalLinkException(); parent::__run(); } /** * @see \wcf\action\IAction::execute() */ public function execute() { parent::execute(); $this->userData['roomID'] = \wcf\util\ChatUtil::readUserData('roomID'); $cache = chat\room\ChatRoom::getCache(); if (!isset($cache[$this->userData['roomID']])) throw new IllegalLinkException(); $this->room = $cache[$this->userData['roomID']]; if (!$this->room->canEnter()) throw new \wcf\system\exception\PermissionDeniedException(); if (CHAT_DISPLAY_JOIN_LEAVE) { $this->userData['color'] = \wcf\util\ChatUtil::readUserData('color'); // leave message $messageAction = new chat\message\ChatMessageAction(array(), 'create', array( 'data' => array( 'roomID' => $this->room->roomID, 'sender' => WCF::getUser()->userID, 'username' => WCF::getUser()->username, 'time' => TIME_NOW, 'type' => chat\message\ChatMessage::TYPE_LEAVE, 'message' => '', 'color1' => $this->userData['color'][1], 'color2' => $this->userData['color'][2] ) )); $messageAction->executeAction(); } // set current room to null \wcf\util\ChatUtil::writeUserData(array('roomID' => null)); $this->executed(); header("HTTP/1.0 204 No Content"); exit; } }