easyappointments/application/libraries/Ldap_client.php

249 lines
7.2 KiB
PHP
Raw Normal View History

<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* Easy!Appointments - Online Appointment Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) Alex Tselegidis
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://easyappointments.org
* @since v1.5.0
* ---------------------------------------------------------------------------- */
/**
* Ldap_client library.
*
* Handles LDAP related functionality.
*
* @package Libraries
*/
class Ldap_client
{
/**
* @var EA_Controller|CI_Controller
*/
protected EA_Controller|CI_Controller $CI;
/**
* Ldap_client constructor.
*/
public function __construct()
{
$this->CI = &get_instance();
$this->CI->load->model('roles_model');
$this->CI->load->library('timezones');
$this->CI->load->library('accounts');
}
/**
* Validate the provided password with an LDAP hashed password.
*
* @param string $password
* @param string $hashed_password
*
* @return bool
*/
public function validate_password(string $password, string $hashed_password): bool
{
if (empty($hashed_password) || ($hashed_password[0] !== '{' && $password === $hashed_password)) {
return false;
}
if (str_starts_with($hashed_password, '{MD5}')) {
$encrypted_password = '{MD5}' . base64_encode(md5($password, true));
} elseif (str_starts_with($hashed_password, '{SHA1}')) {
$encrypted_password = '{SHA}' . base64_encode(sha1($password, true));
} elseif (str_starts_with($hashed_password, '{SSHA}')) {
$salt = substr(base64_decode(substr($hashed_password, 6)), 20);
$encrypted_password = '{SSHA}' . base64_encode(sha1($password . $salt, true) . $salt);
} else {
throw new RuntimeException('Unsupported password hash format');
}
return $hashed_password === $encrypted_password;
}
/**
* Try authenticating the user with LDAP
*
* @param string $username
* @param string $password
*
* @return array|null
*
* @throws Exception
*/
public function check_login(string $username, string $password): ?array
{
if (empty($username)) {
throw new InvalidArgumentException('No username value provided.');
}
// Check LDAP environment and configuration
$this->check_environment();
$ldap_is_active = setting('ldap_is_active');
if (!$ldap_is_active) {
return null;
}
// Match user by username
$user = $this->CI->accounts->get_user_by_username($username);
if (empty($user['ldap_dn'])) {
return null;
}
// Connect to LDAP server
$host = setting('ldap_host');
$port = (int) setting('ldap_port');
$user_dn = setting('ldap_user_dn');
$ldap_password = setting('ldap_password');
$connection = @ldap_connect($host, $port);
if (!$connection) {
throw new Exception('Could not connect to LDAP server: ' . @ldap_error($connection));
}
@ldap_set_option($connection, LDAP_OPT_PROTOCOL_VERSION, 3);
@ldap_set_option($connection, LDAP_OPT_REFERRALS, 0); // We need this for doing an LDAP search.
$bind = @ldap_bind($connection, $user_dn, $ldap_password);
if (!$bind) {
throw new Exception('LDAP bind failed: ' . @ldap_error($connection));
}
// Check the provided password against the LDAP service
$filter = '(objectclass=*)';
$result = @ldap_search($connection, $user['ldap_dn'], $filter);
if (!$result) {
return null;
}
$ldap_entries = @ldap_get_entries($connection, $result);
foreach ($ldap_entries as $ldap_entry) {
if (!is_array($ldap_entry) || empty($ldap_entry['dn']) || $ldap_entry['dn'] !== $user['ldap_dn']) {
continue;
}
if (!$this->validate_password($password, $ldap_entry['userpassword'][0])) {
continue;
}
$role = $this->CI->roles_model->find($user['id_roles']);
$default_timezone = $this->CI->timezones->get_default_timezone();
return [
'user_id' => $user['id'],
'user_email' => $user['email'],
'username' => $username,
'timezone' => !empty($user['timezone']) ? $user['timezone'] : $default_timezone,
'language' => !empty($user['language']) ? $user['language'] : Config::LANGUAGE,
'role_slug' => $role['slug'],
];
}
return null;
}
/**
* Search the LDAP server based on the provided keyword and configuration.
*
* @param string $keyword
*
* @return array
*
* @throws Exception
*/
public function search(string $keyword): array
{
$this->check_environment();
$host = setting('ldap_host');
$port = (int) setting('ldap_port');
$user_dn = setting('ldap_user_dn');
$password = setting('ldap_password');
$base_dn = setting('ldap_base_dn');
$filter = setting('ldap_filter');
$connection = @ldap_connect($host, $port);
if (!$connection) {
throw new Exception('Could not connect to LDAP server: ' . @ldap_error($connection));
}
@ldap_set_option($connection, LDAP_OPT_PROTOCOL_VERSION, 3);
@ldap_set_option($connection, LDAP_OPT_REFERRALS, 0); // We need this for doing an LDAP search.
$bind = @ldap_bind($connection, $user_dn, $password);
if (!$bind) {
throw new Exception('LDAP bind failed: ' . @ldap_error($connection));
}
$wildcard_keyword = !empty($keyword) ? '*' . $keyword . '*' : '*';
$interpolated_filter = str_replace('{{KEYWORD}}', $wildcard_keyword, $filter);
$result = @ldap_search($connection, $base_dn, $interpolated_filter);
if (!$result) {
throw new Exception('Search failed: ' . @ldap_error($connection));
}
$ldap_entries = @ldap_get_entries($connection, $result);
// Flatten the LDAP entries so that they become easier to import
$entries = [];
foreach ($ldap_entries as $ldap_entry) {
if (!is_array($ldap_entry)) {
continue;
}
$entry = [
'dn' => $ldap_entry['dn'],
];
foreach ($ldap_entry as $key => $value) {
if (!is_array($value)) {
continue;
}
$entry[$key] = $value[0] ?? null;
}
$entries[] = $entry;
}
return $entries;
}
/**
* Check if the ldap extension is installed
*
* @return void
*/
private function check_environment(): void
{
if (!extension_loaded('ldap')) {
throw new RuntimeException('The LDAP extension is not loaded.');
}
}
}