1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
|
<?php
use LAM\LIB\TWO_FACTOR\TwoFactorProviderService;
use LAM\PERSISTENCE\ConfigurationDatabase;
use function LAM\PERSISTENCE\dbTableExists;
/*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2006 - 2024 Roland Gruber
This program 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 2 of the License, or
(at your option) any later version.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* Interface between modules and self service pages.
* This file also includes the self service profile class and helper functions.
*
* @package selfService
* @author Roland Gruber
*/
/** modules */
include_once "modules.inc";
/** account types */
include_once "types.inc";
/** 2-factor */
include_once '2factor.inc';
/**
* Returns if this is a LAM Pro installation.
*
* @return boolean LAM Pro installation
*/
function isLAMProVersion() {
$dir = substr(__FILE__, 0, strlen(__FILE__) - 20) . "/templates/selfService";
return is_dir($dir);
}
/**
* Returns a list of possible search attributes for the self service.
*
* @param string $scope account type
* @return array attributes
*/
function getSelfServiceSearchAttributes($scope) {
$return = [];
$modules = getAvailableModules($scope);
for ($i = 0; $i < sizeof($modules); $i++) {
$m = moduleCache::getModule($modules[$i], $scope);
$attributes = $m->getSelfServiceSearchAttributes();
$return = array_merge($return, $attributes);
}
$return = array_unique($return);
return array_values($return);
}
/**
* Returns the field settings for the self service.
*
* @param string $scope account type
* @return array settings
*/
function getSelfServiceFieldSettings($scope) {
$return = [];
$modules = getAvailableModules($scope);
for ($i = 0; $i < sizeof($modules); $i++) {
$m = moduleCache::getModule($modules[$i], $scope);
$settings = $m->getSelfServiceFields();
if (sizeof($settings) > 0) {
$return[$modules[$i]] = $settings;
}
}
return $return;
}
/**
* Returns meta HTML code for each self service field.
*
* @param string $scope account type
* @param array $fields input fields (array(<moduleName> => array(<field1>, <field2>, ...)))
* @param array $attributes LDAP attributes (attribute names in lower case)
* @param boolean $passwordChangeOnly indicates that the user is only allowed to change his password and no LDAP content is readable
* @param array $readOnlyFields list of read-only fields
* @return array meta HTML code (array(<moduleName> => htmlResponsiveRow))
*/
function getSelfServiceOptions($scope, $fields, $attributes, $passwordChangeOnly, $readOnlyFields) {
$return = [];
$modules = getAvailableModules($scope);
foreach ($modules as $module) {
if (!isset($fields[$module])) {
continue;
}
$m = moduleCache::getModule($module, $scope);
$modReadOnlyFields = [];
for ($r = 0; $r < sizeof($readOnlyFields); $r++) {
$parts = explode('_', $readOnlyFields[$r]);
if ($parts[0] == $module) {
$modReadOnlyFields[] = $parts[1];
}
}
$code = $m->getSelfServiceOptions($fields[$module], $attributes, $passwordChangeOnly, $modReadOnlyFields);
if (sizeof($code) > 0) {
$return[$module] = $code;
}
}
return $return;
}
/**
* Checks if all input values are correct and returns the LDAP commands which should be executed.
*
* @param string $scope account type
* @param string $fields input fields (array(<moduleName> => array(<field1>, <field2>, ...)))
* @param array $attributes LDAP attributes
* @param boolean $passwordChangeOnly indicates that the user is only allowed to change his password and no LDAP content is readable
* @param array $readOnlyFields list of read-only fields
* @return array messages and LDAP commands (array('messages' => [], 'add' => [], 'del' => [], 'mod' => []))
*/
function checkSelfServiceOptions($scope, $fields, $attributes, $passwordChangeOnly, $readOnlyFields) {
$return = ['messages' => [], 'add' => [], 'del' => [], 'mod' => [], 'info' => []];
$modules = getAvailableModules($scope);
for ($i = 0; $i < sizeof($modules); $i++) {
if (!isset($fields[$modules[$i]])) {
continue;
}
$m = moduleCache::getModule($modules[$i], $scope);
$modReadOnlyFields = [];
for ($r = 0; $r < sizeof($readOnlyFields); $r++) {
$parts = explode('_', $readOnlyFields[$r]);
if ($parts[0] == $modules[$i]) {
$modReadOnlyFields[] = $parts[1];
}
}
$result = $m->checkSelfServiceOptions($fields[$modules[$i]], $attributes, $passwordChangeOnly, $modReadOnlyFields);
if (sizeof($result['messages']) > 0) {
$return['messages'] = array_merge($result['messages'], $return['messages']);
}
if (sizeof($result['add']) > 0) {
$return['add'] = array_merge($result['add'], $return['add']);
}
if (sizeof($result['del']) > 0) {
$return['del'] = array_merge($result['del'], $return['del']);
}
if (sizeof($result['mod']) > 0) {
$return['mod'] = array_merge($result['mod'], $return['mod']);
}
if (sizeof($result['info']) > 0) {
$return['info'] = array_merge($result['info'], $return['info']);
}
}
return $return;
}
/**
* Returns a hash array (module name => elements) of all module options for the configuration page.
*
* @param string $scope account type
* @param selfServiceProfile $profile currently edited profile
* @return array configuration options
*/
function getSelfServiceSettings($scope, $profile) {
$return = [];
$modules = getAvailableModules($scope);
for ($i = 0; $i < sizeof($modules); $i++) {
$m = moduleCache::getModule($modules[$i], $scope);
$return[$modules[$i]] = $m->getSelfServiceSettings($profile);
}
return $return;
}
/**
* Checks if the self service settings are valid
*
* @param string $scope account type
* @param array $options hash array containing all options (name => array(...))
* @param selfServiceProfile $profile profile
* @return array list of error messages
*/
function checkSelfServiceSettings($scope, &$options, &$profile) {
$return = [];
$modules = getAvailableModules($scope);
for ($i = 0; $i < sizeof($modules); $i++) {
$m = moduleCache::getModule($modules[$i], $scope);
$errors = $m->checkSelfServiceSettings($options, $profile);
$return = array_merge($return, $errors);
}
return $return;
}
/**
* Returns if script runs inside self service.
*
* @return boolean is self service
*/
function isSelfService() {
return session_name() == 'SELFSERVICE';
}
/**
* Opens the LDAP connection and returns the handle. No bind is done.
*
* @param selfServiceProfile $profile profile
* @return handle LDAP handle or null if connection failed
*/
function openSelfServiceLdapConnection($profile) {
$server = connectToLDAP($profile->serverURL, $profile->useTLS);
if ($server != null) {
// follow referrals
ldap_set_option($server, LDAP_OPT_REFERRALS, $profile->followReferrals);
}
return $server;
}
/**
* Binds the LDAP connections with given user and password.
*
* @param handle $handle LDAP handle
* @param selfServiceProfile profile
* @param string $userDn bind DN
* @param string $password bind password
* @return boolean binding successful
*/
function bindLdapUser($handle, $profile, $userDn, $password) {
if ($profile->useForAllOperations) {
$userDn = $profile->LDAPUser;
$password = deobfuscateText($profile->LDAPPassword);
}
return @ldap_bind($handle, $userDn, $password);
}
/**
* Manages reading and writing self service profiles.
*/
class SelfServicePersistence {
/**
* @var SelfServicePersistenceStrategy
*/
private $strategy;
/**
* Constructor
*
* @throws LAMException error connecting database
*/
public function __construct() {
$configDb = new ConfigurationDatabase(new LAMCfgMain());
if ($configDb->useRemoteDb()) {
try {
$this->strategy = new SelfServicePersistenceStrategyPdo($configDb->getPdo());
}
catch (PDOException $e) {
logNewMessage(LOG_ERR, _('Unable to connect to configuration database.') . ' ' . $e->getMessage());
throw new LAMException(_('Unable to connect to configuration database.'));
}
}
else {
$this->strategy = new SelfServicePersistenceStrategyFileSystem();
}
}
/**
* Returns a list of available self service profiles.
*
* @return array profile names (array('account type' => array('profile1', 'profile2')))
*/
public function getProfiles(): array {
$profiles = $this->strategy->getProfiles();
ksort($profiles);
foreach ($profiles as $key => $value) {
sort($profiles[$key]);
}
return $profiles;
}
/**
* Returns if the profile with given name can be written.
*
* @param string $name profile name
* @param string $scope user/group/host
* @return bool can be written
*/
public function canWrite(string $name, string $scope): bool {
return $this->strategy->canWrite($name, $scope);
}
/**
* Loads the given self service profile.
*
* @param string $name profile name
* @param string $scope user/group/host
* @return selfServiceProfile profile
* @throws LAMException error during loading
*/
public function load(string $name, string $scope): selfServiceProfile {
return $this->strategy->load($name, $scope);
}
/**
* Stores the given profile.
*
* @param string $name profile name
* @param string $scope user/group/host
* @param selfServiceProfile $profile profile
* @throws LAMException error during saving
*/
public function save(string $name, string $scope, selfServiceProfile $profile): void {
$this->strategy->save($name, $scope, $profile);
}
/**
* Deletes a self service profile.
*
* @param string $name profile name
* @param string $scope user/group/host
* @throws LAMException error deleting profile
*/
public function delete(string $name, string $scope): void {
$profileList = $this->getProfiles();
if (!preg_match("/^[a-z]+$/i", $scope)
|| !preg_match("/^[a-z0-9_-]+$/i", $name)
|| empty($profileList[$scope])
|| !in_array($name, $profileList[$scope])) {
throw new LAMException(_("Unable to delete profile!"));
}
$this->strategy->delete($name, $scope);
}
/**
* Renames a self service profile.
*
* @param string $oldName existing profile name
* @param string $newName new profile name
* @param string $scope user/group/host
* @throws LAMException error renaming profile
*/
public function rename(string $oldName, string $newName, string $scope): void {
$profileList = $this->getProfiles();
if (!preg_match("/^[a-z]+$/i", $scope)
|| !preg_match("/^[a-z0-9_-]+$/i", $newName)
|| empty($profileList[$scope])
|| !in_array($oldName, $profileList[$scope])) {
throw new LAMException(_("Profile name is invalid!"));
}
$this->strategy->rename($oldName, $newName, $scope);
}
}
/**
* Interface for self service profile persistence.
*/
interface SelfServicePersistenceStrategy {
/**
* Returns a list of available self service profiles.
*
* @return array profile names (array('account type' => array('profile1', 'profile2')))
*/
public function getProfiles(): array;
/**
* Returns if the profile with given name can be written.
*
* @param string $name profile name
* @param string $scope user/group/host
* @return bool can be written
*/
public function canWrite(string $name, string $scope): bool;
/**
* Loads the given self service profile.
*
* @param string $name profile name
* @param string $scope user/group/host
* @return selfServiceProfile profile
* @throws LAMException error during loading
*/
public function load(string $name, string $scope): selfServiceProfile;
/**
* Stores the given profile.
*
* @param string $name profile name
* @param string $scope user/group/host
* @param selfServiceProfile $profile profile
* @throws LAMException error during saving
*/
public function save(string $name, string $scope, selfServiceProfile $profile): void;
/**
* Deletes a self service profile.
*
* @param string $name profile name
* @param string $scope account type
* @throws LAMException error renaming profile
*/
public function delete(string $name, string $scope): void;
/**
* Renames a self service profile.
*
* @param string $oldName existing profile name
* @param string $newName new profile name
* @param string $scope user/group/host
* @throws LAMException error renaming profile
*/
public function rename(string $oldName, string $newName, string $scope): void;
}
/**
* Uses local file system for storing self service profiles.
*/
class SelfServicePersistenceStrategyFileSystem implements SelfServicePersistenceStrategy {
/**
* @inheritDoc
*/
public function getProfiles(): array {
$types = LAM\TYPES\getTypes();
$dir = dir(__DIR__ . "/../config/selfService");
$ret = [];
if ($dir === false) {
logNewMessage(LOG_ERR, 'Unable to read self service profiles');
return $ret;
}
while ($entry = $dir->read()) {
$ext = substr($entry, strrpos($entry, '.') + 1);
$name = substr($entry, 0, strrpos($entry, '.'));
// check if extension is right, add to profile list
if (in_array($ext, $types)) {
$ret[$ext][] = $name;
}
}
return $ret;
}
/**
* @inheritDoc
*/
public function canWrite(string $name, string $scope): bool {
// check profile name
if (!preg_match("/^[0-9a-z _-]+$/i", $scope) || !preg_match("/^[0-9a-z _-]+$/i", $name)) {
return false;
}
$path = __DIR__ . "/../config/selfService/" . $name . "." . $scope;
return is_writable($path);
}
/**
* @inheritDoc
*/
public function load(string $name, string $scope): selfServiceProfile {
if (!preg_match("/^[0-9a-z _-]+$/i", $name) || !preg_match("/^[0-9a-z _-]+$/i", $scope)) {
throw new LAMException(_("Profile name is invalid!"));
}
$profile = new selfServiceProfile();
$file = __DIR__ . "/../config/selfService/" . $name . "." . $scope;
if (is_file($file) === True) {
$file = @fopen($file, "r");
if ($file) {
$data = fread($file, 10000000);
$profileData = @json_decode($data, true);
if ($profileData === null) {
logNewMessage(LOG_ERR, "Unable to load profile because not in JSON format: " . $name);
throw new LAMException(_("Unable to load profile!"), $name);
}
$profile = selfServiceProfile::import($profileData);
fclose($file);
}
else {
throw new LAMException(_("Unable to load profile!"), $name);
}
}
else {
throw new LAMException(_("Unable to load profile!"), $name);
}
return $profile;
}
/**
* @inheritDoc
*/
public function save(string $name, string $scope, selfServiceProfile $profile): void {
// check profile name
if (!preg_match("/^[0-9a-z _-]+$/i", $scope) || !preg_match("/^[0-9a-z _-]+$/i", $name)) {
throw new LAMException(_("Profile name is invalid!"));
}
$path = __DIR__ . "/../config/selfService/" . $name . "." . $scope;
$file = @fopen($path, "w");
if ($file) {
// write settings to file
fputs($file, json_encode($profile->export()));
// close file
fclose($file);
@chmod($path, 0600);
}
else {
throw new LAMException(_("Unable to save profile!"));
}
}
/**
* @inheritDoc
*/
public function delete(string $name, string $scope): void {
if (!unlink("../../config/selfService/" . $name . "." . $scope)) {
throw new LAMException(_("Unable to delete profile!"));
}
}
/**
* @inheritDoc
*/
public function rename(string $oldName, string $newName, string $scope): void {
if (!@rename(__DIR__ . "/../config/selfService/" . $oldName . "." . $scope,
__DIR__ . "/../config/selfService/" . $newName . "." . $scope)) {
throw new LAMException(_("Could not rename file!"));
}
}
}
/**
* Uses PDO for storing self service profiles.
*/
class SelfServicePersistenceStrategyPdo implements SelfServicePersistenceStrategy {
/**
* @var PDO
*/
private $pdo;
private const TABLE_NAME = 'self_service_profiles';
/**
* Constructor
*
* @param PDO $pdo PDO
*/
public function __construct(PDO $pdo) {
$this->pdo = $pdo;
$this->checkSchema();
}
/**
* Checks if the schema has latest version.
*/
private function checkSchema(): void {
if (!dbTableExists($this->pdo, self::TABLE_NAME)) {
$this->createInitialSchema();
}
}
/**
* Creates the initial schema.
*/
public function createInitialSchema(): void {
logNewMessage(LOG_DEBUG, 'Creating database table ' . self::TABLE_NAME);
$sql = 'create table ' . self::TABLE_NAME . '('
. 'scope VARCHAR(100) NOT NULL,'
. 'name VARCHAR(300) NOT NULL,'
. 'data TEXT NOT NULL,'
. 'PRIMARY KEY(scope,name)'
. ');';
$this->pdo->exec($sql);
$sql = 'insert into ' . ConfigurationDatabase::TABLE_SCHEMA_VERSIONS . ' (name, version) VALUES ("self_service", 1);';
$this->pdo->exec($sql);
}
/**
* @inheritDocm
*/
public function getProfiles(): array {
$statement = $this->pdo->prepare("SELECT scope, name FROM " . self::TABLE_NAME);
$statement->execute();
$results = $statement->fetchAll();
$profiles = [];
foreach ($results as $result) {
$profiles[$result['scope']][] = $result['name'];
}
return $profiles;
}
/**
* @inheritDoc
*/
public function canWrite(string $name, string $scope): bool {
return true;
}
/**
* @inheritDoc
*/
public function load(string $name, string $scope): selfServiceProfile {
$statement = $this->pdo->prepare("SELECT data FROM " . self::TABLE_NAME . " WHERE scope = ? AND name = ?");
$statement->execute([$scope, $name]);
$results = $statement->fetchAll();
if (empty($results)) {
logNewMessage(LOG_ERR, 'Self service profile not found');
throw new LAMException(_("Unable to load profile!"), $name);
}
$data = json_decode($results[0]['data'], true);
return selfServiceProfile::import($data);
}
/**
* @inheritDoc
*/
public function save(string $name, string $scope, selfServiceProfile $profile): void {
$data = json_encode($profile->export());
$statement = $this->pdo->prepare("SELECT data FROM " . self::TABLE_NAME . " WHERE scope = ? AND name = ?");
$statement->execute([$scope, $name]);
$results = $statement->fetchAll();
if (empty($results)) {
$statement = $this->pdo->prepare("INSERT INTO " . self::TABLE_NAME . " (scope, name, data) VALUES (?, ?, ?)");
$statement->execute([$scope, $name, $data]);
}
else {
$statement = $this->pdo->prepare("UPDATE " . self::TABLE_NAME . " SET data = ? WHERE scope = ? AND name = ?");
$statement->execute([$data, $scope, $name]);
}
}
/**
* @inheritDoc
*/
public function delete(string $name, string $scope): void {
$statement = $this->pdo->prepare("DELETE FROM " . self::TABLE_NAME . " WHERE scope = ? AND name = ?");
$statement->execute([$scope, $name]);
}
/**
* @inheritDoc
*/
public function rename(string $oldName, string $newName, string $scope): void {
$statement = $this->pdo->prepare("UPDATE " . self::TABLE_NAME . " SET name = ? WHERE scope = ? AND name = ?");
$statement->execute([$newName, $scope, $oldName]);
}
}
/**
* Includes all settings of a self service profile.
*
* @package selfService
*/
class selfServiceProfile {
/** server address */
public $serverURL;
/** use TLS */
public $useTLS;
/** LDAP suffix */
public $LDAPSuffix;
/** LDAP user DN*/
public $LDAPUser;
/** LDAP password */
public $LDAPPassword;
/** use bind user also for read/modify operations */
public $useForAllOperations;
/** LDAP search attribute */
public $searchAttribute;
/**
* @var string|null login handler ID
*/
public ?string $loginHandler = SelfServiceUserPasswordLoginHandler::ID;
/** header for self service pages */
public $pageHeader;
/** base color */
public $baseColor = '#fffde2';
/** list of additional CSS links (separated by \n) */
public $additionalCSS;
/** describing text for user login */
public $loginCaption;
/** describing text for user login */
public $loginFooter;
/** label for password input */
public $passwordLabel;
/** describing text for search attribute */
public $loginAttributeText;
/** additional LDAP filter for accounts */
public $additionalLDAPFilter;
/** describing text for self service main page */
public $mainPageText;
/** describing text for self service main page */
public $mainPageFooter;
/** input fields
* Format: array(
* <br> array(array('name' => <group name 1>, 'fields' => array(<field1>, <field2>))),
* <br> array(array('name' => <group name 2>, 'fields' => array(<field3>, <field4>)))
* <br> )
*
*/
public $inputFields;
/**
* List of fields that are set in read-only mode.
*/
public $readOnlyFields;
/** List of override values for field labels: array(<field ID> => label) */
public $relabelFields;
/** configuration settings of modules */
public $moduleSettings;
/** language for self service */
public $language = 'en_GB.utf8';
/** disallow user to change language */
public $enforceLanguage = false;
public $followReferrals = 0;
public $timeZone = 'Europe/London';
public $twoFactorAuthentication = TwoFactorProviderService::TWO_FACTOR_NONE;
public $twoFactorAuthenticationURL = 'https://localhost';
public $twoFactorAuthenticationInsecure = false;
public $twoFactorAuthenticationLabel;
public $twoFactorAuthenticationOptional = false;
public $twoFactorAuthenticationCaption = '';
public $twoFactorAuthenticationClientId = '';
public $twoFactorAuthenticationSecretKey = '';
public $twoFactorAuthenticationAttribute = 'uid';
public $twoFactorAuthenticationDomain = '';
public $twoFactorAllowToRememberDevice = 'false';
public $twoFactorRememberDeviceDuration = '28800';
public $twoFactorRememberDevicePassword = '';
/** provider for captcha (-/google/hCaptcha/friendlyCaptcha) */
public $captchaProvider = '-';
/** Google reCAPTCHA site key */
public $reCaptchaSiteKey = '';
/** Google reCAPTCHA secret key */
public $reCaptchaSecretKey = '';
/** enable captcha on self service login */
public $captchaOnLogin = false;
/** base URL for the website (e.g. https://example.com) for link generation */
public $baseUrl = '';
/**
* Path to external lamdaemon script on server where it is executed
*
* This is used for managing quota and home directories.
* optional setting, may not be defined
*/
public $scriptPath;
/**
* The rights for the home directory
*/
public $scriptRights = '750';
/**
* Servers where lamdaemon script is executed
*
* This is used for managing quota and home directories.
* optional setting, may not be defined
*/
public $scriptServer;
/**
* user name for lamdaemon
*/
public $scriptUserName;
/**
* File name of SSH key for lamdaemon.
*/
public $scriptSSHKey;
/**
* Password for lamdaemon SSH key.
*/
public $scriptSSHKeyPassword;
/**
* Constructor
*/
public function __construct() {
// set default values
$this->serverURL = "localhost";
$this->useTLS = false;
$this->LDAPSuffix = "dc=my-domain,dc=com";
$this->LDAPUser = "";
$this->LDAPPassword = "";
$this->useForAllOperations = false;
$this->searchAttribute = "uid";
$this->additionalLDAPFilter = '';
$this->loginHandler = '';
$this->pageHeader = '<p><a href="https://www.ldap-account-manager.org/" target="new_window"><img alt="help" class="align-middle" src="../../graphics/logo24.png" style="height:24px; width:24px" /> LDAP Account Manager </a></p><p> </p>';
$this->additionalCSS = '';
$this->baseColor = '#fffde2';
$this->loginCaption = '<b>' . _("Welcome to LAM self service. Please enter your user name and password.") . '</b>';
$this->loginAttributeText = _('User name');
$this->passwordLabel = '';
$this->mainPageText = "<h1>LAM self service</h1>\n" . _("Here you can change your personal settings.");
$this->inputFields = [
['name' => _('Personal data'),
'fields' => ['inetOrgPerson_firstName', 'inetOrgPerson_lastName', 'inetOrgPerson_mail',
'inetOrgPerson_telephoneNumber', 'inetOrgPerson_mobile', 'inetOrgPerson_faxNumber',
'inetOrgPerson_street', 'inetOrgPerson_postalAddress']],
['name' => _('Password'),
'fields' => ['posixAccount_password']]
];
$this->readOnlyFields = [];
$this->relabelFields = [];
$this->moduleSettings = [];
$this->language = 'en_GB.utf8';
$this->enforceLanguage = true;
$this->followReferrals = 0;
$this->timeZone = 'Europe/London';
$this->twoFactorAuthentication = TwoFactorProviderService::TWO_FACTOR_NONE;
$this->twoFactorAuthenticationURL = 'https://localhost';
$this->twoFactorAuthenticationInsecure = false;
$this->twoFactorAuthenticationLabel = null;
$this->twoFactorAuthenticationOptional = false;
$this->twoFactorAuthenticationCaption = '';
$this->twoFactorAuthenticationClientId = '';
$this->twoFactorAuthenticationSecretKey = '';
$this->twoFactorAuthenticationAttribute = 'uid';
$this->twoFactorAuthenticationDomain = '';
$this->captchaProvider = '-';
$this->reCaptchaSiteKey = '';
$this->reCaptchaSecretKey = '';
$this->captchaOnLogin = false;
$this->baseUrl = '';
}
/**
* Converts the export data back to a self service profile.
*
* @param array $data export data
* @return selfServiceProfile profile
*/
public static function import($data) {
$profile = new selfServiceProfile();
$vars = get_class_vars(selfServiceProfile::class);
foreach ($data as $key => $value) {
if (array_key_exists($key, $vars)) {
$profile->$key = $value;
}
}
return $profile;
}
/**
* Returns a representation of the self service profile.
*
* @return array self service profile data
*/
public function export() {
return json_decode(json_encode($this), true);
}
/**
* Returns the server's base URL (e.g. https://www.example.com).
*
* @return string URL
*/
public function getBaseUrl() {
if (!empty($this->baseUrl)) {
return $this->baseUrl;
}
$callingUrl = getCallingURL();
$matches = [];
if (preg_match('/^(http(s)?:\\/\\/[^\\/]+)\\/.+$/', $callingUrl, $matches)) {
return $matches[1];
}
return '';
}
/**
* Sets the server's base URL (e.g. https://www.example.com).
*
* @param string $url URL
*/
public function setBaseUrl($url) {
$this->baseUrl = $url;
if (!empty($url) && (str_ends_with($url, '/'))) {
$this->baseUrl = substr($url, 0, -1);
}
}
/**
* Returns the login handler.
*
* @return SelfServiceLoginHandler handler
*/
public function getLoginHandler(): SelfServiceLoginHandler {
return match ($this->loginHandler) {
SelfServiceHttpAuthLoginHandler::ID => new SelfServiceHttpAuthLoginHandler($this),
SelfService2FaLoginHandler::ID => new SelfService2FaLoginHandler($this),
default => new SelfServiceUserPasswordLoginHandler($this),
};
}
}
/**
* LDAP connection for self service.
*/
class SelfServiceLdapConnection {
private $server;
private $profile;
/**
* Constructor
*
* @param selfServiceProfile $profile profile
*/
public function __construct(selfServiceProfile $profile) {
$this->profile = $profile;
}
/**
* Returns the LDAP handle.
*
* @return mixed LDAP handle
*/
public function getServer() {
if ($this->server !== null) {
return $this->server;
}
$this->server = openSelfServiceLdapConnection($this->profile);
return $this->server;
}
/**
* Binds with the given credentials.
*
* @param string $userDn user DN
* @param string $password password
* @return bool bind successful
*/
public function bind(string $userDn, string $password): bool {
return bindLdapUser($this->getServer(), $this->profile, $userDn, $password);
}
/**
* Closes connection to LDAP server before serialization
*/
public function __sleep(): array {
if ($this->server !== null) {
@ldap_close($this->server);
$this->server = null;
}
// define which attributes to save
return ['profile'];
}
}
/**
* Login handler for self service
*/
interface SelfServiceLoginHandler {
/**
* Returns a unique ID for the handler.
*
* @return string ID
*/
function getId(): string;
/**
* Adds necessary fields to the login dialog (e.g. user + password).
*
* @param htmlResponsiveRow $content dialog content
*/
function addLoginFields(htmlResponsiveRow $content): void;
/**
* Returns the login name.
*
* @return string login name
*/
function getLoginName(): string;
/**
* Returns the login password.
*
* @return string password
*/
function getLoginPassword(): string;
/**
* Returns if the login handler manages authentication on its own.
*
* @return bool manages authentication
*/
function managesAuthentication(): bool;
/**
* Returns if the authentication was successful.
* Only valid if managesAuthentication() returns true.
*
* @return bool authentication successful
* @throws LAMException error during authentication
*/
function isAuthenticationSuccessful(): bool;
/**
* Authorizes an user that was provided by 2FA provider.
*
* @param string $userName user name
* @throws LAMException error during authentication
*/
function authorize2FaUser(string $userName): void;
}
/**
* Performs login with user and password.
*/
class SelfServiceUserPasswordLoginHandler implements SelfServiceLoginHandler {
public const ID = "user_password";
private selfServiceProfile $profile;
/**
* Constructor
*
* @param selfServiceProfile $profile profile
*/
function __construct(selfServiceProfile $profile) {
$this->profile = $profile;
}
/**
* @inheritDoc
*/
function getId(): string {
return self::ID;
}
/**
* @inheritDoc
*/
function addLoginFields(htmlResponsiveRow $content): void {
// user name
$userNameVal = !empty($_POST['username']) ? $_POST['username'] : '';
$userField = new htmlResponsiveInputField($this->profile->loginAttributeText, 'username', $userNameVal);
$userField->setCSSClasses(['lam-initial-focus']);
$content->add($userField);
// password field
$passwordText = _("Password");
if (!empty($this->profile->passwordLabel)) {
$passwordText = $this->profile->passwordLabel;
}
$passwordVal = !empty($_POST['password']) ? $_POST['password'] : '';
$passwordField = new htmlResponsiveInputField($passwordText, 'password', $passwordVal);
$passwordField->setIsPassword(true);
$content->add($passwordField);
}
/**
* @inheritDoc
*/
function getLoginName(): string {
return $_POST['username'];
}
/**
* @inheritDoc
*/
function getLoginPassword(): string {
return $_POST['password'];
}
/**
* @inheritDoc
*/
function managesAuthentication(): bool {
return false;
}
/**
* @inheritDoc
*/
function isAuthenticationSuccessful(): bool {
throw new LAMException('Not implemented');
}
/**
* @inheritDoc
*/
function authorize2FaUser(string $userName): void {
// no action
}
}
/**
* Performs login with HTTP authentication.
*/
class SelfServiceHttpAuthLoginHandler implements SelfServiceLoginHandler {
public const ID = "http_auth";
private selfServiceProfile $profile;
/**
* Constructor
*
* @param selfServiceProfile $profile profile
*/
function __construct(selfServiceProfile $profile) {
$this->profile = $profile;
}
/**
* @inheritDoc
*/
function getId(): string {
return self::ID;
}
/**
* @inheritDoc
*/
function addLoginFields(htmlResponsiveRow $content): void {
// user name
$userLabel = new htmlLabel('username', $this->profile->loginAttributeText);
$content->addLabel($userLabel);
$userName = !empty($_SERVER['PHP_AUTH_USER']) ? $_SERVER['PHP_AUTH_USER'] : '-';
$userField = new htmlOutputText($userName);
$content->addField($userField);
// password field
$passwordText = _("Password");
if (!empty($this->profile->passwordLabel)) {
$passwordText = $this->profile->passwordLabel;
}
$passwordLabel = new htmlLabel('password', $passwordText);
$content->addLabel($passwordLabel);
$passwordField = new htmlOutputText('**********');
$content->addField($passwordField);
}
/**
* @inheritDoc
*/
function getLoginName(): string {
return $_SERVER['PHP_AUTH_USER'];
}
/**
* @inheritDoc
*/
function getLoginPassword(): string {
return $_SERVER['PHP_AUTH_PW'];
}
/**
* @inheritDoc
*/
function managesAuthentication(): bool {
return false;
}
/**
* @inheritDoc
*/
function isAuthenticationSuccessful(): bool {
throw new LAMException('Not implemented');
}
/**
* @inheritDoc
*/
function authorize2FaUser(string $userName): void {
// no action
}
}
/**
* Performs login with pure 2FA.
*/
class SelfService2FaLoginHandler implements SelfServiceLoginHandler {
public const ID = "2fa";
private selfServiceProfile $profile;
/**
* Constructor
*
* @param selfServiceProfile $profile profile
*/
function __construct(selfServiceProfile $profile) {
$this->profile = $profile;
}
/**
* @inheritDoc
*/
function getId(): string {
return self::ID;
}
/**
* @inheritDoc
*/
function addLoginFields(htmlResponsiveRow $content): void {
// no input fields
}
/**
* @inheritDoc
*/
function getLoginName(): string {
return '';
}
/**
* @inheritDoc
*/
function getLoginPassword(): string {
return '';
}
/**
* @inheritDoc
*/
function managesAuthentication(): bool {
return true;
}
/**
* @inheritDoc
*/
function isAuthenticationSuccessful(): bool {
if (($this->profile->twoFactorAuthentication !== TwoFactorProviderService::TWO_FACTOR_OKTA)
&& ($this->profile->twoFactorAuthentication !== TwoFactorProviderService::TWO_FACTOR_OPENID)) {
logNewMessage(LOG_ERR, 'Unsupported 2FA provider: ' . $this->profile->twoFactorAuthentication);
return false;
}
if (!$this->profile->useForAllOperations) {
logNewMessage(LOG_ERR, 'Use for all operations must be set');
return false;
}
// authentication will be checked on 2FA page
return true;
}
/**
* @inheritDoc
*/
function authorize2FaUser(string $userName): void {
$bindUser = $this->profile->LDAPUser;
if (empty($bindUser)) {
throw new LAMException('SelfService2FaLoginHandler', 'No bind user set');
}
$bindPassword = deobfuscateText($this->profile->LDAPPassword);
$server = connectToLDAP($this->profile->serverURL, $this->profile->useTLS);
if ($server === null) {
throw new LAMException('SelfService2FaLoginHandler', 'Unable to match provided user with LDAP entry - LDAP connect failed');
}
ldap_set_option($server, LDAP_OPT_REFERRALS, $this->profile->followReferrals);
$bind = @ldap_bind($server, $bindUser, $bindPassword);
if (!$bind) {
throw new LAMException('SelfService2FaLoginHandler', 'Unable to match provided user with LDAP entry - LDAP bind failed');
}
$filter = '(' . $this->profile->twoFactorAuthenticationAttribute . "=" . ldap_escape($userName) . ')';
if (!empty($this->profile->additionalLDAPFilter)) {
$filter = '(&' . $filter . $this->profile->additionalLDAPFilter . ')';
}
$result = @ldap_search($server, $this->profile->LDAPSuffix, $filter, ['DN'], 0, 1, 0, LDAP_DEREF_NEVER);
if ($result === false) {
throw new LAMException('SelfService2FaLoginHandler', 'Unable to match provided user with LDAP entry - LDAP search failed');
}
$entries = @ldap_get_entries($server, $result);
if ($entries === false) {
throw new LAMException('SelfService2FaLoginHandler', 'Unable to match provided user with LDAP entry - LDAP search failed');
}
$info = $entries;
cleanLDAPResult($info);
if (sizeof($info) === 1) {
$userDN = $info[0]['dn'];
$_SESSION['selfService_clientDN'] = lamEncrypt($userDN, 'SelfService');
return;
}
throw new LAMException('SelfService2FaLoginHandler', 'Multiple or no results for ' . $userName . ' ' . print_r($info, true));
}
}
|