2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This class contains a list of webservice functions related to session.
21 * @copyright 2019 Damyon Wiese
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 namespace core\session
;
27 defined('MOODLE_INTERNAL') ||
die();
30 * This class contains a list of webservice functions related to session.
32 * @copyright 2019 Damyon Wiese
33 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36 class external
extends \external_api
{
39 * Returns description of touch_session() parameters.
41 * @return external_function_parameters
43 public static function touch_session_parameters() {
44 return new \
external_function_parameters([]);
48 * Extend the current session.
50 * @return array the mapping
52 public static function touch_session() {
53 \core\session\manager
::touch_session(session_id());
58 * Returns description of touch_session() result value.
60 * @return external_description
62 public static function touch_session_returns() {
63 return new \
external_value(PARAM_BOOL
, 'result');
67 * Returns description of time_remaining() parameters.
69 * @return external_function_parameters
71 public static function time_remaining_parameters() {
72 return new \
external_function_parameters([]);
76 * Extend the current session.
78 * @return array the mapping
80 public static function time_remaining() {
81 return \core\session\manager
::time_remaining(session_id());
85 * Returns description of touch_session() result value.
87 * @return external_description
89 public static function time_remaining_returns() {
90 return new \
external_single_structure(array (
91 'userid' => new \
external_value(PARAM_INTEGER
, 'The current user id.'),
92 'timeremaining' => new \
external_value(PARAM_INTEGER
, 'The number of seconds remaining in this session.')