2007-12-09 09:03:15 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* eGgroupWare setup - test or create the ldap connection and hierarchy
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @package setup
|
|
|
|
* @copyright (c) 2007 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setup command: test or create the ldap connection and hierarchy
|
|
|
|
*/
|
|
|
|
class setup_cmd_ldap extends setup_cmd
|
|
|
|
{
|
2008-01-14 06:44:32 +01:00
|
|
|
/**
|
|
|
|
* Allow to run this command via setup-cli
|
|
|
|
*/
|
|
|
|
const SETUP_CLI_CALLABLE = true;
|
|
|
|
|
2007-12-09 09:03:15 +01:00
|
|
|
/**
|
|
|
|
* Instance of ldap object
|
|
|
|
*
|
|
|
|
* @var ldap
|
|
|
|
*/
|
|
|
|
private $test_ldap;
|
|
|
|
|
|
|
|
/**
|
2007-12-09 20:00:16 +01:00
|
|
|
* Constructor
|
2007-12-09 09:03:15 +01:00
|
|
|
*
|
|
|
|
* @param string/array $domain domain-name to customize the defaults or array with all parameters
|
|
|
|
* @param string $ldap_type db-type (mysql, pgsql, ...)
|
|
|
|
* @param string $ldap_host=null
|
|
|
|
* @param string $ldap_suffix=null base of the whole ldap install, default "dc=local"
|
|
|
|
* @param string $ldap_admin=null root-dn needed to create new entries in the suffix
|
|
|
|
* @param string $ldap_admin_pw=null
|
|
|
|
* @param string $ldap_base=null base of the instance, default "o=$domain,$suffix"
|
2007-12-11 02:28:07 +01:00
|
|
|
* @param string $ldap_root_dn=null root-dn used for the instance, default "cn=admin,$base"
|
2007-12-09 09:03:15 +01:00
|
|
|
* @param string $ldap_root_pw=null
|
|
|
|
* @param string $ldap_context=null ou for accounts, default "ou=accounts,$base"
|
|
|
|
* @param string $ldap_search_filter=null search-filter for accounts, default "(uid=%user)"
|
2007-12-11 02:28:07 +01:00
|
|
|
* @param string $ldap_group_context=null ou for groups, default "ou=groups,$base"
|
2007-12-09 09:03:15 +01:00
|
|
|
* @param string $sub_command='create_ldap' 'create_ldap', 'test_ldap', 'test_ldap_root'
|
|
|
|
*/
|
|
|
|
function __construct($domain,$ldap_host=null,$ldap_suffix=null,$ldap_admin=null,$ldap_admin_pw=null,
|
2007-12-11 02:28:07 +01:00
|
|
|
$ldap_base=null,$ldap_root_dn=null,$ldap_root_pw=null,$ldap_context=null,$ldap_search_filter=null,
|
|
|
|
$ldap_group_context=null,$sub_command='create_ldap')
|
2007-12-09 09:03:15 +01:00
|
|
|
{
|
|
|
|
if (!is_array($domain))
|
|
|
|
{
|
2007-12-10 05:59:01 +01:00
|
|
|
$domain = array(
|
2007-12-09 09:03:15 +01:00
|
|
|
'domain' => $domain,
|
|
|
|
'ldap_host' => $ldap_host,
|
|
|
|
'ldap_suffix' => $ldap_suffix,
|
|
|
|
'ldap_admin' => $ldap_admin,
|
|
|
|
'ldap_admin_pw' => $ldap_admin_pw,
|
|
|
|
'ldap_base' => $ldap_base,
|
2007-12-11 02:28:07 +01:00
|
|
|
'ldap_root_dn' => $ldap_root_dn,
|
2007-12-09 09:03:15 +01:00
|
|
|
'ldap_root_pw' => $ldap_root_pw,
|
|
|
|
'ldap_context' => $ldap_context,
|
|
|
|
'ldap_search_filter' => $ldap_search_filter,
|
2007-12-11 02:28:07 +01:00
|
|
|
'ldap_group_context' => $ldap_group_context,
|
2007-12-09 09:03:15 +01:00
|
|
|
'sub_command' => $sub_command
|
|
|
|
);
|
|
|
|
}
|
|
|
|
//echo __CLASS__.'::__construct()'; _debug_array($domain);
|
|
|
|
admin_cmd::__construct($domain);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-12-13 03:41:55 +01:00
|
|
|
* run the command: test or create the ldap connection and hierarchy
|
2007-12-09 09:03:15 +01:00
|
|
|
*
|
|
|
|
* @param boolean $check_only=false only run the checks (and throw the exceptions), but not the command itself
|
2007-12-13 03:41:55 +01:00
|
|
|
* @return string success message
|
2007-12-09 09:03:15 +01:00
|
|
|
* @throws Exception(lang('Wrong credentials to access the header.inc.php file!'),2);
|
|
|
|
* @throws Exception('header.inc.php not found!');
|
|
|
|
*/
|
|
|
|
protected function exec($check_only=false)
|
|
|
|
{
|
|
|
|
if (!empty($this->domain) && !preg_match('/^([a-z0-9_-]+\.)*[a-z0-9]+/i',$this->domain))
|
|
|
|
{
|
|
|
|
throw new egw_exception_wrong_userinput(lang("'%1' is no valid domain name!",$this->domain));
|
|
|
|
}
|
|
|
|
if ($this->remote_id && $check_only) return true; // further checks can only done locally
|
|
|
|
|
|
|
|
$this->_merge_defaults();
|
|
|
|
//_debug_array($this->as_array());
|
|
|
|
|
2007-12-11 02:28:07 +01:00
|
|
|
switch($this->sub_command)
|
2007-12-09 09:03:15 +01:00
|
|
|
{
|
2007-12-11 02:28:07 +01:00
|
|
|
case 'test_ldap_root':
|
|
|
|
$msg = $this->connect($this->ldap_admin,$this->ldap_admin_pw);
|
|
|
|
break;
|
|
|
|
case 'test_ldap':
|
|
|
|
$msg = $this->connect();
|
|
|
|
break;
|
|
|
|
case 'create_ldap':
|
|
|
|
default:
|
|
|
|
$msg = $this->create();
|
|
|
|
break;
|
2007-12-09 09:03:15 +01:00
|
|
|
}
|
|
|
|
return $msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connect to ldap server
|
|
|
|
*
|
2007-12-11 02:28:07 +01:00
|
|
|
* @param string $dn=null default $this->ldap_root_dn
|
2007-12-09 09:03:15 +01:00
|
|
|
* @param string $pw=null default $this->ldap_root_pw
|
|
|
|
* @throws egw_exception_wrong_userinput Can not connect to ldap ...
|
|
|
|
*/
|
|
|
|
private function connect($dn=null,$pw=null)
|
|
|
|
{
|
2007-12-11 02:28:07 +01:00
|
|
|
if (is_null($dn)) $dn = $this->ldap_root_dn;
|
2007-12-09 09:03:15 +01:00
|
|
|
if (is_null($pw)) $pw = $this->ldap_root_pw;
|
|
|
|
|
|
|
|
if (!$pw) // ldap::ldapConnect use the current eGW's pw otherwise
|
|
|
|
{
|
|
|
|
throw new egw_exception_wrong_userinput(lang('You need to specify a password!'));
|
|
|
|
}
|
|
|
|
$this->test_ldap = new ldap();
|
|
|
|
|
|
|
|
$error_rep = error_reporting();
|
|
|
|
//error_reporting($error_rep & ~E_WARNING); // switch warnings of, in case they are on
|
|
|
|
ob_start();
|
|
|
|
$ds = $this->test_ldap->ldapConnect($this->ldap_host,$dn,$pw);
|
|
|
|
ob_end_clean();
|
|
|
|
error_reporting($error_rep);
|
|
|
|
|
|
|
|
if (!$ds)
|
|
|
|
{
|
|
|
|
throw new egw_exception_wrong_userinput(lang('Can not connect to LDAP server on host %1 using DN %2!',
|
|
|
|
$this->ldap_host,$dn).($this->test_ldap->ds ? ' ('.ldap_error($this->test_ldap->ds).')' : ''));
|
|
|
|
}
|
|
|
|
return lang('Successful connected to LDAP server on %1 using DN %2.',$this->ldap_host,$dn);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check and if does not yet exist create the new database and user
|
|
|
|
*
|
|
|
|
* The check will fail if the database exists, but already contains tables
|
|
|
|
*
|
|
|
|
* @return string with success message
|
|
|
|
* @throws egw_exception_wrong_userinput
|
|
|
|
*/
|
|
|
|
private function create()
|
|
|
|
{
|
|
|
|
$this->connect($this->ldap_admin,$this->ldap_admin_pw);
|
|
|
|
|
|
|
|
foreach(array(
|
|
|
|
$this->ldap_base => array(),
|
|
|
|
$this->ldap_context => array(),
|
2007-12-11 02:28:07 +01:00
|
|
|
$this->ldap_group_context => array(),
|
|
|
|
$this->ldap_root_dn => array('userPassword' => '{crypt}'.crypt($this->ldap_root_pw)),
|
2007-12-09 09:03:15 +01:00
|
|
|
) as $dn => $extra)
|
|
|
|
{
|
2007-12-11 02:28:07 +01:00
|
|
|
if (!$this->_create_node($dn,$extra,$check_only) && $dn == $this->ldap_root_dn)
|
2007-12-09 09:03:15 +01:00
|
|
|
{
|
|
|
|
// ldap_root already existed, lets check the pw is correct
|
|
|
|
$this->connect();
|
|
|
|
}
|
|
|
|
}
|
2007-12-09 20:00:16 +01:00
|
|
|
return lang('Successful connected to LDAP server on %1 and created/checked required structur %2.',
|
2007-12-09 09:03:15 +01:00
|
|
|
$this->ldap_host,$this->ldap_base);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* array with objectclasses for the objects we can create
|
|
|
|
*
|
|
|
|
* @var array of name => objectClass pairs (or array with multiple)
|
|
|
|
*/
|
|
|
|
static $requiredObjectclasses = array(
|
|
|
|
'o' => 'organization',
|
|
|
|
'ou' => 'organizationalUnit',
|
|
|
|
'cn' => array('namedObject','simpleSecurityObject'),
|
|
|
|
'dc' => array('organization','dcObject'),
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new node in the ldap tree
|
|
|
|
*
|
|
|
|
* @param string $dn dn to create, eg. "cn=admin,dc=local"
|
|
|
|
* @param array $extra=array() extra attributes to set
|
|
|
|
* @return boolean true if the node was create, false if it was already there
|
|
|
|
* @throws egw_exception_wrong_userinput
|
|
|
|
*/
|
|
|
|
private function _create_node($dn,$extra=array())
|
|
|
|
{
|
|
|
|
//echo "<p>_create_node($dn,".print_r($extra,true).")</p>\n";
|
|
|
|
// check if the node already exists and return if it does
|
|
|
|
if (@ldap_read($this->test_ldap->ds,$dn,'objectClass=*'))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
list($node,$base) = explode(',',$dn,2);
|
|
|
|
|
|
|
|
if (!@ldap_read($this->test_ldap->ds,$base,'objectClass=*'))
|
|
|
|
{
|
|
|
|
$this->_create_node($base); // create the base if it's not already there
|
|
|
|
}
|
|
|
|
// now we need to create the node itself
|
|
|
|
list($name,$value) = explode('=',$node);
|
|
|
|
|
|
|
|
if (!isset(self::$requiredObjectclasses[$name]))
|
|
|
|
{
|
|
|
|
throw new egw_exception_wrong_userinput(lang('Can not create DN %1!',$dn).' '.
|
|
|
|
lang('Supported node types:').implode(', ',array_keys(self::$requiredObjectclasses)));
|
|
|
|
}
|
|
|
|
if ($name == 'dc') $extra['o'] = $value; // required by organisation
|
|
|
|
|
|
|
|
if (!@ldap_add($this->test_ldap->ds,$dn,$attr = array(
|
|
|
|
$name => $value,
|
|
|
|
'objectClass' => self::$requiredObjectclasses[$name],
|
|
|
|
)+$extra))
|
|
|
|
{
|
|
|
|
throw new egw_exception_wrong_userinput(lang('Can not create DN %1!',$dn).
|
|
|
|
' ('.ldap_error($this->test_ldap->ds).', attributes='.print_r($attr,true).')');
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return default database settings for a given domain
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
static function defaults()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'ldap_host' => 'localhost',
|
|
|
|
'ldap_suffix' => 'dc=local',
|
|
|
|
'ldap_admin' => 'cn=admin,$suffix',
|
|
|
|
'ldap_admin_pw' => '',
|
|
|
|
'ldap_base' => 'o=$domain,$suffix',
|
2007-12-11 02:28:07 +01:00
|
|
|
'ldap_root_dn' => 'cn=admin,$base',
|
|
|
|
'ldap_root_pw' => self::randomstring(),
|
2007-12-09 09:03:15 +01:00
|
|
|
'ldap_context' => 'ou=accounts,$base',
|
|
|
|
'ldap_search_filter' => '(uid=%user)',
|
2007-12-11 02:28:07 +01:00
|
|
|
'ldap_group_context' => 'ou=groups,$base',
|
2007-12-09 09:03:15 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Merges the default into the current properties, if they are empty or contain placeholders
|
|
|
|
*/
|
|
|
|
private function _merge_defaults()
|
|
|
|
{
|
2007-12-11 02:28:07 +01:00
|
|
|
foreach(self::defaults() as $name => $default)
|
2007-12-09 09:03:15 +01:00
|
|
|
{
|
|
|
|
if (!$this->$name)
|
|
|
|
{
|
|
|
|
//echo "<p>setting $name='{$this->$name}' to it's default='$default'</p>\n";
|
|
|
|
$this->set_defaults[$name] = $this->$name = $default;
|
|
|
|
}
|
|
|
|
if (strpos($this->$name,'$') !== false)
|
|
|
|
{
|
|
|
|
$this->$name = str_replace(array(
|
|
|
|
'$domain',
|
|
|
|
'$suffix',
|
|
|
|
'$base',
|
|
|
|
),array(
|
|
|
|
$this->domain,
|
|
|
|
$this->ldap_suffix,
|
|
|
|
$this->ldap_base,
|
|
|
|
),$this->$name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|