mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
86 lines
2.1 KiB
PHP
86 lines
2.1 KiB
PHP
<?php
|
|
namespace chat\action;
|
|
use \chat\data;
|
|
use \wcf\system\exception\IllegalLinkException;
|
|
use \wcf\system\WCF;
|
|
|
|
/**
|
|
* Makes the user leave Tims Chat.
|
|
*
|
|
* @author Tim Düsterhus
|
|
* @copyright 2010-2013 Tim Düsterhus
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
|
* @package be.bastelstu.chat
|
|
* @subpackage action
|
|
*/
|
|
class LeaveAction extends \wcf\action\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 \chat\data\room\Room
|
|
*/
|
|
public $room = null;
|
|
|
|
/**
|
|
* Values read from the UserStorage of the current user.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $userData = array();
|
|
|
|
/**
|
|
* @see \wcf\action\IAction::execute()
|
|
*/
|
|
public function execute() {
|
|
parent::execute();
|
|
|
|
$this->userData['roomID'] = \chat\util\ChatUtil::readUserData('roomID');
|
|
|
|
$cache = data\room\Room::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'] = \chat\util\ChatUtil::readUserData('color');
|
|
|
|
// leave message
|
|
$messageAction = new data\message\MessageAction(array(), 'create', array(
|
|
'data' => array(
|
|
'roomID' => $this->room->roomID,
|
|
'sender' => WCF::getUser()->userID,
|
|
'username' => WCF::getUser()->username,
|
|
'time' => TIME_NOW,
|
|
'type' => data\message\Message::TYPE_LEAVE,
|
|
'message' => '',
|
|
'color1' => $this->userData['color'][1],
|
|
'color2' => $this->userData['color'][2]
|
|
)
|
|
));
|
|
$messageAction->executeAction();
|
|
}
|
|
|
|
// set current room to null
|
|
\chat\util\ChatUtil::writeUserData(array('roomID' => null));
|
|
|
|
$this->executed();
|
|
header("HTTP/1.0 204 No Content");
|
|
exit;
|
|
}
|
|
}
|