-
Notifications
You must be signed in to change notification settings - Fork 2
/
lib.php
450 lines (395 loc) · 16.4 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
<?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/>.
/**
* This plugin is used to access wpvod videos
*
* @since Moodle 2.0
* @package repository_wpvod
* @copyright 2010 Dongsheng Cai {@link http://dongsheng.org}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once($CFG->dirroot . '/repository/lib.php');
//use curl;
/**
* repository_wpvod class
*
* @since Moodle 2.0
* @package repository_wpvod
* @copyright 2009 Dongsheng Cai {@link http://dongsheng.org}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class repository_wpvod extends repository {
/** @var int maximum number of thumbs per page */
const wpvod_THUMBS_PER_PAGE = 15;
/**
* API key for using the wpvod Data API.
* @var mixed
*/
private $apikey;
/**
* Internal Wordpress VOD REST API URL.
* @var mixed
*/
private $wpresturl;
/**
* Public Wordpress VOD - KALTURA streamer NGINX plug settings URL.
* @var mixed
*/
private $wpvodurl;
/**
* Wordpress RESTFul API v2 orderby types
* https://v2.wp-api.org/reference/media/
*
*/
private $orderbytypes = array('relevance' => 'relevance', 'date' => 'date', 'title' => 'title', 'id' => 'id');
/**
* wpvod plugin constructor
* @param int $repositoryid
* @param object $context
* @param array $options
*/
public function __construct($repositoryid, $context = SYSCONTEXTID, $options = array()) {
parent::__construct($repositoryid, $context, $options);
$this->apikey = $this->get_option('apikey');
// Internal URL, not open to the world
// needs to be translated to a public URL,
// specially setup to use KALTURA streamer NGINX plug settings
//
// NOTE: If you do not seperate public and internal networks,
// both "wpresturl" and "wpvodurl" should be the same URL
$this->wpresturl = get_config('wpvod', 'wpresturl');
if (empty($this->wpresturl)) {
$this->wpresturl = 'http://davidsonvod.weizmann.ac.il:8080/wordpress';
}
// KALTURA streamer NGINX plug settings URL
// https://gist.github.com/nadavkav/56f227572afd0c82d06425a79151886c#file-usr_local_nginx_conf_nginx-conf-L145
$this->wpvodurl = get_config('wpvod', 'wpvodurl');
if (empty($this->wpvodurl)) {
$this->wpvodurl = 'https://davidsonvod.weizmann.ac.il/vod';
}
}
/**
* Save apikey in config table.
* @param array $options
* @return boolean
*/
public function set_option($options = array()) {
if (!empty($options['apikey'])) {
set_config('apikey', trim($options['apikey']), 'wpvod');
}
unset($options['apikey']);
return parent::set_option($options);
}
/**
* Get apikey from config table.
*
* @param string $config
* @return mixed
*/
public function get_option($config = '') {
if ($config === 'apikey') {
return trim(get_config('wpvod', 'apikey'));
} else {
$options['apikey'] = trim(get_config('wpvod', 'apikey'));
}
return parent::get_option($config);
}
public function check_login() {
return !empty($this->keyword);
}
/**
* Return search results
* @param string $search_text
* @param int $page
* @return array
*/
public function search($search_text, $page = 0) {
global $SESSION;
$orderby = optional_param('wpvod_orderby', '', PARAM_TEXT);
$mode = optional_param('wpvod_mode', '', PARAM_TEXT);
$sess_keyword = 'wpvod_'.$this->id.'_keyword';
$sess_orderby = 'wpvod_'.$this->id.'_orderby';
$sess_mode = 'wpvod_'.$this->id.'_mode';
// This is the request of another page for the last search, retrieve the cached keyword and orderby
if ($page && !$search_text && isset($SESSION->{$sess_keyword})) {
$search_text = $SESSION->{$sess_keyword};
}
if ($page && !$orderby && isset($SESSION->{$sess_orderby})) {
$orderby = $SESSION->{$sess_orderby};
}
if (!$orderby) {
$orderby = 'relevance'; // default
}
if ($page && !$mode && isset($SESSION->{$sess_mode})) {
$mode = $SESSION->{$sess_mode};
}
// Save this search in session
$SESSION->{$sess_keyword} = $search_text;
$SESSION->{$sess_orderby} = $orderby;
$SESSION->{$sess_mode} = $mode;
$this->keyword = $search_text;
$ret = array();
$ret['nologin'] = true;
$ret['page'] = (int)$page;
if ($ret['page'] < 1) {
$ret['page'] = 1;
}
$start = ($ret['page'] - 1) * self::wpvod_THUMBS_PER_PAGE;
$max = self::wpvod_THUMBS_PER_PAGE;
$ret['list'] = $this->_get_collection($search_text, $start, $max, $orderby, $mode);
//$ret['norefresh'] = true;
$ret['nosearch'] = true;
// If the number of results is smaller than $max, it means we reached the last page.
$ret['pages'] = (count($ret['list']) < $max) ? $ret['page'] : -1;
return $ret;
}
/**
* Private method to get wpvod search results
* @param string $keyword
* @param int $start
* @param int $max max results
* @param string $orderby
* @param string $mode
* @throws moodle_exception If the google API returns an error.
* @return array
*/
private function _get_collection($keyword, $start, $max, $orderby, $mode) {
global $DB, $SESSION;
$list = array();
$error = null;
list($context, $course, $cm) = get_context_info_array($this->context->id);
$courseid = is_object($course) ? $course->id : SITEID;
//$context = context_course::instance($courseid);
// https://v2.wp-api.org/reference/media/
//
if (empty($keyword) && $mode == 'currentcourse') {
$keyword = $courseid;
}
// filter[wp_query-arguments] - http://www.billerickson.net/code/wp_query-arguments/
//$params = array('search' => $keyword, 'offset' => $start, 'per_page' => $max, 'orderby' => $orderby, 'mime_type' => 'video/mp4');
$params = array('search' => $keyword, 'offset' => $start, 'per_page' => $max, 'orderby' => $orderby, 'mime_type' => 'video/mp4');
//$params = array('search' => $keyword, 'offset' => $start);
$wsurl = $this->wpresturl.'/wp-json/wp/v2/media';
// TODO: Use Moodle's cURL
$curl_vodlist= new \curl(array('proxy' => false));
$vodlist_json = $curl_vodlist->get($wsurl, $params);
//var_dump($vodlist_json);die;
// My cURL
//$vodlist = $this->ws_get($wsurl);
$vodlist = json_decode($vodlist_json, true);
//var_dump($vodlist);die;
foreach ($vodlist as $voditem) {
//preg_match('/unickoid=(\d{1,4})+/',$voditem['description'], $matches);
//$unickoid = $matches[1].'<br>';
// Get Moodle course id from WS response
preg_match('/mcid=(\d{1,4})+/',$voditem['description'], $matches);
$mcid = $matches[1];
//preg_match('/mrid=(\d{1,4})+/',$voditem['description'], $matches);
//$mrid = $matches[1].'<br>';
// Only get relevant videos for current course. (if mode == currentcourse)
if (($mode == 'currentcourse') && ($courseid != $mcid)) continue;
$thiscourse = $DB->get_record('course', array('id' => $mcid));
$coursename = $thiscourse->shortname;
if ($voditem['mime_type'] == 'video/mp4'
//AND mb_strpos(" ".$voditem['title']['rendered']." ", $keyword)
) {
// Search $keyword in title. (if mode == searchintitle)
if ($mode == 'title' &&
mb_strpos(" ".$voditem['title']['rendered']." ", $keyword) === false) continue;
// Get video thumb link.
// todo: combine this info into the original WS call. (save network traffic)
$json_thimblink = $this->ws_get($voditem['_links']['wp:featuredmedia'][0]['href']);
//$thumblink = str_replace('http://davidsonvod.weizmann.ac.il/wordpress/wp-content/uploads',
// 'https://davidsonvod.weizmann.ac.il/vod', $json_thimblink['guid']['rendered']);
$thumblink = str_replace('http://', 'https://', $json_thimblink['guid']['rendered']);
// Use direct thumbnail link.
//$thumblink = $json_thimblink['guid']['rendered'];
$videolink = str_replace($this->wpresturl.'/wp-content/uploads',
$this->wpvodurl, $voditem['guid']['rendered']);
$list[] = array(
//'shorttitle' => $voditem['title']['rendered'],
//'shorttitle' => $voditem['media_details']['source_url'],
'thumbnail_title' => $voditem['title']['rendered']. ' - '.$coursename,
//'thumbnail_title' => $voditem['media_details']['source_url'],
'title' => $voditem['title']['rendered']. ' - '.$coursename, // This is a hack so we accept this file by extension.
//'description' => $voditem['description'], // This is a hack so we accept this file by extension.
'thumbnail' => $thumblink,
'thumbnail_width' => 150, //(int)$thumb->width,
'thumbnail_height' => 150, //(int)$thumb->height,
'size' => $voditem['media_details']['filesize'],
'date' => strtotime(date_format(date_create($voditem['date']),"Y/m/d")),
'author' => 'Davidson',
//'source' => $voditem['media_details']['source_url'],
//'source' => $voditem['guid']['rendered'],
'source' => $videolink,
);
}
}
return $list;
}
private function ws_get($url) {
$ch = curl_init(); //curl handler init
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);// set optional params
curl_setopt($ch,CURLOPT_HEADER, false);
$result=curl_exec($ch);
curl_close($ch);
return json_decode($result, true);
}
/**
* wpvod plugin doesn't support global search
*/
public function global_search() {
return false;
}
public function get_listing($path='', $page = '') {
return array();
}
/**
* Generate search form
*/
public function print_login($ajax = true) {
$ret = array();
$search = new stdClass();
$search->type = 'text';
$search->id = 'wpvod_search';
$search->name = 's';
$search->label = get_string('search', 'repository_wpvod').': ';
$mode = new stdClass();
$mode->type = 'select';
$mode->options = array(
(object)array(
'value' => 'currentcourse',
'label' => get_string('currentcourse', 'repository_wpvod')
),
(object)array(
'value' => 'title',
'label' => get_string('searchintitle', 'repository_wpvod')
),
(object)array(
'value' => 'description',
'label' => get_string('searchindescription', 'repository_wpvod')
),
(object)array(
'value' => 'tags',
'label' => get_string('searchintags', 'repository_wpvod')
)
);
$mode->id = 'wpvod_mode';
$mode->name = 'wpvod_mode';
$mode->label = get_string('mode', 'repository_wpvod').': ';
$orderby = new stdClass();
$orderby->type = 'select';
$orderby->options = array(
(object)array(
'value' => 'relevance',
'label' => get_string('orderbyrelevance', 'repository_wpvod')
),
(object)array(
'value' => 'date',
'label' => get_string('orderbypublished', 'repository_wpvod')
),
(object)array(
'value' => 'title',
'label' => get_string('orderbytitle', 'repository_wpvod')
),
(object)array(
'value' => 'rating',
'label' => get_string('orderbyrating', 'repository_wpvod')
),
(object)array(
'value' => 'viewCount',
'label' => get_string('orderbyviewcount', 'repository_wpvod')
)
);
$orderby->id = 'wpvod_orderby';
$orderby->name = 'wpvod_orderby';
$orderby->label = get_string('orderby', 'repository_wpvod').': ';
$ret['login'] = array($search, $mode, $orderby);
$ret['login_btn_label'] = get_string('search');
$ret['login_btn_action'] = 'search';
$ret['allowcaching'] = true; // indicates that login form can be cached in filepicker.js
return $ret;
}
/**
* file types supported by wpvod plugin
* @return array
*/
public function supported_filetypes() {
return array('video', 'video/mp4');
}
/**
* wpvod plugin only return external links
* @return int
*/
public function supported_returntypes() {
return FILE_EXTERNAL;
}
/**
* Is this repository accessing private data?
*
* @return bool
*/
public function contains_private_data() {
return false;
}
/**
* Add plugin settings input to Moodle form.
* @param object $mform
* @param string $classname
*/
public static function type_config_form($mform, $classname = 'repository') {
parent::type_config_form($mform, $classname);
$apikey = get_config('wpvod', 'apikey');
if (empty($apikey)) {
$apikey = '';
}
// Internal URL, not open to the world
// needs to be translated to a public URL,
// specially setup to use KALTURA streamer NGINX plug settings
//
// NOTE: If you do not seperate public and internal networks,
// both "wpresturl" and "wpvodurl" should be the same URL
$wpresturl = get_config('wpvod', 'wpresturl');
if (empty($wpresturl)) {
$wpresturl = 'http://davidsonvod.weizmann.ac.il:8080/wordpress';
}
// KALTURA streamer NGINX plug settings URL
// https://gist.github.com/nadavkav/56f227572afd0c82d06425a79151886c#file-usr_local_nginx_conf_nginx-conf-L145
$wpvodurl = get_config('wpvod', 'wpvodurl');
if (empty($wpvodurl)) {
$wpvodurl = 'https://davidsonvod.weizmann.ac.il/vod';
}
// TODO: use "apikey" to "authenticate" the connection between Moodle and WP-VOD (REST APIs)
$mform->addElement('text', 'apikey', get_string('apikey', 'repository_wpvod'), array('value' => $apikey, 'size' => '40'));
$mform->setType('apikey', PARAM_RAW_TRIMMED);
$mform->addRule('apikey', get_string('required'), 'required', null, 'client');
$mform->addElement('text', 'wpresturl', get_string('wpresturl', 'repository_wpvod'), array('value' => $wpresturl, 'size' => '70'));
$mform->setType('wpresturl', PARAM_RAW_TRIMMED);
$mform->addRule('wpresturl', get_string('required'), 'required', null, 'client');
$mform->addElement('text', 'wpvodurl', get_string('wpvodurl', 'repository_wpvod'), array('value' => $wpvodurl, 'size' => '60'));
$mform->setType('wpvodurl', PARAM_RAW_TRIMMED);
$mform->addRule('wpvodurl', get_string('required'), 'required', null, 'client');
$mform->addElement('static', null, '', get_string('information', 'repository_wpvod'));
}
/**
* Names of the plugin settings
* @return array
*/
public static function get_type_option_names() {
return array('apikey', 'pluginname');
}
}