forked from projectestac/moodle-local_oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.php
68 lines (53 loc) · 2.02 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
<?php
function oauth_get_server() {
global $CFG;
// Autoloading (composer is preferred, but for this example let's just do this)
require_once($CFG->dirroot.'/local/oauth/OAuth2/Autoloader.php');
OAuth2\Autoloader::register();
$storage = new OAuth2\Storage\Moodle(array());
// Pass a storage object or array of storage objects to the OAuth2 server class
$server = new OAuth2\Server($storage);
$server->setConfig('enforce_state', false);
// Add the "Client Credentials" grant type (it is the simplest of the grant types)
$server->addGrantType(new OAuth2\GrantType\ClientCredentials($storage));
// Add the "Authorization Code" grant type (this is where the oauth magic happens)
$server->addGrantType(new OAuth2\GrantType\AuthorizationCode($storage));
return $server;
}
function get_authorization_from_form($url, $clientid, $scope = false) {
global $CFG, $OUTPUT, $USER;
require_once("{$CFG->libdir}/formslib.php");
require_once('forms.php');
if (is_scope_authorized_by_user($USER->id, $clientid, $scope)) {
return true;
}
$mform = new local_oauth_authorize_form($url);
if ($mform->is_cancelled()) {
return false;
} else if ($fromform = $mform->get_data() and confirm_sesskey()) {
authorize_user_scope($USER->id, $clientid, $scope);
return true;
}
echo $OUTPUT->header();
$mform->display();
echo $OUTPUT->footer();
die();
}
function is_scope_authorized_by_user($userid, $clientid, $scope = false) {
global $DB;
if (!$scope) {
$scope = 'login';
}
return $DB->record_exists('oauth_user_auth_scopes', array('client_id' => $clientid, 'scope' => $scope, 'user_id' => $userid));
}
function authorize_user_scope($userid, $clientid, $scope = false) {
global $DB;
if (!$scope) {
$scope = 'login';
}
$record = new StdClass();
$record->client_id = $clientid;
$record->user_id = $userid;
$record->scope = $scope;
$DB->insert_record('oauth_user_auth_scopes', $record);
}