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 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990
|
<?php
use LAM\PDF\PdfStructurePersistenceManager;
use LAM\PROFILES\AccountProfilePersistenceManager;
use LAM\TYPES\ConfiguredType;
use \LAM\TYPES\TypeManager;
use function LAM\TYPES\getScopeFromTypeId;
/*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2003 - 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 other parts of LAM.
*
* @package modules
* @author Tilo Lutz
* @author Michael Duergner
* @author Roland Gruber
*/
/** self service functions */
include_once(__DIR__ . "/selfService.inc");
if (isLAMProVersion()) {
/** job interface */
include_once(__DIR__ . "/jobs.inc");
}
/** some helper functions */
include_once(__DIR__ . "/account.inc");
/** parent class of account modules */
include_once(__DIR__ . "/baseModule.inc");
/** access to LDAP server */
include_once(__DIR__ . "/ldap.inc");
/** remote functions */
include_once(__DIR__ . "/remote.inc");
/** security functions */
include_once(__DIR__ . "/security.inc");
/** meta HTML classes */
include_once(__DIR__ . "/html.inc");
/**
* This includes all module files.
*/
$modulesINC_dirname = substr(__FILE__, 0, strlen(__FILE__) - 12) . "/modules";
$modulesINC_dir = dir($modulesINC_dirname);
// get module names.
while ($entry = $modulesINC_dir->read()) {
if ((substr($entry, strlen($entry) - 4, 4) == '.inc') && is_file($modulesINC_dirname . '/' . $entry)) {
include_once($modulesINC_dirname . '/' . $entry);
}
}
/**
* Returns the alias name of a module
*
* @param string $name the module name
* @param string $scope the account type ("user", "group", "host")
* @return string|null alias name
*/
function getModuleAlias($name, $scope) {
$module = moduleCache::getModule($name, $scope);
if ($module === null) {
return null;
}
return $module->get_alias();
}
/**
* Returns true if the module is a base module
*
* @param string $name the module name
* @param string $scope the account type ("user", "group", "host")
* @return boolean true if base module
*/
function is_base_module($name, $scope) {
$module = moduleCache::getModule($name, $scope);
return $module->is_base_module();
}
/**
* Returns the LDAP filter used by the account lists
*
* @param string $typeId the account type ("user", "group", "host")
* @return string LDAP filter
*/
function get_ldap_filter($typeId) {
$typeManager = new \LAM\TYPES\TypeManager();
$type = $typeManager->getConfiguredType($typeId);
$mods = $_SESSION['config']->get_AccountModules($typeId);
$filters = ['or' => [], 'and' => []];
$orFilter = '';
for ($i = 0; $i < sizeof($mods); $i++) {
$module = moduleCache::getModule($mods[$i], $type->getScope());
$modinfo = $module->get_ldap_filter($typeId);
if (isset($modinfo['or'])) {
$filters['or'][] = $modinfo['or'];
}
if (isset($modinfo['and'])) {
$filters['and'][] = $modinfo['and'];
}
}
// build OR filter
if (sizeof($filters['or']) == 1) {
$orFilter = $filters['or'][0];
}
elseif (sizeof($filters['or']) > 1) {
$orFilter = "(|" . implode("", $filters['or']) . ")";
}
// add built OR filter to AND filters
if (!empty($orFilter)) {
$filters['and'][] = $orFilter;
}
// add type filter
$typeSettings = $_SESSION['config']->get_typeSettings();
if (isset($typeSettings['filter_' . $typeId]) && ($typeSettings['filter_' . $typeId] != '')) {
if (str_starts_with($typeSettings['filter_' . $typeId], '(')) {
$filters['and'][] = $typeSettings['filter_' . $typeId];
}
else {
$filters['and'][] = '(' . $typeSettings['filter_' . $typeId] . ')';
}
}
// collapse AND filters
$finalFilter = '';
if (sizeof($filters['and']) < 2) {
$finalFilter = $filters['and'][0];
}
else {
$finalFilter = "(&" . implode("", $filters['and']) . ")";
}
$loginData = $_SESSION['ldap']->getUserName();
return str_replace('@@LOGIN_DN@@', $loginData, $finalFilter);
}
/**
* Returns a list of LDAP attributes which can be used to form the RDN.
*
* The list is already sorted by the priority given by the modules.
*
* @param string $typeId account type (user, group, host)
* @param array $selectedModules return only RDN attributes of these modules
* @return array list of LDAP attributes
*/
function getRDNAttributes($typeId, $selectedModules = null) {
$mods = $_SESSION['config']->get_AccountModules($typeId);
if ($selectedModules != null) {
$mods = $selectedModules;
}
$attrs_low = [];
$attrs_normal = [];
$attrs_high = [];
for ($i = 0; $i < sizeof($mods); $i++) {
// get list of attributes
$module = moduleCache::getModule($mods[$i], \LAM\TYPES\getScopeFromTypeId($typeId));
$attrs = $module->get_RDNAttributes($typeId);
$keys = array_keys($attrs);
// sort attributes
for ($k = 0; $k < sizeof($keys); $k++) {
switch ($attrs[$keys[$k]]) {
case "normal":
$attrs_normal[] = $keys[$k];
break;
case "high":
$attrs_high[] = $keys[$k];
break;
case "low":
default:
$attrs_low[] = $keys[$k];
break;
}
}
}
// merge arrays
$return = array_values(array_unique($attrs_high));
for ($i = 0; $i < sizeof($attrs_normal); $i++) {
if (!in_array($attrs_normal[$i], $return)) {
$return[] = $attrs_normal[$i];
}
}
for ($i = 0; $i < sizeof($attrs_low); $i++) {
if (!in_array($attrs_low[$i], $return)) {
$return[] = $attrs_low[$i];
}
}
return $return;
}
/**
* Returns a hash array (module name => dependencies) of all module dependencies
*
* "dependencies" contains an array with two sub arrays: depends, conflicts
* <br>The elements of "depends" are either module names or an array of module names (OR-case).
* <br>The elements of conflicts are module names.
*
* @param string $scope the account type (user, group, host)
* @return array dependencies
*/
function getModulesDependencies($scope) {
$mods = getAvailableModules($scope);
for ($i = 0; $i < sizeof($mods); $i++) {
$module = moduleCache::getModule($mods[$i], $scope);
$return[$mods[$i]] = $module->get_dependencies();
}
return $return;
}
/**
* Checks if there are missing dependencies between modules.
*
* @param array $selected selected module names
* @param array $deps module dependencies
* @return mixed false if no missing dependency was found,
* otherwise an array of array(selected module, depending module) if missing dependencies were found
*/
function check_module_depends($selected, $deps) {
$ret = [];
for ($m = 0; $m < sizeof($selected); $m++) { // check selected modules
for ($i = 0; $i < sizeof($deps[$selected[$m]]['depends']); $i++) { // check dependencies of module
// check if we have OR-combined modules
if (is_array($deps[$selected[$m]]['depends'][$i])) {
// one of the elements is needed
$found = false;
$depends = $deps[$selected[$m]]['depends'][$i];
for ($d = 0; $d < sizeof($depends); $d++) {
if (in_array($depends[$d], $selected)) {
$found = true;
break;
}
}
if (!$found) {
// missing dependency, add to return value
$ret[] = [$selected[$m], implode(" || ", $depends)];
}
}
else {
// single dependency
if (!in_array($deps[$selected[$m]]['depends'][$i], $selected)) {
// missing dependency, add to return value
$ret[] = [$selected[$m], $deps[$selected[$m]]['depends'][$i]];
}
}
}
}
if (sizeof($ret) > 0) {
return $ret;
}
return false;
}
/**
* Checks if there are conflicts between modules
*
* @param array $selected selected module names
* @param array $deps module dependencies
* @return boolean false if no conflict was found,
* otherwise an array of array(selected module, conflicting module) if conflicts were found
*/
function check_module_conflicts($selected, $deps) {
$ret = [];
for ($m = 0; $m < sizeof($selected); $m++) {
for ($i = 0; $i < sizeof($deps[$selected[$m]]['conflicts']); $i++) {
if (in_array($deps[$selected[$m]]['conflicts'][$i], $selected)) {
$ret[] = [$selected[$m], $deps[$selected[$m]]['conflicts'][$i]];
}
}
}
if (sizeof($ret) > 0) {
return $ret;
}
return false;
}
/**
* Returns an array with all available user module names
*
* @param string $scope account type (user, group, host)
* @param boolean $mustSupportAdminInterface module must support LAM admin interface (default: false)
* @return array list of possible modules
*/
function getAvailableModules($scope, $mustSupportAdminInterface = false) {
$dirname = substr(__FILE__, 0, strlen(__FILE__) - 12) . "/modules";
$dir = dir($dirname);
$return = [];
// get module names.
while ($entry = $dir->read()) {
if ((substr($entry, strlen($entry) - 4, 4) == '.inc') && is_file($dirname . '/' . $entry)) {
$entry = substr($entry, 0, strpos($entry, '.'));
$temp = moduleCache::getModule($entry, $scope);
if ($temp === null) {
continue;
}
if ($mustSupportAdminInterface && !$temp->supportsAdminInterface()) {
continue;
}
if ($temp->can_manage()) {
$return[] = $entry;
}
}
}
return $return;
}
/**
* Returns an array with all modules.
*
* @return baseModule[] list of modules
*/
function getAllModules(): array {
$dirname = substr(__FILE__, 0, strlen(__FILE__) - 12) . "/modules";
$dir = dir($dirname);
$return = [];
// get module names.
while ($entry = $dir->read()) {
if ((substr($entry, strlen($entry) - 4, 4) == '.inc') && is_file($dirname . '/' . $entry)) {
$entry = substr($entry, 0, strpos($entry, '.'));
$return[] = new $entry(null);
}
}
return $return;
}
/**
* Returns the elements for the profile page.
*
* @param string $typeId account type (user, group, host)
* @return array profile elements
*/
function getProfileOptions($typeId) {
$typeManager = new TypeManager();
$type = $typeManager->getConfiguredType($typeId);
$mods = $type->getModules();
$return = [];
for ($i = 0; $i < sizeof($mods); $i++) {
$module = moduleCache::getModule($mods[$i], $type->getScope());
$moduleOptions = $module->get_profileOptions($typeId);
if ($moduleOptions !== null) {
$return[$mods[$i]] = $moduleOptions;
}
}
return $return;
}
/**
* Checks if the profile options are valid
*
* @param string $typeId account type (user, group, host)
* @param array $options hash array containing all options (name => array(...))
* @return array list of error messages
*/
function checkProfileOptions($typeId, $options) {
$typeManager = new TypeManager();
$type = $typeManager->getConfiguredType($typeId);
$mods = $type->getModules();
$return = [];
for ($i = 0; $i < sizeof($mods); $i++) {
$module = moduleCache::getModule($mods[$i], $type->getScope());
$temp = $module->check_profileOptions($options, $type->getId());
$return = array_merge($return, $temp);
}
return $return;
}
/**
* Returns a hash array (module name => elements) of all module options for the configuration page.
*
* @param array $moduleToScopes hash array (module name => array(account types))
* @return array configuration options
*/
function getConfigOptions(array $moduleToScopes): array {
$return = [];
foreach ($moduleToScopes as $module => $typeIds) {
$m = moduleCache::getModule($module, getScopeFromTypeId($typeIds[0]));
$return[$module] = $m->get_configOptions($typeIds, $moduleToScopes);
}
return $return;
}
/**
* Checks if the configuration options are valid
*
* @param array $moduleToTypeIds hash array (module name => array(account type ids))
* @param array $options hash array containing all options (name => array(...))
* @return array list of error messages
*/
function checkConfigOptions($moduleToTypeIds, &$options) {
$return = [];
foreach ($moduleToTypeIds as $module => $typeIds) {
$m = moduleCache::getModule($module, getScopeFromTypeId($typeIds[0]));
$errors = $m->check_configOptions($typeIds, $options);
if (isset($errors) && is_array($errors)) {
$return = array_merge($return, $errors);
}
}
return $return;
}
/**
* Returns a help entry from an account module.
*
* @param string $module module name
* @param string $helpID help identifier
* @param string $scope account type
* @return array help entry
*/
function getHelp($module, $helpID, $scope) {
global $helpArray;
if (!isset($module) || ($module == '') || ($module == 'main')) {
$helpPath = "../help/help.inc";
if (is_file("../../help/help.inc")) {
$helpPath = "../../help/help.inc";
}
if (!isset($helpArray)) {
include_once($helpPath);
}
return $helpArray[$helpID];
}
$moduleObject = moduleCache::getModule($module, $scope);
return $moduleObject->get_help($helpID);
}
/**
* Returns a list of available PDF entries.
*
* @param string $typeId account type (user, group, host)
* @return array PDF entries (field ID => field label)
*/
function getAvailablePDFFields($typeId) {
$typeManager = new TypeManager();
$_SESSION['pdfContainer'] = new accountContainer($typeManager->getConfiguredType($typeId), 'pdfContainer');
$_SESSION['pdfContainer']->initModules();
$mods = $_SESSION['pdfContainer']->getAccountModules();
$return = [];
foreach ($mods as $module) {
$fields = $module->get_pdfFields($typeId);
$moduleName = $module::class;
$return[$moduleName] = [];
if (is_array($fields)) {
foreach ($fields as $fieldID => $fieldLabel) {
if (is_integer($fieldID)) {
// support old PDF field list which did not contain a label
$return[$moduleName][$fieldLabel] = $fieldLabel;
}
else {
$return[$moduleName][$fieldID] = $fieldLabel;
}
}
}
}
$return['main'] = ['dn' => _('DN')];
unset($_SESSION['pdfContainer']);
return $return;
}
/**
* Returns an array containing all input columns for the file upload.
*
* Syntax:
* <br> array(
* <br> string: name, // fixed non-translated name which is used as column name (should be of format: <module name>_<column name>)
* <br> string: description, // short descriptive name
* <br> string: help, // help ID
* <br> string: example, // example value
* <br> boolean: required // true, if user must set a value for this column
* <br> )
*
* @param ConfiguredType $type account type
* @param array $selectedModules selected account modules
* @return array column list
*/
function getUploadColumns(&$type, $selectedModules) {
$return = [];
for ($i = 0; $i < sizeof($selectedModules); $i++) {
$module = moduleCache::getModule($selectedModules[$i], $type->getScope());
$return[$selectedModules[$i]] = $module->get_uploadColumns($selectedModules, $type);
}
return $return;
}
/**
* This function builds the LDAP accounts for the file upload.
*
* If there are problems status messages will be printed automatically.
*
* @param ConfiguredType $type account type
* @param array $data array containing one account in each element
* @param array $ids array(<column_name> => <column number>)
* @param array $selectedModules selected account modules
* @param htmlResponsiveRow $container HTML container
* @return mixed array including accounts or false if there were errors
*/
function buildUploadAccounts($type, $data, $ids, $selectedModules, htmlResponsiveRow $container) {
// build module order
$unOrdered = $selectedModules;
$ordered = [];
$predepends = [];
// get dependencies
for ($i = 0; $i < sizeof($unOrdered); $i++) {
$mod = moduleCache::getModule($unOrdered[$i], $type->getScope());
logNewMessage(LOG_DEBUG, 'Checking dependencies for ' . $unOrdered[$i]);
$predepends[$unOrdered[$i]] = $mod->get_uploadPreDepends();
}
// first all modules without predepends can be ordered
for ($i = 0; $i < sizeof($unOrdered); $i++) {
if (sizeof($predepends[$unOrdered[$i]]) == 0) {
$ordered[] = $unOrdered[$i];
unset($unOrdered[$i]);
$unOrdered = array_values($unOrdered);
$i--;
}
}
$unOrdered = array_values($unOrdered); // fix indexes
// now add all modules with fulfilled dependencies until all are in order
while (sizeof($unOrdered) > 0) {
$newRound = false;
for ($i = 0; $i < sizeof($unOrdered); $i++) {
$deps = $predepends[$unOrdered[$i]];
$depends = false;
for ($d = 0; $d < sizeof($deps); $d++) {
if (in_array($deps[$d], $unOrdered)) {
$depends = true;
break;
}
}
if (!$depends) { // add to order if dependencies are fulfilled
$ordered[] = $unOrdered[$i];
unset($unOrdered[$i]);
$unOrdered = array_values($unOrdered);
$newRound = true;
break;
}
}
if ($newRound) {
continue;
}
// this point should never be reached, LAM was unable to find a correct module order
$container->add(new htmlStatusMessage("ERROR", "Internal Error: Unable to find correct module order."), 12);
return false;
}
// give raw data to modules
$errors = [];
$partialAccounts = [];
foreach ($data as $i => $dataRow) {
$partialAccounts[$i]['objectClass'] = [];
}
$stopUpload = false;
for ($i = 0; $i < sizeof($ordered); $i++) {
$module = new $ordered[$i]($type->getScope());
logNewMessage(LOG_DEBUG, 'Building data for ' . $ordered[$i]);
$moduleErrors = $module->build_uploadAccounts($data, $ids, $partialAccounts, $selectedModules, $type);
if (sizeof($moduleErrors) > 0) {
$errors = array_merge($errors, $moduleErrors);
foreach ($moduleErrors as $error) {
if ($error[0] == 'ERROR') {
array_unshift($errors, ["INFO", _("Displayed account numbers start at \"0\". Add 2 to get the row in your spreadsheet."), ""]);
$errors[] = ["ERROR", _("Upload was stopped after errors in %s module!"), "", [$module->get_alias()]];
// skip other modules if error was found
$stopUpload = true;
break;
}
}
}
if ($stopUpload) {
break;
}
}
if (sizeof($errors) > 0) {
for ($i = 0; (($i < sizeof($errors)) && ($i < 50)); $i++) {
$text = empty($errors[$i][2]) ? null : $errors[$i][2];
$values = empty($errors[$i][3]) ? null : $errors[$i][3];
$container->add(new htmlStatusMessage($errors[$i][0], $errors[$i][1], $text, $values), 12);
}
}
if ($stopUpload) {
return false;
}
logNewMessage(LOG_DEBUG, 'Data built');
return $partialAccounts;
}
/**
* Runs any actions that need to be done before an LDAP entry is created.
*
* @param ConfiguredType $type account type
* @param array $selectedModules list of selected account modules
* @param array $attributes LDAP attributes of this entry (attributes are provided as reference, handle modifications of $attributes with care)
* @return array array which contains status messages. Each entry is an array containing the status message parameters.
*/
function doUploadPreActions($type, $selectedModules, $attributes) {
$messages = [];
for ($i = 0; $i < sizeof($selectedModules); $i++) {
$activeModule = $selectedModules[$i];
$module = moduleCache::getModule($activeModule, $type->getScope());
$messages = array_merge($messages, $module->doUploadPreActions($attributes, $type));
}
return $messages;
}
/**
* This function executes one post upload action.
*
* @param ConfiguredType $type account type
* @param array $data array containing one account in each element
* @param array $ids array(<column_name> => <column number>)
* @param array $failed list of accounts which were not created successfully
* @param array $selectedModules list of selected account modules
* @param array $accounts list of LDAP entries
* @return array current status
* <br> array (
* <br> 'status' => 'finished' | 'inProgress'
* <br> 'module' => <name of active module>
* <br> 'progress' => 0..100
* <br> 'errors' => array (<array of parameters for StatusMessage>)
* <br> )
*/
function doUploadPostActions($type, &$data, $ids, $failed, $selectedModules, &$accounts) {
// check if function is called the first time
if (!isset($_SESSION['mass_postActions']['remainingModules'])) {
// make list of remaining modules
$moduleList = $selectedModules;
$_SESSION['mass_postActions']['remainingModules'] = $moduleList;
}
$activeModule = $_SESSION['mass_postActions']['remainingModules'][0];
// initialize temporary variable
if (!isset($_SESSION['mass_postActions'][$activeModule])) {
$_SESSION['mass_postActions'][$activeModule] = [];
}
// let first module do one post action
$module = moduleCache::getModule($activeModule, $type->getScope());
$return = $module->doUploadPostActions($data, $ids, $failed, $_SESSION['mass_postActions'][$activeModule], $accounts, $selectedModules, $type);
// remove active module from list if already finished
if ($return['status'] == 'finished') {
unset($_SESSION['mass_postActions']['remainingModules'][0]);
$_SESSION['mass_postActions']['remainingModules'] = array_values($_SESSION['mass_postActions']['remainingModules']);
}
// update status and return back to upload page
$return['module'] = $activeModule;
if (sizeof($_SESSION['mass_postActions']['remainingModules']) > 0) {
$return['status'] = 'inProgress';
}
else {
$return['status'] = 'finished';
}
return $return;
}
/**
* Returns true if the module is a base module
*
* @return array required extensions
*/
function getRequiredExtensions() {
$extList = [];
$typeManager = new \LAM\TYPES\TypeManager();
$types = $typeManager->getConfiguredTypes();
foreach ($types as $type) {
$mods = $_SESSION['config']->get_AccountModules($type->getId());
for ($m = 0; $m < sizeof($mods); $m++) {
$module = moduleCache::getModule($mods[$m], $type->getScope());
$ext = $module->getRequiredExtensions();
for ($e = 0; $e < sizeof($ext); $e++) {
if (!in_array($ext[$e], $extList)) {
$extList[] = $ext[$e];
}
}
}
}
return $extList;
}
/**
* Takes a list of meta-HTML elements and prints the equivalent HTML output.
*
* The modules are not allowed to display HTML code directly but return
* meta HTML code. This allows to have a common design for all module pages.
*
* @param string $module Name of account module
* @param htmlElement|htmlElement[] $input htmlElement or array of htmlElement elements
* @param array $values List of values which override the defaults in $input (name => value)
* @param boolean $restricted If true then no buttons will be displayed
* @param string $scope Account type
* @return array List of input field names and their type (name => type)
*/
function parseHtml($module, $input, $values, $restricted, $scope) {
if ($input instanceof htmlElement) {
return $input->generateHTML($module, $input, $values, $restricted, $scope);
}
if (is_array($input) && (sizeof($input) > 0)) {
$return = [];
for ($i = 0; $i < sizeof($input); $i++) {
$return = array_merge($return, $input[$i]->generateHTML($module, $input, $values, $restricted, $scope));
}
return $return;
}
return [];
}
/**
* Helper function to sort descriptive options in parseHTML().
* It compares the second entries of two arrays.
*
* @param array $a first array
* @param array $b second array
* @return integer compare result
*/
function lamCompareDescriptiveOptions(&$a, &$b) {
// check parameters
if (!is_array($a) || !isset($a[1]) || !is_array($b) || !isset($b[1])) {
return 0;
}
return strnatcasecmp($a[1], $b[1]);
}
/**
* Prints a LAM help link.
*
* @param array $entry help entry
* @param String $number help number
* @param String $module module name
* @param String $scope account scope
* @param array $classes CSS classes
*/
function printHelpLink($entry, $number, $module = '', $scope = '', $classes = []) {
$helpPath = "../";
if (is_file("./help.php")) {
$helpPath = "";
}
$title = $entry['Headline'];
$message = $entry['Text'];
if (isset($entry['attr'])) {
$message .= '<br><br><hr class="dotted">' . _('Technical name') . ': <i>' . $entry['attr'] . '</i>';
}
// replace special characters
$message = htmlspecialchars($message);
$title = htmlspecialchars($title);
$selfServiceOption = '';
if (isSelfService()) {
$selfServiceOption = '&selfService=1';
}
echo "<a class=\"margin2 " . implode(" ", $classes) . "\" href=\"" . $helpPath . "help.php?module=$module&HelpNumber=" . $number . "&scope=" . $scope . $selfServiceOption . "\" ";
echo "target=\"help\" tabindex=\"-1\">";
echo "<img helptitle=\"" . $title . "\" helpdata=\"" . $message . "\" class=\"align-middle help-icon\" src=\"../{$helpPath}graphics/help.svg\" alt=\"" . _('Help') . "\" width=\"16\" height=\"16\">";
echo "</a>";
}
/**
* This class includes all modules and attributes of an account.
*
* @package modules
*/
class accountContainer {
/**
* Constructor
*
* @param ConfiguredType $type account type
* @param string $base key in $_SESSION where this object is saved
*/
function __construct($type, $base) {
if (!($type instanceof ConfiguredType)) {
trigger_error('Argument of accountContainer must be ConfiguredType.', E_USER_ERROR);
}
if (!is_string($base)) {
trigger_error('Argument of accountContainer must be string.', E_USER_ERROR);
}
$this->type = $type;
$this->base = $base;
// Set startpage
$this->current_page = 0;
$this->subpage = 'attributes';
$this->isNewAccount = false;
}
/**
* Array of all used attributes
* Syntax is attribute => array ( objectClass => MUST or MAY, ...)
*/
public $attributes;
/**
* This variable stores the account type.
*/
private $type;
/** This is an array with all module objects
*
* @var baseModule[] modules
*/
private $module;
/** DN suffix of the account */
public $dnSuffix;
/** DN of account when it was loaded */
public $dn_orig;
/** RDN attribute of this account */
public $rdn;
/** DN of saved account */
public $finalDN;
/** original LDAP attributes when account was loaded from LDAP */
public $attributes_orig;
/** Module order */
private $order;
/** Name of accountContainer variable in session */
private $base;
/** This variable stores the page number of the currently displayed page */
private $current_page = 0;
/** This variable is set to the pagename of a subpage if it should be displayed */
private $subpage;
/** True if this is a newly created account */
public $isNewAccount;
/** name of last loaded account profile */
private $lastLoadedProfile = '';
/** cache for existing OUs */
private $cachedOUs;
/** icon in title bar */
private $titleBarIcon;
/** main title in title bar */
private $titleBarTitle;
/** subtitle in title bar */
private $titleBarSubtitle;
/** send password via mail */
private $sendPasswordViaMail;
/** send password via mail to this alternate address */
private $sendPasswordViaMailAlternateAddress;
/**
* @var array additional attributes for pre/post actions
*/
private $extraInfoAttributes = [];
/**
* @var bool errors occurred after saving LDAP data (postModify scripts)
*/
private bool $postSaveErrorsOccurred = false;
/**
* Returns the account module with the given class name
*
* @param string $name class name (e.g. posixAccount)
* @return baseModule account module
*/
public function getAccountModule($name) {
if (isset($this->module[$name])) {
return $this->module[$name];
}
else {
return null;
}
}
/**
* Returns the included account modules.
*
* @return baseModule[] modules
*/
public function getAccountModules() {
return $this->module;
}
/**
* Returns the account type of this object (e.g. user, group, host).
*
* @return ConfiguredType account type
*/
public function get_type() {
return $this->type;
}
/**
* Returns the session edit key for this container.
*
* @return string key
*/
public function getEditKey() {
return $this->base;
}
/**
* This function is called when the user clicks on any button on the account pages.
* It prints the HTML code of each account page.
*/
public function continue_main() {
$oldPage = $this->current_page;
$oldSubpage = $this->subpage;
$result = [];
$errorsOccurred = false;
$typeObject = $this->type->getBaseType();
$profileLoaded = $this->loadProfileIfRequested();
if ($this->subpage == '') {
$this->subpage = 'attributes';
}
if (isset($_POST['accountContainerReset'])) {
$result = $this->load_account($this->dn_orig);
}
elseif (isset($_POST['accountContainerDelete'])) {
metaRefresh("../lists/deletelink.php?type=" . $this->type->getId() . "&DN='" . rawurlencode($this->dn_orig) . "'");
unset($_SESSION[$this->base]);
exit();
}
elseif (!$profileLoaded) {
// change dn suffix
if (isset($_GET['suffix']) && ($_GET['suffix'] != '') && ($this->dnSuffix == null)) {
$this->dnSuffix = $_GET['suffix'];
}
if (isset($_POST['accountContainerSuffix']) && ($_POST['accountContainerSuffix'] != '')) {
$this->dnSuffix = $_POST['accountContainerSuffix'];
}
// change RDN
if (isset($_POST['accountContainerRDN'])) {
$this->rdn = $_POST['accountContainerRDN'];
}
// create another account
if (isset($_POST['accountContainerCreateAgain'])) {
// open fresh account page
unset($_SESSION[$this->base]);
metaRefresh("edit.php?type=" . $this->type->getId() . "&suffix=" . $this->dnSuffix);
exit();
}
// reedit account
if (isset($_POST['accountContainerBackToEdit'])) {
// open fresh account page
unset($_SESSION[$this->base]);
metaRefresh("edit.php?type=" . $this->type->getId() . "&DN=" . urlencode($this->finalDN));
exit();
}
// back to account list
if (isset($_POST['accountContainerBackToList'])) {
// Return to account list
unset($_SESSION[$this->base]);
metaRefresh("../lists/list.php?type=" . $this->type->getId() . '&accountEditBack=true');
exit;
}
// create PDF file
if (isset($_POST['accountContainerCreatePDF'])) {
metaRefresh('../lists/list.php?printPDF=1&type=' . $this->type->getId() . "&refresh=true&PDFSessionID=" . $this->base);
exit;
}
// module actions
if ((sizeof($_POST) > 0) && checkIfWriteAccessIsAllowed($this->type->getId())) {
$result = call_user_func([&$this->module[$this->order[$this->current_page]], 'process_' . $this->subpage]);
if (is_array($result)) { // messages were returned, check for errors
for ($i = 0; $i < sizeof($result); $i++) {
if ($result[$i][0] == 'ERROR') {
$errorsOccurred = true;
break;
}
}
}
$this->sortModules();
}
// run type post actions
$typeObject->runEditPagePostAction($this);
// save account
if (!$errorsOccurred && isset($_POST['accountContainerSaveAccount'])) {
// check if all modules are complete
$modules = array_keys($this->module);
$incompleteModules = [];
foreach ($modules as $module) {
if (!$this->module[$module]->module_complete()) {
$incompleteModules[] = $this->module[$module]->get_alias();
}
}
if (sizeof($incompleteModules) > 0) {
$result[] = ['INFO', _('Some required information is missing'),
sprintf(_('Please set up all required attributes on page: %s'), implode(", ", $incompleteModules))];
}
else {
// save account
$saveMessages = $this->save_account();
$saveOk = true;
for ($i = 0; $i < sizeof($saveMessages); $i++) {
if ($saveMessages[$i][0] == 'ERROR') {
$saveOk = false;
}
}
if (!$saveOk) {
$result = $saveMessages;
}
else {
$this->printSuccessPage($saveMessages);
return;
}
}
}
}
// change to next page
if (is_array($result)) { // messages were returned, check for errors
for ($i = 0; $i < sizeof($result); $i++) {
if ($result[$i][0] == 'ERROR') {
$errorsOccurred = true;
break;
}
}
}
if (!$errorsOccurred) {
// go to subpage of current module
$postKeys = array_keys($_POST);
for ($p = 0; $p < sizeof($postKeys); $p++) {
if (is_string($postKeys[$p]) && (str_starts_with($postKeys[$p], 'form_subpage_' . $this->order[$this->current_page]))) {
$temp = substr($postKeys[$p], strlen($this->order[$this->current_page]) + 14);
$temp = explode('_', $temp);
if (sizeof($temp) == 2) {
$this->subpage = $temp[0];
}
}
}
for ($i = 0; $i < count($this->order); $i++) {
if (isset($_POST['form_main_' . $this->order[$i]])) {
if ($this->module[$this->order[$i]]->module_ready()) {
$this->current_page = $i;
$this->subpage = 'attributes';
}
else {
StatusMessage('ERROR', _('The module %s is not yet ready.'),
_('Please enter the account information on the other pages first.'),
[$this->module[$this->order[$i]]->get_alias()]);
}
}
}
}
if ($profileLoaded) {
$profileName = $_POST['accountContainerSelectLoadProfile'];
$result[] = ['INFO', _('Profile "%s" loaded.'), '<div class="hidden lam-dialog-msg" id="lam-make-default-profile-dlg">' . _('Setting saved') . '</div>' .
'<a href="#" id="lam-make-default-profile" data-name="%s" data-typeid="%s" data-ok="%s">' . _('Click here to make this your default profile.') . '</a>', [$profileName, $profileName, $this->get_type()->getId(), _('Ok')]];
}
// update titles
$this->titleBarIcon = $typeObject->buildAccountStatusIcon($this);
$this->titleBarTitle = $typeObject->getTitleBarTitle($this);
$this->titleBarSubtitle = $typeObject->getTitleBarSubtitle($this);
// prints a module content page
$this->printModuleContent($result);
if (!$errorsOccurred && ($oldPage == $this->current_page) && ($oldSubpage == $this->subpage)
&& isset($_POST['scrollPositionTop']) && isset($_POST['scrollPositionLeft'])) {
// scroll to last position
$scrollJs = new htmlJavaScript('window.lam.utility.restoreScrollPosition(' . $_POST['scrollPositionTop'] . ', ' . $_POST['scrollPositionLeft'] . ')');
parseHtml(null, $scrollJs, [], false, $this->type->getScope());
}
$this->printPageFooter();
}
/**
* Prints the content part provided by the current module.
*
* @param array $result list of messages
*/
private function printModuleContent($result) {
$this->printPageHeader();
$this->printPasswordPromt();
// display error messages
if (is_array($result)) {
for ($i = 0; $i < sizeof($result); $i++) {
call_user_func_array(StatusMessage(...), $result[$i]);
}
}
echo '<div id="passwordMessageArea"></div>';
echo "<table class=\"lam-account-edit-table\">\n";
echo "<tr><td style=\"padding: 5px 0px 0px 0px;\">\n";
$this->printCommonControls();
echo "</td></tr>\n";
echo "<tr valign=\"top\"><td style=\"padding: 15px;\">";
// print title bar
$titleBarContainer = new htmlResponsiveRow();
$titleBarContainer->setCSSClasses(['maxrow']);
$titleGroup = new htmlGroup();
if ($this->titleBarIcon !== null) {
$titleGroup->addElement($this->titleBarIcon);
$titleGroup->addElement(new htmlSpacer('1rem', null));
}
$titleBarTitleText = new htmlOutputText($this->titleBarTitle, false);
$titleGroup->addElement($titleBarTitleText);
$titleBarContainer->add(new htmlDiv(null, $titleGroup, ['titleBarTitle', 'text-left']), 12, 12, 4);
$titleBarSubtitleText = new htmlOutputText($this->titleBarSubtitle, false);
$titleBarContainer->add(new htmlDiv(null, $titleBarSubtitleText, ['titleBarSubtitle', 'responsiveLabel']), 12, 12, 8);
$titleBarSuffixRdn = new htmlResponsiveRow();
$titleBarSuffixRdn->add(new htmlHorizontalLine(), 12);
// suffix
$suffixList = [];
foreach ($this->getOUs() as $suffix) {
$suffixList[getAbstractDN($suffix)] = $suffix;
}
if (!($this->dnSuffix == '') && !in_array_ignore_case($this->dnSuffix, $this->getOUs())) {
$suffixList[getAbstractDN($this->dnSuffix)] = $this->dnSuffix;
}
$selectedSuffix = [$this->dnSuffix];
$suffixSelect = new htmlResponsiveSelect('accountContainerSuffix', $suffixList, $selectedSuffix, _('Suffix'));
$suffixSelect->setHasDescriptiveElements(true);
$suffixSelect->setRightToLeftTextDirection(true);
$suffixSelect->setShortLabel();
$suffixSelect->setSortElements(false);
$titleBarSuffixRdn->add($suffixSelect, 12, 12, 7);
// RDN selection
$rdnlist = getRDNAttributes($this->type->getId());
$rdnSelect = new htmlResponsiveSelect('accountContainerRDN', $rdnlist, [$this->rdn], _('RDN identifier'), '400');
$rdnSelect->setShortLabel();
$rdnSelect->setSortElements(false);
$titleBarSuffixRdn->add($rdnSelect, 12, 12, 5);
$titleBarContainer->add($titleBarSuffixRdn);
$titleBarDiv = new htmlDiv(null, $titleBarContainer, ['titleBar']);
parseHtml(null, $titleBarDiv, [], false, $this->type->getScope());
echo '<div id="lamVerticalTabs" class="lam-vertical-tab-container">';
echo '<table class="lam-vertical-tabs fullwidth">';
echo '<tr><td class="lam-vertical-tabs-navigation">';
// tab menu
$this->printModuleTabs();
echo '</td><td style="vertical-align: top; width: 100%;">';
echo "<div class=\"lam-vertical-tab-content fullwidth module-content-row\">\n";
// content area
// display html-code from modules
try {
$return = call_user_func([$this->module[$this->order[$this->current_page]], 'display_html_' . $this->subpage]);
}
catch (LAMException $e) {
$return = new htmlStatusMessage('ERROR', $e->getTitle(), $e->getMessage());
}
parseHtml($this->order[$this->current_page], $return, [], false, $this->type->getScope());
echo "</div>\n";
echo '</td>';
echo '</tr>';
echo '</table>';
echo "</div>\n";
echo "</td></tr>\n";
// Display rest of html-page
echo "</table>\n";
}
/**
* Prints the input fields of the central password service.
*/
private function printPasswordPromt() {
echo "<div id=\"passwordDialogOuter\" class=\"modal modal-pwd-options\">\n";
echo "<div id=\"passwordDialog\" class=\"modal-content\">\n";
$printContainer = false;
$container = new htmlResponsiveRow();
$container->setCSSClasses(['text-left']);
$title = new htmlTitle(_('Set password'));
$container->add($title);
// password fields
$pwdInput1 = new htmlResponsiveInputField(_('Password'), 'newPassword1', null, '404');
$pwdInput1->setIsPassword(true, true);
$container->add($pwdInput1);
$pwdInput2 = new htmlResponsiveInputField(_('Repeat password'), 'newPassword2');
$pwdInput2->setIsPassword(true);
$pwdInput2->setSameValueFieldID('newPassword1');
$container->add($pwdInput2);
// print force password change option
$forceChangeSupported = [];
foreach ($this->module as $module) {
if (($module instanceof passwordService) && $module->supportsForcePasswordChange()) {
$forceChangeSupported[] = $module;
}
}
if (!empty($forceChangeSupported)) {
$container->addLabel(new htmlLabel('lamForcePasswordChange', _('Force password change')));
$forcePwdGroup = new htmlGroup();
$forcePwdGroup->addElement(new htmlInputCheckbox('lamForcePasswordChange', false));
$forcePwdGroup->addElement(new htmlSpacer('1rem', null));
foreach ($forceChangeSupported as $module) {
$forcePwdGroup->addElement(new htmlImage('../../graphics/' . $module->getIcon(), '16px', '16px', $module->get_alias(), $module->get_alias()));
$forcePwdGroup->addElement(new htmlSpacer('0.1rem', null));
}
$forcePwdGroup->addElement(new htmlHelpLink('406'));
$container->addField($forcePwdGroup);
}
if (isLAMProVersion() && (isset($this->attributes_orig['mail'][0]) || $this->anyModuleManagesMail())) {
$container->addVerticalSpacer('0.25rem');
$pwdMailCheckbox = new htmlResponsiveInputCheckbox('lamPasswordChangeSendMail', false, _('Send via mail'), '407');
$pwdMailCheckbox->setTableRowsToShow(['lamPasswordChangeMailAddress']);
$container->add($pwdMailCheckbox);
if ($_SESSION['config']->getLamProMailAllowAlternateAddress() != 'false') {
$alternateMail = '';
$pwdResetModule = $this->getAccountModule('passwordSelfReset');
if ($pwdResetModule !== null) {
$backupMail = $pwdResetModule->getBackupEmail();
if (!empty($backupMail)) {
$alternateMail = $pwdResetModule->getBackupEmail();
}
}
$alternateMailInput = new htmlResponsiveInputField(_('Alternate recipient'), 'lamPasswordChangeMailAddress', $alternateMail, '410');
$container->add($alternateMailInput);
}
}
$container->addVerticalSpacer('0.25rem');
// password modules
$moduleContainer = new htmlGroup();
foreach ($this->module as $name => $module) {
if (($module instanceof passwordService) && $module->managesPasswordAttributes()) {
$printContainer = true;
$buttonImage = $module->getIcon();
if ($buttonImage != null) {
if (!(str_starts_with($buttonImage, 'http')) && !(str_starts_with($buttonImage, '/'))) {
$buttonImage = '../../graphics/' . $buttonImage;
}
$moduleContainer->addElement(new htmlImage($buttonImage, '16px', '16px', getModuleAlias($name, $this->type->getScope())));
}
$moduleContainer->addElement(new htmlInputCheckbox('password_cb_' . $name, true));
$moduleContainer->addElement(new htmlLabel('password_cb_' . $name, getModuleAlias($name, $this->type->getScope())));
$moduleContainer->addElement(new htmlSpacer('10px', null));
}
}
$container->add($moduleContainer);
// buttons
$container->addVerticalSpacer('1rem');
$buttonGroup = new htmlGroup();
$okButton = new htmlButton('changePwdOk', _('Ok'));
$okButton->setCSSClasses(['lam-primary']);
$okButton->setOnClick("passwordHandleInput('false', '../misc/ajax.php?function=passwordChange&editKey="
. htmlspecialchars($this->base) . "', '" . getSecurityTokenName() . "', '" . getSecurityTokenValue()
. "', '" . _('Ok') . "'); return false;");
$buttonGroup->addElement($okButton);
$randomButton = new htmlButton('changePwdRandom', _('Set random password'));
$randomButton->setCSSClasses(['lam-secondary']);
$randomButton->setOnClick("passwordHandleInput('true', '../misc/ajax.php?function=passwordChange&editKey="
. htmlspecialchars($this->base) . "', '" . getSecurityTokenName() . "', '" . getSecurityTokenValue()
. "', '" . _('Ok') . "'); return false;");
$buttonGroup->addElement($randomButton);
$cancelButton = new htmlButton('changePwdCancel', _('Cancel'));
$cancelButton->setOnClick("document.querySelector('.modal-pwd-options').classList.remove('show-modal'); return false;");
$buttonGroup->addElement($cancelButton);
$container->add($buttonGroup);
// generate HTML
if ($printContainer) {
parseHtml(null, $container, [], false, $this->type->getScope());
}
echo "</div>\n";
echo "</div>\n";
}
/**
* Sets the new password in all selected account modules.
*
* @param array $input input parameters
*/
public function setNewPassword($input) {
$password1 = $input['password1'];
$password2 = $input['password2'];
$random = $input['random'] === 'true';
$modules = [];
foreach ($input['modules'] as $moduleName) {
$moduleName = str_replace('password_cb_', '', $moduleName);
if (array_key_exists($moduleName, $this->module)) {
$modules[] = $moduleName;
}
}
$return = [
'messages' => '',
'errorsOccurred' => 'false'
];
$sendMail = false;
if (isset($input['sendMail']) && ($input['sendMail'] == 'true')) {
$sendMail = true;
}
if ($random) {
$password1 = generateRandomPassword();
if (!$sendMail) {
$return['messages'] .= StatusMessage('INFO', _('The password was set to:') . ' ' . htmlspecialchars($password1), '', [], true);
}
}
else {
// check if passwords match
if ($password1 != $password2) {
$return['messages'] .= StatusMessage('ERROR', _('Passwords are different!'), '', [], true);
$return['errorsOccurred'] = 'true';
}
// check password strength
$pwdPolicyResult = checkPasswordStrength($password1, null, null);
if ($pwdPolicyResult !== true) {
$return['messages'] .= StatusMessage('ERROR', $pwdPolicyResult, '', [], true);
$return['errorsOccurred'] = 'true';
}
}
$forcePasswordChange = false;
if (isset($input['forcePasswordChange']) && ($input['forcePasswordChange'] == 'true')) {
$forcePasswordChange = true;
}
$return['forcePasswordChange'] = $forcePasswordChange;
if ($return['errorsOccurred'] == 'false') {
// set new password
foreach ($this->module as $module) {
if ($module instanceof passwordService) {
$messages = $module->passwordChangeRequested($password1, $modules, $forcePasswordChange);
for ($m = 0; $m < sizeof($messages); $m++) {
if ($messages[$m][0] == 'ERROR') {
$return['errorsOccurred'] = 'true';
}
if (sizeof($messages[$m]) == 2) {
$return['messages'] .= StatusMessage($messages[$m][0], $messages[$m][1], '', [], true);
}
elseif (sizeof($messages[$m]) == 3) {
$return['messages'] .= StatusMessage($messages[$m][0], $messages[$m][1], $messages[$m][2], [], true);
}
elseif (sizeof($messages[$m]) == 4) {
$return['messages'] .= StatusMessage($messages[$m][0], $messages[$m][1], $messages[$m][2], $messages[$m][3], true);
}
}
}
}
}
if (isLAMProVersion() && $sendMail) {
$this->sendPasswordViaMail = $password1;
if (($_SESSION['config']->getLamProMailAllowAlternateAddress() != 'false') && !empty($input['sendMailAlternateAddress'])) {
if (!get_preg($input['sendMailAlternateAddress'], 'email')) {
$return['messages'] .= StatusMessage('ERROR', _('Alternate recipient'), _('Please enter a valid email address!'), [], true);
$return['errorsOccurred'] = 'true';
}
$this->sendPasswordViaMailAlternateAddress = $input['sendMailAlternateAddress'];
}
}
if ($return['errorsOccurred'] == 'false') {
$return['messages'] .= StatusMessage('INFO', _('The new password will be stored in the directory after you save this account.'), '', [], true);
$this->extraInfoAttributes['INFO.passwordUpdated'] = 'yes';
$this->extraInfoAttributes['INFO.forcePasswordChange'] = $forcePasswordChange ? 'yes' : 'no';
$this->extraInfoAttributes['INFO.passwordChangeModules'] = implode(', ', $modules);
$this->extraInfoAttributes['INFO.passwordChangeType'] = $random ? 'random' : 'manual';
$this->extraInfoAttributes['INFO.sendPasswordViaEmail'] = $sendMail ? 'yes' : 'no';
if (!empty($input['sendMailAlternateAddress'])) {
$this->extraInfoAttributes['INFO.sendPasswordAlternateAddress'] = $input['sendMailAlternateAddress'];
}
}
return $return;
}
/**
* Returns if any module manages the mail attribute.
*
* @return boolean mail is managed
*/
private function anyModuleManagesMail() {
foreach ($this->module as $mod) {
if (in_array('mail', $mod->getManagedAttributes($this->get_type()->getId()))) {
return true;
}
}
return false;
}
/**
* Prints common controls like the save button and the ou selection.
*/
private function printCommonControls(): void {
$row = new htmlResponsiveRow();
$row->setCSSClasses(['maxrow']);
$leftButtonGroup = new htmlGroup();
$leftButtonGroup->alignment = htmlElement::ALIGN_LEFT;
if (checkIfWriteAccessIsAllowed($this->type->getId()) && !$this->postSaveErrorsOccurred) {
// save button
$saveButton = new htmlButton('accountContainerSaveAccount', _('Save'));
$saveButton->setCSSClasses(['fullwidth-mobile-only lam-primary']);
$leftButtonGroup->addElement($saveButton);
// set password button
if ($this->showSetPasswordButton()) {
$leftButtonGroup->addElement(new htmlSpacer('15px', null, ['hide-on-mobile']));
$passwordButton = new htmlButton('accountContainerPassword', _('Set password'));
$passwordButton->setCSSClasses(['fullwidth-mobile-only lam-secondary']);
$passwordButton->setOnClick("window.lam.dialog.showModal('.modal-pwd-options');");
$leftButtonGroup->addElement($passwordButton);
}
// delete button
if (!$this->isNewAccount && checkIfDeleteEntriesIsAllowed($this->get_type()->getId())) {
$leftButtonGroup->addElement(new htmlSpacer('15px', null, ['hide-on-mobile']));
$deleteButton = new htmlButton('accountContainerDelete', _('Delete'));
$deleteButton->setCSSClasses(['fullwidth-mobile-only lam-danger']);
$leftButtonGroup->addElement($deleteButton);
}
$leftButtonGroup->addElement(new htmlSpacer('15px', null, ['hide-on-mobile']));
// reset button
if (!$this->isNewAccount) {
$resetButton = new htmlButton('accountContainerReset', _('Reset changes'));
$resetButton->setCSSClasses(['fullwidth-mobile-only']);
$leftButtonGroup->addElement($resetButton);
}
}
$type = $this->type->getBaseType();
$backToListButton = new htmlButton('accountContainerBackToList', $type->LABEL_BACK_TO_ACCOUNT_LIST);
$backToListButton->setCSSClasses(['fullwidth-mobile-only']);
$leftButtonGroup->addElement($backToListButton);
$row->add($leftButtonGroup, 12, 9);
$rightGroup = new htmlGroup();
if (checkIfWriteAccessIsAllowed($this->type->getId()) && !$this->postSaveErrorsOccurred) {
// profile selection
$accountProfilePersistenceManager = new AccountProfilePersistenceManager();
$profilelist = $accountProfilePersistenceManager->getAccountProfileNames($this->type->getId(), $_SESSION['config']->getName());
if (sizeof($profilelist) > 0) {
$profileButton = new htmlButton('accountContainerLoadProfileButton', _('Load profile'));
$profileButton->setOnClick('confirmLoadProfile(\'' . _('Load profile') . '\', \'' . _('This may overwrite existing values with profile data. Continue?') . '\','
. ' \'' . _('Ok') . '\', \'' . _('Cancel') . '\', event); return false;');
$profileButton->addDataAttribute('lastprofile', $this->lastLoadedProfile);
$profileListOptions = [];
foreach ($profilelist as $profileName) {
$profileListOptions[$profileName] = $profileName;
}
$profileButton->addDataAttribute('profiles', json_encode($profileListOptions));
$rightGroup->addElement($profileButton);
$rightGroup->addElement(new htmlSpacer('1px', null));
$rightGroup->addElement(new htmlHelpLink('401'));
}
}
$row->add($rightGroup, 12, 3, 3, 'text-right');
parseHtml(null, $row, [], false, $this->type->getScope());
}
/**
* Returns if the page should show a button to set the password.
*
* @return boolean show or hide button
*/
private function showSetPasswordButton() {
foreach ($this->module as $module) {
if (($module instanceof passwordService) && $module->managesPasswordAttributes()) {
return true;
}
}
return false;
}
/**
* Prints the header of the account pages.
*/
private function printPageHeader() {
if (!empty($_POST)) {
validateSecurityToken();
}
include '../../lib/adminHeader.inc';
echo "<form id=\"inputForm\" enctype=\"multipart/form-data\" action=\"edit.php?editKey=" . htmlspecialchars($this->base) . "\" method=\"post\" onSubmit=\"window.lam.utility.saveScrollPosition('inputForm')\" autocomplete=\"off\" novalidate=\"novalidate\">\n";
echo '<input type="hidden" name="' . getSecurityTokenName() . '" value="' . getSecurityTokenValue() . '">';
}
/**
* Prints the footer of the account pages.
*/
private function printPageFooter() {
echo "</form>\n";
include '../../lib/adminFooter.inc';
}
/**
* Prints the HTML code to notify the user about the successful saving.
*
* @param array $messages array which contains status messages. Each entry is an array containing the status message parameters.
*/
private function printSuccessPage($messages) {
$this->printPageHeader();
// Show success message
if ($this->dn_orig == '') {
$text = _("Account was created successfully.");
}
else {
$text = _("Account was modified successfully.");
}
echo "<div smallPaddingContent\">";
$container = new htmlResponsiveRow();
$container->addVerticalSpacer('2rem');
// show messages
for ($i = 0; $i < sizeof($messages); $i++) {
if (sizeof($messages[$i]) == 2) {
$message = new htmlStatusMessage($messages[$i][0], $messages[$i][1]);
$container->add($message);
}
else {
$message = new htmlStatusMessage($messages[$i][0], $messages[$i][1], $messages[$i][2]);
$container->add($message);
}
}
$message = new htmlStatusMessage('INFO', _('LDAP operation successful.'), $text);
$container->add($message);
$container->addVerticalSpacer('2rem');
$type = $this->type->getBaseType();
$buttonGroup = new htmlGroup();
$backToListButton = new htmlButton('accountContainerBackToList', $type->LABEL_BACK_TO_ACCOUNT_LIST);
$backToListButton->setCSSClasses(['lam-primary fullwidth-mobile-only']);
$buttonGroup->addElement($backToListButton);
$buttonGroup->addElement(new htmlSpacer('1rem', null));
if (checkIfNewEntriesAreAllowed($this->type->getId())) {
$createButton = new htmlButton('accountContainerCreateAgain', $type->LABEL_CREATE_ANOTHER_ACCOUNT);
$createButton->setCSSClasses(['lam-secondary fullwidth-mobile-only']);
$buttonGroup->addElement($createButton);
$buttonGroup->addElement(new htmlSpacer('0.5rem', null));
}
$pdfStructurePersistenceManager = new PdfStructurePersistenceManager();
$pdfStructures = $pdfStructurePersistenceManager->getPDFStructures($_SESSION['config']->getName(), $this->type->getId());
if ($pdfStructures) {
$pdfButton = new htmlButton('accountContainerCreatePDF', _('Create PDF file'));
$pdfButton->setCSSClasses(['lam-secondary fullwidth-mobile-only']);
$buttonGroup->addElement($pdfButton);
$buttonGroup->addElement(new htmlSpacer('1rem', null));
}
$backToEditButton = new htmlButton('accountContainerBackToEdit', _('Edit again'));
$backToEditButton->setCSSClasses(['fullwidth-mobile-only']);
$buttonGroup->addElement($backToEditButton);
$container->add($buttonGroup);
parseHtml(null, $container, [], false, $this->type->getScope());
echo "</div>\n";
$this->printPageFooter();
}
/**
* Checks if the user requested to load a profile.
*
* @return boolean true, if profile was loaded
*/
private function loadProfileIfRequested() {
if (isset($_POST['accountContainerLoadProfile']) && isset($_POST['accountContainerSelectLoadProfile'])) {
$accountProfilePersistenceManager = new AccountProfilePersistenceManager();
$profile = $accountProfilePersistenceManager->loadAccountProfile($this->type->getId(), $_POST['accountContainerSelectLoadProfile'], $_SESSION['config']->getName());
$this->lastLoadedProfile = $_POST['accountContainerSelectLoadProfile'];
// pass profile to each module
$modules = array_keys($this->module);
foreach ($modules as $module) {
$this->module[$module]->load_profile($profile);
}
if (isset($profile['ldap_rdn'][0])
&& in_array($profile['ldap_rdn'][0], getRDNAttributes($this->type->getId()))) {
$this->rdn = $profile['ldap_rdn'][0];
}
if (isset($profile['ldap_suffix'][0]) && ($profile['ldap_suffix'][0] != '-')) {
$this->dnSuffix = $profile['ldap_suffix'][0];
}
return true;
}
return false;
}
/**
* Prints the HTML code of the module tabs.
*/
private function printModuleTabs() {
echo '<ul class="lam-vertical-tabs-navigation">';
// Loop for each module
for ($i = 0; $i < count($this->order); $i++) {
$buttonStatus = $this->module[$this->order[$i]]->getButtonStatus();
$alias = $this->module[$this->order[$i]]->get_alias();
// skip hidden buttons
if ($buttonStatus == 'hidden') {
continue;
}
$buttonImage = $this->module[$this->order[$i]]->getIcon();
$activatedClass = '';
if ($this->order[$this->current_page] == $this->order[$i]) {
$activatedClass = ' lam-vertical-tabs-selected';
}
// print button
echo '<li class="lam-vertical-tabs ' . $activatedClass . '">';
echo "<button class=\"lam-account-type " . $activatedClass . "\" name=\"form_main_" . $this->order[$i] . "\"";
if ($buttonStatus == 'disabled') {
echo " disabled";
}
echo ' >';
if ($buttonImage != null) {
if (!(str_starts_with($buttonImage, 'http')) && !(str_starts_with($buttonImage, '/'))) {
$buttonImage = '../../graphics/' . $buttonImage;
}
echo "<img height=32 width=32 class=\"align-middle\" style=\"padding: 3px;\" alt=\"\" src=\"$buttonImage\"> ";
}
echo '<span class="hide-on-mobile">';
echo $alias;
echo '<span>';
echo "</button>\n";
echo "</li>\n";
}
echo '</ul>';
}
/**
* This function checks which LDAP attributes have changed while the account was edited.
*
* @param array $attributes list of current LDAP attributes
* @param array $orig list of old attributes when account was loaded
* @return array an array which can be passed to $this->saveAccount()
*/
function save_module_attributes($attributes, $orig) {
$return = [];
$toadd = [];
$tomodify = [];
$torem = [];
$notchanged = [];
// get list of all attributes
$attr_names = array_keys($attributes);
$orig_names = array_keys($orig);
// find deleted attributes (in $orig but no longer in $attributes)
foreach ($orig_names as $value) {
if (!isset($attributes[$value])) {
$torem[$value] = $orig[$value];
}
}
// find changed attributes
foreach ($attr_names as $name) {
// find deleted attributes
if (isset($orig[$name]) && is_array($orig[$name])) {
foreach ($orig[$name] as $value) {
if (is_array($attributes[$name])) {
if (!in_array($value, $attributes[$name], true)
&& ($value !== null)
&& ($value !== '')) {
$torem[$name][] = $value;
}
}
elseif (($value !== null) && ($value !== '')) {
$torem[$name][] = $value;
}
}
}
// find new attributes
if (isset($attributes[$name]) && is_array($attributes[$name])) {
foreach ($attributes[$name] as $value) {
if (isset($orig[$name]) && is_array($orig[$name])) {
if (!in_array($value, $orig[$name], true)
&& ($value !== null)
&& ($value !== '')) {
$toadd[$name][] = $value;
}
}
elseif (($value !== null) && ($value !== '')) {
$toadd[$name][] = $value;
}
}
}
// find unchanged attributes
if (isset($orig[$name]) && is_array($orig[$name]) && is_array($attributes[$name])) {
foreach ($attributes[$name] as $value) {
if (($value !== null) && ($value !== '') && in_array($value, $orig[$name], true)) {
$notchanged[$name][] = $value;
}
}
}
}
// create modify with add and remove
$attributes2 = array_keys($toadd);
for ($i = 0; $i < count($attributes2); $i++) {
if (isset($torem[$attributes2[$i]]) && (count($toadd[$attributes2[$i]]) > 0) && (count($torem[$attributes2[$i]]) > 0)) {
// found attribute which should be modified
$tomodify[$attributes2[$i]] = $toadd[$attributes2[$i]];
// merge unchanged values
if (isset($notchanged[$attributes2[$i]])) {
$tomodify[$attributes2[$i]] = array_merge($tomodify[$attributes2[$i]], $notchanged[$attributes2[$i]]);
unset($notchanged[$attributes2[$i]]);
}
// remove old add and remove commands
unset($toadd[$attributes2[$i]]);
unset($torem[$attributes2[$i]]);
}
}
if (count($toadd) > 0) {
$return[$this->dn_orig]['add'] = $toadd;
}
if (count($torem) > 0) {
$return[$this->dn_orig]['remove'] = $torem;
}
if (count($tomodify) > 0) {
$return[$this->dn_orig]['modify'] = $tomodify;
}
if (count($notchanged) > 0) {
$return[$this->dn_orig]['notchanged'] = $notchanged;
}
return $return;
}
/**
* Loads an LDAP account with the given DN.
*
* @param string $dn the DN of the account
* @param array $infoAttributes list of additional informational attributes that are added to the LDAP attributes
* E.g. this is used to inject the clear text password in the file upload. Informational attribute names must start with "INFO.".
* @return array error messages
*/
function load_account($dn, $infoAttributes = []) {
logNewMessage(LOG_DEBUG, "Edit account " . $dn);
$this->extraInfoAttributes['INFO.isNewAccount'] = 'no';
$this->extraInfoAttributes['INFO.passwordUpdated'] = 'no';
$this->extraInfoAttributes['INFO.passwordChangeType'] = 'none';
$this->module = [];
$modules = $_SESSION['config']->get_AccountModules($this->type->getId());
$filter = '(objectClass=*)';
$searchAttrs = ['*', '+'];
foreach ($modules as $module) {
$modTmp = new $module($this->type->getScope());
$searchAttrs = array_merge($searchAttrs, $modTmp->getManagedHiddenAttributes($this->type->getId()));
}
$result = @ldap_read($_SESSION['ldap']->server(), $dn, $filter, $searchAttrs, 0, 0, 0, LDAP_DEREF_NEVER);
if (!$result) {
return [["ERROR", _("Unable to load LDAP entry:") . " " . htmlspecialchars($dn), getDefaultLDAPErrorString($_SESSION['ldap']->server())]];
}
$entry = @ldap_first_entry($_SESSION['ldap']->server(), $result);
if (!$entry) {
return [["ERROR", _("Unable to load LDAP entry:") . " " . htmlspecialchars($dn), getDefaultLDAPErrorString($_SESSION['ldap']->server())]];
}
$this->dnSuffix = extractDNSuffix($dn);
$this->dn_orig = $dn;
// extract RDN
$this->rdn = extractRDNAttribute($dn);
$attr = ldap_get_attributes($_SESSION['ldap']->server(), $entry);
$attr = [$attr];
cleanLDAPResult($attr);
$attr = $attr[0];
// fix spelling errors
$attr = $this->fixLDAPAttributes($attr, $modules);
// get binary attributes
$binaryAttr = ['jpegPhoto'];
for ($i = 0; $i < sizeof($binaryAttr); $i++) {
if (isset($attr[$binaryAttr[$i]][0])) {
$binData = ldap_get_values_len($_SESSION['ldap']->server(), $entry, $binaryAttr[$i]);
unset($binData['count']);
$attr[$binaryAttr[$i]] = $binData;
}
}
// add informational attributes
$attr = array_merge($attr, $infoAttributes);
// save original attributes
$this->attributes_orig = $attr;
foreach ($modules as $module) {
if (!isset($this->module[$module])) {
$this->module[$module] = new $module($this->type->getScope());
$this->module[$module]->init($this->base);
}
$this->module[$module]->load_attributes($attr);
}
// sort module buttons
$this->sortModules();
// get titles
$typeObject = $this->type->getBaseType();
$this->titleBarIcon = $typeObject->buildAccountStatusIcon($this);
$this->titleBarTitle = $typeObject->getTitleBarTitle($this);
$this->titleBarSubtitle = $typeObject->getTitleBarSubtitle($this);
return [];
}
/**
* Fixes spelling errors in the attribute names.
*
* @param array $attributes LDAP attributes
* @param array $modules list of active modules
* @return array fixed attributes
*/
function fixLDAPAttributes($attributes, $modules) {
if (!is_array($attributes)) {
return $attributes;
}
$keys = array_keys($attributes);
// get correct object class names, aliases and attributes
$objectClasses = [];
$aliases = [];
$ldapAttributesTemp = [];
foreach ($modules as $module) {
$moduleObj = moduleCache::getModule($module, $this->type->getScope());
$objectClasses = array_merge($objectClasses, $moduleObj->getManagedObjectClasses($this->type->getId()));
$aliases = array_merge($aliases, $moduleObj->getLDAPAliases($this->type->getId()));
$ldapAttributesTemp = array_merge($ldapAttributesTemp,
$moduleObj->getManagedAttributes($this->type->getId()),
$moduleObj->getManagedHiddenAttributes($this->type->getId()));
}
// build lower case attribute names
$ldapAttributes = [];
for ($i = 0; $i < sizeof($ldapAttributesTemp); $i++) {
$ldapAttributes[strtolower($ldapAttributesTemp[$i])] = $ldapAttributesTemp[$i];
unset($ldapAttributes[$i]);
}
$ldapAttributesKeys = array_keys($ldapAttributes);
// convert alias names to lower case (for easier comparison)
$aliasKeys = array_keys($aliases);
for ($i = 0; $i < sizeof($aliasKeys); $i++) {
if ($aliasKeys[$i] != strtolower($aliasKeys[$i])) {
$aliases[strtolower($aliasKeys[$i])] = $aliases[$aliasKeys[$i]];
unset($aliases[$aliasKeys[$i]]);
$aliasKeys[$i] = strtolower($aliasKeys[$i]);
}
}
// fix object classes and attributes
for ($i = 0; $i < sizeof($keys); $i++) {
// check object classes
if (strtolower($keys[$i]) == 'objectclass') {
// fix object class attribute
if ($keys[$i] != 'objectClass') {
$temp = $attributes[$keys[$i]];
unset($attributes[$keys[$i]]);
$attributes['objectClass'] = $temp;
}
// fix object classes
for ($attrClass = 0; $attrClass < sizeof($attributes['objectClass']); $attrClass++) {
for ($modClass = 0; $modClass < sizeof($objectClasses); $modClass++) {
if (strtolower($attributes['objectClass'][$attrClass]) == strtolower($objectClasses[$modClass])) {
if ($attributes['objectClass'][$attrClass] != $objectClasses[$modClass]) {
unset($attributes['objectClass'][$attrClass]);
$attributes['objectClass'][] = $objectClasses[$modClass];
}
break;
}
}
}
}
else {
// fix aliases
if (in_array(strtolower($keys[$i]), $aliasKeys)) {
$attributes[$aliases[strtolower($keys[$i])]] = $attributes[$keys[$i]];
unset($attributes[$keys[$i]]);
}
// fix attribute names
elseif (in_array(strtolower($keys[$i]), $ldapAttributesKeys)) {
if ($keys[$i] != $ldapAttributes[strtolower($keys[$i])]) {
$attributes[$ldapAttributes[strtolower($keys[$i])]] = $attributes[$keys[$i]];
unset($attributes[$keys[$i]]);
}
}
}
}
return $attributes;
}
/**
* This function will prepare the object for a new account.
*/
public function new_account() {
logNewMessage(LOG_DEBUG, "New account with type " . $this->type->getId());
$this->isNewAccount = true;
$this->lastLoadedProfile = 'default';
$this->initModules();
$this->extraInfoAttributes['INFO.isNewAccount'] = 'yes';
$this->extraInfoAttributes['INFO.passwordUpdated'] = 'no';
// sort module buttons
$this->sortModules();
$profileName = 'default';
$profileCookieKey = 'defaultProfile_' . $this->get_type()->getId();
try {
$accountProfilePersistenceManager = new AccountProfilePersistenceManager();
if (!empty($_COOKIE[$profileCookieKey])) {
$cookieProfileName = $_COOKIE[$profileCookieKey];
if ($accountProfilePersistenceManager->isAccountProfileExisting($this->get_type()->getId(), $cookieProfileName, $_SESSION['config']->getName())) {
$profileName = $cookieProfileName;
$this->lastLoadedProfile = $cookieProfileName;
}
}
$profile = $accountProfilePersistenceManager->loadAccountProfile($this->type->getId(), $profileName, $_SESSION['config']->getName());
// pass profile to each module
$modules = array_keys($this->module);
foreach ($modules as $module) {
$this->module[$module]->load_profile($profile);
}
if (isset($profile['ldap_rdn'][0]) && in_array($profile['ldap_rdn'][0], getRDNAttributes($this->type->getId()))) {
$this->rdn = $profile['ldap_rdn'][0];
}
if (isset($profile['ldap_suffix'][0]) && ($profile['ldap_suffix'][0] != '-')) {
$this->dnSuffix = $profile['ldap_suffix'][0];
}
}
catch (LAMException $e) {
logNewMessage(LOG_ERR, $e->getTitle());
}
// get titles
$typeObject = $this->type->getBaseType();
$this->titleBarIcon = $typeObject->buildAccountStatusIcon($this);
$this->titleBarTitle = $typeObject->getTitleBarTitle($this);
$this->titleBarSubtitle = $typeObject->getTitleBarSubtitle($this);
return 0;
}
/**
* Copies the data from the given account to this one.
*
* @param string $copyDn DN to copy from
*/
public function copyFromExistingAccount(string $copyDn): void {
$copyData = ldapGetDN($copyDn, ['*', '+']);
$modules = $_SESSION['config']->get_AccountModules($this->type->getId());
$copyData = $this->fixLDAPAttributes($copyData, $modules);
foreach ($this->module as $accountModule) {
$accountModule->loadAttributesFromAccountCopy($copyData);
}
}
/**
* Creates the account modules and initializes them.
*/
public function initModules() {
$modules = $_SESSION['config']->get_AccountModules($this->type->getId());
foreach ($modules as $module) {
$this->module[$module] = new $module($this->type->getScope());
$this->module[$module]->init($this->base);
}
}
/**
* This function will save an account to the LDAP database.
*
* @return array list of status messages
*/
private function save_account() {
if (!checkIfWriteAccessIsAllowed($this->type->getId())) {
die();
}
$this->finalDN = $this->dn_orig;
$errors = [];
$module = array_keys($this->module);
$attributes = [];
// load attributes
foreach ($module as $singlemodule) {
// load changes
$temp = $this->module[$singlemodule]->save_attributes();
if (!is_array($temp)) {
$temp = [];
}
// merge changes
$DNs = array_keys($temp);
$attributes = array_merge_recursive($temp, $attributes);
for ($i = 0; $i < count($DNs); $i++) {
$ops = array_keys($temp[$DNs[$i]]);
for ($j = 0; $j < count($ops); $j++) {
$attrs = array_keys($temp[$DNs[$i]][$ops[$j]]);
for ($k = 0; $k < count($attrs); $k++) {
$attributes[$DNs[$i]][$ops[$j]][$attrs[$k]] = array_values(array_unique($attributes[$DNs[$i]][$ops[$j]][$attrs[$k]]));
}
}
}
}
// build DN for new accounts and change it for existing ones if needed
if (isset($attributes[$this->dn_orig]['modify'][$this->rdn][0])) {
$this->finalDN = $this->rdn . '=' . ldap_escape($attributes[$this->dn_orig]['modify'][$this->rdn][0], '', LDAP_ESCAPE_DN) . ',' . $this->dnSuffix;
if ($this->dn_orig != $this->finalDN) {
$attributes[$this->finalDN] = $attributes[$this->dn_orig];
unset($attributes[$this->dn_orig]);
}
}
elseif (isset($attributes[$this->dn_orig]['add'][$this->rdn][0])) {
$this->finalDN = $this->rdn . '=' . ldap_escape($attributes[$this->dn_orig]['add'][$this->rdn][0], '', LDAP_ESCAPE_DN) . ',' . $this->dnSuffix;
if ($this->dn_orig != $this->finalDN) {
$attributes[$this->finalDN] = $attributes[$this->dn_orig];
unset($attributes[$this->dn_orig]);
}
}
elseif (isset($attributes[$this->dn_orig]['remove'][$this->rdn][0]) && isset($attributes[$this->dn_orig]['notchanged'][$this->rdn][0])) {
$this->finalDN = $this->rdn . '=' . ldap_escape($attributes[$this->dn_orig]['notchanged'][$this->rdn][0], '', LDAP_ESCAPE_DN) . ',' . $this->dnSuffix;
if ($this->dn_orig != $this->finalDN) {
$attributes[$this->finalDN] = $attributes[$this->dn_orig];
unset($attributes[$this->dn_orig]);
}
}
elseif (!$this->isNewAccount && (($this->dnSuffix != extractDNSuffix($this->dn_orig)) || ($this->rdn != extractRDNAttribute($this->dn_orig)))) {
$this->finalDN = $this->rdn . '=' . ldap_escape($attributes[$this->dn_orig]['notchanged'][$this->rdn][0], '', LDAP_ESCAPE_DN) . ',' . $this->dnSuffix;
$attributes[$this->finalDN] = $attributes[$this->dn_orig];
unset($attributes[$this->dn_orig]);
}
// remove pwdAccountLockedTime attribute change if also userPassword is changed (PPolicy will remove this attribute itself)
if (isset($attributes[$this->finalDN]['modify']['userpassword']) || isset($attributes[$this->finalDN]['remove']['userpassword'])) {
if (isset($attributes[$this->finalDN]['modify']['pwdAccountLockedTime'])) {
unset($attributes[$this->finalDN]['modify']['pwdAccountLockedTime']);
}
if (isset($attributes[$this->finalDN]['remove']['pwdAccountLockedTime'])) {
unset($attributes[$this->finalDN]['remove']['pwdAccountLockedTime']);
}
}
// pre modify actions
$prePostModifyAttributes = $this->extraInfoAttributes;
if (isset($attributes[$this->finalDN]) && is_array($attributes[$this->finalDN])) {
if (isset($attributes[$this->finalDN]['notchanged'])) {
$prePostModifyAttributes = array_merge($prePostModifyAttributes, $attributes[$this->finalDN]['notchanged']);
}
if (isset($attributes[$this->finalDN]['modify'])) {
foreach ($attributes[$this->finalDN]['modify'] as $key => $value) {
$prePostModifyAttributes[$key] = $value;
$prePostModifyAttributes['MOD.' . $key] = $value;
}
}
if (isset($attributes[$this->finalDN]['add'])) {
foreach ($attributes[$this->finalDN]['add'] as $key => $value) {
$prePostModifyAttributes['NEW.' . $key] = $value;
if (isset($prePostModifyAttributes[$key])) {
$prePostModifyAttributes[$key] = array_merge($prePostModifyAttributes[$key], $value);
}
else {
$prePostModifyAttributes[$key] = $value;
}
}
}
if (isset($attributes[$this->finalDN]['remove'])) {
foreach ($attributes[$this->finalDN]['remove'] as $key => $value) {
$prePostModifyAttributes['DEL.' . $key] = $value;
}
}
if (isset($attributes[$this->finalDN]['info'])) {
foreach ($attributes[$this->finalDN]['info'] as $key => $value) {
$prePostModifyAttributes['INFO.' . $key] = $value;
}
}
}
if (!$this->isNewAccount) {
foreach ($this->attributes_orig as $key => $value) {
$prePostModifyAttributes['ORIG.' . $key] = $value;
}
$prePostModifyAttributes['ORIG.dn'][0] = $this->dn_orig;
}
$prePostModifyAttributes['dn'][0] = $this->finalDN;
if (!$this->isNewAccount && ($this->finalDN != $this->dn_orig)) {
$prePostModifyAttributes['MOD.dn'][0] = $this->finalDN;
}
logNewMessage(LOG_DEBUG, 'Edit page pre/postModify attributes: ' . print_r($prePostModifyAttributes, true));
$preModifyOk = true;
foreach ($module as $singlemodule) {
$preModifyMessages = $this->module[$singlemodule]->preModifyActions($this->isNewAccount, $prePostModifyAttributes);
$errors = array_merge($errors, $preModifyMessages);
for ($i = 0; $i < sizeof($preModifyMessages); $i++) {
if ($preModifyMessages[$i][0] == 'ERROR') {
$preModifyOk = false;
break;
}
}
}
if (!$preModifyOk) {
$errors[] = ['ERROR', _('The operation was stopped because of the above errors.')];
return $errors;
}
// Set to true if a real error has happened
$stopprocessing = false;
$finalDnLower = strtolower($this->finalDN);
$dnOrigLower = ($this->dn_orig !== null) ? strtolower($this->dn_orig) : '';
if (($finalDnLower !== $dnOrigLower) && (unescapeLdapSpecialCharacters($finalDnLower) !== unescapeLdapSpecialCharacters($dnOrigLower))) {
// move existing DN
if ($this->dn_orig != '') {
$removeOldRDN = $_SESSION['ldap']->isActiveDirectory();
if (isset($attributes[$this->finalDN]['modify'])) {
$attributes[$this->finalDN]['modify'] = array_change_key_case($attributes[$this->finalDN]['modify'], CASE_LOWER);
}
$rdnAttr = strtolower(extractRDNAttribute($this->finalDN));
if (isset($attributes[$this->finalDN]['modify'][$rdnAttr])
&& (sizeof($attributes[$this->finalDN]['modify'][$rdnAttr]) == 1)
&& (($attributes[$this->finalDN]['modify'][$rdnAttr][0] == extractRDNValue($this->finalDN))
|| (unescapeLdapSpecialCharacters($attributes[$this->finalDN]['modify'][$rdnAttr][0]) == unescapeLdapSpecialCharacters(extractRDNValue($this->finalDN))))) {
// remove old RDN if attribute is single valued
$removeOldRDN = true;
unset($attributes[$this->finalDN]['modify'][extractRDNAttribute($this->finalDN)]);
}
logNewMessage(LOG_DEBUG, 'Rename ' . $this->dn_orig . ' to ' . $this->finalDN);
$success = ldap_rename($_SESSION['ldap']->server(), $this->dn_orig, $this->getRDN($this->finalDN), $this->getParentDN($this->finalDN), $removeOldRDN);
if ($success) {
logNewMessage(LOG_NOTICE, 'Renamed DN ' . $this->dn_orig . " to " . $this->finalDN);
// do not add attribute value as new one if added via rename operation
if (!empty($attributes[$this->finalDN]['add'][$rdnAttr]) && in_array(extractRDNValue($this->finalDN), $attributes[$this->finalDN]['add'][$rdnAttr])) {
$attributes[$this->finalDN]['add'][$rdnAttr] = array_delete([extractRDNValue($this->finalDN)], $attributes[$this->finalDN]['add'][$rdnAttr]);
if (empty($attributes[$this->finalDN]['add'][$rdnAttr])) {
unset($attributes[$this->finalDN]['add'][$rdnAttr]);
}
}
}
else {
logNewMessage(LOG_ERR, 'Unable to rename DN: ' . $this->dn_orig . ' (' . ldap_error($_SESSION['ldap']->server()) . '). '
. getExtendedLDAPErrorMessage($_SESSION['ldap']->server()));
$errors[] = ['ERROR', sprintf(_('Was unable to rename DN: %s.'), $this->dn_orig), getDefaultLDAPErrorString($_SESSION['ldap']->server())];
$stopprocessing = true;
}
}
// create complete new dn
else {
$attr = [];
if (isset($attributes[$this->finalDN]['add']) && is_array($attributes[$this->finalDN]['add'])) {
$attr = array_merge_recursive($attr, $attributes[$this->finalDN]['add']);
}
if (isset($attributes[$this->finalDN]['notchanged']) && is_array($attributes[$this->finalDN]['notchanged'])) {
$attr = array_merge_recursive($attr, $attributes[$this->finalDN]['notchanged']);
}
if (isset($attributes[$this->finalDN]['modify']) && is_array($attributes[$this->finalDN]['modify'])) {
$attr = array_merge_recursive($attr, $attributes[$this->finalDN]['modify']);
}
$success = @ldap_add($_SESSION['ldap']->server(), $this->finalDN, $attr);
if (!$success) {
logNewMessage(LOG_ERR, 'Unable to create DN: ' . $this->finalDN . ' (' . ldap_error($_SESSION['ldap']->server()) . '). '
. getExtendedLDAPErrorMessage($_SESSION['ldap']->server()));
$errors[] = ['ERROR', sprintf(_('Was unable to create DN: %s.'), $this->finalDN), getDefaultLDAPErrorString($_SESSION['ldap']->server())];
$stopprocessing = true;
}
else {
logNewMessage(LOG_NOTICE, 'Created DN: ' . $this->finalDN);
}
unset($attributes[$this->finalDN]);
}
}
$DNs = array_keys($attributes);
for ($i = 0; $i < count($DNs); $i++) {
if (!$stopprocessing) {
logNewMessage(LOG_DEBUG, 'Attribute changes for ' . $DNs[$i] . ":\n" . print_r($attributes[$DNs[$i]], true));
// modify attributes
if (!empty($attributes[$DNs[$i]]['modify']) && !$stopprocessing) {
$success = @ldap_mod_replace($_SESSION['ldap']->server(), $DNs[$i], $attributes[$DNs[$i]]['modify']);
if (!$success) {
logNewMessage(LOG_ERR, 'Unable to modify attributes of DN: ' . $DNs[$i] . ' (' . ldap_error($_SESSION['ldap']->server()) . '). '
. getExtendedLDAPErrorMessage($_SESSION['ldap']->server()));
logNewMessage(LOG_DEBUG, print_r($attributes[$DNs[$i]]['modify'], true));
$errors[] = ['ERROR', sprintf(_('Was unable to modify attributes of DN: %s.'), $DNs[$i]), getDefaultLDAPErrorString($_SESSION['ldap']->server())];
$stopprocessing = true;
}
else {
logNewMessage(LOG_NOTICE, 'Modified DN: ' . $DNs[$i]);
// check if the password of the currently logged in user was changed
$lamAdmin = $_SESSION['ldap']->getUserName();
if ((strtolower($DNs[$i]) == strtolower($lamAdmin)) && isset($attributes[$DNs[$i]]['info']['userPasswordClearText'][0])) {
$_SESSION['ldap']->tryAndApplyNewPassword($attributes[$DNs[$i]]['info']['userPasswordClearText'][0]);
}
}
}
// add attributes
if (!empty($attributes[$DNs[$i]]['add']) && !$stopprocessing) {
$success = @ldap_mod_add($_SESSION['ldap']->server(), $DNs[$i], $attributes[$DNs[$i]]['add']);
if (!$success) {
logNewMessage(LOG_ERR, 'Unable to add attributes to DN: ' . $DNs[$i] . ' (' . ldap_error($_SESSION['ldap']->server()) . '). '
. getExtendedLDAPErrorMessage($_SESSION['ldap']->server()));
$errors[] = ['ERROR', sprintf(_('Was unable to add attributes to DN: %s.'), $DNs[$i]), getDefaultLDAPErrorString($_SESSION['ldap']->server())];
$stopprocessing = true;
}
else {
logNewMessage(LOG_NOTICE, 'Modified DN: ' . $DNs[$i]);
}
}
// remove attributes
if (!empty($attributes[$DNs[$i]]['remove']) && !$stopprocessing) {
$success = @ldap_mod_del($_SESSION['ldap']->server(), $DNs[$i], $attributes[$DNs[$i]]['remove']);
if (!$success) {
logNewMessage(LOG_ERR, 'Unable to delete attributes from DN: ' . $DNs[$i] . ' (' . ldap_error($_SESSION['ldap']->server()) . '). '
. getExtendedLDAPErrorMessage($_SESSION['ldap']->server()));
$errors[] = ['ERROR', sprintf(_('Was unable to remove attributes from DN: %s.'), $DNs[$i]), getDefaultLDAPErrorString($_SESSION['ldap']->server())];
$stopprocessing = true;
}
else {
logNewMessage(LOG_NOTICE, 'Modified DN: ' . $DNs[$i]);
}
}
}
}
// send password mail
if (!$stopprocessing && isLAMProVersion() && ($this->sendPasswordViaMail != null)) {
$mailMessages = sendPasswordMail($this->sendPasswordViaMail, $prePostModifyAttributes, $this->sendPasswordViaMailAlternateAddress);
if (sizeof($mailMessages) > 0) {
$errors = array_merge($errors, $mailMessages);
}
$this->sendPasswordViaMail = null;
$this->sendPasswordViaMailAlternateAddress = null;
}
if (!$stopprocessing) {
// post modify actions
foreach ($module as $singlemodule) {
$postMessages = $this->module[$singlemodule]->postModifyActions($this->isNewAccount, $prePostModifyAttributes);
foreach ($postMessages as $postMessage) {
if ($postMessage[0] == 'ERROR') {
$this->postSaveErrorsOccurred = true;
}
}
$errors = array_merge($errors, $postMessages);
}
}
return $errors;
}
/**
* Defines if the LDAP entry has only virtual child entries. This is the case for e.g. LDAP views.
*
* @return boolean has only virtual children
*/
public function hasOnlyVirtualChildren() {
foreach ($this->module as $module) {
if ($module->hasOnlyVirtualChildren()) {
return true;
}
}
return false;
}
/**
* Returns a list of possible PDF entries for this account.
*
* @param array $pdfKeys list of PDF keys that are included in document
* @param string $typeId type id (user, group, host)
* @return PDFEntry[] list of key => PDFEntry
*/
function get_pdfEntries($pdfKeys, $typeId) {
$return = [];
while (($current = current($this->module)) != null) {
$return = array_merge($return, $current->get_pdfEntries($pdfKeys, $typeId));
next($this->module);
}
$dn = $this->dn_orig;
if (isset($this->finalDN)) {
$dn = $this->finalDN;
}
return array_merge($return, ['main_dn' => [new \LAM\PDF\PDFLabelValue(_('DN'), $dn)]]);
}
/**
* Sorts the module buttons for the account page.
*/
function sortModules() {
$order = [];
$modules = array_keys($this->module);
$depModules = [];
if (isset($this->order)) {
$currentPage = $this->order[$this->current_page];
}
for ($i = 0; $i < sizeof($modules); $i++) {
// insert waiting modules
for ($w = 0; $w < sizeof($depModules); $w++) {
$dependencies = $this->module[$depModules[$w]]->get_dependencies();
$dependencies = $dependencies['depends'];
$everything_found = true;
for ($d = 0; $d < sizeof($dependencies); $d++) {
if (!in_array($dependencies[$d], $order)) {
$everything_found = false;
break;
}
}
// insert after depending module
if ($everything_found) {
$order[] = $depModules[$w];
unset($depModules[$w]);
$depModules = array_values($depModules);
$w--;
}
}
// check next module
$dependencies = $this->module[$modules[$i]]->get_dependencies();
if (is_array($dependencies['depends'])) {
$everything_found = true;
$dependencies = $dependencies['depends'];
for ($d = 0; $d < sizeof($dependencies); $d++) {
if (is_array($dependencies[$d])) { // or-combined dependencies
$noneFound = true;
foreach ($dependencies[$d] as $or) {
if (in_array($or, $order)) {
$noneFound = false;
break;
}
}
if ($noneFound) {
$everything_found = false;
break;
}
}
elseif (!in_array($dependencies[$d], $order)) { // single dependency
$everything_found = false;
break;
}
}
// remove module if dependencies are not satisfied
if (!$everything_found) {
$depModules[] = $modules[$i];
unset($modules[$i]);
$modules = array_values($modules);
$i--;
}
else {
$order[] = $modules[$i];
}
}
else {
$order[] = $modules[$i];
}
}
// add modules which could not be sorted (e.g. because of cyclic dependencies)
if (sizeof($depModules) > 0) {
for ($i = 0; $i < sizeof($depModules); $i++) {
$order[] = $depModules[$i];
}
}
// move disabled modules to end
$activeModules = [];
$passiveModules = [];
for ($i = 0; $i < sizeof($order); $i++) {
if ($this->module[$order[$i]]->getButtonStatus() == 'enabled') {
$activeModules[] = $order[$i];
}
else {
$passiveModules[] = $order[$i];
}
}
$this->order = array_merge($activeModules, $passiveModules);
// check if ordering changed and current page number must be updated
if (isset($currentPage) && ($currentPage != $this->order[$this->current_page])) {
$this->current_page = array_search($currentPage, $this->order);
}
}
/**
* Returns the RDN part of a given DN.
*
* @param String $dn DN
* @return String RDN
*/
function getRDN($dn) {
if (($dn == "") || ($dn == null)) {
return "";
}
return substr($dn, 0, strpos($dn, ","));
}
/**
* Returns the parent DN of a given DN.
*
* @param String $dn DN
* @return String DN
*/
function getParentDN($dn) {
if (($dn == "") || ($dn == null)) {
return "";
}
return substr($dn, strpos($dn, ",") + 1);
}
/**
* Returns a list of OUs that exist for this account type.
*
* @return array OU list
*/
public function getOUs() {
if ($this->cachedOUs != null) {
return $this->cachedOUs;
}
$this->cachedOUs = $this->type->getSuffixList();
return $this->cachedOUs;
}
/**
* Returns the account status.
*
* @return AccountStatus status
*/
public function getAccountStatus(): AccountStatus {
$details = [];
foreach ($this->module as $module) {
if (($module instanceof AccountStatusProvider)) {
$details = array_merge($details, $module->getAccountStatusDetails());
}
}
return new AccountStatus($details);
}
/**
* Replaces POST data with wildcard values from modules.
*
* @param array $keyPrefixes POST keys as full name or prefix (e.g. "key" matches "key1")
*/
public function replaceWildcardsInPOST($keyPrefixes) {
$this->replaceWildcardsInArray($keyPrefixes, $_POST);
}
/**
* Replaces data with wildcard values from modules.
*
* @param array $keyPrefixes POST keys as full name or prefix (e.g. "key" matches "key1")
* @param array $data list of values that need replacement
*/
public function replaceWildcardsInArray($keyPrefixes, &$data) {
$replacements = [];
foreach ($this->module as $module) {
$replacements = array_merge($replacements, $module->getWildCardReplacements());
}
while (true) {
if (!$this->replaceWildcards($replacements, $keyPrefixes, $data)) {
break;
}
}
}
/**
* Replaces wildcards in an array.
*
* @param array $replacements replacements (key => value)
* @param array $keyPrefixes prefixes of $data array keys that should be replaced
* @param array $data data array
* @return boolean replacement done
*/
private function replaceWildcards($replacements, $keyPrefixes, &$data) {
$found = false;
foreach ($data as $key => $value) {
foreach ($keyPrefixes as $keyPrefix) {
if (str_starts_with($key, $keyPrefix)) {
if (!is_array($value)) {
$found = $this->doReplace($replacements, $data[$key]) || $found;
}
else {
foreach ($value as $valueIndex => $valueEntry) {
$found = $this->doReplace($replacements, $data[$key][$valueIndex]) || $found;
}
}
}
}
}
return $found;
}
/**
* Replaces wildcards in a value.
*
* @param array $replacements replacements (key => value)
* @param String $value value to perform replacements
* @return boolean replacement done
*/
private function doReplace($replacements, &$value) {
$found = false;
foreach ($replacements as $replKey => $replValue) {
$searchString = '$' . $replKey;
if (str_contains($value, $searchString)) {
$found = true;
$value = str_replace($searchString, $replValue, $value);
}
$searchString = '$_' . $replKey;
if (str_contains($value, $searchString)) {
$found = true;
$value = str_replace($searchString, strtolower($replValue), $value);
}
}
return $found;
}
/**
* Encrypts sensitive data before storing in session.
*
* @return array list of attributes which are serialized
*/
function __sleep() {
// encrypt data
$this->attributes = lamEncrypt(json_encode($this->attributes, JSON_INVALID_UTF8_IGNORE));
$this->attributes_orig = lamEncrypt(json_encode($this->attributes_orig, JSON_INVALID_UTF8_IGNORE));
$this->module = lamEncrypt(serialize($this->module));
// save all attributes
return array_keys(get_object_vars($this));
}
/**
* Decrypts sensitive data after accountContainer was loaded from session.
*/
function __wakeup() {
// decrypt data
$this->attributes = json_decode(lamDecrypt($this->attributes), true, 512, JSON_INVALID_UTF8_IGNORE);
$this->attributes_orig = json_decode(lamDecrypt($this->attributes_orig), true, 512, JSON_INVALID_UTF8_IGNORE);
$this->module = unserialize(lamDecrypt($this->module));
}
}
/**
* This interface needs to be implemented by all account modules which manage passwords.
* It allows LAM to provide central password changes.
*
* @package modules
*/
interface passwordService {
/**
* This method specifies if a module manages password attributes. The module alias will
* then appear as option in the GUI.
* <br>If the module only wants to get notified about password changes then return false.
*
* @return boolean true if this module manages password attributes
*/
public function managesPasswordAttributes();
/**
* Specifies if this module supports to force that a user must change his password on next login.
*
* @return boolean force password change supported
*/
public function supportsForcePasswordChange();
/**
* This function is called whenever the password should be changed. Account modules
* must change their password attributes only if the modules list contains their module name.
*
* @param String $password new password
* @param array $modules list of modules for which the password should be changed
* @param boolean $forcePasswordChange force the user to change his password at next login
* @return array list of error messages if any as parameter array for StatusMessage
* e.g. return array(array('ERROR', 'Password change failed.'))
*/
public function passwordChangeRequested($password, $modules, $forcePasswordChange);
/**
* Specifies if the module support password quick change for the current account.
*
* @return bool password quick change page supported
*/
public function supportsPasswordQuickChangePage(): bool;
/**
* Adds account details such as first/last name for the current account.
*
* @param htmlResponsiveRow $row row where to add content
*/
public function addPasswordQuickChangeAccountDetails(htmlResponsiveRow $row): void;
/**
* Returns a list of password quick change options.
*
* @return PasswordQuickChangeOption[] options
*/
public function getPasswordQuickChangeOptions(): array;
/**
* Returns a list of LDAP attribute changes to perform.
*
* @param string $password new password
* @return array LDAP attribute values (attr_name => array(attr_value))
* @throws LAMException error getting changes
*/
public function getPasswordQuickChangeChanges(string $password): array;
/**
* Returns the user name if known to be validated for password strength.
*
* @return string|null user name
*/
public function getPasswordQuickChangePasswordStrengthUserName(): ?string;
/**
* Returns additional attribute values to check when password strength is validated.
*
* @return array attribute values
*/
public function getPasswordQuickChangePasswordStrengthAttributes(): array;
/**
* Returns if the password is not same as an old password from history.
*
* @param string $password new password
* @return bool is in history
*/
public function getPasswordQuickChangeIsPasswordInHistory(string $password): bool;
}
/**
* Option for the password quick change page.
*/
class PasswordQuickChangeOption {
public $label;
public $id;
public $preSelected;
/**
* PasswordQuickChangeOption constructor.
* @param string $id unique id for this option
* @param string $label descriptive label
* @param bool $preSelected is preselected
*/
public function __construct(string $id, string $label, bool $preSelected = true) {
$this->label = $label;
$this->id = $id;
$this->preSelected = $preSelected;
}
}
/**
* Provides module information about the status of an LDAP account.
*/
interface AccountStatusProvider {
/**
* Returns the list of account status detail lines.
*
* @param ConfiguredType $type account type
* @param array|null $attributes LDAP attributes (use account container attributes if not provided)
* @return AccountStatusDetails[] status details
*/
public function getAccountStatusDetails(ConfiguredType $type, ?array &$attributes): array;
/**
* Returns the list of LDAP attributes that must be read to get the account status.
*
* @param ConfiguredType $type type
* @return array attribute names
*/
public function getAccountStatusRequiredAttributes(ConfiguredType $type): array;
/**
* Returns a list of options how the account could be locked.
*
* @param ConfiguredType $type type
* @param array|null $attributes LDAP attributes
* @return AccountStatusDetails[] lock options
*/
public function getAccountStatusPossibleLockOptions(ConfiguredType $type, ?array &$attributes): array;
/**
* Locks the account with the given lock IDs.
*
* @param ConfiguredType $type type
* @param array|null $attributes LDAP attributes
* @param array $lockIds IDs from AccountStatusDetails
* @throws LAMException error during locking
*/
public function accountStatusPerformLock(ConfiguredType $type, ?array &$attributes, array $lockIds): void;
/**
* Unlocks the account with the given lock IDs.
*
* @param ConfiguredType $type type
* @param array|null $attributes LDAP attributes
* @param array $lockIds IDs from AccountStatusDetails
*/
public function accountStatusPerformUnlock(ConfiguredType $type, ?array &$attributes, array $lockIds): void;
}
/**
* Provides the complete information about the status of an LDAP account.
*/
class AccountStatus {
/** @var AccountStatusDetails[] list of details */
private $details;
/**
* Constructor.
*
* @param AccountStatusDetails[] $details details
*/
public function __construct(array $details) {
$this->details = $details;
}
/**
* Creates the account status from the given type and LDAP attributes.
*
* @param ConfiguredType $type type
* @param array $attributes LDAP attributes
* @return AccountStatus status
*/
public static function fromAttributes(ConfiguredType $type, array $attributes): AccountStatus {
$modules = $_SESSION['config']->get_AccountModules($type->getId());
$details = [];
foreach ($modules as $module) {
$interfaces = class_implements($module);
if (!in_array('AccountStatusProvider', $interfaces)) {
continue;
}
$moduleObject = moduleCache::getModule($module, $type->getScope());
$details = array_merge($details, $moduleObject->getAccountStatusDetails($type, $attributes));
}
return new AccountStatus($details);
}
/**
* Creates the lockable account status from the given type and LDAP attributes.
*
* @param ConfiguredType $type type
* @param array $attributes LDAP attributes
* @return AccountStatus lockable status
*/
public static function lockableFromAttributes(ConfiguredType $type, array $attributes): AccountStatus {
$modules = $_SESSION['config']->get_AccountModules($type->getId());
$details = [];
foreach ($modules as $module) {
$interfaces = class_implements($module);
if (!in_array('AccountStatusProvider', $interfaces)) {
continue;
}
$moduleObject = moduleCache::getModule($module, $type->getScope());
$details = array_merge($details, $moduleObject->getAccountStatusPossibleLockOptions($type, $attributes));
}
return new AccountStatus($details);
}
/**
* Returns the account details.
*
* @return AccountStatusDetails[] details
*/
public function getDetails(): array {
return $this->details;
}
/**
* Returns if the account/password is fully expired (e.g. login no longer possible without password change).
*
* @return bool is expired
*/
public function isExpired(): bool {
foreach ($this->details as $detail) {
if ($detail->isExpired()) {
return true;
}
}
return false;
}
/**
* Returns if the account/password is partially expired (e.g. a single application is expired).
*
* @return bool is expired
*/
public function isPartiallyExpired(): bool {
foreach ($this->details as $detail) {
if ($detail->isPartiallyExpired()) {
return true;
}
}
return false;
}
/**
* Returns if the account is fully locked (login no longer possible).
*
* @return bool is locked
*/
public function isLocked(): bool {
foreach ($this->details as $detail) {
if ($detail->isLocked()) {
return true;
}
}
return false;
}
/**
* Returns if the account is partially locked (e.g. a single application is locked).
*
* @return bool is locked
*/
public function isPartiallyLocked(): bool {
foreach ($this->details as $detail) {
if ($detail->isPartiallyLocked()) {
return true;
}
}
return false;
}
}
class AccountStatusDetails {
private $details;
private $id;
private $expired = false;
private $partiallyExpired = false;
private $locked = false;
private $partiallyLocked = false;
private $icon;
/**
* Constructor.
*
* @param string $details details message
* @param string $id ID for reference
* @param string $icon icon name
*/
public function __construct(string $details, string $id, string $icon) {
$this->details = $details;
$this->id = $id;
$this->icon = $icon;
}
/**
* Creates a new expired status entry.
*
* @param string $details details message
* @param string $id ID for reference
* @param string $icon icon name
* @return AccountStatusDetails status entry
*/
public static function newExpired(string $details, string $id, ?string $icon = null): AccountStatusDetails {
if ($icon === null) {
$icon = 'expired.svg';
}
$details = new AccountStatusDetails($details, $id, $icon);
$details->expired = true;
return $details;
}
/**
* Creates a new partially expired status entry.
*
* @param string $details details message
* @param string $id ID for reference
* @param string $icon icon name
* @return AccountStatusDetails status entry
*/
public static function newPartiallyExpired(string $details, string $id, ?string $icon = null): AccountStatusDetails {
if ($icon === null) {
$icon = 'expired.svg';
}
$details = new AccountStatusDetails($details, $id, $icon);
$details->partiallyExpired = true;
return $details;
}
/**
* Creates a new locked status entry.
*
* @param string $details details message
* @param string $id ID for reference
* @param string $icon icon name
* @return AccountStatusDetails status entry
*/
public static function newLocked(string $details, string $id, ?string $icon = null): AccountStatusDetails {
if ($icon === null) {
$icon = 'locked.svg';
}
$details = new AccountStatusDetails($details, $id, $icon);
$details->locked = true;
return $details;
}
/**
* Creates a new partially locked status entry.
*
* @param string $details details message
* @param string $id ID for reference
* @param string $icon icon name
* @return AccountStatusDetails status entry
*/
public static function newPartiallyLocked(string $details, string $id, ?string $icon = null): AccountStatusDetails {
if ($icon === null) {
$icon = 'partiallyLocked.svg';
}
$details = new AccountStatusDetails($details, $id, $icon);
$details->partiallyLocked = true;
return $details;
}
/**
* Returns if the account/password is fully expired (e.g. login no longer possible without password change).
*
* @return bool is expired
*/
public function isExpired(): bool {
return $this->expired;
}
/**
* Returns if the account/password is partially expired (e.g. a single application is expired).
*
* @return bool is expired
*/
public function isPartiallyExpired(): bool {
return $this->partiallyExpired;
}
/**
* Returns if the account is fully locked (login no longer possible).
*
* @return bool is locked
*/
public function isLocked(): bool {
return $this->locked;
}
/**
* Returns if the account is partially locked (e.g. a single application is locked).
*
* @return bool is locked
*/
public function isPartiallyLocked(): bool {
return $this->partiallyLocked;
}
/**
* Returns the icon name.
*
* @return string icon name
*/
public function getIcon(): string {
return $this->icon;
}
/**
* Returns the details.
*
* @return string details
*/
public function getDetails(): string {
return $this->details;
}
/**
* Returns the id.
*
* @return string id
*/
public function getId(): string {
return $this->id;
}
}
/**
* Validation of scope and module names.
*/
class ScopeAndModuleValidation {
private static $cachedModuleNames;
private static $cachedScopeNames;
private const REGEX_SCOPE = "/^[a-z0-9_-]+$/i";
private const REGEX_MODULE = "/^[a-z0-9_-]+$/i";
/**
* Checks if the provided scope name is valid.
*
* @param string $scope scope name
* @return bool is existing
*/
public static function isValidScopeName(string $scope): bool {
if (!preg_match(self::REGEX_SCOPE, $scope)) {
return false;
}
if (self::$cachedScopeNames === null) {
$dirname = __DIR__ . "/types";
$dir = dir($dirname);
$scopeNames = [];
while ($entry = $dir->read()) {
if ((substr($entry, strlen($entry) - 4, 4) === '.inc')
&& (is_file($dirname . '/' . $entry) || is_link($dirname . '/' . $entry))) {
$entry = substr($entry, 0, -4);
if (preg_match(self::REGEX_SCOPE, $entry)) {
$scopeNames[] = $entry;
}
}
}
self::$cachedScopeNames = $scopeNames;
}
return in_array($scope, self::$cachedScopeNames);
}
/**
* Checks if the provided module name is valid.
*
* @param string $moduleName module name
* @return bool is existing
*/
public static function isValidModuleName(string $moduleName): bool {
if (!preg_match(self::REGEX_MODULE, $moduleName)) {
return false;
}
if (self::$cachedModuleNames === null) {
$dirname = __DIR__ . "/modules";
$dir = dir($dirname);
$moduleNames = [];
while ($entry = $dir->read()) {
if ((substr($entry, strlen($entry) - 4, 4) === '.inc')
&& (is_file($dirname . '/' . $entry) || is_link($dirname . '/' . $entry))) {
$entry = substr($entry, 0, -4);
if (preg_match(self::REGEX_MODULE, $entry)) {
$moduleNames[] = $entry;
}
}
}
self::$cachedModuleNames = $moduleNames;
}
return in_array($moduleName, self::$cachedModuleNames);
}
}
|