-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlocallib.php
More file actions
260 lines (238 loc) · 9.79 KB
/
locallib.php
File metadata and controls
260 lines (238 loc) · 9.79 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
<?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/>.
/**
* Panopto repository library.
*
* @package repository_panopto
* @copyright 2017 Lancaster University (http://www.lancaster.ac.uk/)
* @author Ruslan Kabalin (https://github.com/kabalin)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once(dirname(__FILE__) . "/lib/panopto/lib/Client.php");
/**
* Panopto API interface class.
*
* @package repository_panopto
* @copyright 2017 Lancaster University (http://www.lancaster.ac.uk/)
* @author Ruslan Kabalin (https://github.com/kabalin)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class repository_panopto_interface {
/** @var stdClass Panopto client */
private $panoptoclient;
/** @var stdClass Remote Recorder Management client */
private $authclient;
/** @var stdClass Session Management client */
private $smclient;
/** @var stdClass User Management client */
private $umclient;
/** @var stdClass Access Management client */
private $amclient;
/** @var stdClass AuthenticationInfo object */
private $adminauth;
/**
* Constructor for the panopto interface.
*/
public function __construct() {
$this->panoptoclient = new \Panopto\Client(get_config('panopto', 'serverhostname'));
$this->authclient = $this->panoptoclient->Auth();
$this->smclient = $this->panoptoclient->SessionManagement();
$this->umclient = $this->panoptoclient->UserManagement();
$this->amclient = $this->panoptoclient->AccessManagement();
// Set authentication to Panopto admin.
$this->panoptoclient->setAuthenticationInfo(get_config('panopto', 'userkey'), get_config('panopto', 'password'));
$this->adminauth = $this->panoptoclient->getAuthenticationInfo();
}
/**
* Sets AuthenticationInfo object for using in requests.
*
* This is only required if calls needs to be made by the current user.
*
* @param string $userkey User on the server to use for API calls. If used with Application Key from Identity Provider,
* user needs to be prepended with corresponding Instance Name, e.g. 'MyInstanceName\someuser'.
* @param string $password Password for user authentication (not required if $applicationkey is specified).
* @param string $applicationkey Application Key from Identity Provider setting, e.g. '00000000-0000-0000-0000-000000000000'
*
*/
public function set_authentication_info($userkey = '', $password = '', $applicationkey = '') {
$this->panoptoclient->setAuthenticationInfo($userkey, $password, $applicationkey);
}
/**
* Get session by id.
*
* @param string $sessionid Remote session id.
* @param bool $useadmin Set true to use admin account to retrieve data, otherwise user set in authinfo object is used.
* @return mixed Session object on success, false on failure.
*/
public function get_session_by_id($sessionid, $useadmin = false) {
$auth = $this->panoptoclient->getAuthenticationInfo();
if ($useadmin) {
$auth = $this->adminauth;
}
try {
$param = new \Panopto\SessionManagement\GetSessionsById($auth, [$sessionid]);
$sessions = $this->smclient->GetSessionsById($param)->getGetSessionsByIdResult()->getSession();
} catch (Exception $e) {
return false;
}
if (count($sessions)) {
return $sessions[0];
}
return false;
}
/**
* Get authenticated URL.
*
* @param string $viewerurl URL that user needs to be redirected bypassing authentication.
* @return string URL to use for redirect (valid for 10 sec after call).
*/
public function get_authenticated_url($viewerurl) {
$param = new \Panopto\Auth\GetAuthenticatedUrl($this->panoptoclient->getAuthenticationInfo(), $viewerurl);
$authurl = $this->authclient->GetAuthenticatedUrl($param)->getGetAuthenticatedUrlResult();
return $authurl;
}
/**
* Create external group.
*
* @param string $groupname Name of external group to create.
* @return stdClass Group object.
*/
public function create_external_group($groupname) {
$param = new \Panopto\UserManagement\CreateExternalGroup(
$this->adminauth,
$groupname,
get_config('panopto', 'instancename'),
$groupname,
[]
);
return $this->umclient->CreateExternalGroup($param)->getCreateExternalGroupResult();
}
/**
* Delete group.
*
* @param string $groupid Remote group id.
* @return void.
*/
public function delete_group($groupid) {
try {
$param = new \Panopto\UserManagement\DeleteGroup($this->adminauth, $groupid);
$this->umclient->DeleteGroup($param);
} catch (SoapFault $exception) {
debugging("Caught exception deleting external Panopto group {$groupid}: " . $exception->getMessage());
}
}
/**
* Grant group access to session as viewer.
*
* @param string $groupid Remote group id.
* @param string $sessionid Remote session id.
* @return void.
*/
public function grant_group_viewer_access_to_session($groupid, $sessionid) {
$param = new \Panopto\AccessManagement\GetSessionAccessDetails($this->adminauth, $sessionid);
$sessionaccessdetails = $this->amclient->GetSessionAccessDetails($param)->getGetSessionAccessDetailsResult();
$sessionaccessdetails = $sessionaccessdetails->getGroupsWithDirectViewerAccess()->getGuid();
if ($sessionaccessdetails === null || !in_array($groupid, $sessionaccessdetails)) {
$param = new \Panopto\AccessManagement\GrantGroupViewerAccessToSession($this->adminauth, $sessionid, $groupid);
$this->amclient->GrantGroupViewerAccessToSession($param);
}
}
/**
* Revoke group access from session.
*
* @param string $groupid Remote group id.
* @param string $sessionid Remote session id.
* @return void.
*/
public function revoke_group_viewer_access_from_session($groupid, $sessionid) {
$param = new \Panopto\AccessManagement\RevokeGroupViewerAccessFromSession($this->adminauth, $sessionid, $groupid);
$this->amclient->RevokeGroupViewerAccessFromSession($param);
}
/**
* Add member to external group.
*
* @param string $externalgroupid Remote EXTERNAL group id.
* @param string $userid Remote user id.
* @return void.
*/
public function add_member_to_external_group($externalgroupid, $userid) {
$param = new \Panopto\UserManagement\AddMembersToExternalGroup(
$this->adminauth,
get_config('panopto', 'instancename'),
$externalgroupid,
[$userid]
);
$this->umclient->AddMembersToExternalGroup($param);
}
/**
* Delete member from external group.
*
* @param string $externalgroupid Remote EXTERNAL group id.
* @param array $userids Remote user ids.
* @return void.
*/
public function remove_members_from_external_group($externalgroupid, $userids) {
$param = new \Panopto\UserManagement\RemoveMembersFromExternalGroup(
$this->adminauth,
get_config('panopto', 'instancename'),
$externalgroupid,
$userids
);
$this->umclient->RemoveMembersFromExternalGroup($param);
}
/**
* Sync $USER data with Panopto.
*
* AuthenticationInfo object needs to be set to the current user to make this work.
*
* @return stdClass User object.
*/
public function sync_current_user() {
global $USER;
// Check that external user exists, if not, sync user data.
$getuserbykeyparams = new \Panopto\UserManagement\GetUserByKey(
$this->panoptoclient->getAuthenticationInfo(),
get_config('panopto', 'instancename') . '\\' . $USER->username
);
$user = $this->umclient->GetUserByKey($getuserbykeyparams)->getGetUserByKeyResult();
if ($user === null) {
// User does not exist, sync one.
$params = new \Panopto\UserManagement\SyncExternalUser(
$this->panoptoclient->getAuthenticationInfo(),
$USER->firstname,
$USER->lastname,
$USER->email,
false,
[]
);
$this->umclient->SyncExternalUser($params);
$user = $this->umclient->GetUserByKey($getuserbykeyparams)->getGetUserByKeyResult();
} else if (!$user->getFirstName() || !$user->getLastName() || !$user->getEmail()) {
// User exists, but some data is missing, update contact info.
$params = new \Panopto\UserManagement\UpdateContactInfo(
$this->panoptoclient->getAuthenticationInfo(),
$user->getUserId(),
$USER->firstname,
$USER->lastname,
$USER->email,
false
);
$this->umclient->UpdateContactInfo($params);
}
return $user;
}
}