1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2007 Fabian Hickert
Copyright (C) 2011-2016 FusionDirectory
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
class Step_Ldap extends setupStep
{
var $header_image = 'geticon.php?context=places&icon=network-server&size=48';
var $connect_id = FALSE;
var $bind_id = FALSE;
static function getAttributesInfo()
{
return array(
'connection' => array(
'name' => _('LDAP connection'),
'attrs' => array(
new StringAttribute(
_('Location name'), _('Name of this connexion to show in the LDAP server list'),
'location', TRUE,
'default'
),
new StringAttribute(
_('Connection URI'), _('URI to contact the LDAP server. Usually starts with ldap://'),
'connection', TRUE,
'ldap://localhost:389'
),
new BooleanAttribute(
_('TLS connection'), _('Should TLS be used to connect to this LDAP server?'),
'tls', FALSE
),
new SelectAttribute(
_('Base'), _('The LDAP directory base'),
'base', TRUE
)
)
),
'auth' => array(
'name' => _('Authentication'),
'attrs' => array(
new CompositeAttribute(
_('DN of the admin account to use for binding to the LDAP. Base is automatically appended.'),
'admin',
array(
new StringAttribute(
'', '',
'admin_given', TRUE,
'cn=admin'
),
new DisplayAttribute(
'', '', 'base_append'
)
),
'^(.+)(.*)$',
'%s%s',
'',
_('Admin DN')
),
new PasswordAttribute(
_('Admin password'), _('Password for the admin account to use for binding to the LDAP'),
'password', TRUE
),
)
),
'status' => array(
'name' => _('Status'),
'attrs' => array(
new DisplayAttribute(
_('Current status'), _('Result of last attempt at checking LDAP binding and basic schemas'),
'status', FALSE
),
)
)
);
}
function __construct($parent)
{
parent::__construct($parent);
$this->update_strings();
$this->attributesAccess['base']->setSubmitForm(TRUE);
$this->attributesAccess['admin']->setLinearRendering(TRUE);
$this->attributesAccess['status']->setAllowHTML(TRUE);
$this->update_base_choices();
$this->status = $this->get_connection_status();
}
function update_strings()
{
$this->s_short_name = _('LDAP setup');
$this->s_title = _('LDAP connection setup');
$this->s_description = _('This dialog performs the basic configuration of the LDAP connectivity for FusionDirectory.');
}
function update_base_choices()
{
$attr = @LDAP::get_naming_contexts($this->connection);
unset($attr['count']);
$this->attributesAccess['base']->setChoices($attr);
$this->attributesAccess['admin']->attributes[1]->setValue(','.$this->base);
}
function save_object()
{
$base = $this->base;
$connection = $this->connection;
parent::save_object();
$this->connection = preg_replace("/\/$/", "", $this->connection);
if (($this->base != $base) || ($this->connection != $connection)) {
$this->parent->disable_steps_from(($this->parent->step_name_to_id(get_class($this))) + 1);
if ($this->connection != $connection) {
$this->update_base_choices();
}
}
$this->attributesAccess['admin']->attributes[1]->setValue(','.$this->base);
$this->status = $this->get_connection_status();
if ($this->bind_id && !empty($this->admin) && !empty($this->base)) {
$this->is_completed = TRUE;
$this->parent->read_ldap_config();
} else {
$this->is_completed = FALSE;
}
}
function get_connection_status()
{
$this->connect_id = FALSE;
$this->bind_id = FALSE;
@ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, 7);
$this->connect_id = ldap_connect($this->connection);
if ($this->tls) {
if (@ldap_set_option($this->connect_id, LDAP_OPT_REFERRALS, 0)) {
if (@ldap_start_tls($this->connect_id)) {
$this->bind_id = @ldap_bind($this->connect_id, $this->admin, $this->password);
}
}
@ldap_set_option($this->connect_id, LDAP_OPT_PROTOCOL_VERSION, 3);
} else {
@ldap_set_option($this->connect_id, LDAP_OPT_PROTOCOL_VERSION, 3);
$this->bind_id = @ldap_bind($this->connect_id, $this->admin, $this->password);
}
if (!$this->bind_id) {
if (empty($this->admin)) {
$str = sprintf(_("Anonymous bind to server '%s' failed!"), $this->connection);
} else {
$str = sprintf(_("Bind as user '%s' failed!"), $this->admin, $this->connection);
}
$str .= '<input type="submit" name="ldap_retry" value="'._('Retry').'"/>';
return '<div style="color:red;">'.$str.'</div>';
} else {
if (empty($this->admin)) {
$str = sprintf(_("Anonymous bind to server '%s' succeeded."), $this->connection);
$str .= '<input type="submit" name="ldap_refresh" value="'._('Refresh').'"/>';
return '<div style="color:blue;">'.$str.'</div> <div style="color:red;">'._('Please specify user and password!').'</div>';
} else {
$str = sprintf(_("Bind as user '%s' to server '%s' succeeded!"), $this->admin, $this->connection);
$str .= '<input type="submit" name="ldap_refresh" value="'._('Refresh').'"/>';
return '<div style="color:green;">'.$str.'</div>';
}
}
}
function check()
{
$error = parent::check();
if (!empty($error)) {
return $error;
} elseif ($this->is_completed) {
$checked = check_schema($this->parent->captured_values);
$error = array();
foreach ($checked as $check) {
if (!$check['STATUS']) {
if ($check['IS_MUST_HAVE']) {
$error[] = sprintf(_("%s\nSchema \"%s\": %s"), $check['MSG'], $check['SCHEMA_FILE'], $check['INFO']);
} else {
msg_dialog::display(_('Warning'), sprintf(_("%s\nSchema \"%s\": %s"), $check['MSG'], $check['SCHEMA_FILE'], $check['INFO']), WARNING_DIALOG);
}
}
}
if (!empty($error)) {
$this->is_completed = FALSE;
}
return $error;
}
}
}
?>
|