-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.php
106 lines (92 loc) · 3.05 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
<?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/>.
/**
* Authenticate user (re-)using a program written for Apache2
* auth_external (https://github.com/phokz/mod-auth-external/tree/master/mod_authnz_external).
*
* @package auth_external
* @author Michael N. Lipp
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
*/
defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir.'/authlib.php');
/**
* Plugin for external authentication.
*/
class auth_plugin_external extends auth_plugin_base {
/**
* Constructor.
*/
public function __construct() {
$this->authtype = 'external';
$this->config = get_config('auth_external');
}
/**
* Returns true if the invoked program exits with 0.
* Username and password are passed to the program
* as two lines of input.
*
* @param string $username The username
* @param string $password The password
* @return bool Authentication success or failure.
*/
function user_login ($username, $password) {
global $CFG, $DB;
$program = $this->config->program;
$handle = popen($program, 'w');
fwrite($handle, "$username\n$password\n");
fflush($handle);
$result = pclose($handle);
return $result == 0;
}
/**
* This plugin is intended only to authenticate users.
* User synchronization must be done by external service,
* using Moodle's webservices.
*
* @param progress_trace $trace
* @param bool $doupdates Optional: set to true to force an update of existing accounts
* @return int 0 means success, 1 means failure
*/
public function sync_users(progress_trace $trace, $doupdates = false) {
return true;
}
public function get_userinfo($username) {
return array();
}
function prevent_local_passwords() {
return true;
}
/**
* Returns true if this authentication plugin is 'internal'.
*
* @return bool
*/
function is_internal() {
return false;
}
/**
* Indicates if moodle should automatically update internal user
* records with data from external sources using the information
* from auth_plugin_base::get_userinfo().
* The external service is responsible to update user records.
*
* @return bool true means automatically copy data from ext to user table
*/
public function is_synchronised_with_external() {
return false;
}
}