2013-01-14 19:52:09 +00:00
|
|
|
<?php
|
2013-01-26 21:46:54 +00:00
|
|
|
namespace chat\system\command\commands;
|
2013-01-27 20:58:10 +00:00
|
|
|
use \chat\data\suspension;
|
|
|
|
use \chat\util\ChatUtil;
|
2013-01-14 19:52:09 +00:00
|
|
|
use \wcf\data\user\User;
|
|
|
|
use \wcf\system\WCF;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bans a user.
|
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
2013-01-19 19:36:40 +00:00
|
|
|
* @copyright 2010-2013 Tim Düsterhus
|
2013-01-14 19:52:09 +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
|
2013-01-14 19:52:09 +00:00
|
|
|
* @subpackage system.chat.command.commands
|
|
|
|
*/
|
|
|
|
class BanCommand extends MuteCommand {
|
|
|
|
public function executeAction() {
|
2013-01-27 20:58:10 +00:00
|
|
|
if ($suspension = suspension\Suspension::getSuspensionByUserRoomAndType($this->user, $this->room, suspension\Suspension::TYPE_BAN)) {
|
2013-05-23 23:21:46 +00:00
|
|
|
if ($suspension->expires > $this->expires) {
|
2013-04-23 13:53:21 +00:00
|
|
|
throw new \wcf\system\exception\UserInputException('text', WCF::getLanguage()->get('wcf.chat.suspension.exists'));
|
2013-01-14 19:52:09 +00:00
|
|
|
}
|
|
|
|
|
2013-05-23 23:21:46 +00:00
|
|
|
$action = new suspension\SuspensionAction(array($suspension), 'delete');
|
|
|
|
$action->executeAction();
|
2013-01-14 19:52:09 +00:00
|
|
|
}
|
|
|
|
|
2013-01-27 20:58:10 +00:00
|
|
|
$this->suspensionAction = new suspension\SuspensionAction(array(), 'create', array(
|
2013-01-14 19:52:09 +00:00
|
|
|
'data' => array(
|
|
|
|
'userID' => $this->user->userID,
|
2013-05-24 15:30:27 +00:00
|
|
|
'roomID' => WCF::getUser()->chatRoomID,
|
2013-01-27 20:58:10 +00:00
|
|
|
'type' => suspension\Suspension::TYPE_BAN,
|
2013-06-08 14:28:40 +00:00
|
|
|
'expires' => $this->expires,
|
|
|
|
'time' => TIME_NOW,
|
|
|
|
'issuer' => WCF::getUser()->userID
|
2013-01-14 19:52:09 +00:00
|
|
|
)
|
|
|
|
));
|
|
|
|
$this->suspensionAction->executeAction();
|
|
|
|
}
|
|
|
|
}
|