assertParameter($parameters, 'reason'); // search for censored words if (ENABLE_CENSORSHIP) { $result = Censorship::getInstance()->test($reason); if ($result) { throw new UserInputException('message', WCF::getLanguage()->getDynamicVariable('wcf.message.error.censoredWordsFound', [ 'censoredWords' => $result ])); } } } /** * @inheritDoc */ public function execute($parameters, Room $room, UserProfile $user = null) { if ($user === null) $user = new UserProfile(WCF::getUser()); $reason = $this->assertParameter($parameters, 'reason'); $objectTypeID = $this->getMessageObjectTypeID('be.bastelstu.chat.messageType.away'); $rooms = array_map(function (Room $room) use ($user) { return [ 'roomID' => $room->roomID , 'isSilent' => !$room->canWritePublicly($user) ]; }, (new \chat\data\user\User($user->getDecoratedObject()))->getRooms()); WCF::getDB()->beginTransaction(); $editor = new \wcf\data\user\UserEditor($user->getDecoratedObject()); $editor->update([ 'chatAway' => $reason ]); (new MessageAction([ ], 'create', [ 'data' => [ 'roomID' => $room->roomID , 'userID' => $user->userID , 'username' => $user->username , 'time' => TIME_NOW , 'objectTypeID' => $objectTypeID , 'payload' => serialize([ 'message' => $reason , 'rooms' => array_values($rooms) ]) ] , 'updateTimestamp' => true ] ) )->executeAction(); WCF::getDB()->commitTransaction(); } }