* @package be.bastelstu.chat * @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)) { if ($suspension->expires > $this->expires) { throw new \wcf\system\exception\UserInputException('text', WCF::getLanguage()->get('wcf.chat.suspension.exists')); } $action = new suspension\SuspensionAction(array($suspension), 'delete'); $action->executeAction(); } $this->suspensionAction = new suspension\SuspensionAction(array(), 'create', array( 'data' => array( 'userID' => $this->user->userID, 'roomID' => WCF::getUser()->chatRoomID, 'type' => suspension\Suspension::TYPE_BAN, 'expires' => $this->expires, 'time' => TIME_NOW, 'issuer' => WCF::getUser()->userID ) )); $this->suspensionAction->executeAction(); } }