54 lines
1.3 KiB
PHP
Executable File
54 lines
1.3 KiB
PHP
Executable File
<?php
|
|
use RedBeanPHP\Facade as RedBean;
|
|
|
|
/**
|
|
* @api {post} /system/delete-all-users Delete all users
|
|
* @apiVersion 4.10.0
|
|
*
|
|
* @apiName Delete all users
|
|
*
|
|
* @apiGroup System
|
|
*
|
|
* @apiDescription This path deletes all users in database.
|
|
*
|
|
* @apiPermission staff3
|
|
*
|
|
* @apiParam {String} password The password of the current staff.
|
|
*
|
|
* @apiUse NO_PERMISSION
|
|
* @apiUse INVALID_PASSWORD
|
|
*
|
|
* @apiSuccess {Object} data Empty object
|
|
*
|
|
*/
|
|
|
|
class DeleteAllUsersController extends Controller {
|
|
const PATH = '/delete-all-users';
|
|
const METHOD = 'POST';
|
|
|
|
public function validations() {
|
|
return [
|
|
'permission' => 'staff_3',
|
|
'requestData' => []
|
|
];
|
|
}
|
|
|
|
public function handler() {
|
|
$password = Controller::request('password');
|
|
|
|
if(!Hashing::verifyPassword($password, Controller::getLoggedUser()->password)) {
|
|
throw new RequestException(ERRORS::INVALID_PASSWORD);
|
|
return;
|
|
}
|
|
|
|
Redbean::exec('SET FOREIGN_KEY_CHECKS = 0;');
|
|
RedBean::wipe(SessionCookie::TABLE);
|
|
RedBean::wipe(User::TABLE);
|
|
RedBean::wipe(Ticket::TABLE);
|
|
RedBean::wipe(Ticketevent::TABLE);
|
|
RedBean::wipe('ticket_user');
|
|
Redbean::exec('SET FOREIGN_KEY_CHECKS = 1;');
|
|
|
|
Response::respondSuccess();
|
|
}
|
|
} |