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

39 lines
1.2 KiB
PHP
Raw Normal View History

2013-01-14 19:52:09 +00:00
<?php
namespace chat\system\command\commands;
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() {
if ($suspension = suspension\Suspension::getSuspensionByUserRoomAndType($this->user, $this->room, suspension\Suspension::TYPE_BAN)) {
2013-01-14 19:52:09 +00:00
if ($suspension->time > TIME_NOW + $this->time) {
throw new \wcf\system\exception\UserInputException('text', WCF::getLanguage()->get('wcf.chat.suspension.exists'));
2013-01-14 19:52:09 +00:00
}
$editor = new suspension\SuspensionEditor($suspension);
2013-01-14 19:52:09 +00:00
$editor->delete();
}
$this->suspensionAction = new suspension\SuspensionAction(array(), 'create', array(
2013-01-14 19:52:09 +00:00
'data' => array(
'userID' => $this->user->userID,
'roomID' => ChatUtil::readUserData('roomID'),
'type' => suspension\Suspension::TYPE_BAN,
2013-01-14 19:52:09 +00:00
'time' => TIME_NOW + $this->time
)
));
$this->suspensionAction->executeAction();
}
}