-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathlib.php
369 lines (306 loc) · 11.5 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
<?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 interface functions and constants.
*
* @package mod_googlemeet
* @copyright 2020 Rone Santos <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use mod_googlemeet\client;
/**
* Return if the plugin supports $feature.
*
* @param string $feature Constant representing the feature.
* @return true | null True if the feature is supported, null otherwise.
*/
function googlemeet_supports($feature) {
switch ($feature) {
case FEATURE_MOD_ARCHETYPE:
return MOD_ARCHETYPE_RESOURCE;
case FEATURE_GROUPS:
return false;
case FEATURE_GROUPINGS:
return false;
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;
case FEATURE_SHOW_DESCRIPTION:
return true;
default:
return null;
}
}
/**
* Saves a new instance of the mod_googlemeet into the database.
*
* Given an object containing all the necessary data, (defined by the form
* in mod_form.php) this function will create a new instance and return the id
* number of the instance.
*
* @param object $googlemeet An object from the form.
* @param mod_googlemeet_mod_form $mform The form.
* @return int The id of the newly inserted record.
*/
function googlemeet_add_instance($googlemeet, $mform = null) {
global $DB, $CFG;
require_once($CFG->dirroot . '/mod/googlemeet/locallib.php');
$client = new client();
// Se não esta logado na conta do Google.
if (!$client->check_login()) {
$url = googlemeet_clear_url($googlemeet->url);
if ($url) {
$googlemeet->url = $url;
}
} else {
$calendarevent = $client->create_meeting_event($googlemeet);
$googlemeet->url = $calendarevent->hangoutLink;
$link = new moodle_url($calendarevent->htmlLink);
$googlemeet->eventid = $link->get_param('eid');
$googlemeet->originalname = $calendarevent->summary;
$googlemeet->creatoremail = $calendarevent->creator->email;
}
if (isset($googlemeet->days)) {
$googlemeet->days = json_encode($googlemeet->days);
}
$googlemeet->timemodified = time();
if (!$googlemeet->id = $DB->insert_record('googlemeet', $googlemeet)) {
return false;
}
if (isset($googlemeet->days)) {
$googlemeet->days = json_decode($googlemeet->days, true);
}
$events = googlemeet_construct_events_data_for_add($googlemeet);
googlemeet_set_events($googlemeet, $events);
return $googlemeet->id;
}
/**
* Updates an instance of the mod_googlemeet in the database.
*
* Given an object containing all the necessary data (defined in mod_form.php),
* this function will update an existing instance with new data.
*
* @param object $googlemeet An object from the form in mod_form.php.
* @param mod_googlemeet_mod_form $mform The form.
* @return bool True if successful, false otherwise.
*/
function googlemeet_update_instance($googlemeet, $mform = null) {
global $DB, $CFG;
require_once($CFG->dirroot . '/mod/googlemeet/locallib.php');
$googlemeet->id = $googlemeet->instance;
if (isset($googlemeet->addmultiply)) {
if (isset($googlemeet->days)) {
$googlemeet->days = json_encode($googlemeet->days);
}
} else {
$googlemeet->addmultiply = 0;
$googlemeet->days = null;
$googlemeet->eventenddate = $googlemeet->eventdate;
$googlemeet->period = null;
}
if (isset($googlemeet->url)) {
$url = googlemeet_clear_url($googlemeet->url);
if ($url) {
$googlemeet->url = $url;
}
}
$googlemeet->timemodified = time();
$googlemeetupdated = $DB->update_record('googlemeet', $googlemeet);
if (isset($googlemeet->days)) {
$googlemeet->days = json_decode($googlemeet->days);
}
$events = googlemeet_construct_events_data_for_add($googlemeet);
googlemeet_set_events($googlemeet, $events);
return $googlemeetupdated;
}
/**
* Removes an instance of the mod_googlemeet from the database.
*
* @param int $id Id of the module instance.
* @return bool True if successful, false on failure.
*/
function googlemeet_delete_instance($id) {
global $DB, $CFG;
require_once($CFG->dirroot . '/mod/googlemeet/locallib.php');
$exists = $DB->get_record('googlemeet', array('id' => $id));
if (!$exists) {
return false;
}
googlemeet_delete_events($id);
$DB->delete_records('googlemeet_recordings', ['googlemeetid' => $id]);
$DB->delete_records('googlemeet', array('id' => $id));
return true;
}
/**
* Add a get_coursemodule_info function in case any feedback type wants to add 'extra' information
* for the course (see resource).
*
* Given a course_module object, this function returns any "extra" information that may be needed
* when printing this activity in a course listing. See get_array_of_activities() in course/lib.php.
*
* @param stdClass $coursemodule The coursemodule object (record).
* @return cached_cm_info An object on information that the courses
* will know about (most noticeably, an icon).
*/
function googlemeet_get_coursemodule_info($coursemodule) {
global $CFG, $DB;
if (!$googlemeet = $DB->get_record(
'googlemeet',
['id' => $coursemodule->instance],
'id, name, url, intro, introformat'
)) {
return null;
}
$info = new cached_cm_info();
$info->name = $googlemeet->name;
if ($coursemodule->showdescription) {
// Convert intro to html. Do not filter cached version, filters run at display time.
$info->content = format_module_intro('googlemeet', $googlemeet, $coursemodule->id, false);
}
return $info;
}
/**
* Mark the activity completed (if required) and trigger the course_module_viewed event.
*
* @param stdClass $googlemeet googlemeet object
* @param stdClass $course course object
* @param stdClass $cm course module object
* @param stdClass $context context object
* @since Moodle 3.0
*/
function googlemeet_view($googlemeet, $course, $cm, $context) {
// Trigger course_module_viewed event.
$params = array(
'context' => $context,
'objectid' => $googlemeet->id
);
$event = \mod_googlemeet\event\course_module_viewed::create($params);
$event->add_record_snapshot('course_modules', $cm);
$event->add_record_snapshot('course', $course);
$event->add_record_snapshot('googlemeet', $googlemeet);
$event->trigger();
// Completion.
$completion = new completion_info($course);
$completion->set_module_viewed($cm);
}
/**
* Returns a list of recordings from Google Meet
*
* @param array $params Array of parameters to a query.
* @return stdClass $formattedrecordings List of recordings
*/
function googlemeet_list_recordings($params) {
global $DB;
$recordings = $DB->get_records(
'googlemeet_recordings',
$params,
'createdtime DESC',
'id,googlemeetid,name,createdtime,duration,webviewlink,visible'
);
$formattedrecordings = [];
foreach ($recordings as $recording) {
$recording->createdtimeformatted = userdate($recording->createdtime);
array_push($formattedrecordings, $recording);
}
return $formattedrecordings;
}
/**
* Get icon mapping for font-awesome.
*/
function mod_googlemeet_get_fontawesome_icon_map() {
return [
'mod_googlemeet:logout' => 'fa-sign-out',
'mod_googlemeet:play' => 'fa-play'
];
}
/**
* Synchronizes Google Drive recordings with the database.
*
* @param int $googlemeetid the googlemeet ID
* @param array $files the array of recordings
* @return array of recordings
*/
function sync_recordings($googlemeetid, $files) {
global $DB;
$cm = get_coursemodule_from_instance('googlemeet', $googlemeetid, 0, false, MUST_EXIST);
$context = context_module::instance($cm->id);
require_capability('mod/googlemeet:syncgoogledrive', $context);
$googlemeetrecordings = $DB->get_records('googlemeet_recordings', ['googlemeetid' => $googlemeetid]);
$recordingids = array_column($googlemeetrecordings, 'recordingid');
$fileids = array_column($files, 'recordingId');
$updaterecordings = [];
$insertrecordings = [];
$deleterecordings = [];
foreach ($files as $file) {
if (!isset($file->unprocessed)) {
if (in_array($file->recordingId, $recordingids, true)) {
array_push($updaterecordings, $file);
} else {
array_push($insertrecordings, $file);
}
}
}
foreach ($googlemeetrecordings as $googlemeetrecording) {
if (!in_array($googlemeetrecording->recordingid, $fileids)) {
$deleterecordings['id'] = $googlemeetrecording->id;
}
}
if ($deleterecordings) {
$DB->delete_records('googlemeet_recordings', $deleterecordings);
}
if ($updaterecordings) {
foreach ($updaterecordings as $updaterecording) {
$recording = $DB->get_record('googlemeet_recordings', [
'googlemeetid' => $googlemeetid,
'recordingid' => $updaterecording->recordingId
]);
$recording->createdtime = $updaterecording->createdTime;
$recording->duration = $updaterecording->duration;
$recording->webviewlink = $updaterecording->webViewLink;
$recording->timemodified = time();
$DB->update_record('googlemeet_recordings', $recording);
}
$googlemeetrecord = $DB->get_record('googlemeet', ['id' => $googlemeetid]);
$googlemeetrecord->lastsync = time();
$DB->update_record('googlemeet', $googlemeetrecord);
}
if ($insertrecordings) {
$recordings = [];
foreach ($insertrecordings as $insertrecording) {
$recording = new stdClass();
$recording->googlemeetid = $googlemeetid;
$recording->recordingid = $insertrecording->recordingId;
$recording->name = $insertrecording->name;
$recording->createdtime = $insertrecording->createdTime;
$recording->duration = $insertrecording->duration;
$recording->webviewlink = $insertrecording->webViewLink;
$recording->timemodified = time();
array_push($recordings, $recording);
}
$DB->insert_records('googlemeet_recordings', $recordings);
$googlemeetrecord = $DB->get_record('googlemeet', ['id' => $googlemeetid]);
$googlemeetrecord->lastsync = time();
$DB->update_record('googlemeet', $googlemeetrecord);
}
return googlemeet_list_recordings(['googlemeetid' => $googlemeetid]);
}