-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.php
184 lines (157 loc) · 6.14 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
<?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/>.
/**
* Библиотека функций плагина.
*
* @package auth_billing
* @copyright 2018 "Valentin Popov" <info@valentineus.link>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once($CFG->dirroot . '/user/lib.php');
require_once($CFG->libdir . '/filelib.php');
/**
* Класс для работы со внешней системой.
*
* @package auth_billing
* @copyright 2018 "Valentin Popov" <info@valentineus.link>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class auth_billing {
/**
* Проверка работоспособности службы.
*
* @return boolean Результат проверки
*/
public static function check_service() {
$result = self::run_method('test', array());
if (isset($result['answer'])) {
return (bool) $result['answer'];
}
return false;
}
/**
* Проверка пользователя во внешней системе авторизации.
*
* @param string $email Электронный адрес
* @param string $password Пароль пользователя
* @return boolean Результат проверки
*/
public static function check_user($email, $password) {
$param = array('email' => $email, 'password' => $password);
$result = self::run_method('authorization', $param);
if (isset($result[0])) {
return (bool) $result[0];
}
return false;
}
/**
* Создание профиля пользователя из данных внешней системы.
*
* @param string $email Электронный адрес
* @return array Профиль пользователя
*/
public static function create_profile($email) {
global $CFG;
$localuser = array();
if ($remoteuser = self::get_remote_user($email)) {
$localuser['auth'] = 'billing';
$localuser['email'] = $email;
$localuser['mnethostid'] = $CFG->mnet_localhost_id;
$localuser['secret'] = random_string(15);
/* Поля профиля */
$localuser['firstname'] = isset($remoteuser['profile']->firstname) ? $remoteuser['profile']->firstname : '';
$localuser['lastname'] = isset($remoteuser['profile']->lastname) ? $remoteuser['profile']->lastname : '';
/* Пароль аккаунта */
$localuser['confirmed'] = 1;
$localuser['password'] = '';
}
return $localuser;
}
/**
* Получение идентификатора внешнего пользователя.
*
* @param string $email Электронный адрес
* @return string Идентификатор пользователя
*/
public static function get_id_user($email) {
$result = '';
/* Поиск данных в кэше */
$cachename = md5('get_id_user' . $email);
if ($result = self::get_cache($cachename)) {
return $result;
}
/* Получение внешних данных */
if ($remoteuser = self::get_remote_user($email)) {
self::set_cache($cachename, $remoteuser['_id']);
$result = $remoteuser['_id'];
}
return $result;
}
/**
* Получение информации о пользователе из внешней системы.
*
* @param string $email Электронный адрес
* @return array Данные пользователя
*/
protected static function get_remote_user($email) {
$param = array('email' => $email);
return self::run_method('get_user_by_email', $param);
}
/**
* Вызов метода с указанными параметрами.
*
* @param string $method Название метода
* @param array $param Параметры
* @return array Результат
*/
protected static function run_method($method, $param) {
$config = get_config('auth_billing');
/* Генерация URL */
$url = new moodle_url($config->host . $config->api . '/' . $method);
$param = array_merge($param, array('token' => $config->token));
/* Отправка запроса */
$curl = new curl();
$curl->setHeader(array('Content-Type: application/json'));
$contents = $curl->post($url, json_encode($param));
$contents = json_decode($contents);
if ($contents !== false) {
return (array) $contents;
}
return array();
}
/**
* Получаем данные из кэша.
*
* @param string $key Ключ
* @return string Значение
*/
private static function get_cache($key) {
$cache = cache::make('auth_billing', 'defaults');
return $cache->get($key);
}
/**
* Сохраняем данные в кэш.
*
* @param string $key Ключ
* @param string $value Значение
* @return boolean Результат
*/
private static function set_cache($key, $value) {
$cache = cache::make('auth_billing', 'defaults');
return $cache->set($key, $value);
}
}