64 lines
1.4 KiB
PHP
Executable File
64 lines
1.4 KiB
PHP
Executable File
<?php
|
|
use Respect\Validation\Validator as DataValidator;
|
|
|
|
/**
|
|
* @api {post} /system/add-api-key Add APIKey
|
|
* @apiVersion 4.5.0
|
|
*
|
|
* @apiName Add APIKey
|
|
*
|
|
* @apiGroup System
|
|
*
|
|
* @apiDescription This path creates a new APIKey.
|
|
*
|
|
* @apiPermission staff3
|
|
*
|
|
* @apiParam {String} name Name of the new APIKey.
|
|
*
|
|
* @apiUse NO_PERMISSION
|
|
* @apiUse INVALID_NAME
|
|
* @apiUse NAME_ALREADY_USED
|
|
*
|
|
* @apiSuccess {String} data Token of the APIKey.
|
|
*
|
|
*/
|
|
|
|
class AddAPIKeyController extends Controller {
|
|
const PATH = '/add-api-key';
|
|
const METHOD = 'POST';
|
|
|
|
public function validations() {
|
|
return [
|
|
'permission' => 'staff_3',
|
|
'requestData' => [
|
|
'name' => [
|
|
'validation' => DataValidator::length(2, 55)->alnum(),
|
|
'error' => ERRORS::INVALID_NAME
|
|
]
|
|
]
|
|
];
|
|
}
|
|
|
|
public function handler() {
|
|
$apiInstance = new APIKey();
|
|
|
|
$name = Controller::request('name');
|
|
|
|
$keyInstance = APIKey::getDataStore($name, 'name');
|
|
|
|
if($keyInstance->isNull()){
|
|
$token = Hashing::generateRandomToken();
|
|
|
|
$apiInstance->setProperties([
|
|
'name' => $name,
|
|
'token' => $token
|
|
]);
|
|
|
|
$apiInstance->store();
|
|
Response::respondSuccess($token);
|
|
} else {
|
|
throw new RequestException(ERRORS::NAME_ALREADY_USED);
|
|
}
|
|
|
|
}
|
|
} |