forked from h5p/moodle-mod_hvp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
locallib.php
406 lines (350 loc) · 13.6 KB
/
locallib.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Internal library of functions for module hvp
*
* All the hvp specific functions, needed to implement the module
* logic, should go here. Never include this file from your lib.php!
*
* @package mod_hvp
* @copyright 2016 Joubel AS <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once('autoloader.php');
/**
* Get array with settings for hvp core
*
* @return array Settings
*/
function hvp_get_core_settings() {
global $USER, $CFG, $COURSE;
$systemcontext = \context_system::instance();
$coursecontext = \context_course::instance($COURSE->id);
$basepath = $CFG->httpswwwroot . '/';
$ajaxpath = "{$basepath}mod/hvp/ajax.php?contextId={$coursecontext->id}&token=";
$core = \mod_hvp\framework::instance('core');
$settings = array(
'baseUrl' => $basepath,
'url' => "{$basepath}pluginfile.php/{$coursecontext->id}/mod_hvp",
'libraryUrl' => "{$basepath}pluginfile.php/{$systemcontext->id}/mod_hvp/libraries",
'postUserStatistics' => true,
'ajax' => array(
'setFinished' => $ajaxpath . \H5PCore::createToken('result') . '&action=set_finished',
'contentUserData' => $ajaxpath . \H5PCore::createToken('contentuserdata') .
'&action=contents_user_data&content_id=:contentId&data_type=:dataType&sub_content_id=:subContentId'
),
'saveFreq' => get_config('mod_hvp', 'enable_save_content_state') ? get_config('mod_hvp', 'content_state_frequency') : false,
'siteUrl' => $CFG->wwwroot,
'l10n' => array('H5P' => $core->getLocalization()),
'user' => array(
'name' => $USER->firstname . ' ' . $USER->lastname,
'mail' => $USER->email
),
'hubIsEnabled' => get_config('mod_hvp', 'hub_is_enabled') ? true : false
);
return $settings;
}
/**
* Get assets (scripts and styles) for hvp core.
*
* @return array
*/
function hvp_get_core_assets() {
global $CFG, $PAGE;
// Get core settings.
$settings = \hvp_get_core_settings();
$settings['core'] = array(
'styles' => array(),
'scripts' => array()
);
$settings['loadedJs'] = array();
$settings['loadedCss'] = array();
// Make sure files are reloaded for each plugin update.
$cachebuster = \hvp_get_cache_buster();
// Use relative URL to support both http and https.
$liburl = $CFG->httpswwwroot . '/mod/hvp/library/';
$relpath = '/' . preg_replace('/^[^:]+:\/\/[^\/]+\//', '', $liburl);
// Add core stylesheets.
foreach (\H5PCore::$styles as $style) {
$settings['core']['styles'][] = $relpath . $style . $cachebuster;
$PAGE->requires->css(new moodle_url($liburl . $style . $cachebuster));
}
// Add core JavaScript.
foreach (\H5PCore::$scripts as $script) {
$settings['core']['scripts'][] = $relpath . $script . $cachebuster;
$PAGE->requires->js(new moodle_url($liburl . $script . $cachebuster), true);
}
return $settings;
}
/**
* Add required assets for displaying the editor.
*
* @param int $id Content being edited. null for creating new content
*/
function hvp_add_editor_assets($id = null) {
global $PAGE, $CFG, $COURSE;
$settings = \hvp_get_core_assets();
// Use jQuery and styles from core.
$assets = array(
'css' => $settings['core']['styles'],
'js' => $settings['core']['scripts']
);
// Use relative URL to support both http and https.
$url = $CFG->httpswwwroot . '/mod/hvp/';
$url = '/' . preg_replace('/^[^:]+:\/\/[^\/]+\//', '', $url);
// Make sure files are reloaded for each plugin update.
$cachebuster = \hvp_get_cache_buster();
// Add editor styles.
foreach (H5peditor::$styles as $style) {
$assets['css'][] = $url . 'editor/' . $style . $cachebuster;
}
// Add editor JavaScript.
foreach (H5peditor::$scripts as $script) {
// We do not want the creator of the iframe inside the iframe.
if ($script !== 'scripts/h5peditor-editor.js') {
$assets['js'][] = $url . 'editor/' . $script . $cachebuster;
}
}
// Add JavaScript with library framework integration (editor part).
$PAGE->requires->js(new moodle_url('/mod/hvp/editor/scripts/h5peditor-editor.js' . $cachebuster), true);
$PAGE->requires->js(new moodle_url('/mod/hvp/editor/scripts/h5peditor-init.js' . $cachebuster), true);
$PAGE->requires->js(new moodle_url('/mod/hvp/editor.js' . $cachebuster), true);
// Add translations.
$language = \mod_hvp\framework::get_language();
$languagescript = "editor/language/{$language}.js";
if (!file_exists("{$CFG->dirroot}/mod/hvp/{$languagescript}")) {
$languagescript = 'editor/language/en.js';
}
$PAGE->requires->js(new moodle_url('/mod/hvp/' . $languagescript . $cachebuster), true);
// Add JavaScript settings.
$context = \context_course::instance($COURSE->id);
$filespathbase = "{$CFG->httpswwwroot}/pluginfile.php/{$context->id}/mod_hvp/";
$contentvalidator = \mod_hvp\framework::instance('contentvalidator');
$editorajaxtoken = \H5PCore::createToken('editorajax');
$settings['editor'] = array(
'filesPath' => $filespathbase . ($id ? "content/{$id}" : 'editor'),
'fileIcon' => array(
'path' => $url . 'editor/images/binary-file.png',
'width' => 50,
'height' => 50,
),
'ajaxPath' => "{$url}ajax.php?contextId={$context->id}&token={$editorajaxtoken}&action=",
'libraryUrl' => $url . 'editor/',
'copyrightSemantics' => $contentvalidator->getCopyrightSemantics(),
'assets' => $assets,
// @codingStandardsIgnoreLine
'apiVersion' => H5PCore::$coreApi
);
if ($id !== null) {
$settings['editor']['nodeVersionId'] = $id;
// Find cm context.
$cm = \get_coursemodule_from_instance('hvp', $id);
$context = \context_module::instance($cm->id);
// Override content URL.
$contenturl = "{$CFG->httpswwwroot}/pluginfile.php/{$context->id}/mod_hvp/content/{$id}";
$settings['contents']['cid-' . $id]['contentUrl'] = $contenturl;
}
$PAGE->requires->data_for_js('H5PIntegration', $settings, true);
}
/**
* Add core JS and CSS to page.
*
* @param moodle_page $page
* @param moodle_url|string $liburl
* @param array|null $settings
* @throws \coding_exception
*/
function hvp_admin_add_generic_css_and_js($page, $liburl, $settings = null) {
// @codingStandardsIgnoreLine
foreach (\H5PCore::$adminScripts as $script) {
$page->requires->js(new moodle_url($liburl . $script . hvp_get_cache_buster()), true);
}
if ($settings === null) {
$settings = array();
}
$settings['containerSelector'] = '#h5p-admin-container';
$settings['l10n'] = array(
'NA' => get_string('notapplicable', 'hvp'),
'viewLibrary' => '',
'deleteLibrary' => '',
'upgradeLibrary' => get_string('upgradelibrarycontent', 'hvp')
);
$page->requires->data_for_js('H5PAdminIntegration', $settings, true);
$page->requires->css(new moodle_url($liburl . 'styles/h5p.css' . hvp_get_cache_buster()));
$page->requires->css(new moodle_url($liburl . 'styles/h5p-admin.css' . hvp_get_cache_buster()));
// Add settings.
$page->requires->data_for_js('h5p', hvp_get_core_settings(), true);
}
/**
* Get a query string with the plugin version number to include at the end
* of URLs. This is used to force the browser to reload the asset when the
* plugin is updated.
*
* @return string
*/
function hvp_get_cache_buster() {
return '?ver=' . get_config('mod_hvp', 'version');
}
/**
* Restrict access to a given content type.
*
* @param int $library_id
* @param bool $restrict
*/
function hvp_restrict_library($libraryid, $restrict) {
global $DB;
$DB->update_record('hvp_libraries', (object) array(
'id' => $libraryid,
'restricted' => $restrict ? 1 : 0
));
}
/**
* Handle content upgrade progress
*
* @method hvp_content_upgrade_progress
* @param int $library_id
* @return object An object including the json content for the H5P instances
* (maximum 40) that should be upgraded.
*/
function hvp_content_upgrade_progress($libraryid) {
global $DB;
$tolibraryid = filter_input(INPUT_POST, 'libraryId');
// Verify security token.
if (!\H5PCore::validToken('contentupgrade', required_param('token', PARAM_RAW))) {
print get_string('upgradeinvalidtoken', 'hvp');
return;
}
// Get the library we're upgrading to.
$tolibrary = $DB->get_record('hvp_libraries', array(
'id' => $tolibraryid
));
if (!$tolibrary) {
print get_string('upgradelibrarymissing', 'hvp');
return;
}
// Prepare response.
$out = new stdClass();
$out->params = array();
$out->token = \H5PCore::createToken('contentupgrade');
// Prepare our interface.
$interface = \mod_hvp\framework::instance('interface');
// Get updated params.
$params = filter_input(INPUT_POST, 'params');
if ($params !== null) {
// Update params.
$params = json_decode($params);
foreach ($params as $id => $param) {
$DB->update_record('hvp', (object) array(
'id' => $id,
'main_library_id' => $tolibrary->id,
'json_content' => $param,
'filtered' => ''
));
// Log content upgrade successful.
new \mod_hvp\event(
'content', 'upgrade',
$id, $DB->get_field_sql("SELECT name FROM {hvp} WHERE id = ?", array($id)),
$tolibrary->machine_name, $tolibrary->major_version . '.' . $tolibrary->minor_version
);
}
}
// Get number of contents for this library.
$out->left = $interface->getNumContent($libraryid);
if ($out->left) {
// Find the 40 first contents using this library version and add to params.
$results = $DB->get_records_sql(
"SELECT id, json_content as params
FROM {hvp}
WHERE main_library_id = ?
ORDER BY name ASC", array($libraryid), 0 , 40
);
foreach ($results as $content) {
$out->params[$content->id] = $content->params;
}
}
return $out;
}
/**
* Gets the information needed when content is upgraded
*
* @method hvp_get_library_upgrade_info
* @param string $name
* @param int $major
* @param int $minor
* @return object Library metadata including name, version, semantics and path
* to upgrade script
*/
function hvp_get_library_upgrade_info($name, $major, $minor) {
global $CFG;
$library = (object) array(
'name' => $name,
'version' => (object) array(
'major' => $major,
'minor' => $minor
)
);
$core = \mod_hvp\framework::instance();
$library->semantics = $core->loadLibrarySemantics($library->name, $library->version->major, $library->version->minor);
if ($library->semantics === null) {
http_response_code(404);
return;
}
$context = \context_system::instance();
$libraryfoldername = "{$library->name}-{$library->version->major}.{$library->version->minor}";
if (\mod_hvp\file_storage::fileExists($context->id, 'libraries', '/' . $libraryfoldername . '/', 'upgrades.js')) {
$basepath = $CFG->httpswwwroot . '/';
$library->upgradesScript = "{$basepath}pluginfile.php/{$context->id}/mod_hvp/libraries/{$libraryfoldername}/upgrades.js";
}
return $library;
}
/**
* Check permissions to view given user's results
*
* @param int $userid Id of the user the results belong to
* @param context $context Current context, usually course context
*
* @return bool true if current user has permission to view given user results
*/
function hvp_has_view_results_permission($userid, $context) {
global $USER;
// Check if user can view all results.
if (has_capability('mod/hvp:viewallresults', $context)) {
return true;
}
// Check if viewing own results, and have permission for it.
return $userid === (int) $USER->id ? has_capability('mod/hvp:viewresults', $context) : false;
}
/**
* Require view results capability for this page
*
* @param int $userid User id who owns results
* @param context $context Current context
* @param int $redirectcontentid Redirect to this content id if not allowed
* to view own results
*/
function hvp_require_view_results_permission($userid, $context, $redirectcontentid = null) {
global $USER;
if (!hvp_has_view_results_permission($userid, $context)) {
if ($userid === (int) $USER->id && isset($redirectcontentid)) {
// Not allowed to view own results, redirect.
redirect(new moodle_url('/mod/hvp/view.php', ['id' => $redirectcontentid]));
} else {
// Other user's results, require capability to view all results.
require_capability('mod/hvp:viewallresults', $context);
}
}
}