LDAPAccountManager/lam/templates/config/conftypes.php

453 lines
16 KiB
PHP
Raw Normal View History

2006-01-01 16:30:05 +00:00
<?php
2016-12-28 18:53:49 +00:00
namespace LAM\CONFIG;
use \htmlTable;
use \htmlSubTitle;
use \htmlImage;
use \htmlOutputText;
use \htmlSpacer;
use \htmlButton;
use \htmlGroup;
2018-04-11 17:52:32 +00:00
use \htmlDiv;
2017-11-12 10:45:36 +00:00
use \htmlResponsiveInputCheckbox;
2016-12-28 18:53:49 +00:00
use \LAMConfig;
2017-11-12 10:45:36 +00:00
use \htmlResponsiveRow;
use \htmlResponsiveInputField;
2006-01-01 16:30:05 +00:00
/*
2009-10-27 18:47:12 +00:00
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
2018-02-24 13:18:15 +00:00
Copyright (C) 2004 - 2018 Roland Gruber
2006-01-01 16:30:05 +00:00
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
*/
/**
* Here the user can select the account types.
*
* @package configuration
* @author Roland Gruber
*/
/** Access to config functions */
2017-11-11 15:39:53 +00:00
include_once '../../lib/config.inc';
2006-01-01 16:30:05 +00:00
/** Access to account types */
2017-11-11 15:39:53 +00:00
include_once '../../lib/types.inc';
/** common functions */
include_once '../../lib/configPages.inc';
2006-01-01 16:30:05 +00:00
// start session
2009-07-08 18:03:28 +00:00
if (strtolower(session_module_name()) == 'files') {
session_save_path("../../sess");
}
2018-03-10 17:48:11 +00:00
lam_start_session();
2006-01-01 16:30:05 +00:00
setlanguage();
// check if config is set
2006-01-01 16:30:05 +00:00
// if not: load login page
if (!isset($_SESSION['conf_config'])) {
2006-01-01 16:30:05 +00:00
/** go back to login if password is invalid */
require('conflogin.php');
exit;
}
2009-07-12 13:40:32 +00:00
// check if user canceled editing
if (isset($_POST['cancelSettings'])) {
metaRefresh("../login.php");
exit;
}
$conf = &$_SESSION['conf_config'];
2009-07-12 13:40:32 +00:00
$errorsToDisplay = checkInput();
2006-01-01 16:30:05 +00:00
2009-07-12 13:40:32 +00:00
// check if button was pressed and if we have to save the settings or go to another tab
if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|| isset($_POST['edittypes']) || isset($_POST['generalSettingsButton'])
2015-06-09 19:02:24 +00:00
|| isset($_POST['moduleSettings']) || isset($_POST['jobs'])) {
2009-07-12 13:40:32 +00:00
if (sizeof($errorsToDisplay) == 0) {
2009-08-02 12:54:25 +00:00
// check if all types have modules
$activeTypes = $conf->get_ActiveTypes();
for ($i = 0; $i < sizeof($activeTypes); $i++) {
$selectedModules = $conf->get_AccountModules($activeTypes[$i]);
if (sizeof($selectedModules) == 0) {
// go to module selection
metaRefresh("confmodules.php");
exit;
}
}
2009-07-12 13:40:32 +00:00
// go to final page
if (isset($_POST['saveSettings'])) {
metaRefresh("confsave.php");
exit;
2006-01-01 16:30:05 +00:00
}
2009-07-12 13:40:32 +00:00
// go to modules page
elseif (isset($_POST['editmodules'])) {
metaRefresh("confmodules.php");
exit;
2006-01-01 16:30:05 +00:00
}
// go to general page
2009-07-12 13:40:32 +00:00
elseif (isset($_POST['generalSettingsButton'])) {
metaRefresh("confmain.php");
exit;
}
// go to module settings page
elseif (isset($_POST['moduleSettings'])) {
metaRefresh("moduleSettings.php");
exit;
}
2015-06-09 19:02:24 +00:00
// go to jobs page
elseif (isset($_POST['jobs'])) {
metaRefresh("jobs.php");
exit;
}
2006-01-01 16:30:05 +00:00
}
}
2009-07-12 13:40:32 +00:00
$typeSettings = $conf->get_typeSettings();
2016-12-28 18:53:49 +00:00
$allScopes = \LAM\TYPES\getTypes();
$typeManager = new \LAM\TYPES\TypeManager($conf);
$activeTypes = $typeManager->getConfiguredTypes();
$activeScopes = array();
foreach ($activeTypes as $activeType) {
$activeScopes[] = $activeType->getScope();
}
$activeScopes = array_unique($activeScopes);
$availableScopes = array();
foreach ($allScopes as $scope) {
2017-04-26 16:22:05 +00:00
$scopeObj = new $scope(null);
2016-12-28 18:53:49 +00:00
if (!in_array($scope, $activeScopes) || $scopeObj->supportsMultipleConfigs()) {
$availableScopes[] = $scopeObj;
2010-04-04 12:52:20 +00:00
}
2006-01-01 16:30:05 +00:00
}
usort($availableScopes, '\LAM\CONFIG\compareTypesByAlias');
2006-01-01 16:30:05 +00:00
echo $_SESSION['header'];
2017-11-11 15:39:53 +00:00
printHeaderContents(_("LDAP Account Manager Configuration"), '../..');
echo "</head><body class=\"admin\">\n";
2010-01-01 17:39:38 +00:00
// include all JavaScript files
2017-11-11 15:39:53 +00:00
printJsIncludes('../..');
printConfigurationPageHeaderBar($conf);
2006-01-01 16:30:05 +00:00
// print error messages
2018-12-23 10:01:29 +00:00
for ($i = 0; $i < sizeof($errorsToDisplay); $i++) {
call_user_func_array('StatusMessage', $errorsToDisplay[$i]);
}
2006-01-01 16:30:05 +00:00
2018-12-23 10:01:29 +00:00
echo "<form action=\"conftypes.php\" method=\"post\">\n";
2010-08-28 09:34:00 +00:00
2017-11-11 15:39:53 +00:00
printConfigurationPageTabs(ConfigurationPageTab::TYPES);
2010-08-28 09:34:00 +00:00
2017-11-12 10:45:36 +00:00
$tabindex = 1;
$row = new htmlResponsiveRow();
2006-01-01 16:30:05 +00:00
// show available types
2016-12-28 18:53:49 +00:00
if (sizeof($availableScopes) > 0) {
2017-11-12 10:45:36 +00:00
$row->add(new htmlSubTitle(_("Available account types")), 12);
foreach ($availableScopes as $availableScope) {
2017-11-12 10:45:36 +00:00
$availableLabelGroup = new htmlGroup();
$availableLabelGroup->addElement(new htmlImage('../../graphics/' . $availableScope->getIcon()));
$availableLabelGroup->addElement(new htmlSpacer('0.5rem', null));
$availableLabelGroup->addElement(new htmlOutputText($availableScope->getAlias()));
$row->addField($availableLabelGroup);
$availableDescriptionRow = new htmlResponsiveRow();
$availableDescriptionRow->add(new htmlOutputText($availableScope->getDescription()), 10, 10, 10, 'responsiveField');
$button = new htmlButton('add_' . $availableScope->getScope(), 'add.png', true);
2010-11-14 20:35:34 +00:00
$button->setTitle(_("Add"));
2017-11-12 10:45:36 +00:00
$button->setCSSClasses(array('size16'));
$availableDescriptionRow->add($button, 2, 2, 2, 'responsiveField');
$row->addField($availableDescriptionRow);
$row->addVerticalSpacer('1rem');
2006-01-01 16:30:05 +00:00
}
2017-11-12 10:45:36 +00:00
$row->addVerticalSpacer('2rem');
2006-01-01 16:30:05 +00:00
}
2017-11-12 10:45:36 +00:00
parseHtml(null, $row, array(), false, $tabindex, 'user');
$container = new htmlResponsiveRow();
2006-01-01 16:30:05 +00:00
2014-07-12 13:29:15 +00:00
$_SESSION['conftypes_optionTypes'] = array();
2006-02-03 15:37:59 +00:00
// show active types
if (sizeof($activeTypes) > 0) {
2017-11-12 10:45:36 +00:00
$container->add(new htmlSubTitle(_("Active account types")), 12);
2018-04-11 17:52:32 +00:00
$index = 0;
2016-12-28 18:53:49 +00:00
foreach ($activeTypes as $activeType) {
2010-11-14 20:35:34 +00:00
// title
$titleGroup = new htmlGroup();
$titleGroup->addElement(new htmlImage('../../graphics/' . $activeType->getIcon()));
2017-11-12 10:45:36 +00:00
$titleGroup->addElement(new htmlSpacer('0.5rem', null));
2016-12-28 18:53:49 +00:00
$titleText = new htmlOutputText($activeType->getAlias());
2010-11-14 20:35:34 +00:00
$titleText->setIsBold(true);
$titleGroup->addElement($titleText);
2017-11-12 10:45:36 +00:00
$container->addField($titleGroup);
$descriptionRow = new htmlResponsiveRow();
2018-04-11 17:52:32 +00:00
$descriptionRow->add(new htmlOutputText($activeType->getBaseType()->getDescription()), 12, 12, 9, 'responsiveField');
$buttons = new htmlGroup();
// move buttons
if ($index > 0) {
$upButton = new htmlButton('moveup_'. $activeType->getId(), 'up.gif', true);
$upButton->setTitle(_("Up"));
$upButton->setCSSClasses(array('size16'));
$buttons->addElement($upButton);
}
if ($index < (sizeof($activeTypes) - 1)) {
$upButton = new htmlButton('movedown_'. $activeType->getId(), 'down.gif', true);
$upButton->setTitle(_("Down"));
$upButton->setCSSClasses(array('size16'));
$buttons->addElement($upButton);
}
// delete button
2016-12-28 18:53:49 +00:00
$delButton = new htmlButton('rem_'. $activeType->getId(), 'del.png', true);
$delButton->setTitle(_("Remove this account type"));
2017-11-12 10:45:36 +00:00
$delButton->setCSSClasses(array('size16'));
2018-04-11 17:52:32 +00:00
$buttons->addElement($delButton);
$buttonsDiv = new htmlDiv(null, $buttons, array('text-right'));
$descriptionRow->add($buttonsDiv, 12, 12, 3, 'responsiveLabel');
2017-11-12 10:45:36 +00:00
$container->addField($descriptionRow);
$container->addVerticalSpacer('0.5rem');
2006-02-03 15:37:59 +00:00
// LDAP suffix
2017-11-12 10:45:36 +00:00
$suffixInput = new htmlResponsiveInputField(_("LDAP suffix"), 'suffix_' . $activeType->getId(), $typeSettings['suffix_' . $activeType->getId()], '202');
$container->add($suffixInput, 12);
2006-02-03 15:37:59 +00:00
// list attributes
2016-12-28 18:53:49 +00:00
if (isset($typeSettings['attr_' . $activeType->getId()])) {
$attributes = $typeSettings['attr_' . $activeType->getId()];
2006-02-03 15:37:59 +00:00
}
else {
2017-04-25 18:14:59 +00:00
$attributes = $activeType->getBaseType()->getDefaultListAttributes();
2006-02-03 15:37:59 +00:00
}
2017-11-12 10:45:36 +00:00
$attrsInput = new htmlResponsiveInputField(_("List attributes"), 'attr_' . $activeType->getId(), $attributes, '206');
2016-11-14 18:17:10 +00:00
$attrsInput->setFieldMaxLength(1000);
2017-11-12 10:45:36 +00:00
$container->add($attrsInput, 12);
2016-12-19 16:05:47 +00:00
// custom label
$customLabel = '';
2016-12-28 18:53:49 +00:00
if (isset($typeSettings['customLabel_' . $activeType->getId()])) {
$customLabel = $typeSettings['customLabel_' . $activeType->getId()];
2016-12-19 16:05:47 +00:00
}
2017-11-12 10:45:36 +00:00
$customLabelInput = new htmlResponsiveInputField(_('Custom label'), 'customLabel_' . $activeType->getId(), $customLabel, '264');
$container->add($customLabelInput, 12);
2016-12-19 16:05:47 +00:00
// LDAP filter
$filter = '';
2016-12-28 18:53:49 +00:00
if (isset($typeSettings['filter_' . $activeType->getId()])) {
$filter = $typeSettings['filter_' . $activeType->getId()];
2016-12-19 16:05:47 +00:00
}
2017-11-12 10:45:36 +00:00
$filterInput = new htmlResponsiveInputField(_("Additional LDAP filter"), 'filter_' . $activeType->getId(), $filter, '260');
$container->add($filterInput, 12);
2014-07-12 13:29:15 +00:00
// type options
2016-12-28 18:53:49 +00:00
$typeConfigOptions = $activeType->getBaseType()->get_configOptions();
2014-07-12 13:29:15 +00:00
if (!empty($typeConfigOptions)) {
foreach ($typeConfigOptions as $typeConfigOption) {
2017-11-12 10:45:36 +00:00
$container->add($typeConfigOption, 12);
2014-07-12 13:29:15 +00:00
}
// save option types to session
ob_start();
$dummyIndex = 1;
$typeConfigOptionTypes = parseHtml(null, $typeConfigOptions, array(), true, $dummyIndex, 'user');
ob_end_clean();
$_SESSION['conftypes_optionTypes'] = array_merge($_SESSION['conftypes_optionTypes'], $typeConfigOptionTypes);
}
// advanced options
2017-11-12 10:45:36 +00:00
$advancedOptions = new htmlResponsiveRow();
2016-12-19 16:05:47 +00:00
// read-only
if (isLAMProVersion() && ($conf->getAccessLevel() == LAMConfig::ACCESS_ALL)) {
$isReadOnly = false;
2016-12-28 18:53:49 +00:00
if (isset($typeSettings['readOnly_' . $activeType->getId()])) {
$isReadOnly = $typeSettings['readOnly_' . $activeType->getId()];
}
2017-11-12 10:45:36 +00:00
$readOnly = new htmlResponsiveInputCheckbox('readOnly_' . $activeType->getId(), $isReadOnly, _('Read-only'), '265');
2016-12-28 18:53:49 +00:00
$readOnly->setElementsToDisable(array('hideNewButton_' . $activeType->getId(), 'hideDeleteButton_' . $activeType->getId()));
2017-11-12 10:45:36 +00:00
$advancedOptions->add($readOnly, 12);
}
2016-12-19 16:05:47 +00:00
// hidden type
$hidden = false;
2016-12-28 18:53:49 +00:00
if (isset($typeSettings['hidden_' . $activeType->getId()])) {
$hidden = $typeSettings['hidden_' . $activeType->getId()];
2013-09-28 11:46:52 +00:00
}
2017-11-12 10:45:36 +00:00
$advancedOptions->add(new htmlResponsiveInputCheckbox('hidden_' . $activeType->getId(), $hidden, _('Hidden'), '261'), 12);
if (isLAMProVersion() && ($conf->getAccessLevel() == LAMConfig::ACCESS_ALL)) {
// hide button to create new accounts
$hideNewButton = false;
2016-12-28 18:53:49 +00:00
if (isset($typeSettings['hideNewButton_' . $activeType->getId()])) {
$hideNewButton = $typeSettings['hideNewButton_' . $activeType->getId()];
}
2017-11-12 10:45:36 +00:00
$advancedOptions->add(new htmlResponsiveInputCheckbox('hideNewButton_' . $activeType->getId(), $hideNewButton, _('No new entries'), '262'), 12);
// hide button to delete accounts
$hideDeleteButton = false;
2016-12-28 18:53:49 +00:00
if (isset($typeSettings['hideDeleteButton_' . $activeType->getId()])) {
$hideDeleteButton = $typeSettings['hideDeleteButton_' . $activeType->getId()];
}
2017-11-12 10:45:36 +00:00
$advancedOptions->add(new htmlResponsiveInputCheckbox('hideDeleteButton_' . $activeType->getId(), $hideDeleteButton, _('Disallow delete'), '263'), 12);
}
2017-11-12 10:45:36 +00:00
$container->add($advancedOptions, 12);
2016-11-14 18:17:10 +00:00
2017-11-12 10:45:36 +00:00
$container->addVerticalSpacer('2rem');
2018-04-11 17:52:32 +00:00
$index++;
2006-02-03 15:37:59 +00:00
}
}
2006-01-01 16:30:05 +00:00
2014-07-12 13:29:15 +00:00
$dynamicTypeOptions = array();
foreach ($_SESSION['conftypes_optionTypes'] as $key => $value) {
if (isset($typeSettings[$key])) {
$dynamicTypeOptions[$key] = explode(LAMConfig::LINE_SEPARATOR, $typeSettings[$key]);
}
}
parseHtml(null, $container, $dynamicTypeOptions, false, $tabindex, 'user');
2010-11-14 20:35:34 +00:00
2011-01-08 19:44:08 +00:00
echo "</div></div>";
2017-11-12 10:45:36 +00:00
echo "<input type=\"hidden\" name=\"postAvailable\" value=\"yes\">\n";
2011-01-08 19:44:08 +00:00
$buttonContainer = new htmlTable();
$buttonContainer->addElement(new htmlSpacer(null, '10px'), true);
$saveButton = new htmlButton('saveSettings', _('Save'));
$saveButton->setIconClass('saveButton');
$buttonContainer->addElement($saveButton);
$cancelButton = new htmlButton('cancelSettings', _('Cancel'));
$cancelButton->setIconClass('cancelButton');
$buttonContainer->addElement($cancelButton, true);
$buttonContainer->addElement(new htmlSpacer(null, '10px'), true);
parseHtml(null, $buttonContainer, array(), false, $tabindex, 'user');
echo "</form>\n";
2006-01-01 16:30:05 +00:00
echo "</body>\n";
echo "</html>\n";
2009-07-12 13:40:32 +00:00
/**
* Checks user input and saves the entered settings.
*
* @return array list of errors
*/
function checkInput() {
if (!isset($_POST['postAvailable'])) {
return array();
}
$errors = array();
$conf = &$_SESSION['conf_config'];
2016-12-28 18:53:49 +00:00
$typeManager = new \LAM\TYPES\TypeManager($conf);
2009-07-12 13:40:32 +00:00
$typeSettings = $conf->get_typeSettings();
$accountTypes = $conf->get_ActiveTypes();
$postKeys = array_keys($_POST);
for ($i = 0; $i < sizeof($postKeys); $i++) {
$key = $postKeys[$i];
// check if remove button was pressed
if (substr($key, 0, 4) == "rem_") {
$type = substr($key, 4);
$accountTypes = array_flip($accountTypes);
unset($accountTypes[$type]);
$accountTypes = array_flip($accountTypes);
$accountTypes = array_values($accountTypes);
}
2018-04-11 17:52:32 +00:00
// check if up button was pressed
elseif (substr($key, 0, 7) == "moveup_") {
$type = substr($key, 7);
$pos = array_search($type, $accountTypes);
$temp = $accountTypes[$pos - 1];
$accountTypes[$pos - 1] = $accountTypes[$pos];
$accountTypes[$pos] = $temp;
}
// check if down button was pressed
elseif (substr($key, 0, 9) == "movedown_") {
$type = substr($key, 9);
$pos = array_search($type, $accountTypes);
$temp = $accountTypes[$pos + 1];
$accountTypes[$pos + 1] = $accountTypes[$pos];
$accountTypes[$pos] = $temp;
}
2009-07-12 13:40:32 +00:00
// set suffixes
elseif (substr($key, 0, 7) == "suffix_") {
2014-10-01 18:45:15 +00:00
$typeSettings[$key] = trim($_POST[$key]);
2017-04-25 18:03:38 +00:00
$type = $typeManager->getConfiguredType(substr($postKeys[$i], 7));
2009-07-12 13:40:32 +00:00
if (strlen($_POST[$key]) < 1) {
2017-04-25 18:03:38 +00:00
$errors[] = array("ERROR", _("LDAP Suffix is invalid!"), $type->getAlias());
2009-07-12 13:40:32 +00:00
}
}
// set attributes
2009-07-12 13:40:32 +00:00
elseif (substr($key, 0, 5) == "attr_") {
$typeSettings[$key] = $_POST[$key];
2017-04-25 18:03:38 +00:00
$type = $typeManager->getConfiguredType(substr($postKeys[$i], 5));
2009-08-14 18:06:15 +00:00
if (!is_string($_POST[$key]) || !preg_match("/^((#[^:;]+)|([^:;]*:[^:;]+))(;((#[^:;]+)|([^:;]*:[^:;]+)))*$/", $_POST[$key])) {
2017-04-25 18:03:38 +00:00
$errors[] = array("ERROR", _("List attributes are invalid!"), $type->getAlias());
2009-07-12 13:40:32 +00:00
}
}
// set filter
2013-09-28 11:46:52 +00:00
elseif (substr($key, 0, strlen('filter_')) == "filter_") {
$typeSettings[$key] = $_POST[$key];
}
// set custom label
elseif (strpos($key, 'customLabel_') === 0) {
$typeSettings[$key] = $_POST[$key];
}
2013-01-09 20:09:48 +00:00
}
2014-07-12 13:29:15 +00:00
$typeConfigOptions = extractConfigOptionsFromPOST($_SESSION['conftypes_optionTypes']);
2016-12-28 18:53:49 +00:00
foreach ($accountTypes as $accountType) {
// set hidden
2016-12-28 18:53:49 +00:00
$key = "hidden_" . $accountType;
$typeSettings[$key] = (isset($_POST[$key]) && ($_POST[$key] == 'on'));
if (isLAMProVersion() && ($conf->getAccessLevel() == LAMConfig::ACCESS_ALL)) {
// set if new entries are allowed
2016-12-28 18:53:49 +00:00
$key = "hideNewButton_" . $accountType;
$typeSettings[$key] = (isset($_POST[$key]) && ($_POST[$key] == 'on'));
// set if deletion of entries is allowed
2016-12-28 18:53:49 +00:00
$key = "hideDeleteButton_" . $accountType;
$typeSettings[$key] = (isset($_POST[$key]) && ($_POST[$key] == 'on'));
// set if account type is read-only
2016-12-28 18:53:49 +00:00
$key = "readOnly_" . $accountType;
$typeSettings[$key] = (isset($_POST[$key]) && ($_POST[$key] == 'on'));
}
2014-07-12 13:29:15 +00:00
// check dynamic type settings
2016-12-28 18:53:49 +00:00
$typeObj = $typeManager->getConfiguredType($accountType)->getBaseType();
2014-07-12 13:29:15 +00:00
$typeMessages = $typeObj->check_configOptions($typeConfigOptions);
if (!empty($typeMessages)) {
$errors = array_merge($errors, $typeMessages);
}
}
2016-12-28 18:53:49 +00:00
// new type
foreach ($_POST as $key => $value) {
// check if add button was pressed
if (substr($key, 0, 4) == "add_") {
$scope = substr($key, 4);
$accountTypes[] = $typeManager->generateNewTypeId($scope);
}
}
2014-07-12 13:29:15 +00:00
// add dynamic type settings
foreach ($typeConfigOptions as $key => $value) {
$typeSettings[$key] = implode(LAMConfig::LINE_SEPARATOR, $value);
2009-07-12 13:40:32 +00:00
}
// save input
$conf->set_typeSettings($typeSettings);
$conf->set_ActiveTypes($accountTypes);
2018-02-24 13:18:15 +00:00
// check for duplicate type aliases
$aliasNames = array();
foreach ($typeManager->getConfiguredTypes() as $type) {
if (in_array($type->getAlias(), $aliasNames)) {
$errors[] = array('ERROR', _('Please set a unique label for the account types.'), htmlspecialchars($type->getAlias()));
}
$aliasNames[] = $type->getAlias();
}
2009-07-12 13:40:32 +00:00
return $errors;
}
2006-01-01 16:30:05 +00:00
/**
* Compares types by alias for sorting.
*
* @param \baseType $a first type
* @param \baseType $b second type
*/
function compareTypesByAlias($a, $b) {
return strnatcasecmp($a->getAlias(), $b->getAlias());
}
2006-01-01 16:30:05 +00:00
?>