2004-06-08 18:39:53 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
|
2008-02-03 18:46:11 +00:00
|
|
|
Copyright (C) 2003 - 2008 Roland Gruber
|
2004-06-08 18:39:53 +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
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the parent class for all account modules.
|
|
|
|
*
|
|
|
|
* It implements the complete module interface and uses meta-data
|
|
|
|
* provided by the account modules for its functions.
|
|
|
|
*
|
|
|
|
* @package modules
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2007-07-08 19:00:55 +00:00
|
|
|
* Parent class of all account modules.
|
2004-06-08 18:39:53 +00:00
|
|
|
*
|
|
|
|
* @package modules
|
|
|
|
*/
|
2007-07-08 19:00:55 +00:00
|
|
|
abstract class baseModule {
|
2004-06-08 18:39:53 +00:00
|
|
|
|
|
|
|
/** includes all meta data provided by the sub class */
|
2007-07-08 19:00:55 +00:00
|
|
|
protected $meta;
|
2004-06-08 18:39:53 +00:00
|
|
|
|
|
|
|
/** the account type of this module (user, group, host) */
|
2007-10-04 16:45:05 +00:00
|
|
|
private $scope;
|
2004-06-08 18:39:53 +00:00
|
|
|
|
2004-07-26 15:15:30 +00:00
|
|
|
/** configuration settings of all modules */
|
2007-07-08 19:00:55 +00:00
|
|
|
protected $moduleSettings;
|
2004-07-26 15:15:30 +00:00
|
|
|
|
2006-11-21 17:37:12 +00:00
|
|
|
/** self service settings of all modules */
|
2007-07-08 19:00:55 +00:00
|
|
|
protected $selfServiceSettings;
|
2006-11-21 17:37:12 +00:00
|
|
|
|
2004-09-01 20:53:06 +00:00
|
|
|
/** name of parent accountContainer ($_SESSION[$base]) */
|
2007-10-03 18:02:10 +00:00
|
|
|
private $base;
|
2004-09-01 20:53:06 +00:00
|
|
|
|
2004-09-14 11:53:33 +00:00
|
|
|
/** contains all ldap attributes which should be written */
|
2007-07-08 19:00:55 +00:00
|
|
|
protected $attributes;
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2004-09-14 11:53:33 +00:00
|
|
|
/** contains all ldap attributes which are loaded from ldap */
|
2007-07-08 19:00:55 +00:00
|
|
|
protected $orig;
|
2004-09-14 11:53:33 +00:00
|
|
|
|
2004-09-20 19:33:31 +00:00
|
|
|
/** contains all error messages of a module */
|
2007-07-08 19:00:55 +00:00
|
|
|
protected $messages;
|
2007-11-18 10:35:56 +00:00
|
|
|
|
|
|
|
/** if true, managed object classes are added when an account is created or loaded (default: true) */
|
|
|
|
protected $autoAddObjectClasses;
|
2004-09-20 19:33:31 +00:00
|
|
|
|
2004-06-08 18:39:53 +00:00
|
|
|
/**
|
|
|
|
* Creates a new base module class
|
|
|
|
*
|
|
|
|
* @param string $scope the account type (user, group, host)
|
|
|
|
*/
|
2007-12-28 16:08:56 +00:00
|
|
|
public function __construct($scope) {
|
2004-06-08 18:39:53 +00:00
|
|
|
$this->scope = $scope;
|
2004-09-27 19:12:22 +00:00
|
|
|
$this->load_Messages();
|
2004-06-08 18:39:53 +00:00
|
|
|
$this->meta = $this->get_metaData();
|
2007-11-18 10:35:56 +00:00
|
|
|
$this->autoAddObjectClasses = true;
|
2006-11-21 17:37:12 +00:00
|
|
|
// load configuration
|
2004-07-26 15:15:30 +00:00
|
|
|
if (isset($_SESSION['config'])) $this->moduleSettings = $_SESSION['config']->get_moduleSettings();
|
2006-11-21 17:37:12 +00:00
|
|
|
if (isset($_SESSION['selfServiceProfile'])) $this->selfServiceSettings = $_SESSION['selfServiceProfile']->moduleSettings;
|
2004-06-08 18:39:53 +00:00
|
|
|
}
|
|
|
|
|
2004-09-27 19:12:22 +00:00
|
|
|
/**
|
|
|
|
* This function fills the $messages variable with output messages from this module.
|
|
|
|
*/
|
2007-10-04 16:45:05 +00:00
|
|
|
protected function load_Messages() {
|
2004-09-27 19:12:22 +00:00
|
|
|
}
|
|
|
|
|
2004-09-01 20:53:06 +00:00
|
|
|
/**
|
|
|
|
* Initializes the module after it became part of an accountContainer
|
|
|
|
*
|
|
|
|
* @param string $base the name of the accountContainer object ($_SESSION[$base])
|
|
|
|
*/
|
|
|
|
function init($base) {
|
|
|
|
$this->base = $base;
|
2006-05-14 07:47:50 +00:00
|
|
|
$this->attributes = array();
|
|
|
|
$this->orig = array();
|
|
|
|
// add object classes if needed
|
|
|
|
$this->attributes['objectClass'] = array();
|
|
|
|
$this->orig['objectClass'] = array();
|
2007-11-18 10:35:56 +00:00
|
|
|
if ($this->autoAddObjectClasses === true) {
|
|
|
|
$objectClasses = $this->getManagedObjectClasses();
|
|
|
|
for ($i = 0; $i < sizeof($objectClasses); $i++) {
|
|
|
|
if (!in_array($objectClasses[$i], $this->attributes['objectClass'])) {
|
|
|
|
$this->attributes['objectClass'][] = $objectClasses[$i];
|
|
|
|
}
|
|
|
|
}
|
2006-05-14 07:47:50 +00:00
|
|
|
}
|
2004-09-01 20:53:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-16 13:41:17 +00:00
|
|
|
/**
|
2006-05-13 08:55:31 +00:00
|
|
|
* This function loads the LDAP attributes for this module.
|
2005-04-16 13:41:17 +00:00
|
|
|
*
|
2006-05-13 08:55:31 +00:00
|
|
|
* @param array $attributes attribute list
|
2004-09-18 18:44:47 +00:00
|
|
|
*/
|
2006-05-13 08:55:31 +00:00
|
|
|
function load_attributes($attributes) {
|
|
|
|
$this->attributes = array();
|
|
|
|
$this->attributes = array();
|
|
|
|
// load object classes
|
|
|
|
if (isset($attributes['objectClass'])) {
|
|
|
|
$this->attributes['objectClass'] = $attributes['objectClass'];
|
|
|
|
$this->orig['objectClass'] = $attributes['objectClass'];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->attributes['objectClass'] = array();
|
|
|
|
$this->orig['objectClass'] = array();
|
|
|
|
}
|
|
|
|
// add object classes if needed
|
2007-11-18 10:35:56 +00:00
|
|
|
if ($this->autoAddObjectClasses === true) {
|
|
|
|
$objectClasses = $this->getManagedObjectClasses();
|
|
|
|
for ($i = 0; $i < sizeof($objectClasses); $i++) {
|
|
|
|
if (!in_array($objectClasses[$i], $this->attributes['objectClass'])) {
|
|
|
|
$this->attributes['objectClass'][] = $objectClasses[$i];
|
|
|
|
}
|
|
|
|
}
|
2006-05-13 08:55:31 +00:00
|
|
|
}
|
|
|
|
// load attributes
|
|
|
|
$attributeNames = $this->getManagedAttributes();
|
|
|
|
for ($i = 0; $i < sizeof($attributeNames); $i++) {
|
|
|
|
if (isset($attributes[$attributeNames[$i]])) {
|
|
|
|
$this->attributes[$attributeNames[$i]] = $attributes[$attributeNames[$i]];
|
|
|
|
$this->orig[$attributeNames[$i]] = $attributes[$attributeNames[$i]];
|
2004-09-18 18:44:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-08 18:39:53 +00:00
|
|
|
/**
|
2008-02-03 14:28:28 +00:00
|
|
|
* This function provides meta data which is interpreted by baseModule.
|
|
|
|
* Only subclasses will return real data.<br>
|
|
|
|
* <br>
|
|
|
|
* The aim of the meta data is to reduce the number
|
|
|
|
* of functions in the subclasses. All major data is centralized in one place.<br>
|
|
|
|
* <br>
|
|
|
|
* The returned array contains a list of key-value pairs for the different functions.<br>
|
|
|
|
* <ul>
|
|
|
|
*
|
|
|
|
* <li><b>{@link can_manage()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> account_types<br>
|
|
|
|
* <b>Value:</b> array of account types<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "account_types" => array("user", "host")
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link is_base_module()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> is_base<br>
|
|
|
|
* <b>Value:</b> boolean<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "is_base" => true
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link get_ldap_filter()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> ldap_filter<br>
|
|
|
|
* <b>Value:</b> array of filters<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "ldap_filter" => array('or' => 'objectClass=posixAccount', 'and' => '(!(uid=*$))')
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link getManagedObjectClasses()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> objectClasses<br>
|
|
|
|
* <b>Value:</b> array of object classes<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "objectClasses" => array('posixAccount')
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link getLDAPAliases()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> LDAPaliases<br>
|
|
|
|
* <b>Value:</b> array of aliases<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "LDAPaliases" => array('commonName' => 'cn')
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link get_RDNAttributes()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> RDN<br>
|
|
|
|
* <b>Value:</b> array of RDNs<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "RDN" => array('uid' => 'normal', 'cn' => 'low')
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link get_dependencies()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> dependencies<br>
|
|
|
|
* <b>Value:</b> array of dependencies<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "dependencies" => array("depends" => array("posixAccount", array("qmail", "sendmail")), "conflicts" => array("exim"))
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link get_profileOptions()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> profile_options<br>
|
|
|
|
* <b>Value:</b> array of profile options<br>
|
|
|
|
* <br>
|
|
|
|
* The syntax for the value array is the same as for the return value of get_profileOptions().
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link check_profileOptions()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> profile_checks<br>
|
|
|
|
* <b>Value:</b> array of checks (array("optionName" => array()))<br>
|
|
|
|
* <br>
|
|
|
|
* The "optionName" keys of the value array are the names of the option identifiers.<br>
|
|
|
|
* Each array element is an array itself containing these values:
|
|
|
|
* <ul>
|
|
|
|
* <li><b>type:</b> determines how to check input<br>
|
|
|
|
* Possible values:
|
|
|
|
* <ul>
|
|
|
|
* <li><b>regex:</b> check with regular expression from regex variable, case sensitive</li>
|
|
|
|
* <li><b>regex_i:</b> check with regular expression from regex variable, case insensitive</li>
|
|
|
|
* <li><b>int_greater:</b> integer value of cmp_name1 must be greater than the integer value from the option cmp_name2</li>
|
|
|
|
* <li><b>int_greaterOrEqual:</b> integer value of cmp_name1 must be greater or equal than the integer value from the option cmp_name2</li>
|
|
|
|
* </ul>
|
|
|
|
* </li>
|
|
|
|
* <li><b>error_message:</b> message that is displayed if input value was syntactically incorrect<br>
|
|
|
|
* error_message is an array to build StatusMessages (message type, message head, message text, additional variables)
|
|
|
|
* <li><b>regex:</b> regular expression string (only if type is regex/regex_i)</li>
|
|
|
|
* <li><b>cmp_name1:</b> name of first input variable that is used for comparison (only if type is int_greater/int_greaterOrEqual)</li>
|
|
|
|
* <li><b>cmp_name2:</b> name of second input variable that is used for comparison (only if type is int_greater/int_greaterOrEqual)</li>
|
|
|
|
* <li><b>required:</b> true or false, if this input field must be filled set to true (optional)
|
|
|
|
* <li><b>required_message:</b> message that is displayed if no input value was given (only if required == true)<br>
|
|
|
|
* required_message is an array to build StatusMessages (message type, message head, message text, additional variables)
|
|
|
|
* </li>
|
|
|
|
* </ul>
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link load_profile()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> profile_mappings<br>
|
|
|
|
* <b>Value:</b> array('profile_identifier1' => 'LDAP_attribute1', 'profile_identifier2' => 'LDAP_attribute2')<br>
|
|
|
|
* <br>
|
|
|
|
* The mapped values are stored directly in $this->attributes.
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "profile_mappings" => array('inetOrgPerson_title' => 'title')
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link get_configOptions()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> config_options<br>
|
|
|
|
* <b>Value:</b> array('user' => array, 'host' => array, 'all' => array)<br>
|
|
|
|
* <br>
|
|
|
|
* The values from 'all' are always returned, the other values only if they are inside the $scopes array.<br>
|
|
|
|
* The syntax for sub arrays is the same as for the return value of {@link get_configOptions()}.
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link check_configOptions()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> config_checks<br>
|
|
|
|
* <b>Value:</b> array('user' => array, 'host' => 'array', 'all' => array)<br>
|
|
|
|
* <br>
|
|
|
|
* The values from 'all' are always used for checking, the other values only if they are inside the $scopes array.
|
|
|
|
* The syntax for sub arrays is the same as for {@link check_configOptions()}.
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link get_uploadColumns()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> upload_columns<br>
|
|
|
|
* <b>Value:</b> array<br>
|
|
|
|
* <br>
|
|
|
|
* The syntax for array is the same as for the return value of {@link get_uploadColumns()}.
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link get_uploadPreDepends()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> upload_preDepends<br>
|
|
|
|
* <b>Value:</b> array<br>
|
|
|
|
* <br>
|
|
|
|
* The syntax for array is the same as for the return value of {@link get_uploadPreDepends()}.
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link getRequiredExtensions()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> extensions<br>
|
|
|
|
* <b>Value:</b> array of extension names<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "extensions" => array('mhash')
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
2008-02-03 18:46:11 +00:00
|
|
|
* <li><b>{@link get_help()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> help<br>
|
|
|
|
* <b>Value:</b> hashtable of help entries<br>
|
|
|
|
* <br>
|
|
|
|
* The hashtable is an array which maps help IDs to help entries.<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> 'help' => array('myEntry' => array('Headline' => 'This is the head line', 'Text' => 'Help content'))
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
2008-02-03 14:28:28 +00:00
|
|
|
* <li><b>{@link getSelfServiceSearchAttributes()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> selfServiceSearchAttributes<br>
|
|
|
|
* <b>Value:</b> array of attribute names<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "selfServiceSearchAttributes" => array('uid')
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* <li><b>{@link getSelfServiceFields()}</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Key:</b> selfServiceFieldSettings<br>
|
|
|
|
* <b>Value:</b> array of self service fields<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b> "selfServiceFieldSettings" => array('pwd' => 'Password')
|
|
|
|
* <br><br>
|
|
|
|
* </li>
|
|
|
|
*
|
|
|
|
* </ul>
|
2004-06-08 18:39:53 +00:00
|
|
|
*
|
|
|
|
* @return array empty array
|
|
|
|
*/
|
|
|
|
function get_metaData() {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the account type of this module (user, group, host)
|
|
|
|
*
|
|
|
|
* @return string account type
|
|
|
|
*/
|
|
|
|
function get_scope() {
|
|
|
|
return $this->scope;
|
|
|
|
}
|
2004-06-13 19:58:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if this module fits for the current scope.
|
|
|
|
*
|
|
|
|
* @return boolean true if module fits
|
|
|
|
*/
|
|
|
|
function can_manage() {
|
|
|
|
if (is_array($this->meta["account_types"]) && in_array($this->scope, $this->meta["account_types"])) return true;
|
|
|
|
else return false;
|
|
|
|
}
|
|
|
|
|
2004-06-08 18:39:53 +00:00
|
|
|
/**
|
2008-02-03 14:28:28 +00:00
|
|
|
* Returns true if this module can be used to construct account without additional modules.
|
|
|
|
* Usually, all modules which manage structural object classes are base modules.
|
2004-06-08 18:39:53 +00:00
|
|
|
*
|
2008-02-03 14:28:28 +00:00
|
|
|
* @return boolean true if base module (defaults to false if no meta data is provided)
|
2004-06-08 18:39:53 +00:00
|
|
|
*/
|
|
|
|
function is_base_module() {
|
2006-05-13 08:55:31 +00:00
|
|
|
if (isset($this->meta['is_base']) && ($this->meta['is_base'] == true)) return true;
|
2004-06-08 18:39:53 +00:00
|
|
|
else return false;
|
|
|
|
}
|
|
|
|
|
2004-06-11 15:44:49 +00:00
|
|
|
/**
|
|
|
|
* returns an LDAP filter for the account lists
|
|
|
|
*
|
|
|
|
* @return string LDAP filter
|
|
|
|
*/
|
|
|
|
function get_ldap_filter() {
|
|
|
|
if (isset($this->meta['ldap_filter'])) return $this->meta['ldap_filter'];
|
|
|
|
else return "";
|
|
|
|
}
|
|
|
|
|
2004-06-14 16:05:36 +00:00
|
|
|
/**
|
|
|
|
* Returns an alias name for the module.
|
|
|
|
*
|
|
|
|
* This alias is used in various places instead of the less descriptive class name.
|
|
|
|
* The alias also has less syntax restrictions and may contain spaces or special characters.
|
|
|
|
*
|
|
|
|
* @return string alias name
|
|
|
|
*/
|
|
|
|
function get_alias() {
|
|
|
|
if (isset($this->meta['alias'])) return $this->meta['alias'];
|
|
|
|
else return get_class($this);
|
|
|
|
}
|
|
|
|
|
2004-10-06 18:17:22 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of possible LDAP attributes which can be used to form the RDN.
|
|
|
|
*
|
|
|
|
* The returned elements have this form: <attribute> => <priority>
|
|
|
|
* <br> <attribute> is the name of the LDAP attribute
|
|
|
|
* <br> <priority> defines the priority of the attribute (can be "low", "normal", "high")
|
|
|
|
*
|
|
|
|
* @return array list of attributes
|
|
|
|
*/
|
|
|
|
function get_RDNAttributes() {
|
|
|
|
if (isset($this->meta['RDN'])) return $this->meta['RDN'];
|
|
|
|
else return array();
|
|
|
|
}
|
|
|
|
|
2004-06-20 17:32:02 +00:00
|
|
|
/**
|
|
|
|
* This function returns a list with all depending and conflicting modules.
|
|
|
|
*
|
|
|
|
* @return array list of dependencies and conflicts
|
|
|
|
*/
|
|
|
|
function get_dependencies() {
|
|
|
|
if (isset($this->meta['dependencies'])) return $this->meta['dependencies'];
|
|
|
|
else return array('depends' => array(), 'conflicts' => array());
|
|
|
|
}
|
|
|
|
|
2004-07-01 15:54:33 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of elements for the account profiles.
|
|
|
|
*
|
|
|
|
* @return profile elements
|
|
|
|
*/
|
|
|
|
function get_profileOptions() {
|
|
|
|
if (isset($this->meta['profile_options'])) return $this->meta['profile_options'];
|
|
|
|
else return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks input values of account profiles.
|
|
|
|
*
|
2004-09-19 08:28:03 +00:00
|
|
|
* @param array $options a hash array (name => value) containing the options
|
|
|
|
* @return array list of error messages (array(type, title, text)) to generate StatusMessages, if any
|
2004-07-01 15:54:33 +00:00
|
|
|
*/
|
|
|
|
function check_profileOptions($options) {
|
|
|
|
$messages = array();
|
|
|
|
if (is_array($this->meta['profile_checks'])) {
|
|
|
|
$identifiers = array_keys($this->meta['profile_checks']);
|
|
|
|
for ($i = 0; $i < sizeof($identifiers); $i++) {
|
2004-10-06 20:00:17 +00:00
|
|
|
// empty input
|
|
|
|
if (($options[$identifiers[$i]][0] == '') || !isset($options[$identifiers[$i]][0])) {
|
|
|
|
// check if option is required
|
2006-01-25 18:31:19 +00:00
|
|
|
if (isset($this->meta['profile_checks'][$identifiers[$i]]['required']) && $this->meta['profile_checks'][$identifiers[$i]]['required']) {
|
2004-10-06 20:00:17 +00:00
|
|
|
$messages[] = $this->meta['profile_checks'][$identifiers[$i]]['required_message'];
|
|
|
|
}
|
2005-07-07 13:45:55 +00:00
|
|
|
continue;
|
2004-07-01 15:54:33 +00:00
|
|
|
}
|
2004-09-26 15:45:40 +00:00
|
|
|
switch ($this->meta['profile_checks'][$identifiers[$i]]['type']) {
|
|
|
|
// check by regular expression (from account.inc)
|
|
|
|
case "ext_preg":
|
|
|
|
// ignore empty fileds
|
|
|
|
if ($options[$identifiers[$i]][0] == '') continue;
|
|
|
|
if (! get_preg($options[$identifiers[$i]][0], $this->meta['profile_checks'][$identifiers[$i]]['regex'])) {
|
|
|
|
$messages[] = $this->meta['profile_checks'][$identifiers[$i]]['error_message'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// check by regular expression (case insensitive)
|
|
|
|
case 'regex_i':
|
|
|
|
// ignore empty fileds
|
|
|
|
if ($options[$identifiers[$i]][0] == '') continue;
|
|
|
|
if (! eregi($this->meta['profile_checks'][$identifiers[$i]]['regex'], $options[$identifiers[$i]][0])) {
|
|
|
|
$messages[] = $this->meta['profile_checks'][$identifiers[$i]]['error_message'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// check by regular expression (case sensitive)
|
|
|
|
case 'regex':
|
|
|
|
// ignore empty fileds
|
|
|
|
if ($options[$identifiers[$i]][0] == '') continue;
|
|
|
|
if (! ereg($this->meta['profile_checks'][$identifiers[$i]]['regex'], $options[$identifiers[$i]][0])) {
|
|
|
|
$messages[] = $this->meta['profile_checks'][$identifiers[$i]]['error_message'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// check by integer comparison (greater)
|
|
|
|
case 'int_greater':
|
|
|
|
// ignore if both fields are empty
|
|
|
|
if (($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name1']][0] == '') && ($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name2']][0] == '')) continue;
|
|
|
|
// print error message if only one field is empty
|
|
|
|
if (($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name1']][0] == '') || ($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name2']][0] == '')) {
|
|
|
|
$messages[] = $this->meta['profile_checks'][$identifiers[$i]]['error_message'];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// compare
|
|
|
|
if (!(intval($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name1']][0]) > intval($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name2']][0]))) {
|
|
|
|
$messages[] = $this->meta['profile_checks'][$identifiers[$i]]['error_message'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// check by integer comparison (greater or equal)
|
|
|
|
case 'int_greaterOrEqual':
|
|
|
|
// ignore if both fields are empty
|
|
|
|
if (($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name1']][0] == '') && ($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name2']][0] == '')) continue;
|
|
|
|
// print error message if only one field is empty
|
|
|
|
if (($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name1']][0] == '') || ($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name2']][0] == '')) {
|
|
|
|
$messages[] = $this->meta['profile_checks'][$identifiers[$i]]['error_message'];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// compare
|
|
|
|
if (!(intval($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name1']][0]) >= intval($options[$this->meta['profile_checks'][$identifiers[$i]]['cmp_name2']][0]))) {
|
|
|
|
$messages[] = $this->meta['profile_checks'][$identifiers[$i]]['error_message'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// print error message for invalid types
|
|
|
|
default:
|
|
|
|
StatusMessage("ERROR", "Unsupported type!", $this->meta['profile_checks'][$identifiers[$i]]['type']);
|
|
|
|
break;
|
2004-07-13 14:51:28 +00:00
|
|
|
}
|
2004-07-01 15:54:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $messages;
|
|
|
|
}
|
|
|
|
|
2005-01-07 10:55:05 +00:00
|
|
|
/**
|
|
|
|
* Loads the values of an account profile into internal variables.
|
|
|
|
*
|
|
|
|
* @param array $profile hash array with profile values (identifier => value)
|
|
|
|
*/
|
|
|
|
function load_profile($profile) {
|
|
|
|
if (isset($this->meta['profile_mappings'])) {
|
|
|
|
$identifiers = array_keys($this->meta['profile_mappings']);
|
|
|
|
for ($i = 0; $i < sizeof($identifiers); $i++) {
|
|
|
|
if (isset($profile[$identifiers[$i]])) {
|
|
|
|
$this->attributes[$this->meta['profile_mappings'][$identifiers[$i]]] = $profile[$identifiers[$i]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2004-07-24 17:14:39 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of elements for the configuration.
|
|
|
|
*
|
|
|
|
* @param array $scopes account types (user, group, host)
|
2006-03-06 17:09:17 +00:00
|
|
|
* @param array $allScopes list of all modules and active scopes
|
2004-07-24 17:14:39 +00:00
|
|
|
* @return array configuration elements
|
|
|
|
*/
|
2006-03-06 17:09:17 +00:00
|
|
|
function get_configOptions($scopes, $allScopes) {
|
2004-07-24 17:14:39 +00:00
|
|
|
$return = array();
|
|
|
|
for ($i = 0; $i < sizeof($scopes); $i++) {
|
|
|
|
if (isset($this->meta['config_options'][$scopes[$i]])) $return = array_merge($return, $this->meta['config_options'][$scopes[$i]]);
|
|
|
|
}
|
|
|
|
if (isset($this->meta['config_options']['all'])) $return = array_merge($return, $this->meta['config_options']['all']);
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks input values of module settings.
|
|
|
|
*
|
|
|
|
* @param array $scopes list of account types which are used
|
|
|
|
* @param array $options hash array containing the settings (array('option' => array('value')))
|
2004-08-01 09:37:21 +00:00
|
|
|
* @return array list of error messages
|
2004-07-24 17:14:39 +00:00
|
|
|
*/
|
|
|
|
function check_configOptions($scopes, $options) {
|
|
|
|
$messages = array();
|
|
|
|
$scopes[] = 'all'; // add checks that are independent of scope
|
|
|
|
for ($s = 0; $s < sizeof($scopes); $s++) {
|
2006-05-13 08:55:31 +00:00
|
|
|
if (isset($this->meta['config_checks'][$scopes[$s]]) && is_array($this->meta['config_checks'][$scopes[$s]])) {
|
2004-07-24 17:14:39 +00:00
|
|
|
$identifiers = array_keys($this->meta['config_checks'][$scopes[$s]]);
|
|
|
|
for ($i = 0; $i < sizeof($identifiers); $i++) {
|
|
|
|
// check if option is required
|
2007-10-05 18:09:49 +00:00
|
|
|
if (isset($this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['required']) && ($options[$identifiers[$i]][0] == '')) {
|
2004-07-24 17:14:39 +00:00
|
|
|
$messages[] = $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['required_message'];
|
|
|
|
}
|
2004-09-26 15:45:40 +00:00
|
|
|
switch ($this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['type']) {
|
|
|
|
// check by regular expression (from account.inc)
|
|
|
|
case "ext_preg":
|
|
|
|
// ignore empty fileds
|
|
|
|
if ($options[$identifiers[$i]][0] == '') continue;
|
|
|
|
if (! get_preg($options[$identifiers[$i]][0], $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['regex'])) {
|
|
|
|
$messages[] = $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['error_message'];
|
2006-08-14 17:29:45 +00:00
|
|
|
}
|
2004-09-26 15:45:40 +00:00
|
|
|
break;
|
|
|
|
// check by regular expression (case insensitive)
|
|
|
|
case "regex_i":
|
|
|
|
// ignore empty fileds
|
|
|
|
if ($options[$identifiers[$i]][0] == '') continue;
|
|
|
|
if (! eregi($this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['regex'], $options[$identifiers[$i]][0])) {
|
|
|
|
$messages[] = $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['error_message'];
|
2006-08-14 17:29:45 +00:00
|
|
|
}
|
2004-09-26 15:45:40 +00:00
|
|
|
break;
|
|
|
|
// check by regular expression (case sensitive)
|
|
|
|
case "regex":
|
|
|
|
// ignore empty fileds
|
|
|
|
if ($options[$identifiers[$i]][0] == '') continue;
|
|
|
|
if (! ereg($this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['regex'], $options[$identifiers[$i]][0])) {
|
|
|
|
$messages[] = $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['error_message'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// check by integer comparison (greater)
|
|
|
|
case "int_greater":
|
|
|
|
// ignore if both fields are empty
|
|
|
|
if (($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name1']][0] == '') && ($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name2']][0] == '')) continue;
|
|
|
|
// print error message if only one field is empty
|
|
|
|
if (($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name1']][0] == '') || ($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name2']][0] == '')) {
|
|
|
|
$messages[] = $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['error_message'];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// compare
|
|
|
|
if (!(intval($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name1']][0]) > intval($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name2']][0]))) {
|
|
|
|
$messages[] = $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['error_message'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// check by integer comparison (greater or equal)
|
|
|
|
case "int_greaterOrEqual":
|
|
|
|
// ignore if both fields are empty
|
|
|
|
if (($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name1']][0] == '') && ($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name2']][0] == '')) continue;
|
|
|
|
// print error message if only one field is empty
|
|
|
|
if (($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name1']][0] == '') || ($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name2']][0] == '')) {
|
|
|
|
$messages[] = $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['error_message'];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// compare
|
|
|
|
if (!(intval($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name1']][0]) >= intval($options[$this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['cmp_name2']][0]))) {
|
|
|
|
$messages[] = $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['error_message'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// print error message on undefined type
|
|
|
|
default:
|
|
|
|
StatusMessage("ERROR", "Unsupported type!", $this->meta['config_checks'][$scopes[$s]][$identifiers[$i]]['type']);
|
|
|
|
break;
|
2004-07-24 17:14:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $messages;
|
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2004-08-17 15:16:17 +00:00
|
|
|
/**
|
|
|
|
* Returns an array with all fields available for this account type on the PDF
|
|
|
|
* output. This method may be overwritten by subclasses or it may be used
|
|
|
|
* by using entries in the $this->meta['PDF_fields'] array of the specific sub-
|
|
|
|
* class.
|
2006-08-14 17:29:45 +00:00
|
|
|
*
|
2004-08-17 15:16:17 +00:00
|
|
|
* @param string $scope account type
|
|
|
|
* @return array list of available fields for PDF output
|
|
|
|
*/
|
2005-06-19 09:40:30 +00:00
|
|
|
function get_pdfFields() {
|
2004-08-18 18:54:56 +00:00
|
|
|
return ((isset($this->meta['PDF_fields'])) ? $this->meta['PDF_fields'] : array());
|
2004-08-17 15:16:17 +00:00
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2004-08-17 15:16:17 +00:00
|
|
|
/**
|
2008-02-03 17:56:02 +00:00
|
|
|
* Returns a hashtable with all entries that may be printed out in the PDF.
|
|
|
|
* This method must be overwritten in case that there are non static values
|
|
|
|
* to be returned. The $this->meta['PDF_entries'] array may be used for static content.<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Format of returned hashtable:</b><br>
|
|
|
|
* <br>
|
|
|
|
* This function uses XML formatted commands to define the PDF output. Each part in the PDF
|
|
|
|
* document is surrounded by "<block>" and "</block>".<br>
|
|
|
|
* Inside the <block> tags there are different ways to format the output:
|
|
|
|
* <ul>
|
|
|
|
* <li><b>simple line with attribute name and value:</b> <block><key><b>attribute name</b></key><value><b>attribute value</b></value></block></li>
|
|
|
|
* <li><b>table:</b> <block><key><b>attribute name</b></key><tr><td><b>value</b><td><td><b>value</b><td></tr></block><block><tr><td><b>value</b></td><td><b>value</b><td></tr></block></li>
|
|
|
|
* </ul>
|
|
|
|
* <b>Special commands:</b>
|
|
|
|
* <ul>
|
|
|
|
* <li><b>Alignment in <td>:</b> You can specify the alignment in <td> tags with align=(L|R|C) (e.g. <td align=\"L\">)</li>
|
|
|
|
* <li><b>Cell width:</b> <td> allows an attribute "width" to set the cell width (e.g. <td width=20%> or <td width=30>).</li>
|
|
|
|
* <li><b>Line breaks:</b> Line breaks can be specified by adding a <<br>> tag. The new line will start at the left border of the PDF document.</li>
|
|
|
|
* </ul>
|
|
|
|
* <br>
|
|
|
|
* <b>Examples:</b><br>
|
|
|
|
* <br>
|
|
|
|
* <b>Simple name+value lines:</b><br><br>
|
|
|
|
* In most cases you will just want to display a single line per attribute with its name and value.<br>
|
|
|
|
* <br>
|
|
|
|
* 'myAttribute' => '<block><key>AttrName</key><value>12345</value></block>'<br>
|
|
|
|
* <br>
|
|
|
|
* This will give the following PDF output:<br>
|
|
|
|
* <br>
|
|
|
|
* <b>Attribute name:</b> 12345<br>
|
|
|
|
* <br>
|
|
|
|
* <br>
|
|
|
|
* <b>Multiline values:</b><br><br>
|
|
|
|
* Sometimes you have multivalued attributes where it is not applicable to write all values in one line but
|
|
|
|
* where you want to list your values one below the other or show a table. This can be done by using the <td> tag.<br>
|
|
|
|
* <br>
|
|
|
|
* This example only uses one column but you can just use more <td> tags per <block> tag to display more columns.<br>
|
|
|
|
* <br>
|
|
|
|
* 'myAttribute' => '<block><key>AttrName</key><tr><td align=\"L\">123</td></tr></block><block><tr><td align=\"L\">456</td></tr></block><block><tr><td align=\"L\">789</td></tr></block>'
|
|
|
|
*
|
2004-08-17 15:16:17 +00:00
|
|
|
* @param string $scope account type
|
2008-02-03 17:56:02 +00:00
|
|
|
* @return array PDF entries
|
|
|
|
*
|
|
|
|
* @see baseModule::get_metaData()
|
2004-08-17 15:16:17 +00:00
|
|
|
*/
|
|
|
|
function get_pdf_entries($scope = 'user') {
|
|
|
|
return ((isset($this->meta['PDF_entries'])) ? $this->meta['PDF_entries'] : array());
|
|
|
|
}
|
2004-07-24 17:14:39 +00:00
|
|
|
|
2004-08-23 20:01:40 +00:00
|
|
|
/**
|
|
|
|
* Returns an array containing all input columns for the file upload.
|
|
|
|
*
|
2008-02-03 18:46:11 +00:00
|
|
|
* <b>Syntax:</b>
|
|
|
|
* <br>
|
2004-08-23 20:01:40 +00:00
|
|
|
* <br> array(
|
|
|
|
* <br> string: name, // fixed non-translated name which is used as column name (should be of format: <module name>_<column name>)
|
2004-08-28 11:53:40 +00:00
|
|
|
* <br> string: description, // short descriptive name
|
|
|
|
* <br> string: help, // help ID
|
2004-08-23 20:01:40 +00:00
|
|
|
* <br> string: example, // example value
|
|
|
|
* <br> boolean: required // true, if user must set a value for this column
|
|
|
|
* <br> )
|
|
|
|
*
|
|
|
|
* @return array column list
|
|
|
|
*/
|
|
|
|
function get_uploadColumns() {
|
|
|
|
if (isset($this->meta['upload_columns'])) return $this->meta['upload_columns'];
|
|
|
|
else return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of module names which must be processed in building the account befor this module.
|
|
|
|
*
|
|
|
|
* @return array list of module names
|
|
|
|
*/
|
|
|
|
function get_uploadPreDepends() {
|
|
|
|
if (isset($this->meta['upload_preDepends'])) return $this->meta['upload_preDepends'];
|
|
|
|
else return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2004-09-19 08:28:03 +00:00
|
|
|
* In this function the LDAP account is built up.
|
2004-08-23 20:01:40 +00:00
|
|
|
*
|
|
|
|
* @param array $rawAccounts list of hash arrays (name => value) from user input
|
|
|
|
* @param array $partialAccounts list of hash arrays (name => value) which are later added to LDAP
|
2004-09-19 08:28:03 +00:00
|
|
|
* @param array $ids list of IDs for column position (e.g. "posixAccount_uid" => 5)
|
|
|
|
* @return array list of error messages if any
|
2004-08-23 20:01:40 +00:00
|
|
|
*/
|
2004-09-19 08:28:03 +00:00
|
|
|
function build_uploadAccounts($rawAccounts, $ids, &$partialAccounts) {
|
2004-08-23 20:01:40 +00:00
|
|
|
// must be implemented in sub modules
|
2004-09-19 08:28:03 +00:00
|
|
|
return array();
|
2004-08-23 20:01:40 +00:00
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2004-09-08 14:38:55 +00:00
|
|
|
/**
|
2008-02-03 18:37:05 +00:00
|
|
|
* This function returns the help entry array for a specific help id.
|
|
|
|
* The result is an hashtable with the following keys:<br>
|
|
|
|
* <ul>
|
|
|
|
* <li><b>Headline (required)</b><br>
|
|
|
|
* The headline of this help entry. Can consist of any alpha-numeric characters. No HTML/CSS elements are allowed.</li>
|
|
|
|
* <li><b>Text (required)</b><br>
|
|
|
|
* The text of the help entry which may contain any alpha-numeric characters.</li>
|
|
|
|
* <li><b>SeeAlso (optional)</b><br>
|
|
|
|
* A reference to anonther related web site. It must be an array containing a field called "text" with the link text
|
|
|
|
* that should be displayed and a field called "link" which is the link target.</li>
|
|
|
|
* </ul>
|
|
|
|
* <br>
|
|
|
|
* <b>Example:</b><br>
|
|
|
|
* <br>
|
|
|
|
* array('Headline' => 'This is the head line', 'Text' => 'Help content', 'SeeAlso' => array('text' => 'LAM homepage', 'link' => 'http://lam.sf.net'))
|
2006-08-14 17:29:45 +00:00
|
|
|
*
|
2004-09-08 14:38:55 +00:00
|
|
|
* @param string $id The id string for the help entry needed.
|
|
|
|
* @return array The desired help entry.
|
2008-02-03 18:37:05 +00:00
|
|
|
*
|
|
|
|
* @see baseModule::get_metaData()
|
2004-09-08 14:38:55 +00:00
|
|
|
*/
|
2004-10-30 16:46:06 +00:00
|
|
|
function get_help($id) {
|
2004-09-08 14:38:55 +00:00
|
|
|
if(isset($this->meta['help'][$id])) {
|
|
|
|
return $this->meta['help'][$id];
|
|
|
|
}
|
2004-10-30 16:46:06 +00:00
|
|
|
elseif(isset($this->meta['help'][$this->scope][$id])) {
|
|
|
|
return $this->meta['help'][$this->scope][$id];
|
2004-09-08 18:26:00 +00:00
|
|
|
}
|
2004-09-08 14:38:55 +00:00
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2004-08-23 20:01:40 +00:00
|
|
|
|
2005-08-13 09:19:40 +00:00
|
|
|
/**
|
|
|
|
* This function is used to check if this module page can be displayed.
|
|
|
|
* It returns false if a module depends on data from other modules which was not yet entered.
|
|
|
|
*
|
|
|
|
* @return boolean true, if page can be displayed
|
|
|
|
*/
|
|
|
|
function module_ready() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This functions is used to check if all settings for this module have been made.
|
|
|
|
*
|
|
|
|
* @return boolean true, if settings are complete
|
|
|
|
*/
|
|
|
|
function module_complete() {
|
|
|
|
return true;
|
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2005-08-26 08:53:16 +00:00
|
|
|
/**
|
|
|
|
* Controls if the module button the account page is visible and activated.
|
|
|
|
*
|
|
|
|
* @return string status ("enabled", "disabled", "hidden")
|
|
|
|
*/
|
|
|
|
function getButtonStatus() {
|
|
|
|
return "enabled";
|
|
|
|
}
|
2005-08-13 09:19:40 +00:00
|
|
|
|
2004-10-19 18:18:46 +00:00
|
|
|
/**
|
|
|
|
* This function executes one post upload action.
|
|
|
|
*
|
|
|
|
* @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 $temp variable to store temporary data between two post actions
|
|
|
|
* @return array current status
|
|
|
|
* <br> array (
|
|
|
|
* <br> 'status' => 'finished' | 'inProgress'
|
|
|
|
* <br> 'progress' => 0..100
|
|
|
|
* <br> 'errors' => array (<array of parameters for StatusMessage>)
|
|
|
|
* <br> )
|
|
|
|
*/
|
|
|
|
function doUploadPostActions($data, $ids, $failed, &$temp) {
|
|
|
|
return array(
|
|
|
|
'status' => 'finished',
|
|
|
|
'progress' => 100,
|
|
|
|
'errors' => array()
|
|
|
|
);
|
|
|
|
}
|
2004-06-08 18:39:53 +00:00
|
|
|
|
2006-02-01 19:10:51 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of modifications which have to be made to the LDAP account.
|
|
|
|
*
|
|
|
|
* @return array list of modifications
|
|
|
|
* <br>This function returns an array with 3 entries:
|
|
|
|
* <br>array( DN1 ('add' => array($attr), 'remove' => array($attr), 'modify' => array($attr)), DN2 .... )
|
|
|
|
* <br>DN is the DN to change. It may be possible to change several DNs (e.g. create a new user and add him to some groups via attribute memberUid)
|
|
|
|
* <br>"add" are attributes which have to be added to LDAP entry
|
|
|
|
* <br>"remove" are attributes which have to be removed from LDAP entry
|
|
|
|
* <br>"modify" are attributes which have to been modified in LDAP entry
|
|
|
|
*/
|
|
|
|
function save_attributes() {
|
2007-10-03 19:18:07 +00:00
|
|
|
return $this->getAccountContainer()->save_module_attributes($this->attributes, $this->orig);
|
2006-02-01 19:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-02-22 18:25:24 +00:00
|
|
|
/**
|
2007-02-25 13:48:51 +00:00
|
|
|
* Allows the module to run commands before the LDAP entry is changed or created.
|
|
|
|
* An error message should be printed if the function returns false.
|
|
|
|
*
|
|
|
|
* @param boolean $newAccount new account
|
|
|
|
* @return true, if no problems occured
|
|
|
|
*/
|
|
|
|
function preModifyActions($newAccount) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows the module to run commands after the LDAP entry is changed or created.
|
2007-02-22 18:25:24 +00:00
|
|
|
*
|
|
|
|
* @param boolean $newAccount new account
|
|
|
|
*/
|
|
|
|
function postModifyActions($newAccount) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-02-25 13:48:51 +00:00
|
|
|
* Allows the module to run commands before the LDAP entry is deleted.
|
|
|
|
* An error message should be printed if the function returns false.
|
|
|
|
*
|
|
|
|
* @return true, if no problems occured
|
|
|
|
*/
|
|
|
|
function preDeleteActions() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows the module to run commands after the LDAP entry is deleted.
|
2007-02-22 18:25:24 +00:00
|
|
|
*/
|
|
|
|
function postDeleteActions() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-04-04 16:54:10 +00:00
|
|
|
/**
|
|
|
|
* Dummy function for modules which use no special options on account deletion.
|
|
|
|
*
|
|
|
|
* @return List of LDAP operations, same as for save_attributes()
|
|
|
|
*/
|
2006-08-14 17:29:45 +00:00
|
|
|
function delete_attributes() {
|
2005-04-04 16:54:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dummy function for modules which do not print extra HTML code on account deletion.
|
|
|
|
*
|
|
|
|
* @return meta HTML code
|
|
|
|
*/
|
2006-08-14 17:29:45 +00:00
|
|
|
function display_html_delete() {
|
2005-04-04 16:54:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2006-04-05 15:48:27 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of managed object classes for this module.
|
|
|
|
* This is used to fix incorrect spelled object class names.
|
|
|
|
*
|
|
|
|
* @return array list of object classes
|
|
|
|
*/
|
|
|
|
function getManagedObjectClasses() {
|
|
|
|
if (isset($this->meta['objectClasses']) && is_array($this->meta['objectClasses'])) return $this->meta['objectClasses'];
|
|
|
|
else return array();
|
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2006-05-01 16:13:10 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of aliases for LDAP attributes.
|
|
|
|
* All alias attributes will be renamed to the given attribute names.
|
|
|
|
*
|
|
|
|
* @return array list of aliases (alias name => attribute name)
|
|
|
|
*/
|
|
|
|
function getLDAPAliases() {
|
|
|
|
if (isset($this->meta['LDAPaliases']) && is_array($this->meta['LDAPaliases'])) return $this->meta['LDAPaliases'];
|
|
|
|
else return array();
|
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2006-05-13 08:55:31 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of LDAP attributes which are managed by this module.
|
|
|
|
* All attribute names will be renamed to match the given spelling.
|
|
|
|
*
|
|
|
|
* @return array list of attributes
|
|
|
|
*/
|
|
|
|
function getManagedAttributes() {
|
|
|
|
if (isset($this->meta['attributes']) && is_array($this->meta['attributes'])) return $this->meta['attributes'];
|
|
|
|
else return array();
|
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2006-04-29 09:58:17 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of required PHP extensions.
|
|
|
|
*
|
|
|
|
* @return array extensions
|
|
|
|
*/
|
|
|
|
function getRequiredExtensions() {
|
|
|
|
if (isset($this->meta['extensions']) && is_array($this->meta['extensions'])) return $this->meta['extensions'];
|
2006-08-14 17:29:45 +00:00
|
|
|
else return array();
|
2006-04-29 09:58:17 +00:00
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2006-06-28 15:12:29 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of possible search attributes for the self service.
|
|
|
|
*
|
|
|
|
* @return array attributes
|
|
|
|
*/
|
|
|
|
function getSelfServiceSearchAttributes() {
|
|
|
|
if (isset($this->meta['selfServiceSearchAttributes']) && is_array($this->meta['selfServiceSearchAttributes'])) return $this->meta['selfServiceSearchAttributes'];
|
2006-08-14 17:29:45 +00:00
|
|
|
else return array();
|
2006-06-28 15:12:29 +00:00
|
|
|
}
|
|
|
|
|
2006-07-16 17:15:37 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of possible input fields and their descriptions
|
|
|
|
* Format: array(<field identifier> => <field description>)
|
|
|
|
*
|
|
|
|
* @return array fields
|
|
|
|
*/
|
|
|
|
function getSelfServiceFields() {
|
|
|
|
if (isset($this->meta['selfServiceFieldSettings']) && is_array($this->meta['selfServiceFieldSettings'])) return $this->meta['selfServiceFieldSettings'];
|
2006-08-14 17:29:45 +00:00
|
|
|
else return array();
|
2006-07-16 17:15:37 +00:00
|
|
|
}
|
2006-08-14 17:29:45 +00:00
|
|
|
|
2006-07-23 15:04:12 +00:00
|
|
|
/**
|
|
|
|
* Returns the meta HTML code for each input field.
|
|
|
|
* format: array(<field1> => array(<META HTML>), ...)
|
|
|
|
* It is not possible to display help links.
|
|
|
|
*
|
|
|
|
* @param array $fields list of active fields
|
|
|
|
* @param array $attributes attributes of LDAP account (attribute names in lower case)
|
|
|
|
* @return array meta HTML
|
|
|
|
*/
|
|
|
|
function getSelfServiceOptions($fields, $attributes) {
|
|
|
|
// this function must be overwritten by subclasses.
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if all input values are correct and returns the LDAP commands which should be executed.
|
|
|
|
*
|
|
|
|
* @param string $fields input fields
|
|
|
|
* @param array $attributes LDAP attributes
|
|
|
|
* @return array messages and LDAP commands (array('messages' => array(), 'add' => array(), 'del' => array(), 'mod' => array()))
|
|
|
|
*/
|
|
|
|
function checkSelfServiceOptions($fields, $attributes) {
|
|
|
|
$return = array('messages' => array(), 'add' => array(), 'del' => array(), 'mod' => array());
|
|
|
|
return $return;
|
|
|
|
}
|
2005-04-04 16:54:10 +00:00
|
|
|
|
2006-11-21 17:37:12 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of self service configuration settings.
|
|
|
|
*
|
|
|
|
* @return array settings
|
|
|
|
*/
|
|
|
|
function getSelfServiceSettings() {
|
|
|
|
if (isset($this->meta['selfServiceSettings']) && is_array($this->meta['selfServiceSettings'])) return $this->meta['selfServiceSettings'];
|
|
|
|
else return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the self service settings are valid.
|
|
|
|
*
|
|
|
|
* @param array $options settings
|
|
|
|
* @return array error messages
|
|
|
|
*/
|
|
|
|
function checkSelfServiceSettings($options) {
|
|
|
|
// needs to be implemented by the subclasses, if needed
|
|
|
|
return array();
|
|
|
|
}
|
2007-10-03 18:02:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the accountContainer object.
|
|
|
|
*
|
|
|
|
* @return accountContainer accountContainer object
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
protected function getAccountContainer() {
|
|
|
|
if (isset($this->base) && isset($_SESSION[$this->base])) {
|
|
|
|
return $_SESSION[$this->base];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2007-10-10 19:04:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the LDAP attributes which are managed in this module.
|
|
|
|
*
|
|
|
|
* @return array attributes
|
|
|
|
*/
|
|
|
|
public function getAttributes() {
|
|
|
|
return $this->attributes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the LDAP attributes which are managed in this module (with unchanged values).
|
|
|
|
*
|
|
|
|
* @return array attributes
|
|
|
|
*/
|
|
|
|
public function getOriginalAttributes() {
|
|
|
|
return $this->orig;
|
|
|
|
}
|
2007-11-19 18:42:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the path to the module icon.
|
2007-12-01 12:34:52 +00:00
|
|
|
* The path must be releative to graphics (e.g. key.png). You can also set $this->meta['icon'].
|
|
|
|
* The preferred size is 32x32px.
|
2007-11-19 18:42:03 +00:00
|
|
|
*
|
|
|
|
* @return unknown
|
|
|
|
*/
|
|
|
|
public function getIcon() {
|
|
|
|
if (isset($this->meta['icon'])) {
|
|
|
|
return $this->meta['icon'];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2006-11-21 17:37:12 +00:00
|
|
|
|
2004-10-19 18:18:46 +00:00
|
|
|
}
|
2004-06-08 18:39:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
?>
|