2016-10-03 21:44:41 +02:00
|
|
|
<?php
|
|
|
|
use Respect\Validation\Validator as DataValidator;
|
|
|
|
DataValidator::with('CustomValidations', true);
|
|
|
|
|
|
|
|
class AddCustomResponseController extends Controller {
|
|
|
|
const PATH = '/add-custom-response';
|
|
|
|
|
|
|
|
public function validations() {
|
|
|
|
return [
|
|
|
|
'permission' => 'staff_2',
|
|
|
|
'requestData' => [
|
|
|
|
'name' => [
|
|
|
|
'validation' => DataValidator::length(5, 100),
|
|
|
|
'error' => ERRORS::INVALID_NAME
|
|
|
|
],
|
|
|
|
'content' => [
|
|
|
|
'validation' => DataValidator::length(20, 500),
|
|
|
|
'error' => ERRORS::INVALID_CONTENT
|
|
|
|
],
|
|
|
|
'language' => [
|
|
|
|
'validation' => DataValidator::validLanguage(),
|
|
|
|
'error' => ERRORS::INVALID_LANGUAGE
|
|
|
|
]
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function handler() {
|
|
|
|
$customResponse = new CustomResponse();
|
|
|
|
$customResponse->setProperties([
|
|
|
|
'name' => Controller::request('name'),
|
|
|
|
'content' => Controller::request('content'),
|
|
|
|
'language' => Controller::request('language')
|
|
|
|
]);
|
|
|
|
$customResponse->store();
|
|
|
|
|
2016-12-29 01:55:00 +01:00
|
|
|
Log::createLog('ADD_CUSTOM_RESPONSE', null);
|
|
|
|
|
2016-10-03 21:44:41 +02:00
|
|
|
Response::respondSuccess();
|
|
|
|
}
|
|
|
|
}
|