summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 01c082f)
raw | patch | inline | side by side (parent: 01c082f)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 21 Apr 2008 08:24:55 +0000 (08:24 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 21 Apr 2008 08:24:55 +0000 (08:24 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10578 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_config.inc | patch | blob | history |
index a4d7888fa7d50d9222f733663b8b79dac3d867bb..3ff6be3f5f5262c2fe31856bd305dba7fde1eb15 100644 (file)
/* Build new connection */
$this->ldap= ldap_init ($this->current['SERVER'], $this->current['BASE'],
- $this->current['ADMIN'], $this->current['PASSWORD']);
+ $this->get_admin_dn(), $this->get_admin_password());
/* Check for connection */
if (is_null($this->ldap) || (is_int($this->ldap) && $this->ldap == 0)){
/* Convert BASE to have escaped special characters */
$this->current['BASE']= @LDAP::convert($this->current['BASE']);
+ /* Load server informations */
+ $this->load_servers();
+ }
+
+
+ function update_credentials_from_config()
+ {
/* Parse LDAP referral informations */
if (!isset($this->current['ADMIN']) || !isset($this->current['PASSWORD'])){
$url= $this->current['SERVER'];
$this->current['PASSWORD']= $referral['PASSWORD'];
}
- /* Load server informations */
- $this->load_servers();
+ /* Bail out if problematic */
+ if (!isset($this->current['ADMIN']) || !isset($this->current['PASSWORD'])){
+ msg_dialog::display(_("Configuration error"), _("Cannot find any administrative LDAP credentials!"), FATAL_ERROR_DIALOG);
+ exit;
+ }
+ }
+
+
+ function encode_server_url($url, $base, $val)
+ {
+ return (preg_replace("/_+/", "_", "HTTP_".strtr(strtoupper($url."_".md5($base)."_$val"), "-:/", "___")));
}
+
+ function get_admin_dn()
+ {
+ $enc= $this->encode_server_url($this->current['SERVER'], $this->current['BASE'], "ADMIN");
+
+ /* Answer from http request */
+ if (isset($_SERVER[$enc])){
+ return $_SERVER[$enc];
+ }
+
+ /* Answer in old style for compatibility */
+ $this->update_credentials_from_config();
+ return $this->current['ADMIN'];
+ }
+
+
+ function get_admin_password()
+ {
+ $enc= $this->encode_server_url($this->current['SERVER'], $this->current['BASE'], "PASSWORD");
+
+ /* Answer from http request */
+ if (isset($_SERVER[$enc])){
+ return $_SERVER[$enc];
+ }
+
+ /* Answer in old style for compatibility */
+ $this->update_credentials_from_config();
+ return $this->current['PASSWORD'];
+ }
+
+
function load_servers ()
{
/* Only perform actions if current is set */
if ($ldap->count()){
$attrs= $ldap->fetch();
$this->data['SERVERS']['KERBEROS']= array( 'SERVER' => $attrs['cn'][0],
- 'REALM' => $attrs['goKrbRealm'][0],
- 'ADMIN' => $attrs['goKrbAdmin'][0],
- 'PASSWORD' => $attrs['goKrbPassword'][0]);
+ 'REALM' => $attrs['goKrbRealm'][0]);
}
/* Get cups server. FIXME: only one is supported currently */