. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 94.23.64.18 / Your IP :
216.73.216.185 [
Web Server : Apache System : Linux webm005.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : villadal ( 6036) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/villadal/www/old/booked/plugins/Authentication/Saml/ |
Upload File : |
<?php
/**
File in Authentication plugin package for ver 2.1.4 Booked Scheduler
to implement Single Sign On Capability. Based on code from the
Booked Scheduler Authentication Ldap plugin as well as a SAML
Authentication plugin for Moodle 1.9+.
See http://moodle.org/mod/data/view.php?d=13&rid=2574
This plugin uses the SimpleSAMLPHP version 1.8.2 libraries.
http://simplesamlphp.org/
Booked Scheduler 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.
Booked Scheduler 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 Booked Scheduler. If not, see <http://www.gnu.org/licenses/>.
*/
require_once(ROOT_DIR . 'lib/Application/Authentication/namespace.php');
require_once(ROOT_DIR . 'plugins/Authentication/Saml/namespace.php');
/**
* Provides simpleSAMLphp authentication/synchronization for Booked Scheduler
* @see IAuthorization
*/
class Saml extends Authentication implements IAuthentication
{
/**
* @var IAuthentication
*/
private $authToDecorate;
/**
* @var AdSamlWrapper
*/
private $saml;
/**
* @var SamlOptions
*/
private $options;
/**
* @var IRegistration
*/
private $_registration;
/**
* @var PasswordEncryption
*/
private $_encryption;
/**
* @var SamlUser
*/
private $user;
/**
* @var string
*
*/
private $username;
/**
* @var string
*/
private $password;
public function SetRegistration($registration)
{
$this->_registration = $registration;
}
private function GetRegistration()
{
if ($this->_registration == null)
{
$this->_registration = new Registration();
}
return $this->_registration;
}
public function SetEncryption($passwordEncryption)
{
$this->_encryption = $passwordEncryption;
}
private function GetEncryption()
{
if ($this->_encryption == null)
{
$this->_encryption = new PasswordEncryption();
}
return $this->_encryption;
}
/**
* @param IAuthentication $authentication Authentication class to decorate
* @param ISaml $samlImplementation The actual SAML implementation to work against
* @param SamlOptions $samlOptions Options to use for SAML configuration
*/
public function __construct(IAuthentication $authentication, $samlImplementation = null, $samlOptions = null)
{
$this->authToDecorate = $authentication;
$this->options = $samlOptions;
if ($samlOptions == null)
{
$this->options = new SamlOptions();
}
$this->saml = $samlImplementation;
if ($samlImplementation == null)
{
$this->saml = new AdSamlWrapper($this->options);
}
}
public function Validate($username, $password)
{
$this->saml->Connect();
$isValid = $this->saml->Authenticate();
if ($isValid)
{
$this->user = $this->saml->GetSamlUser();
$userLoaded = $this->SamlUserExists();
if (!$userLoaded)
{
Log::Error('Could not load user details from SinmpleSamlPhpSSO. Check your SSO settings. User: %s',
$username);
}
return $userLoaded;
}
return false;
}
public function Login($username, $loginContext)
{
$this->username = $username;
if ($this->username == null)
{
$this->username = $this->user->GetUserName();
}
if ($this->SamlUserExists())
{
$this->Synchronize($this->username);
}
return $this->authToDecorate->Login($this->username, $loginContext);
}
public function Logout(UserSession $user)
{
$this->authToDecorate->Logout($user);
}
public function AreCredentialsKnown()
{
return false;
}
private function SamlUserExists()
{
return $this->user != null;
}
private function Synchronize($username)
{
$registration = $this->GetRegistration();
$registration->Synchronize(
new AuthenticatedUser(
$username,
$this->user->GetEmail(),
$this->user->GetFirstName(),
$this->user->GetLastName(),
$this->password,
Configuration::Instance()->GetKey(ConfigKeys::LANGUAGE),
Configuration::Instance()->GetDefaultTimezone(),
$this->user->GetPhone(), $this->user->GetInstitution(),
$this->user->GetTitle())
);
}
public function ShowForgotPasswordPrompt()
{
return false;
}
public function ShowPasswordPrompt()
{
return true;
}
public function ShowPersistLoginPrompt()
{
return false;
}
public function ShowUsernamePrompt()
{
return true;
}
}
?>