mirror of
				https://github.com/opensupports/opensupports.git
				synced 2025-10-31 11:34:41 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| use Respect\Validation\Validator as DataValidator;
 | |
| DataValidator::with('CustomValidations', true);
 | |
| 
 | |
| /**
 | |
|  * @api {post} /user/get Get my information
 | |
|  * @apiVersion 4.8.0
 | |
|  *
 | |
|  * @apiName Get my Information
 | |
|  *
 | |
|  * @apiGroup User
 | |
|  *
 | |
|  * @apiDescription This path retrieves information about the logged user.
 | |
|  *
 | |
|  * @apiPermission user
 | |
|  *
 | |
|  * @apiUse NO_PERMISSION
 | |
|  * @apiUse INVALID_CREDENTIALS
 | |
|  *
 | |
|  * @apiSuccess {Object} data Information about an user
 | |
|  * @apiSuccess {String} data.name Name of the user
 | |
|  * @apiSuccess {String} data.email Email of the user
 | |
|  * @apiSuccess {Boolean} data.verified Indicates if the user is verified
 | |
|  * @apiSuccess {Object} data Information about an user
 | |
|  * @apiSuccess {[Ticket](#api-Data_Structures-ObjectTicket)[]} data.tickets Array of tickets of the user
 | |
|  *
 | |
|  */
 | |
| 
 | |
| class GetUserController extends Controller {
 | |
|     const PATH = '/get';
 | |
|     const METHOD = 'POST';
 | |
| 
 | |
|     public function validations() {
 | |
|         return [
 | |
|             'permission' => 'user',
 | |
|             'requestData' => []
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function handler() {
 | |
|         
 | |
|         if (Controller::isStaffLogged()) {
 | |
|             throw new RequestException(ERRORS::INVALID_CREDENTIALS);
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         $user = Controller::getLoggedUser();
 | |
|         $parsedTicketList = [];
 | |
|         $ticketList = $user->sharedTicketList;
 | |
| 
 | |
|         foreach($ticketList as $ticket) {
 | |
|             $parsedTicketList[] = $ticket->toArray(true);
 | |
|         }
 | |
|         
 | |
|         Response::respondSuccess([
 | |
|             'name' => $user->name,
 | |
|             'email' => $user->email,
 | |
|             'staff' => false,
 | |
|             'verified' => !$user->verificationToken,
 | |
|             'tickets' => $parsedTicketList,
 | |
|             'customfields' => $user->xownCustomfieldvalueList->toArray(),
 | |
|             'users' => $user->supervisedrelation ? $user->supervisedrelation->sharedUserList->toArray() : null
 | |
|         ]);
 | |
|     }
 | |
| }
 |