-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlib.php
487 lines (414 loc) · 16 KB
/
lib.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
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
<?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/>.
/**
* @package mod
* @subpackage widgetspace
* @copyright 2011 Evgeny Bogdanov (http://vohtaski.blogspot.com)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die;
/**
* List of features supported in Widgetspace module
* @param string $feature FEATURE_xx constant for requested feature
* @return mixed True if module supports feature, false if not, null if doesn't know
*/
function widgetspace_supports($feature) {
switch($feature) {
case FEATURE_MOD_ARCHETYPE: return MOD_ARCHETYPE_RESOURCE;
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_GRADE_HAS_GRADE: return false;
case FEATURE_GRADE_OUTCOMES: return false;
case FEATURE_BACKUP_MOODLE2: return true;
default: return null;
}
}
/**
* Returns all other caps used in module
* @return array
*/
function widgetspace_get_extra_capabilities() {
return array('moodle/site:accessallgroups');
}
/**
* This function is used by the reset_course_userdata function in moodlelib.
* @param $data the data submitted from the reset course.
* @return array status array
*/
function widgetspace_reset_userdata($data) {
return array();
}
/**
* List of view style log actions
* @return array
*/
function widgetspace_get_view_actions() {
return array('view','view all');
}
/**
* List of update style log actions
* @return array
*/
function widgetspace_get_post_actions() {
return array('update', 'add');
}
/**
* Add widgetspace instance.
* @param object $data
* @param object $mform
* @return int new widgetspace instance id
*/
function widgetspace_add_instance($data, $mform) {
global $CFG, $DB;
require_once("$CFG->libdir/resourcelib.php");
$cmid = $data->coursemodule;
$draftitemid = $data->widgetspace['itemid'];
$data->timemodified = time();
$displayoptions = array();
if ($data->display == RESOURCELIB_DISPLAY_POPUP) {
$displayoptions['popupwidth'] = $data->popupwidth;
$displayoptions['popupheight'] = $data->popupheight;
}
$displayoptions['printheading'] = $data->printheading;
$displayoptions['printintro'] = $data->printintro;
$data->displayoptions = serialize($displayoptions);
$data->content = $data->widgetspace['text'];
$data->contentformat = $data->widgetspace['format'];
$data->id = $DB->insert_record('widgetspace', $data);
// we need to use context now, so we need to make sure all needed info is already in db
$DB->set_field('course_modules', 'instance', $data->id, array('id'=>$cmid));
$context = get_context_instance(CONTEXT_MODULE, $cmid);
if ($draftitemid) {
$data->content = file_save_draft_area_files($draftitemid, $context->id, 'mod_widgetspace', 'content', 0, widgetspace_get_editor_options($context), $data->content);
$DB->update_record('widgetspace', $data);
}
// add widgets for a widgetspace
$widgetspace = $data;
foreach ($widgetspace->gadget as $key => $value) {
$value = trim($value);
if (isset($value) && $value <> '') {
$gadget = new stdClass();
$gadget->url = $value;
$gadget->widgetspaceid = $widgetspace->id;
$gadget->timemodified = time();
// set height and name of a gadget
set_gadget_metadata($gadget->url,$gadget);
$DB->insert_record("widgetspace_gadgets", $gadget);
}
}
return $data->id;
}
/**
* Update widgetspace instance.
* @param object $data
* @param object $mform
* @return bool true
*/
function widgetspace_update_instance($data, $mform) {
global $CFG, $DB;
require_once("$CFG->libdir/resourcelib.php");
$cmid = $data->coursemodule;
$draftitemid = $data->widgetspace['itemid'];
$data->timemodified = time();
$data->id = $data->instance;
$data->revision++;
$displayoptions = array();
if ($data->display == RESOURCELIB_DISPLAY_POPUP) {
$displayoptions['popupwidth'] = $data->popupwidth;
$displayoptions['popupheight'] = $data->popupheight;
}
$displayoptions['printheading'] = $data->printheading;
$displayoptions['printintro'] = $data->printintro;
$data->displayoptions = serialize($displayoptions);
$data->content = $data->widgetspace['text'];
$data->contentformat = $data->widgetspace['format'];
//update, delete or insert gadgets
$widgetspace = $data;
foreach ($widgetspace->gadget as $key => $value) {
$value = trim($value);
$gadget = new stdClass();
$gadget->url = $value;
$gadget->widgetspaceid = $widgetspace->id;
// set height and name of a gadget
set_gadget_metadata($gadget->url,$gadget);
$gadget->timemodified = time();
if (isset($widgetspace->gadgetid[$key]) && !empty($widgetspace->gadgetid[$key])){//existing choice record
$gadget->id=$widgetspace->gadgetid[$key];
if (isset($value) && $value <> '') {
$DB->update_record("widgetspace_gadgets", $gadget);
} else { //empty old option - needs to be deleted.
$DB->delete_records("widgetspace_gadgets", array("id"=>$gadget->id));
}
} else {
if (isset($value) && $value <> '') {
$DB->insert_record("widgetspace_gadgets", $gadget);
}
}
}
$DB->update_record('widgetspace', $data);
$context = get_context_instance(CONTEXT_MODULE, $cmid);
if ($draftitemid) {
$data->content = file_save_draft_area_files($draftitemid, $context->id, 'mod_widgetspace', 'content', 0, widgetspace_get_editor_options($context), $data->content);
$DB->update_record('widgetspace', $data);
}
return true;
}
/**
* Request gadget metadata from shindig
*
* Takes $gadget as a parameter and adds height and name for it
*/
function set_gadget_metadata($gadget_url,$gadget) {
global $CFG;
require_once($CFG->dirroot.'/mod/widgetspace/lib/container.php');
$gadget_container = new GadgetContainer(null);
$shindig_url = $gadget_container->get_shindig_url();
$request = $shindig_url.'/gadgets/metadata?st=0:0:0:0:0:0:0';
$c = new curl();
$c->setopt(array('CURLOPT_TIMEOUT' => 3, 'CURLOPT_CONNECTTIMEOUT' => 3, 'CURLOPT_HTTPHEADER' => array("Content-Type: application/json","Accept: application/json")));
// , "Content-length: ".strlen($data)
$data = '{"context":{"view":"canvas","container":"default"},"gadgets":[{"url":"'.$gadget_url.'", "moduleId":0}]}';
$response = $c->post($request,$data);
$json = json_decode($response);
// var_dump($json);
$gadgets = $json->gadgets;
//set height of gadget
$gadget->height = ($gadgets[0]->height == 0) ? 200 : $gadgets[0]->height;
$gadget->name = $gadgets[0]->title; //set name of gadget
$gadget->thumbnail = $gadgets[0]->thumbnail;
$gadget->screenshot = $gadgets[0]->screenshot;
$gadget->description = $gadgets[0]->description;
}
/**
* Delete widgetspace instance.
* @param int $id
* @return bool true
*/
function widgetspace_delete_instance($id) {
global $DB;
if (!$widgetspace = $DB->get_record('widgetspace', array('id'=>$id))) {
return false;
}
// note: all context files are deleted automatically
$DB->delete_records('widgetspace', array('id'=>$widgetspace->id));
return true;
}
/**
* Return use outline
* @param object $course
* @param object $user
* @param object $mod
* @param object $widgetspace
* @return object|null
*/
function widgetspace_user_outline($course, $user, $mod, $widgetspace) {
global $DB;
if ($logs = $DB->get_records('log', array('userid'=>$user->id, 'module'=>'widgetspace',
'action'=>'view', 'info'=>$widgetspace->id), 'time ASC')) {
$numviews = count($logs);
$lastlog = array_pop($logs);
$result = new stdClass();
$result->info = get_string('numviews', '', $numviews);
$result->time = $lastlog->time;
return $result;
}
return NULL;
}
/**
* Return use complete
* @param object $course
* @param object $user
* @param object $mod
* @param object $widgetspace
*/
function widgetspace_user_complete($course, $user, $mod, $widgetspace) {
global $CFG, $DB;
if ($logs = $DB->get_records('log', array('userid'=>$user->id, 'module'=>'widgetspace',
'action'=>'view', 'info'=>$widgetspace->id), 'time ASC')) {
$numviews = count($logs);
$lastlog = array_pop($logs);
$strmostrecently = get_string('mostrecently');
$strnumviews = get_string('numviews', '', $numviews);
echo "$strnumviews - $strmostrecently ".userdate($lastlog->time);
} else {
print_string('neverseen', 'widgetspace');
}
}
/**
* Returns the users with data in one widgetspace
*
* @todo: deprecated - to be deleted in 2.2
*
* @param int $widgetspaceid
* @return bool false
*/
function widgetspace_get_participants($widgetspaceid) {
return false;
}
/**
* Given a course_module object, this function returns any
* "extra" information that may be needed when printing
* this activity in a course listing.
*
* See {@link get_array_of_activities()} in course/lib.php
*
* @param object $coursemodule
* @return object info
*/
function widgetspace_get_coursemodule_info($coursemodule) {
global $CFG, $DB;
require_once("$CFG->libdir/resourcelib.php");
if (!$widgetspace = $DB->get_record('widgetspace', array('id'=>$coursemodule->instance), 'id, name, display, displayoptions')) {
return NULL;
}
$info = new stdClass();
$info->name = $widgetspace->name;
if ($widgetspace->display != RESOURCELIB_DISPLAY_POPUP) {
return $info;
}
$fullurl = "$CFG->wwwroot/mod/widgetspace/view.php?id=$coursemodule->id&inpopup=1";
$options = empty($widgetspace->displayoptions) ? array() : unserialize($widgetspace->displayoptions);
$width = empty($options['popupwidth']) ? 620 : $options['popupwidth'];
$height = empty($options['popupheight']) ? 450 : $options['popupheight'];
$wh = "width=$width,height=$height,toolbar=no,location=no,menubar=no,copyhistory=no,status=no,directories=no,scrollbars=yes,resizable=yes";
$info->extra = "onclick=\"window.open('$fullurl', '', '$wh'); return false;\"";
return $info;
}
/**
* Lists all browsable file areas
* @param object $course
* @param object $cm
* @param object $context
* @return array
*/
function widgetspace_get_file_areas($course, $cm, $context) {
$areas = array();
$areas['content'] = get_string('content', 'widgetspace');
return $areas;
}
/**
* File browsing support for widgetspace module content area.
* @param object $browser
* @param object $areas
* @param object $course
* @param object $cm
* @param object $context
* @param string $filearea
* @param int $itemid
* @param string $filepath
* @param string $filename
* @return object file_info instance or null if not found
*/
function widgetspace_get_file_info($browser, $areas, $course, $cm, $context, $filearea, $itemid, $filepath, $filename) {
global $CFG;
if (!has_capability('moodle/course:managefiles', $context)) {
// students can not peak here!
return null;
}
$fs = get_file_storage();
if ($filearea === 'content') {
$filepath = is_null($filepath) ? '/' : $filepath;
$filename = is_null($filename) ? '.' : $filename;
$urlbase = $CFG->wwwroot.'/pluginfile.php';
if (!$storedfile = $fs->get_file($context->id, 'mod_widgetspace', 'content', 0, $filepath, $filename)) {
if ($filepath === '/' and $filename === '.') {
$storedfile = new virtual_root_file($context->id, 'mod_widgetspace', 'content', 0);
} else {
// not found
return null;
}
}
require_once("$CFG->dirroot/mod/widgetspace/locallib.php");
return new widgetspace_content_file_info($browser, $context, $storedfile, $urlbase, $areas[$filearea], true, true, true, false);
}
// note: widgetspace_intro handled in file_browser automatically
return null;
}
/**
* Serves the widgetspace files.
* @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 - just send the file
*/
function widgetspace_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload) {
global $CFG, $DB;
require_once("$CFG->libdir/resourcelib.php");
if ($context->contextlevel != CONTEXT_MODULE) {
return false;
}
require_course_login($course, true, $cm);
if (!has_capability('mod/widgetspace:view', $context)) {
return false;
}
if ($filearea !== 'content') {
// intro is handled automatically in pluginfile.php
return false;
}
array_shift($args); // ignore revision - designed to prevent caching problems only
$fs = get_file_storage();
$relativepath = implode('/', $args);
$fullpath = "/$context->id/mod_widgetspace/$filearea/0/$relativepath";
if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
$widgetspace = $DB->get_record('widgetspace', array('id'=>$cm->instance), 'id, legacyfiles', MUST_EXIST);
if ($widgetspace->legacyfiles != RESOURCELIB_LEGACYFILES_ACTIVE) {
return false;
}
if (!$file = resourcelib_try_file_migration('/'.$relativepath, $cm->id, $cm->course, 'mod_widgetspace', 'content', 0)) {
return false;
}
//file migrate - update flag
$widgetspace->legacyfileslast = time();
$DB->update_record('widgetspace', $widgetspace);
}
// finally send the file
send_stored_file($file, 86400, 0, $forcedownload);
}
/**
* This function extends the global navigation for the site.
* It is important to note that you should not rely on PAGE objects within this
* body of code as there is no guarantee that during an AJAX request they are
* available
*
* @param navigation_node $navigation The widgetspace node within the global navigation
* @param stdClass $course The course object returned from the DB
* @param stdClass $module The module object returned from the DB
* @param stdClass $cm The course module instance returned from the DB
*/
function widgetspace_extend_navigation($navigation, $course, $module, $cm) {
/**
* This is currently just a stub so that it can be easily expanded upon.
* When expanding just remove this comment and the line below and then add
* you content.
*/
$navigation->nodetype = navigation_node::NODETYPE_LEAF;
}
/**
* Return a list of widgetspace types
* @param string $widgetspacetype current widgetspace type
* @param stdClass $parentcontext Block's parent context
* @param stdClass $currentcontext Current context of block
*/
function widgetspace_widgetspace_type_list($widgetspacetype, $parentcontext, $currentcontext) {
$module_widgetspacetype = array('mod-widgetspace-*'=>get_string('widgetspace-mod-widgetspace-x', 'widgetspace'));
return $module_widgetspacetype;
}