Merge branch 'install_21_STABLE' of git://git.moodle.cz/moodle-install into MOODLE_21...
[moodle.git] / login / token.php
blob92c02acf593c0993c298b5dbe7150c52305402dd
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Return token
19 * @package moodlecore
20 * @copyright 2011 Dongsheng Cai <dongsheng@moodle.com>
21 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 define('AJAX_SCRIPT', true);
25 define('NO_MOODLE_COOKIES', true);
27 require_once(dirname(dirname(__FILE__)) . '/config.php');
29 $username = required_param('username', PARAM_USERNAME);
30 $password = required_param('password', PARAM_RAW);
31 $serviceshortname = required_param('service', PARAM_ALPHANUMEXT);
33 echo $OUTPUT->header();
35 if (!$CFG->enablewebservices) {
36 throw new moodle_exception('enablewsdescription', 'webservice');
38 $username = trim(moodle_strtolower($username));
39 if (is_restored_user($username)) {
40 throw new moodle_exception('restoredaccountresetpassword', 'webservice');
42 $user = authenticate_user_login($username, $password);
43 if (!empty($user)) {
45 //Non admin can not authenticate if maintenance mode
46 $hassiteconfig = has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM), $user);
47 if (!empty($CFG->maintenance_enabled) and !$hassiteconfig) {
48 throw new moodle_exception('sitemaintenance', 'admin');
51 if (isguestuser($user)) {
52 throw new moodle_exception('noguest');
54 if (empty($user->confirmed)) {
55 throw new moodle_exception('usernotconfirmed', 'moodle', '', $user->username);
57 // check credential expiry
58 $userauth = get_auth_plugin($user->auth);
59 if (!empty($userauth->config->expiration) and $userauth->config->expiration == 1) {
60 $days2expire = $userauth->password_expire($user->username);
61 if (intval($days2expire) < 0 ) {
62 throw new moodle_exception('passwordisexpired', 'webservice');
66 // setup user session to check capability
67 session_set_user($user);
69 //check if the service exists and is enabled
70 $service = $DB->get_record('external_services', array('shortname' => $serviceshortname, 'enabled' => 1));
71 if (empty($service)) {
72 // will throw exception if no token found
73 throw new moodle_exception('servicenotavailable', 'webservice');
76 //check if there is any required system capability
77 if ($service->requiredcapability and !has_capability($service->requiredcapability, get_context_instance(CONTEXT_SYSTEM), $user)) {
78 throw new moodle_exception('missingrequiredcapability', 'webservice', '', $service->requiredcapability);
81 //specific checks related to user restricted service
82 if ($service->restrictedusers) {
83 $authoriseduser = $DB->get_record('external_services_users',
84 array('externalserviceid' => $service->id, 'userid' => $user->id));
86 if (empty($authoriseduser)) {
87 throw new moodle_exception('usernotallowed', 'webservice', '', $serviceshortname);
90 if (!empty($authoriseduser->validuntil) and $authoriseduser->validuntil < time()) {
91 throw new moodle_exception('invalidtimedtoken', 'webservice');
94 if (!empty($authoriseduser->iprestriction) and !address_in_subnet(getremoteaddr(), $authoriseduser->iprestriction)) {
95 throw new moodle_exception('invalidiptoken', 'webservice');
99 //Check if a token has already been created for this user and this service
100 //Note: this could be an admin created or an user created token.
101 // It does not really matter we take the first one that is valid.
102 $tokenssql = "SELECT t.id, t.sid, t.token, t.validuntil, t.iprestriction
103 FROM {external_tokens} t
104 WHERE t.userid = ? AND t.externalserviceid = ? AND t.tokentype = ?
105 ORDER BY t.timecreated ASC";
106 $tokens = $DB->get_records_sql($tokenssql, array($user->id, $service->id, EXTERNAL_TOKEN_PERMANENT));
108 //A bit of sanity checks
109 foreach ($tokens as $key=>$token) {
111 /// Checks related to a specific token. (script execution continue)
112 $unsettoken = false;
113 //if sid is set then there must be a valid associated session no matter the token type
114 if (!empty($token->sid)) {
115 $session = session_get_instance();
116 if (!$session->session_exists($token->sid)){
117 //this token will never be valid anymore, delete it
118 $DB->delete_records('external_tokens', array('sid'=>$token->sid));
119 $unsettoken = true;
123 //remove token if no valid anymore
124 //Also delete this wrong token (similar logic to the web service servers
125 // /webservice/lib.php/webservice_server::authenticate_by_token())
126 if (!empty($token->validuntil) and $token->validuntil < time()) {
127 $DB->delete_records('external_tokens', array('token'=>$token->token, 'tokentype'=> EXTERNAL_TOKEN_PERMANENT));
128 $unsettoken = true;
131 // remove token if its ip not in whitelist
132 if (isset($token->iprestriction) and !address_in_subnet(getremoteaddr(), $token->iprestriction)) {
133 $unsettoken = true;
136 if ($unsettoken) {
137 unset($tokens[$key]);
141 // if some valid tokens exist then use the most recent
142 if (count($tokens) > 0) {
143 $token = array_pop($tokens);
144 } else {
145 if ( ($serviceshortname == MOODLE_OFFICIAL_MOBILE_SERVICE and has_capability('moodle/webservice:createmobiletoken', get_system_context()))
146 //Note: automatically token generation is not available to admin (they must create a token manually)
147 or (!is_siteadmin($user) && has_capability('moodle/webservice:createtoken', get_system_context()))) {
148 // if service doesn't exist, dml will throw exception
149 $service_record = $DB->get_record('external_services', array('shortname'=>$serviceshortname, 'enabled'=>1), '*', MUST_EXIST);
150 // create a new token
151 $token = new stdClass;
152 $token->token = md5(uniqid(rand(), 1));
153 $token->userid = $user->id;
154 $token->tokentype = EXTERNAL_TOKEN_PERMANENT;
155 $token->contextid = get_context_instance(CONTEXT_SYSTEM)->id;
156 $token->creatorid = $user->id;
157 $token->timecreated = time();
158 $token->externalserviceid = $service_record->id;
159 $tokenid = $DB->insert_record('external_tokens', $token);
160 add_to_log(SITEID, 'webservice', get_string('createtokenforuserauto', 'webservice'), '' , 'User ID: ' . $user->id);
161 $token->id = $tokenid;
162 } else {
163 throw new moodle_exception('cannotcreatetoken', 'webservice', '', $serviceshortname);
167 // log token access
168 $DB->set_field('external_tokens', 'lastaccess', time(), array('id'=>$token->id));
170 add_to_log(SITEID, 'webservice', 'user request webservice token', '' , 'User ID: ' . $user->id);
172 $usertoken = new stdClass;
173 $usertoken->token = $token->token;
174 echo json_encode($usertoken);
175 } else {
176 throw new moodle_exception('usernamenotfound', 'moodle');