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

103 lines
2.6 KiB
PHP
Raw Normal View History

<?php
namespace wcf\action;
use \wcf\data\chat;
2012-10-20 14:20:52 +00:00
use \wcf\system\exception\IllegalLinkException;
use \wcf\system\WCF;
/**
* Makes the user leave Tims Chat.
*
* @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 action
*/
class ChatLeaveAction extends AbstractAction {
2012-08-08 14:51:24 +00:00
/**
* @see wcf\action\AbstractAction::$loginRequired
*/
public $loginRequired = true;
/**
* @see \wcf\action\AbstractAction::$neededModules
*/
public $neededModules = array('CHAT_ACTIVE');
2012-06-04 19:34:07 +00:00
/**
* @see \wcf\page\AbstractPage::$neededPermissions
*/
public $neededPermissions = array();
2012-06-04 19:34:07 +00:00
/**
* The current room.
*
* @var \wcf\data\chat\room\ChatRoom
*/
public $room = null;
2012-06-04 19:34:07 +00:00
/**
* Values read from the UserStorage of the current user.
*
* @var array
*/
public $userData = array();
2012-08-12 18:30:08 +00:00
/**
* 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() {
2012-08-28 19:58:47 +00:00
if (($this->request = \wcf\system\request\RequestHandler::getInstance()->getActiveRequest()->getRequestObject()) === $this) throw new IllegalLinkException();
2012-08-12 18:30:08 +00:00
parent::__run();
}
/**
* @see \wcf\action\IAction::execute()
*/
public function execute() {
parent::execute();
$this->userData['roomID'] = \wcf\util\ChatUtil::readUserData('roomID');
2012-09-07 20:37:25 +00:00
$cache = chat\room\ChatRoom::getCache();
2012-10-20 14:20:52 +00:00
if (!isset($cache[$this->userData['roomID']])) throw new IllegalLinkException();
2012-09-07 20:37:25 +00:00
$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');
2012-06-04 19:34:07 +00:00
// 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();
}
2012-06-04 19:34:07 +00:00
// set current room to null
\wcf\util\ChatUtil::writeUserData(array('roomID' => null));
$this->executed();
2012-03-03 22:18:52 +00:00
header("HTTP/1.0 204 No Content");
exit;
}
}