forked from ncstate-delta/moodle-mod_zoom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
locallib.php
executable file
·1257 lines (1093 loc) · 43.5 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
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// This file is part of the Zoom plugin for 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 zoom
*
* All the zoom specific functions, needed to implement the module
* logic, should go here. Never include this file from your lib.php!
*
* @package mod_zoom
* @copyright 2015 UC Regents
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
global $CFG;
require_once($CFG->dirroot.'/mod/zoom/lib.php');
require_once($CFG->dirroot.'/mod/zoom/classes/webservice.php');
// Constants.
// Audio options.
define('ZOOM_AUDIO_TELEPHONY', 'telephony');
define('ZOOM_AUDIO_VOIP', 'voip');
define('ZOOM_AUDIO_BOTH', 'both');
// Meeting types.
define('ZOOM_INSTANT_MEETING', 1);
define('ZOOM_SCHEDULED_MEETING', 2);
define('ZOOM_RECURRING_MEETING', 3);
define('ZOOM_SCHEDULED_WEBINAR', 5);
define('ZOOM_RECURRING_WEBINAR', 6);
define('ZOOM_RECURRING_FIXED_MEETING', 8);
define('ZOOM_RECURRING_FIXED_WEBINAR', 9);
// Meeting status.
define('ZOOM_MEETING_EXPIRED', 0);
define('ZOOM_MEETING_EXISTS', 1);
// Number of meetings per page from zoom's get user report.
define('ZOOM_DEFAULT_RECORDS_PER_CALL', 30);
define('ZOOM_MAX_RECORDS_PER_CALL', 300);
// User types. Numerical values from Zoom API.
define('ZOOM_USER_TYPE_BASIC', 1);
define('ZOOM_USER_TYPE_PRO', 2);
define('ZOOM_USER_TYPE_CORP', 3);
define('ZOOM_MEETING_NOT_FOUND_ERROR_CODE', 3001);
define('ZOOM_USER_NOT_FOUND_ERROR_CODE', 1001);
define('ZOOM_INVALID_USER_ERROR_CODE', 1120);
// Webinar options.
define('ZOOM_WEBINAR_DISABLE', 0);
define('ZOOM_WEBINAR_SHOWONLYIFLICENSE', 1);
define('ZOOM_WEBINAR_ALWAYSSHOW', 2);
// Encryption type options.
define('ZOOM_ENCRYPTION_DISABLE', 0);
define('ZOOM_ENCRYPTION_SHOWONLYIFPOSSIBLE', 1);
define('ZOOM_ENCRYPTION_ALWAYSSHOW', 2);
// Encryption types. String values for Zoom API.
define('ZOOM_ENCRYPTION_TYPE_ENHANCED', 'enhanced_encryption');
define('ZOOM_ENCRYPTION_TYPE_E2EE', 'e2ee');
// Alternative hosts options.
define('ZOOM_ALTERNATIVEHOSTS_DISABLE', 0);
define('ZOOM_ALTERNATIVEHOSTS_INPUTFIELD', 1);
define('ZOOM_ALTERNATIVEHOSTS_PICKER', 2);
// Scheduling privilege options.
define('ZOOM_SCHEDULINGPRIVILEGE_DISABLE', 0);
define('ZOOM_SCHEDULINGPRIVILEGE_ENABLE', 1);
// All meetings options.
define('ZOOM_ALLMEETINGS_DISABLE', 0);
define('ZOOM_ALLMEETINGS_ENABLE', 1);
// Download iCal options.
define('ZOOM_DOWNLOADICAL_DISABLE', 0);
define('ZOOM_DOWNLOADICAL_ENABLE', 1);
// Capacity warning options.
define('ZOOM_CAPACITYWARNING_DISABLE', 0);
define('ZOOM_CAPACITYWARNING_ENABLE', 1);
// Recurrence type options.
define('ZOOM_RECURRINGTYPE_NOTIME', 0);
define('ZOOM_RECURRINGTYPE_DAILY', 1);
define('ZOOM_RECURRINGTYPE_WEEKLY', 2);
define('ZOOM_RECURRINGTYPE_MONTHLY', 3);
// Recurring monthly repeat options.
define('ZOOM_MONTHLY_REPEAT_OPTION_DAY', 1);
define('ZOOM_MONTHLY_REPEAT_OPTION_WEEK', 2);
// Recurring end date options.
define('ZOOM_END_DATE_OPTION_BY', 1);
define('ZOOM_END_DATE_OPTION_AFTER', 2);
// API endpoint options.
define('ZOOM_API_ENDPOINT_EU', 'eu');
define('ZOOM_API_ENDPOINT_GLOBAL', 'global');
define('ZOOM_API_URL_EU', 'https://eu01api-www4local.zoom.us/v2/');
define('ZOOM_API_URL_GLOBAL', 'https://api.zoom.us/v2/');
/**
* Entry not found on Zoom.
*/
class zoom_not_found_exception extends moodle_exception {
/**
* Web service response.
* @var string
*/
public $response = null;
/**
* Constructor
* @param string $response Web service response message
* @param int $errorcode Web service response error code
*/
public function __construct($response, $errorcode) {
$this->response = $response;
$this->zoomerrorcode = $errorcode;
parent::__construct('errorwebservice_notfound', 'zoom');
}
}
/**
* Bad request received by Zoom.
*/
class zoom_bad_request_exception extends moodle_exception {
/**
* Web service response.
* @var string
*/
public $response = null;
/**
* Constructor
* @param string $response Web service response message
* @param int $errorcode Web service response error code
*/
public function __construct($response, $errorcode) {
$this->response = $response;
$this->zoomerrorcode = $errorcode;
parent::__construct('errorwebservice_badrequest', 'zoom', '', $response);
}
}
/**
* Couldn't succeed within the allowed number of retries.
*/
class zoom_api_retry_failed_exception extends moodle_exception {
/**
* Web service response.
* @var string
*/
public $response = null;
/**
* Constructor
* @param string $response Web service response
* @param int $errorcode Web service response error code
*/
public function __construct($response, $errorcode) {
$this->response = $response;
$this->zoomerrorcode = $errorcode;
$a = new stdClass();
$a->response = $response;
$a->maxretries = mod_zoom_webservice::MAX_RETRIES;
parent::__construct('zoomerr_maxretries', 'zoom', '', $a);
}
}
/**
* Exceeded daily API limit.
*/
class zoom_api_limit_exception extends moodle_exception {
/**
* Web service response.
* @var string
*/
public $response = null;
/**
* Unix timestamp of next time to API can be called.
* @var int
*/
public $retryafter = null;
/**
* Constructor
* @param string $response Web service response
* @param int $errorcode Web service response error code
* @param int $retryafter Unix timestamp of next time to API can be called.
*/
public function __construct($response, $errorcode, $retryafter) {
$this->response = $response;
$this->zoomerrorcode = $errorcode;
$this->retryafter = $retryafter;
$a = new stdClass();
$a->response = $response;
parent::__construct('zoomerr_apilimit', 'zoom', '',
userdate($retryafter, get_string('strftimedaydatetime', 'core_langconfig')));
}
}
/**
* Terminate the current script with a fatal error.
*
* Adapted from core_renderer's fatal_error() method. Needed because throwing errors with HTML links in them will convert links
* to text using htmlentities. See MDL-66161 - Reflected XSS possible from some fatal error messages.
*
* So need custom error handler for fatal Zoom errors that have links to help people.
*
* @param string $errorcode The name of the string from error.php to print
* @param string $module name of module
* @param string $continuelink The url where the user will be prompted to continue.
* If no url is provided the user will be directed to
* the site index page.
* @param mixed $a Extra words and phrases that might be required in the error string
*/
function zoom_fatal_error($errorcode, $module='', $continuelink='', $a=null) {
global $CFG, $COURSE, $OUTPUT, $PAGE;
$output = '';
$obbuffer = '';
// Assumes that function is run before output is generated.
if ($OUTPUT->has_started()) {
// If not then have to default to standard error.
throw new moodle_exception($errorcode, $module, $continuelink, $a);
}
$PAGE->set_heading($COURSE->fullname);
$output .= $OUTPUT->header();
// Output message without messing with HTML content of error.
$message = '<p class="errormessage">' . get_string($errorcode, $module, $a) . '</p>';
$output .= $OUTPUT->box($message, 'errorbox alert alert-danger', null, array('data-rel' => 'fatalerror'));
if ($CFG->debugdeveloper) {
if (!empty($debuginfo)) {
$debuginfo = s($debuginfo); // Removes all nasty JS.
$debuginfo = str_replace("\n", '<br />', $debuginfo); // Keep newlines.
$output .= $OUTPUT->notification('<strong>Debug info:</strong> '.$debuginfo, 'notifytiny');
}
if (!empty($backtrace)) {
$output .= $OUTPUT->notification('<strong>Stack trace:</strong> '.format_backtrace($backtrace), 'notifytiny');
}
if ($obbuffer !== '' ) {
$output .= $OUTPUT->notification('<strong>Output buffer:</strong> '.s($obbuffer), 'notifytiny');
}
}
if (!empty($continuelink)) {
$output .= $OUTPUT->continue_button($continuelink);
}
$output .= $OUTPUT->footer();
// Padding to encourage IE to display our error page, rather than its own.
$output .= str_repeat(' ', 512);
echo $output;
exit(1); // General error code.
}
/**
* Get course/cm/zoom objects from url parameters, and check for login/permissions.
*
* @return array Array of ($course, $cm, $zoom)
*/
function zoom_get_instance_setup() {
global $DB;
$id = optional_param('id', 0, PARAM_INT); // Course_module ID.
$n = optional_param('n', 0, PARAM_INT); // Zoom instance ID.
if ($id) {
$cm = get_coursemodule_from_id('zoom', $id, 0, false, MUST_EXIST);
$course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
$zoom = $DB->get_record('zoom', array('id' => $cm->instance), '*', MUST_EXIST);
} else if ($n) {
$zoom = $DB->get_record('zoom', array('id' => $n), '*', MUST_EXIST);
$course = $DB->get_record('course', array('id' => $zoom->course), '*', MUST_EXIST);
$cm = get_coursemodule_from_instance('zoom', $zoom->id, $course->id, false, MUST_EXIST);
} else {
throw new moodle_exception('zoomerr_id_missing', 'mod_zoom');
}
require_login($course, true, $cm);
$context = context_module::instance($cm->id);
require_capability('mod/zoom:view', $context);
return array($course, $cm, $zoom);
}
/**
* Retrieves information for a meeting.
*
* @param int $zoomid
* @return array information about the meeting
*/
function zoom_get_sessions_for_display($zoomid) {
require_once(__DIR__.'/../../lib/moodlelib.php');
global $DB;
$sessions = array();
$format = get_string('strftimedatetimeshort', 'langconfig');
$instances = $DB->get_records('zoom_meeting_details', array('zoomid' => $zoomid));
foreach ($instances as $instance) {
// The meeting uuid, not the participant's uuid.
$uuid = $instance->uuid;
$participantlist = zoom_get_participants_report($instance->id);
$sessions[$uuid]['participants'] = $participantlist;
$uniquevalues = [];
$uniqueparticipantcount = 0;
foreach ($participantlist as $participant) {
$unique = true;
if ($participant->uuid != null) {
if (array_key_exists($participant->uuid, $uniquevalues)) {
$unique = false;
} else {
$uniquevalues[$participant->uuid] = true;
}
}
if ($participant->userid != null) {
if (!$unique || !array_key_exists($participant->userid, $uniquevalues)) {
$uniquevalues[$participant->userid] = true;
} else {
$unique = false;
}
}
if ($participant->user_email != null) {
if (!$unique || !array_key_exists($participant->user_email, $uniquevalues)) {
$uniquevalues[$participant->user_email] = true;
} else {
$unique = false;
}
}
$uniqueparticipantcount += $unique ? 1 : 0;
}
$sessions[$uuid]['count'] = $uniqueparticipantcount;
$sessions[$uuid]['topic'] = $instance->topic;
$sessions[$uuid]['duration'] = $instance->duration;
$sessions[$uuid]['starttime'] = userdate($instance->start_time, $format);
$sessions[$uuid]['endtime'] = userdate($instance->start_time + $instance->duration * 60, $format);
}
return $sessions;
}
/**
* Get the next occurrence of a meeting.
*
* @param stdClass $zoom
* @return int The timestamp of the next occurrence of a recurring meeting or
* 0 if this is a recurring meeting without fixed time or
* the timestamp of the meeting start date if this isn't a recurring meeting.
*/
function zoom_get_next_occurrence($zoom) {
global $DB;
// Prepare an ad-hoc request cache as this function could be called multiple times throughout a request
// and we want to avoid to make duplicate DB calls.
$cacheoptions = array(
'simplekeys' => true,
'simpledata' => true,
);
$cache = cache::make_from_params(cache_store::MODE_REQUEST, 'zoom', 'nextoccurrence', array(), $cacheoptions);
// If the next occurrence wasn't already cached, fill the cache.
$cachednextoccurrence = $cache->get($zoom->id);
if ($cachednextoccurrence === false) {
// If this isn't a recurring meeting.
if (!$zoom->recurring) {
// Use the meeting start time.
$cachednextoccurrence = $zoom->start_time;
// Or if this is a recurring meeting without fixed time.
} else if ($zoom->recurrence_type == ZOOM_RECURRINGTYPE_NOTIME) {
// Use 0 as there isn't anything better to return.
$cachednextoccurrence = 0;
// Otherwise we have a recurring meeting with a recurrence schedule.
} else {
// Get the calendar event of the next occurrence.
$selectclause = "modulename = :modulename AND instance = :instance AND (timestart + timeduration) >= :now";
$selectparams = array('modulename' => 'zoom', 'instance' => $zoom->id, 'now' => time());
$nextoccurrence = $DB->get_records_select('event', $selectclause, $selectparams, 'timestart ASC', 'timestart', 0, 1);
// If we haven't got a single event.
if (empty($nextoccurrence)) {
// Use 0 as there isn't anything better to return.
$cachednextoccurrence = 0;
} else {
// Use the timestamp of the event.
$nextoccurenceobject = reset($nextoccurrence);
$cachednextoccurrence = $nextoccurenceobject->timestart;
}
}
// Store the next occurrence into the cache.
$cache->set($zoom->id, $cachednextoccurrence);
}
// Return the next occurrence.
return $cachednextoccurrence;
}
/**
* Determine if a zoom meeting is in progress, is available, and/or is finished.
*
* @param stdClass $zoom
* @return array Array of booleans: [in progress, available, finished].
*/
function zoom_get_state($zoom) {
// Get plugin config.
$config = get_config('zoom');
// Get the current time as calculation basis.
$now = time();
// If this is a recurring meeting with a recurrence schedule.
if ($zoom->recurring && $zoom->recurrence_type != ZOOM_RECURRINGTYPE_NOTIME) {
// Get the next occurrence start time.
$starttime = zoom_get_next_occurrence($zoom);
} else {
// Get the meeting start time.
$starttime = $zoom->start_time;
}
// Calculate the time when the recurring meeting becomes available next,
// based on the next occurrence start time and the general meeting lead time.
$firstavailable = $starttime - ($config->firstabletojoin * 60);
// Calculate the time when the meeting ends to be available,
// based on the next occurrence start time and the meeting duration.
$lastavailable = $starttime + $zoom->duration;
// Determine if the meeting is in progress.
$inprogress = ($firstavailable <= $now && $now <= $lastavailable);
// Determine if its a recurring meeting with no fixed time.
$isrecurringnotime = $zoom->recurring && $zoom->recurrence_type == ZOOM_RECURRINGTYPE_NOTIME;
// Determine if the meeting is available,
// based on the fact if it is recurring or in progress.
$available = $isrecurringnotime || $inprogress;
// Determine if the meeting is finished,
// based on the fact if it is recurring or the meeting end time is still in the future.
$finished = !$isrecurringnotime && $now > $lastavailable;
// Return the requested information.
return array($inprogress, $available, $finished);
}
/**
* Get the Zoom id of the currently logged-in user.
*
* @param bool $required If true, will error if the user doesn't have a Zoom account.
* @return string
*/
function zoom_get_user_id($required = true) {
global $USER;
$cache = cache::make('mod_zoom', 'zoomid');
if (!($zoomuserid = $cache->get($USER->id))) {
$zoomuserid = false;
$service = new mod_zoom_webservice();
try {
$zoomuser = $service->get_user(zoom_get_api_identifier($USER));
if ($zoomuser !== false && isset($zoomuser->id) && ($zoomuser->id !== false)) {
$zoomuserid = $zoomuser->id;
$cache->set($USER->id, $zoomuserid);
}
} catch (moodle_exception $error) {
if ($required) {
throw $error;
}
}
}
return $zoomuserid;
}
/**
* Get the Zoom meeting security settings, including meeting password requirements of the user's master account.
*
* @return stdClass
*/
function zoom_get_meeting_security_settings() {
$cache = cache::make('mod_zoom', 'zoommeetingsecurity');
if (!($zoommeetingsecurity = $cache->get('meetingsecurity'))) {
$service = new mod_zoom_webservice();
try {
$zoommeetingsecurity = $service->get_account_meeting_security_settings();
} catch (moodle_exception $error) {
throw $error;
}
$cache->set('meetingsecurity', $zoommeetingsecurity);
}
return $zoommeetingsecurity;
}
/**
* Check if the error indicates that a meeting is gone.
*
* @param moodle_exception $error
* @return bool
*/
function zoom_is_meeting_gone_error($error) {
// If the meeting's owner/user cannot be found, we consider the meeting to be gone.
return ($error->zoomerrorcode === ZOOM_MEETING_NOT_FOUND_ERROR_CODE) || zoom_is_user_not_found_error($error);
}
/**
* Check if the error indicates that a user is not found or does not belong to the current account.
*
* @param moodle_exception $error
* @return bool
*/
function zoom_is_user_not_found_error($error) {
return ($error->zoomerrorcode === ZOOM_USER_NOT_FOUND_ERROR_CODE) || ($error->zoomerrorcode === ZOOM_INVALID_USER_ERROR_CODE);
}
/**
* Return the string parameter for zoomerr_meetingnotfound.
*
* @param string $cmid
* @return stdClass
*/
function zoom_meetingnotfound_param($cmid) {
// Provide links to recreate and delete.
$recreate = new moodle_url('/mod/zoom/recreate.php', array('id' => $cmid, 'sesskey' => sesskey()));
$delete = new moodle_url('/course/mod.php', array('delete' => $cmid, 'sesskey' => sesskey()));
// Convert links to strings and pass as error parameter.
$param = new stdClass();
$param->recreate = $recreate->out();
$param->delete = $delete->out();
return $param;
}
/**
* Get the data of each user for the participants report.
* @param string $detailsid The meeting ID that you want to get the participants report for.
* @return array The user data as an array of records (array of arrays).
*/
function zoom_get_participants_report($detailsid) {
global $DB;
$sql = 'SELECT zmp.id,
zmp.name,
zmp.userid,
zmp.user_email,
zmp.join_time,
zmp.leave_time,
zmp.duration,
zmp.uuid
FROM {zoom_meeting_participants} zmp
WHERE zmp.detailsid = :detailsid
';
$params = [
'detailsid' => $detailsid
];
$participants = $DB->get_records_sql($sql, $params);
return $participants;
}
/**
* Creates a default passcode from the user's Zoom meeting security settings.
*
* @param stdClass $meetingpasswordrequirement
* @return string passcode
*/
function zoom_create_default_passcode($meetingpasswordrequirement) {
$length = max($meetingpasswordrequirement->length, 6);
$random = rand(0, pow(10, $length) - 1);
$passcode = str_pad(strval($random), $length, '0', STR_PAD_LEFT);
// Get a random set of indexes to replace with non-numberic values.
$indexes = range(0, $length - 1);
shuffle($indexes);
if ($meetingpasswordrequirement->have_letter || $meetingpasswordrequirement->have_upper_and_lower_characters) {
// Random letter from A-Z.
$passcode[$indexes[0]] = chr(rand(65, 90));
// Random letter from a-z.
$passcode[$indexes[1]] = chr(rand(97, 122));
}
if ($meetingpasswordrequirement->have_special_character) {
$specialchar = '@_*-';
$passcode[$indexes[2]] = substr(str_shuffle($specialchar), 0, 1);
}
return $passcode;
}
/**
* Creates a description string from the user's Zoom meeting security settings.
*
* @param stdClass $meetingpasswordrequirement
* @return string description of password requirements
*/
function zoom_create_passcode_description($meetingpasswordrequirement) {
$description = '';
if ($meetingpasswordrequirement->only_allow_numeric) {
$description .= get_string('password_only_numeric', 'mod_zoom') . ' ';
} else {
if ($meetingpasswordrequirement->have_letter && !$meetingpasswordrequirement->have_upper_and_lower_characters) {
$description .= get_string('password_letter', 'mod_zoom') . ' ';
} else if ($meetingpasswordrequirement->have_upper_and_lower_characters) {
$description .= get_string('password_lower_upper', 'mod_zoom') . ' ';
}
if ($meetingpasswordrequirement->have_number) {
$description .= get_string('password_number', 'mod_zoom') . ' ';
}
if ($meetingpasswordrequirement->have_special_character) {
$description .= get_string('password_special', 'mod_zoom') . ' ';
} else {
$description .= get_string('password_allowed_char', 'mod_zoom') . ' ';
}
}
if ($meetingpasswordrequirement->length) {
$description .= get_string('password_length', 'mod_zoom', $meetingpasswordrequirement->length) . ' ';
}
if ($meetingpasswordrequirement->consecutive_characters_length &&
$meetingpasswordrequirement->consecutive_characters_length > 0) {
$description .= get_string('password_consecutive', 'mod_zoom',
$meetingpasswordrequirement->consecutive_characters_length - 1) . ' ';
}
$description .= get_string('password_max_length', 'mod_zoom');
return $description;
}
/**
* Creates an array of users who can be selected as alternative host in a given context.
*
* @param context $context The context to be used.
*
* @return array Array of users (mail => fullname).
*/
function zoom_get_selectable_alternative_hosts_list(context $context) {
// Get selectable alternative host users based on the capability.
$users = get_enrolled_users($context, 'mod/zoom:eligiblealternativehost', 0, 'u.*', 'lastname');
// Create array of users.
$selectablealternativehosts = array();
// Create Zoom API instance.
$service = new mod_zoom_webservice();
// Iterate over selectable alternative host users.
foreach ($users as $u) {
// Note: Basically, if this is the user's own data row, the data row should be skipped.
// But this would then not cover the case when a user is scheduling the meeting _for_ another user
// and wants to be an alternative host himself.
// As this would have to be handled at runtime in the browser, we just offer all users with the
// capability as selectable and leave this aspect as possible improvement for the future.
// At least, Zoom does not care if the user who is the host adds himself as alternative host as well.
// Verify that the user really has a Zoom account.
// Furthermore, verify that the user's status is active. Adding a pending or inactive user as alternative host will result
// in a Zoom API error otherwise.
$zoomuser = $service->get_user($u->email);
if ($zoomuser !== false && $zoomuser->status === 'active') {
// Add user to array of users.
$selectablealternativehosts[$u->email] = fullname($u);
}
}
return $selectablealternativehosts;
}
/**
* Creates a string of roles who can be selected as alternative host in a given context.
*
* @param context $context The context to be used.
*
* @return string The string of roles.
*/
function zoom_get_selectable_alternative_hosts_rolestring(context $context) {
// Get selectable alternative host users based on the capability.
$roles = get_role_names_with_caps_in_context($context, array('mod/zoom:eligiblealternativehost'));
// Compose string.
$rolestring = implode(', ', $roles);
return $rolestring;
}
/**
* Get existing Moodle users from a given set of alternative hosts.
*
* @param array $alternativehosts The array of alternative hosts email addresses.
*
* @return array The array of existing Moodle user objects.
*/
function zoom_get_users_from_alternativehosts(array $alternativehosts) {
global $DB;
// Get the existing Moodle user objects from the DB.
list($insql, $inparams) = $DB->get_in_or_equal($alternativehosts);
$sql = 'SELECT *
FROM {user}
WHERE email '.$insql.'
ORDER BY lastname ASC';
$alternativehostusers = $DB->get_records_sql($sql, $inparams);
return $alternativehostusers;
}
/**
* Get non-Moodle users from a given set of alternative hosts.
*
* @param array $alternativehosts The array of alternative hosts email addresses.
*
* @return array The array of non-Moodle user mail addresses.
*/
function zoom_get_nonusers_from_alternativehosts(array $alternativehosts) {
global $DB;
// Get the non-Moodle user mail addresses by checking which one does not exist in the DB.
$alternativehostnonusers = array();
list($insql, $inparams) = $DB->get_in_or_equal($alternativehosts);
$sql = 'SELECT email
FROM {user}
WHERE email '.$insql.'
ORDER BY email ASC';
$alternativehostusersmails = $DB->get_records_sql($sql, $inparams);
foreach ($alternativehosts as $ah) {
if (!array_key_exists($ah, $alternativehostusersmails)) {
$alternativehostnonusers[] = $ah;
}
}
return $alternativehostnonusers;
}
/**
* Get the unavailability note based on the Zoom plugin configuration.
*
* @param object $zoom The Zoom meeting object.
* @param bool|null $finished The function needs to know if the meeting is already finished.
* You can provide this information, if already available, to the function.
* Otherwise it will determine it with a small overhead.
*
* @return string The unavailability note.
*/
function zoom_get_unavailability_note($zoom, $finished = null) {
// Get config.
$config = get_config('zoom');
// Get the plain unavailable string.
$strunavailable = get_string('unavailable', 'mod_zoom');
// If this is a recurring meeting without fixed time, just use the plain unavailable string.
if ($zoom->recurring && $zoom->recurrence_type == ZOOM_RECURRINGTYPE_NOTIME) {
$unavailabilitynote = $strunavailable;
// Otherwise we add some more information to the unavailable string.
} else {
// If we don't have the finished information yet, get it with a small overhead.
if ($finished === null) {
list($inprogress, $available, $finished) = zoom_get_state($zoom);
}
// If this meeting is still pending.
if ($finished !== true) {
// If the admin wants to show the leadtime.
if (!empty($config->displayleadtime) && $config->firstabletojoin > 0) {
$unavailabilitynote = $strunavailable . '<br />' .
get_string('unavailablefirstjoin', 'mod_zoom', array('mins' => ($config->firstabletojoin)));
// Otherwise.
} else {
$unavailabilitynote = $strunavailable . '<br />' . get_string('unavailablenotstartedyet', 'mod_zoom');
}
// Otherwise, the meeting has finished.
} else {
$unavailabilitynote = $strunavailable . '<br />' . get_string('unavailablefinished', 'mod_zoom');
}
}
return $unavailabilitynote;
}
/**
* Gets the meeting capacity of a given Zoom user.
* Please note: This function does not check if the Zoom user really exists, this has to be checked before calling this function.
*
* @param string $zoomhostid The Zoom ID of the host.
* @param bool $iswebinar The meeting is a webinar.
*
* @return int|bool The meeting capacity of the Zoom user or false if the user does not have any meeting capacity at all.
*/
function zoom_get_meeting_capacity(string $zoomhostid, bool $iswebinar = false) {
// Get Zoom API service instance.
$service = new mod_zoom_webservice();
// Get the 'feature' section of the user's Zoom settings.
$userfeatures = $service->get_user_settings($zoomhostid)->feature;
// If this is a webinar.
if ($iswebinar == true) {
// Get the 'webinar_capacity' value.
$meetingcapacity = $userfeatures->webinar_capacity;
// If the user does not have a webinar capacity for any reason, return.
if (is_int($meetingcapacity) == false || $meetingcapacity <= 0) {
return false;
}
// If this isn't a webinar but a regular meeting.
} else {
// Get the 'meeting_capacity' value.
$meetingcapacity = $userfeatures->meeting_capacity;
// If the user does not have a meeting capacity for any reason, return.
if (is_int($meetingcapacity) == false || $meetingcapacity <= 0) {
return false;
}
// Check if the user has a 'large_meeting' license and, if yes, if this is bigger than the given 'meeting_capacity' value.
if ($userfeatures->large_meeting === true &&
isset($userfeatures->large_meeting_capacity) &&
is_int($userfeatures->large_meeting_capacity) != false &&
$userfeatures->large_meeting_capacity > $userfeatures->meeting_capacity) {
$meetingcapacity = $userfeatures->large_meeting_capacity;
}
}
return $meetingcapacity;
}
/**
* Gets the number of eligible meeting participants in a given context.
* Please note: This function only covers users who are enrolled into the given context.
* It does _not_ include users who have the necessary capability on a higher context without being enrolled.
*
* @param context $context The context which we want to check.
*
* @return int The number of eligible meeting participants.
*/
function zoom_get_eligible_meeting_participants(context $context) {
global $DB;
// Compose SQL query.
$sqlsnippets = get_enrolled_with_capabilities_join($context, '', 'mod/zoom:view', 0, true);
$sql = 'SELECT count(DISTINCT u.id)
FROM {user} u '.$sqlsnippets->joins.' WHERE '.$sqlsnippets->wheres;
// Run query and count records.
$eligibleparticipantcount = $DB->count_records_sql($sql, $sqlsnippets->params);
return $eligibleparticipantcount;
}
/**
* Get array of alternative hosts from a string.
*
* @param string $alternativehoststring Comma (or semicolon) separated list of alternative hosts.
* @return string[] $alternativehostarray Array of alternative hosts.
*/
function zoom_get_alternative_host_array_from_string($alternativehoststring) {
if (empty($alternativehoststring)) {
return array();
}
// The Zoom API has historically returned either semicolons or commas, so we need to support both.
$alternativehoststring = str_replace(';', ',', $alternativehoststring);
$alternativehostarray = array_filter(explode(',', $alternativehoststring));
return $alternativehostarray;
}
/**
* Get all custom user profile fields of type text
*
* @return array list of user profile fields
*/
function zoom_get_user_profile_fields() {
global $DB;
$userfields = [];
$records = $DB->get_records('user_info_field', ['datatype' => 'text']);
foreach ($records as $record) {
$userfields[$record->shortname] = $record->name;
}
return $userfields;
}
/**
* Get all valid options for API Identifier field
*
* @return array list of all valid options
*/
function zoom_get_api_identifier_fields() {
$options = [
'email' => get_string('email'),
'username' => get_string('username'),
'idnumber' => get_string('idnumber'),
];
$userfields = zoom_get_user_profile_fields();
if (!empty($userfields)) {
$options += $userfields;
}
return $options;
}
/**
* Get the zoom api identifier
*
* @param object $user The user object
*
* @return string the value of the identifier
*/
function zoom_get_api_identifier($user) {
// Get the value from the config first.
$field = get_config('zoom', 'apiidentifier');
$identifier = '';
if (isset($user->$field)) {
// If one of the standard user fields.
$identifier = $user->$field;
} else if (isset($user->profile[$field])) {
// If one of the custom user fields.
$identifier = $user->profile[$field];
}
if (empty($identifier)) {
// Fallback to email if the field is not set.
$identifier = $user->email;
}
return $identifier;
}
/**
* Creates an iCalendar_event for a Zoom meeting.
*
* @param stdClass $event The meeting object.
* @param string $description The event description.
*
* @return iCalendar_event
*/
function zoom_helper_icalendar_event($event, $description) {
global $CFG;
// Match Moodle's uid format for iCal events.
$hostaddress = str_replace('http://', '', $CFG->wwwroot);
$hostaddress = str_replace('https://', '', $hostaddress);
$uid = $event->id . '@' . $hostaddress;
$icalevent = new iCalendar_event;
$icalevent->add_property('uid', $uid); // A unique identifier.
$icalevent->add_property('summary', $event->name); // Title.
$icalevent->add_property('dtstamp', Bennu::timestamp_to_datetime()); // Time of creation.
$icalevent->add_property('last-modified', Bennu::timestamp_to_datetime($event->timemodified));
$icalevent->add_property('dtstart', Bennu::timestamp_to_datetime($event->timestart)); // Start time.
$icalevent->add_property('dtend', Bennu::timestamp_to_datetime($event->timestart + $event->timeduration)); // End time.
$icalevent->add_property('description', $description);
return $icalevent;
}
/**
* Get the configured Zoom API URL.
*
* @return string The API URL.
*/
function zoom_get_api_url() {
// Get the API endpoint setting.
$apiendpoint = get_config('zoom', 'apiendpoint');
// Pick the corresponding API URL.
switch ($apiendpoint) {
case ZOOM_API_ENDPOINT_EU:
$apiurl = ZOOM_API_URL_EU;
break;
case ZOOM_API_ENDPOINT_GLOBAL:
default:
$apiurl = ZOOM_API_URL_GLOBAL;