moodle-auth_jwt/auth.php

425 lines
11 KiB
PHP
Raw Normal View History

2016-08-16 04:46:33 +00:00
<?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/>.
/**
* User key auth method.
*
* @package auth_userkey
* @copyright 2016 Dmitrii Metelkin (dmitriim@catalyst-au.net)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
use auth_userkey\core_userkey_manager;
use auth_userkey\userkey_manager_interface;
require_once($CFG->libdir . "/externallib.php");
2016-08-16 04:46:33 +00:00
require_once($CFG->libdir.'/authlib.php');
/**
2016-08-19 03:03:55 +00:00
* User key authentication plugin.
2016-08-16 04:46:33 +00:00
*/
class auth_plugin_userkey extends auth_plugin_base {
2016-08-17 06:02:11 +00:00
/**
* Default mapping field.
*/
const DEFAULT_MAPPING_FIELD = 'email';
2016-08-17 06:02:11 +00:00
/**
* User key manager.
*
* @var userkey_manager_interface
*/
2016-08-18 04:43:57 +00:00
protected $userkeymanager;
/**
* Defaults for config form.
*
* @var array
*/
protected $defaults = array(
'mappingfield' => self::DEFAULT_MAPPING_FIELD,
'keylifetime' => 60,
'iprestriction' => 0,
2016-08-19 00:49:38 +00:00
'redirecturl' => '',
2016-08-18 13:30:58 +00:00
// TODO: use this field when implementing user creation. 'createuser' => 0.
2016-08-18 04:43:57 +00:00
);
2016-08-16 04:46:33 +00:00
/**
* Constructor.
*/
public function __construct() {
$this->authtype = 'userkey';
$this->config = get_config('auth_userkey');
2016-08-16 04:46:33 +00:00
}
/**
* Don't allow login using login form.
*
* @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) {
return false;
}
2016-08-18 06:10:18 +00:00
/**
* Login user using userkey and return URL to redirect after.
2016-08-18 06:10:18 +00:00
*
* @return mixed|string URL to redirect.
*
* @throws \moodle_exception If something went wrong.
2016-08-18 06:10:18 +00:00
*/
public function user_login_userkey() {
2016-08-19 01:54:39 +00:00
global $DB, $SESSION;
2016-08-18 06:10:18 +00:00
$keyvalue = required_param('key', PARAM_ALPHANUM);
$wantsurl = optional_param('wantsurl', '', PARAM_URL);
2016-08-18 06:10:18 +00:00
$options = array(
'script' => core_userkey_manager::CORE_USER_KEY_MANAGER_SCRIPT,
'value' => $keyvalue
);
if (!$key = $DB->get_record('user_private_key', $options)) {
print_error('invalidkey');
}
if (!isset($this->userkeymanager)) {
$userkeymanager = new core_userkey_manager($key->userid, $this->config);
$this->set_userkey_manager($userkeymanager);
}
$this->userkeymanager->delete_key();
2016-08-18 06:10:18 +00:00
if (!empty($key->validuntil) and $key->validuntil < time()) {
print_error('expiredkey');
}
if ($key->iprestriction) {
$remoteaddr = getremoteaddr(null);
if (empty($remoteaddr) or !address_in_subnet($remoteaddr, $key->iprestriction)) {
print_error('ipmismatch');
}
}
if (!$user = $DB->get_record('user', array('id' => $key->userid))) {
print_error('invaliduserid');
}
$user = get_complete_user_data('id', $user->id);
complete_user_login($user);
2016-08-19 01:54:39 +00:00
// Identify this session as using user key auth method.
$SESSION->userkey = true;
2016-08-18 06:10:18 +00:00
if (!empty($wantsurl)) {
return $wantsurl;
2016-08-18 06:10:18 +00:00
} else {
return '/';
2016-08-18 06:10:18 +00:00
}
}
2016-08-16 04:46:33 +00:00
/**
* Don't store local passwords.
*
* @return bool True.
*/
public function prevent_local_passwords() {
return true;
}
/**
* Returns true if this authentication plugin is external.
*
* @return bool False.
*/
public function is_internal() {
return false;
}
/**
* The plugin can't change the user's password.
*
* @return bool False.
*/
public function can_change_password() {
return false;
}
2016-08-18 04:43:57 +00:00
/**
* Prints a form for configuring this authentication plugin.
*
* This function is called from admin/auth.php, and outputs a full page with
* a form for configuring this plugin.
*
* @param object $config
* @param object $err
2016-08-18 13:30:58 +00:00
* @param array $userfields
2016-08-18 04:43:57 +00:00
*/
2016-08-18 13:30:58 +00:00
public function config_form($config, $err, $userfields) {
2016-08-19 00:49:38 +00:00
global $CFG, $OUTPUT;
2016-08-18 04:43:57 +00:00
$config = (object) array_merge($this->defaults, (array) $config );
include("settings.html");
}
/**
* A chance to validate form data, and last chance to
* do stuff before it is inserted in config_plugin
*
* @param object $form with submitted configuration settings (without system magic quotes)
* @param array $err array of error messages
*
* @return array of any errors
*/
public function validate_form($form, &$err) {
if ((int)$form->keylifetime == 0) {
$err['keylifetime'] = get_string('incorrectkeylifetime', 'auth_userkey');
2016-08-18 04:43:57 +00:00
}
2016-08-19 00:49:38 +00:00
if (!empty($form->redirecturl) && filter_var($form->redirecturl, FILTER_VALIDATE_URL) === false) {
$err['redirecturl'] = get_string('incorrectredirecturl', 'auth_userkey');
}
2016-08-18 04:43:57 +00:00
}
/**
* Process and stores configuration data for this authentication plugin.
*
* @param object $config Config object from the form.
*
* @return bool
*/
public function process_config($config) {
foreach ($this->defaults as $key => $value) {
if (!isset($this->config->$key) || $config->$key != $this->config->$key) {
set_config($key, $config->$key, 'auth_userkey');
}
}
return true;
}
/**
2016-08-17 06:02:11 +00:00
* Set userkey manager.
*
* @param \auth_userkey\userkey_manager_interface $keymanager
*/
public function set_userkey_manager(userkey_manager_interface $keymanager) {
$this->userkeymanager = $keymanager;
}
/**
2016-08-17 06:02:11 +00:00
* Return mapping field to find a lms user.
*
* @return string
*/
public function get_mapping_field() {
if (isset($this->config->mappingfield) && !empty($this->config->mappingfield)) {
return $this->config->mappingfield;
}
return self::DEFAULT_MAPPING_FIELD;
}
2016-08-17 06:02:11 +00:00
/**
* Check if we need to create a new user.
*
* @return bool
*/
protected function should_create_user() {
if (isset($this->config->createuser)) {
return $this->config->createuser;
}
return false;
}
/**
* Create a new user.
*/
protected function create_user() {
// TODO:
// 1. Validate user
// 2. Create user.
// 3. Throw exception if something went wrong.
}
/**
* Return login URL.
*
* @param array|stdClass $user User data.
*
* @return string Login URL.
*
* @throws \invalid_parameter_exception
*/
public function get_login_url($user) {
global $CFG, $DB;
2016-08-17 06:02:11 +00:00
$user = (array)$user;
$mappingfield = $this->get_mapping_field();
if (!isset($user[$mappingfield]) || empty($user[$mappingfield])) {
2016-08-17 06:02:11 +00:00
throw new invalid_parameter_exception('Required field "' . $mappingfield . '" is not set or empty.');
}
2016-08-17 06:02:11 +00:00
$params = array(
$mappingfield => $user[$mappingfield],
'mnethostid' => $CFG->mnet_localhost_id,
);
$user = $DB->get_record('user', $params);
if (empty($user)) {
if (!$this->should_create_user()) {
throw new invalid_parameter_exception('User is not exist');
} else {
$user = $this->create_user();
}
}
if (!isset($this->userkeymanager)) {
$userkeymanager = new core_userkey_manager($user->id, $this->config);
$this->set_userkey_manager($userkeymanager);
}
$userkey = $this->userkeymanager->create_key();
return $CFG->wwwroot . '/auth/userkey/login.php?key=' . $userkey;
}
/**
* Return a list of mapping fields.
*
* @return array
*/
public function get_allowed_mapping_fields() {
return array(
2016-08-18 04:43:57 +00:00
'username' => get_string('username'),
'email' => get_string('email'),
'idnumber' => get_string('idnumber'),
);
}
/**
* Return a mapping parameter for request_login_url_parameters().
*
* @return array
*/
protected function get_mapping_parameter() {
$mappingfield = $this->get_mapping_field();
switch ($mappingfield) {
case 'username':
$parameter = array(
'username' => new external_value(
PARAM_USERNAME,
'Username'
),
);
break;
case 'email':
$parameter = array(
'email' => new external_value(
PARAM_EMAIL,
'A valid email address'
),
);
break;
case 'idnumber':
$parameter = array(
'idnumber' => new external_value(
PARAM_RAW,
'An arbitrary ID code number perhaps from the institution'
),
);
break;
default:
$parameter = array();
break;
}
return $parameter;
}
/**
* Return user fields parameters for request_login_url_parameters().
*
* @return array
*/
protected function get_user_fields_parameters() {
// TODO: add more fields here when we implement user creation.
return array();
}
/**
* Return parameters for request_login_url_parameters().
*
* @return array
*/
public function get_request_login_url_user_parameters() {
$parameters = array_merge($this->get_mapping_parameter(), $this->get_user_fields_parameters());
return $parameters;
}
2016-08-19 01:54:39 +00:00
2016-08-19 02:13:47 +00:00
/**
* Check if we should redirect a user after logout.
*
* @return bool
*/
protected function should_redirect() {
global $SESSION;
if (!isset($SESSION->userkey)) {
return false;
}
if (!isset($this->config->redirecturl)) {
return false;
}
if (empty($this->config->redirecturl)) {
return false;
}
return true;
}
2016-08-19 01:54:39 +00:00
/**
* Logout page hook.
*
* Override redirect URL after logout.
*
* @see auth_plugin_base::logoutpage_hook()
*/
public function logoutpage_hook() {
2016-08-19 02:13:47 +00:00
global $redirect;
2016-08-19 01:54:39 +00:00
2016-08-19 02:13:47 +00:00
if ($this->should_redirect()) {
2016-08-19 01:54:39 +00:00
$redirect = $this->config->redirecturl;
}
}
2016-08-16 04:46:33 +00:00
}