forked from microsoft/moodle-auth_oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.php
320 lines (290 loc) · 11.7 KB
/
auth.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
<?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/>.
/**
* OpenID Connect authentication plugin declaration.
*
* @package auth_oidc
* @author James McQuillan <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @copyright (C) 2014 onwards Microsoft, Inc. (http://microsoft.com/)
*/
defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir.'/authlib.php');
require_once($CFG->dirroot.'/login/lib.php');
/**
* OpenID Connect Authentication Plugin.
*/
class auth_plugin_oidc extends \auth_plugin_base {
/** @var string Authentication plugin type - the same as db field. */
public $authtype = 'oidc';
/** @var object Plugin config. */
public $config;
/** @var object extending \auth_oidc\loginflow\base */
public $loginflow;
/**
* Constructor.
*
* @param null $forceloginflow
*/
public function __construct($forceloginflow = null) {
global $SESSION;
$loginflow = 'authcode';
if (isset($SESSION->stateadditionaldata) && !empty($SESSION->stateadditionaldata) &&
isset($SESSION->stateadditoinaldata['forceflow'])) {
$loginflow = $SESSION->stateadditoinaldata['forceflow'];
} else {
if (!empty($forceloginflow) && is_string($forceloginflow)) {
$loginflow = $forceloginflow;
} else {
$configuredloginflow = get_config('auth_oidc', 'loginflow');
if (!empty($configuredloginflow)) {
$loginflow = $configuredloginflow;
}
}
}
$loginflowclass = '\auth_oidc\loginflow\\'.$loginflow;
if (class_exists($loginflowclass)) {
$this->loginflow = new $loginflowclass($this->config);
} else {
throw new \coding_exception(get_string('errorbadloginflow', 'auth_oidc'));
}
$this->config = $this->loginflow->config;
}
/**
* Returns a list of potential IdPs that this authentication plugin supports. Used to provide links on the login page.
*
* @param string $wantsurl The relative url fragment the user wants to get to.
* @return array Array of idps.
*/
public function loginpage_idp_list($wantsurl) {
return $this->loginflow->loginpage_idp_list($wantsurl);
}
/**
* Set an HTTP client to use.
*
* @param \auth_oidc\httpclientinterface $httpclient
* @return mixed
*/
public function set_httpclient(\auth_oidc\httpclientinterface $httpclient) {
return $this->loginflow->set_httpclient($httpclient);
}
/**
* Hook for overriding behaviour of login page.
* This method is called from login/index.php page for all enabled auth plugins.
*/
public function loginpage_hook() {
global $frm; // Can be used to override submitted login form.
global $user; // Can be used to replace authenticate_user_login().
if ($this->should_login_redirect()) {
$this->loginflow->handleredirect();
}
return $this->loginflow->loginpage_hook($frm, $user);
}
/**
* Determines if we will redirect to the redirecturi.
*
* @return bool If this returns true then redirect
* @throws \coding_exception
*/
public function should_login_redirect() {
global $SESSION;
$oidc = optional_param('oidc', null, PARAM_BOOL);
// Also support noredirect param - used by other auth plugins.
$noredirect = optional_param('noredirect', 0, PARAM_BOOL);
if (!empty($noredirect)) {
$oidc = 0;
}
if (!isset($this->config->forceredirect) || !$this->config->forceredirect) {
return false; // Never redirect if we haven't enabled the forceredirect setting.
}
// Never redirect on POST.
if (isset($_SERVER['REQUEST_METHOD']) && ($_SERVER['REQUEST_METHOD'] == 'POST')) {
return false;
}
// Check whether we've skipped the login page already.
// This is here because loginpage_hook is called again during form
// submission (all of login.php is processed) and ?oidc=off is not
// preserved forcing us to the IdP.
//
// This isn't needed when duallogin is on because $oidc will default to 0
// and duallogin is not part of the request.
if ((isset($SESSION->oidc) && $SESSION->oidc == 0)) {
return false;
}
// Never redirect if requested so.
if ($oidc === 0) {
$SESSION->oidc = $oidc;
return false;
}
// We are off to OIDC land so reset the force in SESSION.
if (isset($SESSION->oidc)) {
unset($SESSION->oidc);
}
return true;
}
/**
* Will check if we have to redirect before going to login page
*/
public function pre_loginpage_hook() {
if ($this->should_login_redirect()) {
$this->loginflow->handleredirect();
}
}
/**
* Handle requests to the redirect URL.
*
* @return mixed Determined by loginflow.
*/
public function handleredirect() {
return $this->loginflow->handleredirect();
}
/**
* Handle OIDC disconnection from Moodle account.
*
* @param bool $justremovetokens If true, just remove the stored OIDC tokens for the user, otherwise revert login methods.
* @param bool $donotremovetokens If true, do not remove tokens when disconnecting. This migrates from a login account to a
* "linked" account.
* @param moodle_url|null $redirect Where to redirect if successful.
* @param moodle_url|null $selfurl The page this is accessed from. Used for some redirects.
* @param null $userid
* @return mixed
*/
public function disconnect($justremovetokens = false, $donotremovetokens = false, \moodle_url $redirect = null,
\moodle_url $selfurl = null, $userid = null) {
return $this->loginflow->disconnect($justremovetokens, $donotremovetokens, $redirect, $selfurl, $userid);
}
/**
* This is the primary method that is used by the authenticate_user_login() function in moodlelib.php.
*
* @param string $username The username (with system magic quotes)
* @param string $password The password (with system magic quotes)
* @return bool Authentication success or failure.
*/
public function user_login($username, $password = null) {
global $CFG;
// Short circuit for guest user.
if (!empty($CFG->guestloginbutton) && $username === 'guest' && $password === 'guest') {
return false;
}
return $this->loginflow->user_login($username, $password);
}
/**
* Read user information from external database and returns it as array().
*
* @param string $username username
* @return mixed array with no magic quotes or false on error
*/
public function get_userinfo($username) {
return $this->loginflow->get_userinfo($username);
}
/**
* Indicates if moodle should automatically update internal user
* records with data from external sources using the information
* from get_userinfo() method.
*
* @return bool true means automatically copy data from ext to user table
*/
public function is_synchronised_with_external() {
return true;
}
/**
* Returns true if this authentication plugin is "internal".
*
* @return bool Whether the plugin uses password hashes from Moodle user table for authentication.
*/
public function is_internal() {
return false;
}
/**
* Post authentication hook.
*
* This method is called from authenticate_user_login() for all enabled auth plugins.
*
* @param object $user user object, later used for $USER
* @param string $username (with system magic quotes)
* @param string $password plain text password (with system magic quotes)
*/
public function user_authenticated_hook(&$user, $username, $password) {
global $DB;
if (!empty($user) && !empty($user->auth) && $user->auth === 'oidc') {
$tokenrec = $DB->get_record('auth_oidc_token', ['userid' => $user->id]);
if (!empty($tokenrec)) {
// If the token record username is out of sync (ie username changes), update it.
if ($tokenrec->username != $user->username) {
$updatedtokenrec = new \stdClass;
$updatedtokenrec->id = $tokenrec->id;
$updatedtokenrec->username = $user->username;
$DB->update_record('auth_oidc_token', $updatedtokenrec);
$tokenrec = $updatedtokenrec;
}
} else {
// There should always be a token record here, so a failure here means
// the user's token record doesn't yet contain their userid.
$tokenrec = $DB->get_record('auth_oidc_token', ['username' => $username]);
if (!empty($tokenrec)) {
$tokenrec->userid = $user->id;
$updatedtokenrec = new \stdClass;
$updatedtokenrec->id = $tokenrec->id;
$updatedtokenrec->userid = $user->id;
$DB->update_record('auth_oidc_token', $updatedtokenrec);
$tokenrec = $updatedtokenrec;
}
}
$eventdata = [
'objectid' => $user->id,
'userid' => $user->id,
'other' => ['username' => $user->username],
];
$event = \auth_oidc\event\user_loggedin::create($eventdata);
$event->trigger();
}
}
/**
* Log out user from Microsoft 365 if single sign off integration is enabled.
*
* @param stdClass $user
*
* @return bool
*/
public function postlogout_hook($user) {
global $CFG, $DB;
$singlesignoutsetting = get_config('auth_oidc', 'single_sign_off');
if ($singlesignoutsetting) {
$redirect = false;
if ($user->auth == 'oidc') {
$redirect = true;
} else if (auth_oidc_is_local_365_installed()) {
if ($DB->record_exists('local_o365_objects', ['type' => 'user', 'moodleid' => $user->id])) {
$redirect = true;
}
}
if ($redirect) {
$logouturl = get_config('auth_oidc', 'logouturi');
if (!$logouturl) {
$logouturl = 'https://login.microsoftonline.com/common/oauth2/logout?post_logout_redirect_uri=' .
urlencode($CFG->wwwroot);
} else {
if (preg_match("/^https:\/\/login.microsoftonline.com\//", $logouturl) &&
preg_match("/\/oauth2\/logout$/", $logouturl)) {
$logouturl .= '?post_logout_redirect_uri=' . urlencode($CFG->wwwroot);
}
}
redirect($logouturl);
}
}
return true;
}
}