mirror of
				https://github.com/opensupports/opensupports.git
				synced 2025-10-31 19:44:17 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| use Respect\Validation\Validator as DataValidator;
 | |
| DataValidator::with('CustomValidations', true);
 | |
| 
 | |
| /**
 | |
|  * @api {post} /article/add-topic Add topic
 | |
|  * @apiVersion 4.8.0
 | |
|  *
 | |
|  * @apiName Add topic
 | |
|  *
 | |
|  * @apiGroup Article
 | |
|  *
 | |
|  * @apiDescription This path adds a new topic.
 | |
|  *
 | |
|  * @apiPermission staff2
 | |
|  *
 | |
|  * @apiParam {String} name Name of the new topic.
 | |
|  * @apiParam {String} icon Icon of the new topic.
 | |
|  * @apiParam {String} iconColor Icon's color of the new topic.
 | |
|  * @apiParam {Boolean} private Indicates if the topic is not shown to users.
 | |
|  *
 | |
|  * @apiUse NO_PERMISSION
 | |
|  * @apiUse INVALID_NAME
 | |
|  *
 | |
|  * @apiSuccess {Object} data Topic info
 | |
|  * @apiSuccess {Number} data.topicId Topic id
 | |
|  *
 | |
|  */
 | |
| 
 | |
| class AddTopicController extends Controller {
 | |
|     const PATH = '/add-topic';
 | |
|     const METHOD = 'POST';
 | |
| 
 | |
|     public function validations() {
 | |
|         return [
 | |
|             'permission' => 'staff_2',
 | |
|             'requestData' => [
 | |
|                 'name' => [
 | |
|                     'validation' => DataValidator::notBlank()->length(1, 200),
 | |
|                     'error' => ERRORS::INVALID_TITLE
 | |
|                 ],
 | |
|             ]
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function handler() {
 | |
|         $topic = new Topic();
 | |
|         $topic->setProperties([
 | |
|             'name' => Controller::request('name'),
 | |
|             'icon' => Controller::request('icon'),
 | |
|             'iconColor' => Controller::request('iconColor'),
 | |
|             'private' => Controller::request('private') ? 1 : 0
 | |
|         ]);
 | |
| 
 | |
|         Log::createLog('ADD_TOPIC', $topic->name);
 | |
| 
 | |
|         Response::respondSuccess([
 | |
|             'topicId' => $topic->store()
 | |
|         ]);
 | |
|     }
 | |
| }
 |