2007-01-04 04:52:42 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Martin Dougiamas
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
|
|
* @package moodle multiauth
|
|
|
|
*
|
|
|
|
* Authentication Plugin: FirstClass Authentication
|
|
|
|
*
|
|
|
|
* Authentication using a FirstClass server.
|
|
|
|
*
|
|
|
|
* 2006-08-28 File created.
|
|
|
|
*/
|
|
|
|
|
2007-02-20 17:03:36 +00:00
|
|
|
if (!defined('MOODLE_INTERNAL')) {
|
|
|
|
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
|
|
|
}
|
2007-01-04 04:52:42 +00:00
|
|
|
|
2007-03-22 12:27:52 +00:00
|
|
|
require_once($CFG->libdir.'/authlib.php');
|
|
|
|
|
2007-02-20 17:03:36 +00:00
|
|
|
require_once 'fcFPP.php';
|
2007-01-04 04:52:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FirstClass authentication plugin.
|
|
|
|
*/
|
2007-03-22 12:27:52 +00:00
|
|
|
class auth_plugin_fc extends auth_plugin_base {
|
2007-01-04 04:52:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
|
|
|
function auth_plugin_fc() {
|
2007-03-22 12:27:52 +00:00
|
|
|
$this->authtype = 'fc';
|
2007-01-04 04:52:42 +00:00
|
|
|
$this->config = get_config('auth/fc');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the username and password work and false if they are
|
|
|
|
* wrong or don't exist.
|
|
|
|
*
|
|
|
|
* @param string $username The username
|
|
|
|
* @param string $password The password
|
2007-02-20 17:03:36 +00:00
|
|
|
* @return bool Authentication success or failure.
|
2007-01-04 04:52:42 +00:00
|
|
|
*/
|
|
|
|
function user_login ($username, $password) {
|
|
|
|
global $CFG;
|
|
|
|
$retval = false;
|
|
|
|
|
|
|
|
// Don't allow blank usernames or passwords
|
|
|
|
if (!$username or !$password) {
|
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fpp = new fcFPP($this->config->host, $this->config->fppport);
|
|
|
|
if ($fpp->open()) {
|
|
|
|
if ($fpp->login($username, $password)) {
|
|
|
|
$retval = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fpp->close();
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get user information from FirstCLass server and return it in an array.
|
|
|
|
* Localize this routine to fit your needs.
|
|
|
|
*/
|
|
|
|
function get_userinfo($username) {
|
|
|
|
/*
|
|
|
|
Moodle FirstCLass fieldID in UserInfo form
|
|
|
|
------ -----------------------------------
|
|
|
|
firstname 1202
|
|
|
|
lastname 1204
|
|
|
|
email 1252
|
|
|
|
icq -
|
|
|
|
phone1 1206
|
|
|
|
phone2 1207 (Fax)
|
|
|
|
institution -
|
|
|
|
department -
|
|
|
|
address 1205
|
|
|
|
city -
|
|
|
|
country -
|
|
|
|
lang -
|
|
|
|
timezone 8030 (Not used yet. Need to figure out how FC codes timezones)
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
description Get data from users resume. Pictures will be removed.
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
$userinfo = array();
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-10-07 14:08:37 +00:00
|
|
|
$fpp = new fcFPP($this->config->host, $this->config->fppport);
|
2007-01-04 04:52:42 +00:00
|
|
|
if ($fpp->open()) {
|
|
|
|
if ($fpp->login($this->config->userid, $this->config->passwd)) {
|
|
|
|
$userinfo['firstname'] = $fpp->getUserInfo($username,"1202");
|
|
|
|
$userinfo['lastname'] = $fpp->getUserInfo($username,"1204");
|
|
|
|
$userinfo['email'] = strtok($fpp->getUserInfo($username,"1252"),',');
|
|
|
|
$userinfo['phone1'] = $fpp->getUserInfo($username,"1206");
|
|
|
|
$userinfo['phone2'] = $fpp->getUserInfo($username,"1207");
|
|
|
|
$userinfo['description'] = $fpp->getResume($username);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fpp->close();
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
foreach($userinfo as $key => $value) {
|
|
|
|
if (!$value) {
|
|
|
|
unset($userinfo[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $userinfo;
|
|
|
|
}
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
/**
|
|
|
|
* Get users group membership from the FirstClass server user and check if
|
|
|
|
* user is member of one of the groups of creators.
|
|
|
|
*/
|
2007-03-22 12:27:52 +00:00
|
|
|
function iscreator($username) {
|
2007-01-04 04:52:42 +00:00
|
|
|
if (! $this->config->creators) {
|
2007-03-22 12:27:52 +00:00
|
|
|
return null;
|
2007-01-04 04:52:42 +00:00
|
|
|
}
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
$fcgroups = array();
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-10-07 14:08:37 +00:00
|
|
|
$fpp = new fcFPP($this->config->host, $this->config->fppport);
|
2007-01-04 04:52:42 +00:00
|
|
|
if ($fpp->open()) {
|
|
|
|
if ($fpp->login($this->config->userid, $this->config->passwd)) {
|
|
|
|
$fcgroups = $fpp->getGroups($username);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fpp->close();
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
if ((! $fcgroups)) {
|
|
|
|
return false;
|
|
|
|
}
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
$creators = explode(";", $this->config->creators);
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
foreach($creators as $creator) {
|
2007-03-22 12:27:52 +00:00
|
|
|
if (in_array($creator, $fcgroups)) {
|
|
|
|
return true;
|
|
|
|
}
|
2007-01-04 04:52:42 +00:00
|
|
|
}
|
2007-02-20 17:03:36 +00:00
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-11-23 21:50:40 +00:00
|
|
|
function prevent_local_passwords() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-01-04 04:52:42 +00:00
|
|
|
/**
|
|
|
|
* Returns true if this authentication plugin is 'internal'.
|
|
|
|
*
|
2007-02-20 17:03:36 +00:00
|
|
|
* @return bool
|
2007-01-04 04:52:42 +00:00
|
|
|
*/
|
|
|
|
function is_internal() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if this authentication plugin can change the user's
|
|
|
|
* password.
|
|
|
|
*
|
2007-02-20 17:03:36 +00:00
|
|
|
* @return bool
|
2007-01-04 04:52:42 +00:00
|
|
|
*/
|
|
|
|
function can_change_password() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-03-22 12:27:52 +00:00
|
|
|
/**
|
|
|
|
* Sync roles for this user
|
|
|
|
*
|
|
|
|
* @param $user object user object (without system magic quotes)
|
|
|
|
*/
|
|
|
|
function sync_roles($user) {
|
|
|
|
$iscreator = $this->iscreator($user->username);
|
|
|
|
if ($iscreator === null) {
|
|
|
|
return; //nothing to sync - creators not configured
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($roles = get_roles_with_capability('moodle/legacy:coursecreator', CAP_ALLOW)) {
|
|
|
|
$creatorrole = array_shift($roles); // We can only use one, let's use the first one
|
|
|
|
$systemcontext = get_context_instance(CONTEXT_SYSTEM);
|
|
|
|
|
|
|
|
if ($iscreator) { // Following calls will not create duplicates
|
|
|
|
role_assign($creatorrole->id, $user->id, 0, $systemcontext->id, 0, 0, 0, 'fc');
|
|
|
|
} else {
|
|
|
|
//unassign only if previously assigned by this plugin!
|
|
|
|
role_unassign($creatorrole->id, $user->id, 0, $systemcontext->id, 'fc');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-04 04:52:42 +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 array $page An object containing all the data for this page.
|
|
|
|
*/
|
2007-02-20 17:03:36 +00:00
|
|
|
function config_form($config, $err, $user_fields) {
|
2007-01-04 04:52:42 +00:00
|
|
|
include "config.html";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes and stores configuration data for this authentication plugin.
|
|
|
|
*/
|
|
|
|
function process_config($config) {
|
|
|
|
// set to defaults if undefined
|
|
|
|
if (!isset($config->host)) {
|
|
|
|
$config->host = "127.0.0.1";
|
|
|
|
}
|
|
|
|
if (!isset($config->fppport)) {
|
|
|
|
$config->fppport = "3333";
|
|
|
|
}
|
|
|
|
if (!isset($config->userid)) {
|
|
|
|
$config->userid = "fcMoodle";
|
|
|
|
}
|
|
|
|
if (!isset($config->passwd)) {
|
|
|
|
$config->passwd = "";
|
|
|
|
}
|
|
|
|
if (!isset($config->creators)) {
|
|
|
|
$config->creators = "";
|
|
|
|
}
|
|
|
|
if (!isset($config->changepasswordurl)) {
|
|
|
|
$config->changepasswordurl = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
// save settings
|
2007-10-07 14:08:37 +00:00
|
|
|
set_config('host', $config->host, 'auth/fc');
|
2007-01-04 04:52:42 +00:00
|
|
|
set_config('fppport', $config->fppport, 'auth/fc');
|
|
|
|
set_config('userid', $config->userid, 'auth/fc');
|
|
|
|
set_config('passwd', $config->passwd, 'auth/fc');
|
|
|
|
set_config('creators', $config->creators, 'auth/fc');
|
|
|
|
set_config('changepasswordurl', $config->changepasswordurl, 'auth/fc');
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-11-01 11:55:14 +00:00
|
|
|
|