Code

Udpated JS focus,
[gosa.git] / setup / class_setupStep_Ldap.inc
1 <?php
3 /*
4    This code is part of GOsa (https://gosa.gonicus.de)
5    Copyright (C) 2007 Fabian Hickert
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20 */
23 class Step_Ldap extends setup_step
24 {
25   var $connection = "ldap://localhost:389";
26   var $location   = "default";
27   var $admin      = "";
28   var $password   = "";
29   var $base       = "";
30   var $append_base_to_admin_dn = FALSE;
31   var $admin_given = "";
33   var $connect_id = FALSE;
34   var $bind_id    = FALSE;
36   var $resolve_filter = "*";
37   var $resolve_user   = FALSE;
38   var $tls            = FALSE;
40   var $rfc2307bis             = FALSE;
41   var $attributes = array("connection","location","admin","password","base","admin_given","append_base_to_admin_dn","tls","rfc2307bis");
43   var $header_image= "images/proxy.png";
45   function Step_Ldap()
46   {
47     $this->update_strings();
48   }
50   
51   function update_strings()
52   {
53     $this->s_title      = _("LDAP setup");
54     $this->s_title_long = _("LDAP connection setup");
55     $this->s_info       = _("This dialog performs the basic configuration of the LDAP connectivity for GOsa.");
56   }
57   
58   
59   function execute()
60   {
61     $smarty = get_smarty();
62     foreach($this->attributes as $attr){
63       $smarty->assign($attr,$this->$attr);
64     }
66     /* Assign connection status */
67     $smarty->assign("connection_status",$this->get_connection_status());
69     /* Handle namingContext detection */
70     $attr = @LDAP::get_naming_contexts($this->connection);
71     unset($attr['count']);
72     $smarty->assign("namingContexts",$attr);
73     $smarty->assign("namingContextsCount",count($attr));
74     $smarty->assign("bool",array(FALSE => _("No"), TRUE => _("Yes")));
76     /* Addign resolved users */
77     $smarty->assign("resolve_user",$this->resolve_user);
78     if($this->resolve_user){
79       $tmp = $this->resolve_user();
80       $smarty->assign("resolved_users",$tmp);
81       $smarty->assign("resolved_users_count",count($tmp));
82       $smarty->assign("resolve_filter",$this->resolve_filter);
83     }
84     return($smarty -> fetch (get_template_path("../setup/setup_ldap.tpl")));
85   }
87   function get_connection_status()
88   {
89     $this->connect_id = FALSE;
90     $this->bind_id    = FALSE;
92     @ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, 7);
93     $this->connect_id = @ldap_connect($this->connection);
94       
95     @ldap_set_option($this->connect_id, LDAP_OPT_PROTOCOL_VERSION, 3);
96     $this->bind_id = @ldap_bind($this->connect_id, $this->admin, $this->password);
97     
98     if(!$this->bind_id){
99       $str = sprintf(_("Anonymous bind failed on server '%s'."),$this->connection); 
100       if(!empty($this->admin)){
101         $str = sprintf(_("Bind as user '%s' failed on server '%s'."),$this->admin,$this->connection);
102       }      
103       return("<font color='red'>".$str."</font>");
104     }else{
105       if(empty($this->admin)){
106         $str = sprintf(_("Anonymous bind on server '%s' succeeded."), $this->connection);
107         return("<font color='blue'>".$str."</font> <font color='red'>"._("Please specify user and password.")."</font>");
108       }else{
109         $str = sprintf(_("Bind as user '%s' on server '%s' succeeded."),$this->admin,$this->connection);
110         return("<font color='green'>".$str."</font>");
111       }      
112     }
113   }
115   
116   function resolve_user()
117   {
118     $filter  = $this->resolve_filter;
119     $ldap = new LDAP("","",$this->connection);
120     $ldap->cd($this->base);
121     $ldap->search("(&(objectClass=person)(|(uid=".$filter.")(cn=".$filter.")))");
122     $tmp = array();
123     while($attrs = $ldap->fetch()){
124       $tmp[base64_encode($attrs['dn'])]= @LDAP::fix($attrs['dn']);
125       natcasesort($tmp);
126     }
127     return($tmp);
128   }   
131   function save_object()
132   {
133     $reset = FALSE;
134     foreach($this->attributes as $attr){
135       if(isset($_POST[$attr])){
136         if(in_array($attr,array("base","connection")) && $this->$attr != get_post($attr)){
137           $reset = TRUE;
138         }
139         $this->$attr = get_post($attr);
140       }
141     }
143     if($reset){
144       $this->parent->disable_steps_from(($this->parent->step_name_to_id(get_class($this))) +1);
145       $attr = @LDAP::get_naming_contexts($this->connection);
146       if(is_array($attr) && !in_array(get_post("base"),$attr)){
147         if(isset($attr[0])){
148           $this->base = $attr[0];
149         }
150       }
151     }
154     if(isset($_POST['resolve_user_x'])){
155       $this->resolve_user = !$this->resolve_user;
156     }
157     if(isset($_POST['resolve_user'])){
158       $this->resolve_user = !$this->resolve_user;
159     }
160   
161     /* Hide backward forward button*/
162     $this->dialog = $this->resolve_user;
163  
164     if(isset($_POST['resolve_filter'])){
165       $this->resolve_filter = get_post('resolve_filter');
166     }
168     if(isset($_POST['use_selected_user'])){
170       if(isset($_POST['admin_to_use'])){
171         $this->admin = base64_decode(get_post('admin_to_use'));
172         $this->resolve_user = false;
173       }
174     }
176     if(isset($_POST['append_base_to_admin_dn'])){
177       $this->append_base_to_admin_dn = TRUE;
178     }else{
179       $this->append_base_to_admin_dn = FALSE;
180     }
181  
182     if($this->append_base_to_admin_dn){
183       $base = $this->base;      
184       if(!preg_match("/,$/",$this->admin_given)){
185         $base = ",".$base;
186       }
187       $this->admin = $this->admin_given.$base;
188     }else{
189       $this->admin = $this->admin_given;
190     }
192     $this->get_connection_status();
193     if($this->bind_id && !empty($this->admin) && !empty($this->base)){
194       $this->is_completed =TRUE;
195     }else{
196       $this->is_completed =FALSE;
197     }
199   }
202 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
203 ?>