2018-08-16 22:30:59 +00:00
|
|
|
|
<?php
|
2022-03-04 17:10:24 +00:00
|
|
|
|
|
2018-08-16 22:30:59 +00:00
|
|
|
|
/*
|
2022-03-04 17:10:24 +00:00
|
|
|
|
* Copyright (c) 2010-2022 Tim Düsterhus.
|
2018-08-16 22:30:59 +00:00
|
|
|
|
*
|
|
|
|
|
* Use of this software is governed by the Business Source License
|
|
|
|
|
* included in the LICENSE file.
|
|
|
|
|
*
|
2023-02-22 16:45:50 +00:00
|
|
|
|
* Change Date: 2027-02-22
|
2018-08-16 22:30:59 +00:00
|
|
|
|
*
|
|
|
|
|
* On the date above, in accordance with the Business Source
|
|
|
|
|
* License, use of this software will be governed by version 3
|
|
|
|
|
* or later of the General Public License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace chat\data\suspension;
|
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
use wcf\data\AbstractDatabaseObjectAction;
|
|
|
|
|
use wcf\system\exception\UserInputException;
|
|
|
|
|
use wcf\system\WCF;
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Executes suspension-related actions.
|
|
|
|
|
*/
|
2022-03-04 17:10:24 +00:00
|
|
|
|
class SuspensionAction extends AbstractDatabaseObjectAction
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @inheritDoc
|
|
|
|
|
*/
|
|
|
|
|
protected $requireACP = [
|
|
|
|
|
'revoke',
|
|
|
|
|
];
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* Validates parameters and permissions.
|
|
|
|
|
*/
|
|
|
|
|
public function validateRevoke()
|
|
|
|
|
{
|
|
|
|
|
if (empty($this->objects)) {
|
|
|
|
|
$this->readObjects();
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
if (empty($this->objects)) {
|
|
|
|
|
throw new UserInputException('objectIDs');
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
unset($this->parameters['revoker']);
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
WCF::getSession()->checkPermissions([
|
|
|
|
|
'admin.chat.canManageSuspensions',
|
|
|
|
|
]);
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
foreach ($this->getObjects() as $object) {
|
|
|
|
|
if (!$object->isActive()) {
|
|
|
|
|
throw new UserInputException('objectIDs', 'nonActive');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* Revokes the suspensions
|
|
|
|
|
*/
|
|
|
|
|
public function revoke()
|
|
|
|
|
{
|
|
|
|
|
if (empty($this->objects)) {
|
|
|
|
|
$this->readObjects();
|
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
// User cannot be set during an AJAX request, but may be set by Tim’s Chat itself.
|
|
|
|
|
if (!isset($this->parameters['revoker'])) {
|
|
|
|
|
$this->parameters['revoker'] = WCF::getUser();
|
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
$data = [
|
|
|
|
|
'revoked' => TIME_NOW,
|
|
|
|
|
'revokerID' => $this->parameters['revoker']->userID,
|
|
|
|
|
'revoker' => $this->parameters['revoker']->username,
|
|
|
|
|
];
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
|
$objectAction = new static(
|
|
|
|
|
$this->getObjects(),
|
|
|
|
|
'update',
|
|
|
|
|
[
|
|
|
|
|
'data' => $data,
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
$objectAction->executeAction();
|
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
}
|