forked from njaber/moodle-mod_mplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.php
More file actions
471 lines (408 loc) · 13.3 KB
/
Copy pathlib.php
File metadata and controls
471 lines (408 loc) · 13.3 KB
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
<?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/>.
/**
* Library of functions and constants for module mplayer
* For more information on the parameters used by JW FLV Player see documentation:
* http://developer.longtailvideo.com/trac/wiki/FlashVars
*
* @package mod_mplayer
* @category mod
* @author Matt Bury - matbury@gmail.com
* @author Valery Fremaux <valery.fremaux@gmail.com>
* @licence http://www.gnu.org/copyleft/gpl.html GNU Public Licence
*/
defined('MOODLE_INTERNAL') || die();
require_once($CFG->dirroot.'/mod/mplayer/locallib.php');
/**
* This function is not implemented in this plugin, but is needed to mark
* the vf documentation custom volume availability.
*/
function mod_mplayer_supports_feature() {
assert(1);
}
/* Copyright (C) 2009 Matt Bury
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @uses FEATURE_GROUPS
* @uses FEATURE_GROUPINGS
* @uses FEATURE_GROUPMEMBERSONLY
* @uses FEATURE_MOD_INTRO
* @uses FEATURE_COMPLETION_TRACKS_VIEWS
* @uses FEATURE_GRADE_HAS_GRADE
* @uses FEATURE_GRADE_OUTCOMES
* @param string $feature FEATURE_xx constant for requested feature
* @return mixed True if module supports feature, null if doesn't know
*/
function mplayer_supports($feature) {
switch($feature) {
case FEATURE_GROUPS: {
return false;
}
case FEATURE_GROUPINGS: {
return false;
}
case FEATURE_GROUPMEMBERSONLY: {
return true;
}
case FEATURE_MOD_INTRO: {
return true;
}
case FEATURE_COMPLETION_TRACKS_VIEWS: {
return true;
}
case FEATURE_COMPLETION_HAS_RULES: {
return true;
}
case FEATURE_GRADE_HAS_GRADE: {
return false;
}
case FEATURE_GRADE_OUTCOMES: {
return false;
}
case FEATURE_BACKUP_MOODLE2: {
return true;
}
case FEATURE_SHOW_DESCRIPTION: {
return true;
}
case FEATURE_MOD_ARCHETYPE: {
return MOD_ARCHETYPE_RESOURCE;
}
default:
return null;
}
}
/**
* Given an object containing all the necessary data,
* (defined by the form in mod.html) this function
* will create a new instance and return the id number
* of the new instance.
*
* @param object $instance An object from the form in mod.html
* @return int The id of the newly inserted mplayer record
*/
function mplayer_add_instance($mplayer) {
global $DB;
$config = get_config('mplayer');
$mplayer->timecreated = time();
// Saves draft customization image files into definitive filearea.
$instancefiles = mplayer_get_fileareas();
if (!empty($mplayer->configxmlgroup['clearconfigxml'])) {
mplayer_clear_area($mplayer, 'configxml');
} else {
$mplayer->configxml = @$mplayer->configxmlgroup['configxml'];
}
foreach ($instancefiles as $if) {
mplayer_save_draft_file($mplayer, $if);
}
// May never occur if RTMP not enabled.
if (!empty($mplayer->streamer)) {
// Get the uploaded video mediafiles and move them to wooza storage.
mplayer_convert_storage_for_streamer($mplayer);
}
if (empty($mplayer->technology)) {
$mplayer->technology = $config->default_player;
}
if (isset($mplayer->notes_editor)) {
$notes = $mplayer->notes_editor;
$mplayer->notes = $notes['text'];
$mplayer->notesformat = $notes['format'];
unset($mplayer->notes_editor);
}
return $DB->insert_record('mplayer', $mplayer);
}
/**
* Given an object containing all the necessary data,
* (defined by the form in mod.html) this function
* will update an existing instance with new data.
*
* @param object $instance An object from the form in mod.html
* @return boolean Success/Fail
*/
function mplayer_update_instance($mplayer) {
global $DB;
$config = get_config('mplayer');
$mplayer->timemodified = time();
$mplayer->id = $mplayer->instance;
if (empty($config->default_player)) {
set_config('default_player', 'flowplayer', 'mplayer');
$config->default_player = 'flowplayer';
}
if (empty($mplayer->technology)) {
$mplayer->technology = $config->default_player;
}
if (empty($mplayer->autostart)) {
$mplayer->autostart = 0;
}
if (empty($mplayer->fullscreen)) {
$mplayer->fullscreen = 0;
}
if (!empty($mplayer->configxmlgroup['clearconfigxml'])) {
mplayer_clear_area($mplayer, 'configxml');
} else {
$mplayer->configxml = @$mplayer->configxmlgroup['configxml'];
}
// Saves draft customization image files into definitive filearea.
$instancefiles = mplayer_get_fileareas();
foreach ($instancefiles as $ci) {
mplayer_save_draft_file($mplayer, $ci);
}
// May never arrive if RTMP not enabled.
if (!empty($mplayer->streamer)) {
// Get the uploaded mediafile and convert them to remote storage. Set up the stream access URL.
mplayer_convert_storage_for_streamer($mplayer);
}
$notes = $mplayer->notes_editor;
$mplayer->notes = $notes['text'];
$mplayer->notesformat = $notes['format'];
return $DB->update_record('mplayer', $mplayer);
}
/**
* Given an ID of an instance of this module,
* this function will permanently delete the instance
* and any data that depends on it.
*
* @param int $id Id of the module instance
* @return boolean Success/Failure
*/
function mplayer_delete_instance($id) {
global $DB;
if (!$mplayer = $DB->get_record('mplayer', array('id' => $id))) {
return false;
}
$result = true;
if (!$cm = get_coursemodule_from_instance('mplayer', $mplayer->id)) {
return false;
}
$context = context_module::instance($cm->id);
$fs = get_file_storage();
$fs->delete_area_files($context->id);
if (! $DB->delete_records("mplayer", array('id' => $mplayer->id))) {
$result = false;
}
return $result;
}
/**
* Return a small object with summary information about what a
* user has done with a given particular instance of this module
* Used for user activity reports.
* $return->time = the time they did it
* $return->info = a short text description
*
* @return null
* @todo Finish documenting this function
*/
function mplayer_user_outline($course, $user, $mod, $mplayer) {
$return->time = time();
$return->info = '';
return $return;
}
/**
* Print a detailed representation of what a user has done with
* a given particular instance of this module, for user activity reports.
*
* @return boolean
* @todo Finish documenting this function
*/
function mplayer_user_complete($course, $user, $mod, $mplayer) {
return true;
}
/**
* Given a course and a time, this module should find recent activity
* that has occurred in mplayer activities and print it out.
* Return true if there was output, or false is there was none.
*
* @return boolean
* @todo Finish documenting this function
*/
function mplayer_print_recent_activity($course, $isteacher, $timestart) {
// True if anything was printed, otherwise false.
return false;
}
/**
*
*
* @return array
*/
function mplayer_get_view_actions() {
return array('view');
}
/**
*
* @return array
*/
function mplayer_get_post_actions() {
return array('update');
}
/**
* Function to be run periodically according to the moodle cron
* This function searches for things that need to be done, such
* as sending out mail, toggling flags etc.
*
* @return boolean
*/
function mplayer_cron() {
return true;
}
/**
* Serves the files included in mplayer. Implements needed access control ;-)
*
* There are several situations in general where the files will be sent.
* 1) filearea = '',
*
* @param object $course
* @param object $cm
* @param object $context
* @param string $filearea
* @param array $args
* @param bool $forcedownload
* @return bool false if file not found, does not return if found - justsend the file
*/
function mplayer_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload) {
$guests = false;
if ($course->id > SITEID) {
$enrols = enrol_get_instances($course->id, true);
foreach ($enrols as $e) {
if ($e->enrol == 'guest') {
$guests = true;
break;
}
}
}
if (!$guests) {
require_login($course);
}
if ($context->contextlevel != CONTEXT_MODULE) {
return false;
}
$instancefiles = mplayer_get_fileareas();
if (!in_array($filearea, $instancefiles)) {
return false;
}
$itemid = (int)array_shift($args);
$fs = get_file_storage();
if ($filearea == 'mplayerfiles') {
// Case for fileareas possibly holding more than one file.
$relativepath = implode('/', $args);
$fullpath = "/$context->id/mod_mplayer/$filearea/0/$relativepath";
if (($file = $fs->get_file_by_hash(sha1($fullpath))) && !$file->is_directory()) {
send_stored_file($file, 0, 0, $forcedownload);
}
} else {
$sort = 'sortorder, itemid, filepath, filename';
if ($files = $fs->get_area_files($context->id, 'mod_mplayer', $filearea, $itemid, $sort, false)) {
$file = array_pop($files);
// Finally send the file.
send_stored_file($file, 0, 0, $forcedownload);
}
}
return false;
}
/**
* Must return an array of grades for a given instance of this module,
* indexed by user. It also returns a maximum allowed grade.
*
* Example:
* $return->grades = array of grades;
* $return->maxgrade = maximum allowed grade;
*
* return $return;
*
* @param int $mplayerid ID of an instance of this module
* @return mixed Null or object with an array of grades and with the maximum grade
*/
function mplayer_grades($mplayerid) {
return null;
}
/**
* Must return an array of user records (all data) who are participants
* for a given instance of mplayer. Must include every user involved
* in the instance, independient of his role (student, teacher, admin...)
* See other modules as example.
*
* @param int $mplayerid ID of an instance of this module
* @return mixed boolean/array of students
*/
function mplayer_get_participants($mplayerid) {
return false;
}
/**
* This function returns if a scale is being used by one mplayer
* it it has support for grading and scales. Commented code should be
* modified if necessary. See forum, glossary or journal modules
* as reference.
*
* @param int $mplayerid ID of an instance of this module
* @return mixed
* @todo Finish documenting this function
*/
function mplayer_scale_used($mplayerid, $scaleid) {
$return = false;
return $return;
}
/**
* Checks if scale is being used by any instance of mplayer.
* This function was added in 1.9
*
* This is used to find out if scale used anywhere
* @param $scaleid int
* @return boolean True if the scale is used by any mplayer
*/
function mplayer_scale_used_anywhere($scaleid) {
return false;
}
/**
* Obtains the automatic completion state for this module based on any conditions
* in mplayer settings.
*
* @param object $course Course
* @param object $cm Course-module
* @param int $userid User ID
* @param bool $type Type of comparison (or/and; can be used as return value if no conditions)
* @return bool True if completed, false if not, $type if conditions not set.
*/
function mplayer_get_completion_state($course, $cm, $userid, $type) {
global $DB;
$mplayerinstance = $DB->get_record('mplayer', array('id' => $cm->instance));
$result = $type; // Default return value.
// If completion option is enabled, evaluate it and return true/false.
if (@$mplayerinstance->completionmediaviewed) {
$params = array('userid' => $userid, 'mplayerid' => $cm->instance, 'finished' => 1);
$finished = $DB->count_records('mplayer_userdata', $params);
if ($type == COMPLETION_AND) {
$result = $result && $finished;
} else {
$result = $result || $finished;
}
} else {
// Completion option is not enabled so just return $type.
return $type;
}
return $result;
}