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 * Responsible for handling AJAX requests related to H5P.
21 * @copyright 2020 Victor Deniz <victor@moodle.com>, based on code by Joubel AS
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 use core_h5p\framework
;
27 use core_h5p\local\library\autoloader
;
29 define('AJAX_SCRIPT', true);
31 require(__DIR__
. '/../config.php');
32 require_once($CFG->libdir
. '/filelib.php');
34 if (!confirm_sesskey()) {
35 autoloader
::register();
36 H5PCore
::ajaxError(get_string('invalidsesskey', 'error'));
37 header('HTTP/1.1 403 Forbidden');
42 $action = required_param('action', PARAM_ALPHA
);
44 $factory = new factory();
45 $editor = $factory->get_editor();
48 // Load list of libraries or details for library.
51 $name = optional_param('machineName', '', PARAM_TEXT
);
52 $major = optional_param('majorVersion', 0, PARAM_INT
);
53 $minor = optional_param('minorVersion', 0, PARAM_INT
);
55 $language = optional_param('default-language', null, PARAM_ALPHA
);
58 $editor->ajax
->action(H5PEditorEndpoints
::SINGLE_LIBRARY
, $name,
59 $major, $minor, framework
::get_language(), '', '', $language);
61 $editor->ajax
->action(H5PEditorEndpoints
::LIBRARIES
);
66 // Load content type cache list to display available libraries in hub.
67 case 'contenttypecache':
68 $editor->ajax
->action(H5PEditorEndpoints
::CONTENT_TYPE_CACHE
);
71 // Handle file upload through the editor.
72 // This endpoint needs a token that only users with H5P editor access could get.
73 // TODO: MDL-68907 to check capabilities.
75 $token = required_param('token', PARAM_RAW
);
76 $contentid = required_param('contentId', PARAM_INT
);
78 $maxsize = get_max_upload_file_size($CFG->maxbytes
);
79 // Check size of each uploaded file and scan for viruses.
80 foreach ($_FILES as $uploadedfile) {
81 $filename = clean_param($uploadedfile['name'], PARAM_FILE
);
82 if ($uploadedfile['size'] > $maxsize) {
83 H5PCore
::ajaxError(get_string('maxbytesfile', 'error', ['file' => $filename, 'size' => display_size($maxsize)]));
86 \core\antivirus\manager
::scan_file($uploadedfile['tmp_name'], $filename, true);
89 $editor->ajax
->action(H5PEditorEndpoints
::FILES
, $token, $contentid);
92 // Get the $language libraries translations.
94 $language = required_param('language', PARAM_RAW
);
95 $editor->ajax
->action(H5PEditorEndpoints
::TRANSLATIONS
, $language);
98 // Handle filtering of parameters through AJAX.
100 $token = required_param('token', PARAM_RAW
);
101 $libraryparameters = required_param('libraryParameters', PARAM_RAW
);
103 $editor->ajax
->action(H5PEditorEndpoints
::FILTER
, $token, $libraryparameters);
106 // Throw error if AJAX action is not handled.
108 throw new coding_exception('Unhandled AJAX');