2006-06-28 15:13:16 +00:00
|
|
|
<?PHP
|
|
|
|
/*
|
|
|
|
$Id$
|
|
|
|
|
2009-10-27 18:47:12 +00:00
|
|
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
2006-06-28 15:13:16 +00:00
|
|
|
Copyright (C) 2006 Roland Gruber
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface between modules and self service pages.
|
2006-07-10 19:30:14 +00:00
|
|
|
* This file also includes the self service profile class and helper functions.
|
2006-09-09 11:43:19 +00:00
|
|
|
*
|
2006-06-28 15:13:16 +00:00
|
|
|
* @package selfService
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** modules */
|
|
|
|
include_once("modules.inc");
|
2006-07-10 19:30:14 +00:00
|
|
|
/** account types */
|
|
|
|
include_once("types.inc");
|
2006-06-28 15:13:16 +00:00
|
|
|
|
2006-10-18 16:08:58 +00:00
|
|
|
/**
|
|
|
|
* Returns if this is a LAM Pro installation.
|
|
|
|
*
|
|
|
|
* @return boolean LAM Pro installation
|
|
|
|
*/
|
|
|
|
function isLAMProVersion() {
|
|
|
|
$dir = substr(__FILE__, 0, strlen(__FILE__) - 20) . "/templates/selfService";
|
|
|
|
return is_dir($dir);
|
|
|
|
}
|
|
|
|
|
2006-06-28 15:13:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of possible search attributes for the self service.
|
|
|
|
*
|
|
|
|
* @param string $scope account type
|
|
|
|
* @return array attributes
|
|
|
|
*/
|
|
|
|
function getSelfServiceSearchAttributes($scope) {
|
|
|
|
$return = array();
|
|
|
|
$modules = getAvailableModules($scope);
|
|
|
|
for ($i = 0; $i < sizeof($modules); $i++) {
|
|
|
|
$m = new $modules[$i]($scope);
|
|
|
|
$attributes = $m->getSelfServiceSearchAttributes();
|
|
|
|
$return = array_merge($return, $attributes);
|
|
|
|
}
|
2006-08-07 16:26:19 +00:00
|
|
|
$return = array_unique($return);
|
|
|
|
$return = array_values($return);
|
2006-06-28 15:13:16 +00:00
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
|
2006-07-16 17:15:37 +00:00
|
|
|
/**
|
|
|
|
* Returns the field settings for the self service.
|
|
|
|
*
|
|
|
|
* @param string $scope account type
|
|
|
|
* @return array settings
|
|
|
|
*/
|
|
|
|
function getSelfServiceFieldSettings($scope) {
|
|
|
|
$return = array();
|
|
|
|
$modules = getAvailableModules($scope);
|
|
|
|
for ($i = 0; $i < sizeof($modules); $i++) {
|
|
|
|
$m = new $modules[$i]($scope);
|
|
|
|
$settings = $m->getSelfServiceFields();
|
|
|
|
if (sizeof($settings) > 0) $return[$modules[$i]] = $settings;
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-23 15:04:12 +00:00
|
|
|
/**
|
|
|
|
* Returns meta HTML code for each self service field.
|
|
|
|
*
|
|
|
|
* @param string $scope account type
|
|
|
|
* @param array $fields input fields (array(<moduleName> => array(<field1>, <field2>, ...)))
|
|
|
|
* @param array $attributes LDAP attributes (attribute names in lower case)
|
|
|
|
* @return array meta HTML code (array(<moduleName> => array(<field1> => array(<meta HTML>))))
|
|
|
|
*/
|
|
|
|
function getSelfServiceOptions($scope, $fields, $attributes) {
|
|
|
|
$return = array();
|
|
|
|
$modules = getAvailableModules($scope);
|
|
|
|
for ($i = 0; $i < sizeof($modules); $i++) {
|
2006-09-09 11:43:19 +00:00
|
|
|
if (!isset($fields[$modules[$i]])) continue;
|
2006-07-23 15:04:12 +00:00
|
|
|
$m = new $modules[$i]($scope);
|
|
|
|
$code = $m->getSelfServiceOptions($fields[$modules[$i]], $attributes);
|
|
|
|
if (sizeof($code) > 0) $return[$modules[$i]] = $code;
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if all input values are correct and returns the LDAP commands which should be executed.
|
|
|
|
*
|
|
|
|
* @param string $scope account type
|
|
|
|
* @param string $fields input fields (array(<moduleName> => array(<field1>, <field2>, ...)))
|
|
|
|
* @param array $attributes LDAP attributes
|
|
|
|
* @return array messages and LDAP commands (array('messages' => array(), 'add' => array(), 'del' => array(), 'mod' => array()))
|
|
|
|
*/
|
|
|
|
function checkSelfServiceOptions($scope, $fields, $attributes) {
|
|
|
|
$return = array('messages' => array(), 'add' => array(), 'del' => array(), 'mod' => array());
|
|
|
|
$modules = getAvailableModules($scope);
|
|
|
|
for ($i = 0; $i < sizeof($modules); $i++) {
|
2006-09-09 11:43:19 +00:00
|
|
|
if (!isset($fields[$modules[$i]])) continue;
|
2006-07-23 15:04:12 +00:00
|
|
|
$m = new $modules[$i]($scope);
|
|
|
|
$result = $m->checkSelfServiceOptions($fields[$modules[$i]], $attributes);
|
|
|
|
if (sizeof($result['messages']) > 0) $return['messages'] = array_merge($result['messages'], $return['messages']);
|
|
|
|
if (sizeof($result['add']) > 0) $return['add'] = array_merge($result['add'], $return['add']);
|
|
|
|
if (sizeof($result['del']) > 0) $return['del'] = array_merge($result['del'], $return['del']);
|
|
|
|
if (sizeof($result['mod']) > 0) $return['mod'] = array_merge($result['mod'], $return['mod']);
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of all available self service profiles (without .conf)
|
|
|
|
*
|
|
|
|
* @return array profile names (array(<account type> => array(<profile1>, <profile2>, ...)))
|
|
|
|
*/
|
|
|
|
function getSelfServiceProfiles() {
|
|
|
|
$types = getTypes();
|
|
|
|
$dir = dir(substr(__FILE__, 0, strlen(__FILE__) - 20) . "/config/selfService");
|
|
|
|
$ret = array();
|
|
|
|
while ($entry = $dir->read()){
|
|
|
|
$ext = substr($entry, strrpos($entry, '.') + 1);
|
|
|
|
$name = substr($entry, 0, strrpos($entry, '.'));
|
|
|
|
// check if extension is right, add to profile list
|
|
|
|
if (in_array($ext, $types)) {
|
|
|
|
$ret[$ext][] = $name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ksort($ret);
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads all settings of a self service profile.
|
|
|
|
*
|
|
|
|
* @param string $name profile name
|
|
|
|
* @param string $scope account type
|
|
|
|
* @return selfServiceProfile true if file was readable
|
|
|
|
*/
|
|
|
|
function loadSelfServiceProfile($name, $scope) {
|
2009-08-14 18:06:15 +00:00
|
|
|
if (!preg_match("/^[0-9a-z _-]+$/i", $name)) return false;
|
|
|
|
if (!preg_match("/^[0-9a-z _-]+$/i", $scope)) return false;
|
2006-07-10 19:30:14 +00:00
|
|
|
$profile = new selfServiceProfile();
|
|
|
|
$file = substr(__FILE__, 0, strlen(__FILE__) - 20) . "/config/selfService/" . $name . "." . $scope;
|
|
|
|
if (is_file($file) === True) {
|
|
|
|
$file = @fopen($file, "r");
|
|
|
|
if ($file) {
|
|
|
|
$data = fread($file, 10000);
|
|
|
|
$profile = unserialize($data);
|
|
|
|
fclose($file);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
StatusMessage("ERROR", "", _("Unable to load profile!") . " " . $file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
StatusMessage("ERROR", "", _("Unable to load profile!") . " " . $file);
|
|
|
|
}
|
|
|
|
return $profile;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Saves a self service profile.
|
|
|
|
*
|
|
|
|
* File is created, if needed
|
|
|
|
*
|
|
|
|
* @param string $name name of the account profile
|
|
|
|
* @param string $scope account type
|
|
|
|
* @param selfServiceProfile $profile self service profile
|
|
|
|
* @return boolean true, if saving succeeded
|
|
|
|
*/
|
|
|
|
function saveSelfServiceProfile($name, $scope, $profile) {
|
|
|
|
// check profile name
|
2009-08-14 18:06:15 +00:00
|
|
|
if (!preg_match("/^[0-9a-z _-]+$/i", $scope)) return false;
|
|
|
|
if (!preg_match("/^[0-9a-z _-]+$/i", $name)) return false;
|
2006-07-10 19:30:14 +00:00
|
|
|
if (!get_class($profile) === 'selfServiceProfile') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$path = substr(__FILE__, 0, strlen(__FILE__) - 20) . "/config/selfService/" . $name . "." . $scope;
|
|
|
|
$file = @fopen($path, "w");
|
|
|
|
if ($file) {
|
|
|
|
// write settings to file
|
|
|
|
fputs($file, serialize($profile));
|
|
|
|
// close file
|
|
|
|
fclose($file);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-11-21 17:37:12 +00:00
|
|
|
/**
|
|
|
|
* Returns a hash array (module name => elements) of all module options for the configuration page.
|
|
|
|
*
|
|
|
|
* @param string $scope account type
|
|
|
|
* @return array configuration options
|
|
|
|
*/
|
|
|
|
function getSelfServiceSettings($scope) {
|
|
|
|
$return = array();
|
|
|
|
$modules = getAvailableModules($scope);
|
|
|
|
for ($i = 0; $i < sizeof($modules); $i++) {
|
|
|
|
$m = new $modules[$i]($scope);
|
|
|
|
$return[$modules[$i]] = $m->getSelfServiceSettings();
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the self service settings are valid
|
|
|
|
*
|
|
|
|
* @param string $scope account type
|
|
|
|
* @param array $options hash array containing all options (name => array(...))
|
|
|
|
* @return array list of error messages
|
|
|
|
*/
|
|
|
|
function checkSelfServiceSettings($scope, $options) {
|
|
|
|
$return = array();
|
|
|
|
$modules = getAvailableModules($scope);
|
|
|
|
for ($i = 0; $i < sizeof($modules); $i++) {
|
|
|
|
$m = new $modules[$i]($scope);
|
|
|
|
$errors = $m->checkSelfServiceSettings($options);
|
|
|
|
$return = array_merge($return, $errors);
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Includes all settings of a self service profile.
|
|
|
|
*
|
|
|
|
* @package selfService
|
|
|
|
*/
|
|
|
|
class selfServiceProfile {
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
/** server address */
|
2007-10-15 17:20:51 +00:00
|
|
|
public $serverURL;
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
/** LDAP suffix */
|
2007-10-15 17:20:51 +00:00
|
|
|
public $LDAPSuffix;
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-14 17:44:11 +00:00
|
|
|
/** LDAP user DN*/
|
2007-10-15 17:20:51 +00:00
|
|
|
public $LDAPUser;
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-14 17:44:11 +00:00
|
|
|
/** LDAP password */
|
2007-10-15 17:20:51 +00:00
|
|
|
public $LDAPPassword;
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
/** LDAP search attribute */
|
2007-10-15 17:20:51 +00:00
|
|
|
public $searchAttribute;
|
2009-02-13 18:52:59 +00:00
|
|
|
|
|
|
|
/** header for self service pages */
|
|
|
|
public $pageHeader;
|
2009-02-14 13:50:20 +00:00
|
|
|
|
|
|
|
/** list of additional CSS links (separated by \n) */
|
|
|
|
public $additionalCSS;
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
/** describing text for user login */
|
2007-10-15 17:20:51 +00:00
|
|
|
public $loginCaption;
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
/** describing text for search attribute */
|
2007-10-15 17:20:51 +00:00
|
|
|
public $loginAttributeText;
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-16 17:15:37 +00:00
|
|
|
/** describing text for self service main page */
|
2007-10-15 17:20:51 +00:00
|
|
|
public $mainPageText;
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-16 17:15:37 +00:00
|
|
|
/** input fields
|
|
|
|
* Format: array(<module> => array(array('name' => <group name>, 'fields' => array(<field1>, <field2>))))
|
2006-09-09 11:43:19 +00:00
|
|
|
*
|
2006-07-16 17:15:37 +00:00
|
|
|
*/
|
2007-10-15 17:20:51 +00:00
|
|
|
public $inputFields;
|
2006-11-21 17:37:12 +00:00
|
|
|
|
|
|
|
/** configuration settings of modules */
|
2007-10-15 17:20:51 +00:00
|
|
|
public $moduleSettings;
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @return selfServiceProfile
|
|
|
|
*/
|
2007-12-28 16:08:56 +00:00
|
|
|
function __construct() {
|
2006-07-10 19:30:14 +00:00
|
|
|
// set default values
|
|
|
|
$this->serverURL = "localhost";
|
2006-08-03 18:02:21 +00:00
|
|
|
$this->LDAPSuffix = "dc=my-domain,dc=com";
|
2006-07-14 17:44:11 +00:00
|
|
|
$this->LDAPUser = "";
|
|
|
|
$this->LDAPPassword = "";
|
2006-07-10 19:30:14 +00:00
|
|
|
$this->searchAttribute = "uid";
|
2009-08-10 16:13:27 +00:00
|
|
|
$this->pageHeader = '<p align="center"><a href="http://www.ldap-account-manager.org/" target="_blank"><img src="../../graphics/banner.jpg" border=1 alt="LDAP Account Manager"></a></p><hr>';
|
2009-02-14 13:50:20 +00:00
|
|
|
$this->additionalCSS = '';
|
2006-07-10 19:30:14 +00:00
|
|
|
$this->loginCaption = "Welcome to LAM self service. Please enter your user name and password.";
|
|
|
|
$this->loginAttributeText = "User name";
|
2006-07-16 17:15:37 +00:00
|
|
|
$this->mainPageText = "<h1>LAM self service</h1>\nHere you can change your personal settings.";
|
2006-08-03 18:02:21 +00:00
|
|
|
$this->inputFields = array(
|
|
|
|
array('name' => 'Personal data',
|
|
|
|
'fields' => array('inetOrgPerson_firstName', 'inetOrgPerson_lastName', 'inetOrgPerson_mail',
|
|
|
|
'inetOrgPerson_telephoneNumber', 'inetOrgPerson_mobile', 'inetOrgPerson_faxNumber',
|
|
|
|
'inetOrgPerson_street', 'inetOrgPerson_postalAddress')),
|
|
|
|
array('name' => 'Password',
|
|
|
|
'fields' => array('posixAccount_password'))
|
|
|
|
);
|
2006-07-10 19:30:14 +00:00
|
|
|
}
|
2006-09-09 11:43:19 +00:00
|
|
|
|
2006-07-10 19:30:14 +00:00
|
|
|
}
|
|
|
|
|
2006-06-28 15:13:16 +00:00
|
|
|
?>
|