1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
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.
|
|
|
8 |
//
|
|
|
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.
|
|
|
13 |
//
|
|
|
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/>.
|
|
|
16 |
|
|
|
17 |
namespace tiny_autosave\external;
|
|
|
18 |
|
|
|
19 |
use core_external\external_api;
|
|
|
20 |
use core_external\external_function_parameters;
|
|
|
21 |
use core_external\external_single_structure;
|
|
|
22 |
use core_external\external_value;
|
|
|
23 |
|
|
|
24 |
/**
|
|
|
25 |
* Web Service to update an autosave session's content.
|
|
|
26 |
*
|
|
|
27 |
* @package tiny_autosave
|
|
|
28 |
* @category external
|
|
|
29 |
* @copyright 2022 Andrew Lyons <andrew@nicols.co.uk>
|
|
|
30 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
31 |
*/
|
|
|
32 |
class update_autosave_session_content extends external_api {
|
|
|
33 |
/**
|
|
|
34 |
* Returns description of method parameters
|
|
|
35 |
*
|
|
|
36 |
* @return external_function_parameters
|
|
|
37 |
*/
|
|
|
38 |
public static function execute_parameters(): external_function_parameters {
|
|
|
39 |
return new external_function_parameters([
|
|
|
40 |
'contextid' => new external_value(PARAM_INT, 'The context id that owns the editor', VALUE_REQUIRED),
|
|
|
41 |
'pagehash' => new external_value(PARAM_ALPHANUMEXT, 'The page hash', VALUE_REQUIRED),
|
|
|
42 |
'pageinstance' => new external_value(PARAM_ALPHANUMEXT, 'The page instance', VALUE_REQUIRED),
|
|
|
43 |
'elementid' => new external_value(PARAM_RAW, 'The ID of the element', VALUE_REQUIRED),
|
|
|
44 |
'drafttext' => new external_value(PARAM_RAW, 'The draft text', VALUE_REQUIRED),
|
|
|
45 |
]);
|
|
|
46 |
}
|
|
|
47 |
|
|
|
48 |
/**
|
|
|
49 |
* Reset the autosave entry for this autosave instance.
|
|
|
50 |
*
|
|
|
51 |
* If not matching autosave area could be found, the function will
|
|
|
52 |
* silently return and this is not treated as an error condition.
|
|
|
53 |
*
|
|
|
54 |
* @param int $contextid The context id of the owner
|
|
|
55 |
* @param string $pagehash The hash of the page
|
|
|
56 |
* @param string $pageinstance The instance id of the page
|
|
|
57 |
* @param string $elementid The id of the element
|
|
|
58 |
* @param string $drafttext The text to store
|
|
|
59 |
* @return null
|
|
|
60 |
*/
|
|
|
61 |
public static function execute(
|
|
|
62 |
int $contextid,
|
|
|
63 |
string $pagehash,
|
|
|
64 |
string $pageinstance,
|
|
|
65 |
string $elementid,
|
|
|
66 |
string $drafttext
|
|
|
67 |
): array {
|
|
|
68 |
|
|
|
69 |
[
|
|
|
70 |
'contextid' => $contextid,
|
|
|
71 |
'pagehash' => $pagehash,
|
|
|
72 |
'pageinstance' => $pageinstance,
|
|
|
73 |
'elementid' => $elementid,
|
|
|
74 |
'drafttext' => $drafttext,
|
|
|
75 |
] = self::validate_parameters(self::execute_parameters(), [
|
|
|
76 |
'contextid' => $contextid,
|
|
|
77 |
'pagehash' => $pagehash,
|
|
|
78 |
'pageinstance' => $pageinstance,
|
|
|
79 |
'elementid' => $elementid,
|
|
|
80 |
'drafttext' => $drafttext,
|
|
|
81 |
]);
|
|
|
82 |
|
|
|
83 |
// May have been called by a non-logged in user.
|
|
|
84 |
if (isloggedin() && !isguestuser()) {
|
|
|
85 |
$manager = new \tiny_autosave\autosave_manager($contextid, $pagehash, $pageinstance, $elementid);
|
|
|
86 |
$manager->update_autosave_record($drafttext);
|
|
|
87 |
}
|
|
|
88 |
|
|
|
89 |
return [];
|
|
|
90 |
}
|
|
|
91 |
|
|
|
92 |
/**
|
|
|
93 |
* Describe the return structure of the external service.
|
|
|
94 |
*
|
|
|
95 |
* @return external_single_structure
|
|
|
96 |
*/
|
|
|
97 |
public static function execute_returns(): external_single_structure {
|
|
|
98 |
return new external_single_structure([]);
|
|
|
99 |
}
|
|
|
100 |
}
|