opensupports/server/controllers/user/check-session.php

39 lines
752 B
PHP
Raw Normal View History

<?php
2017-04-16 07:35:04 +02:00
/**
2017-04-17 04:59:11 +02:00
* @api {post} /user/check-session Check if session exist or not.
2017-04-16 07:35:04 +02:00
*
2017-04-17 04:59:11 +02:00
* @apiName check session
2017-04-16 07:35:04 +02:00
*
* @apiGroup User
*
* @apiDescription This path give back a object that says if a session exist or not.
*
* @apiPermission Any
*
* @apiError {String} message
*
* @apiSuccess {Object} data
*
*/
class CheckSessionController extends Controller {
const PATH = '/check-session';
const METHOD = 'POST';
public function validations() {
return [
'permission' => 'any',
'requestData' => []
];
}
public function handler() {
$session = Session::getInstance();
Response::respondSuccess([
'sessionActive' => $session->sessionExists()
]);
}
}