Code

Adapt password settings from templates too.
[gosa.git] / gosa-core / plugins / personal / generic / class_user.inc
1 <?php
2 /*
3  * This code is part of GOsa (http://www.gosa-project.org)
4  * Copyright (C) 2003-2008 GONICUS GmbH
5  *
6  * ID: $$Id$$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
23 /*!
24   \brief   user plugin
25   \author  Cajus Pollmeier <pollmeier@gonicus.de>
26   \version 2.00
27   \date    24.07.2003
29   This class provides the functionality to read and write all attributes
30   relevant for person, organizationalPerson, inetOrgPerson and gosaAccount
31   from/to the LDAP. It does syntax checking and displays the formulars required.
32  */
34 class user extends plugin
35 {
36   /* Definitions */
37   var $plHeadline= "Generic";
38   var $plDescription= "Edit organizational user settings";
40   /* The attribute gotoLastSystemLogin represents the timestamp of the last 
41       successfull login on the users workstation. 
42      Read the FAQ to get a hint about how to configure this.
43    */
44   var $gotoLastSystemLogin = "";
46   /* Plugin specific values */
47   var $base= "";
48   var $orig_base= "";
49   var $cn= "";
50   var $new_dn= "";
51   var $personalTitle= "";
52   var $academicTitle= "";
53   var $homePostalAddress= "";
54   var $homePhone= "";
55   var $labeledURI= "";
56   var $o= "";
57   var $ou= "";
58   var $departmentNumber= "";
59   var $employeeNumber= "";
60   var $employeeType= "";
61   var $roomNumber= "";
62   var $telephoneNumber= "";
63   var $facsimileTelephoneNumber= "";
64   var $mobile= "";
65   var $pager= "";
66   var $l= "";
67   var $st= "";
68   var $postalAddress= "";
69   var $dateOfBirth;
70   var $use_dob= "0";
71   var $gender="0";
72   var $preferredLanguage="0";
74   var $jpegPhoto= "*removed*";
75   var $photoData= "";
76   var $old_jpegPhoto= "";
77   var $old_photoData= "";
78   var $cert_dialog= FALSE;
79   var $picture_dialog= FALSE;
80   var $pwObject= NULL;
82   var $userPKCS12= "";
83   var $userSMIMECertificate= "";
84   var $userCertificate= "";
85   var $certificateSerialNumber= "";
86   var $old_certificateSerialNumber= "";
87   var $old_userPKCS12= "";
88   var $old_userSMIMECertificate= "";
89   var $old_userCertificate= "";
91   var $gouvernmentOrganizationalUnit= "";
92   var $houseIdentifier= "";
93   var $street= "";
94   var $postalCode= "";
95   var $vocation= "";
96   var $ivbbLastDeliveryCollective= "";
97   var $gouvernmentOrganizationalPersonLocality= "";
98   var $gouvernmentOrganizationalUnitDescription= "";
99   var $gouvernmentOrganizationalUnitSubjectArea= "";
100   var $functionalTitle= "";
101   var $role= "";
102   var $publicVisible= "";
104   var $orig_dn;
105   var $dialog;
107   /* variables to trigger password changes */
108   var $pw_storage= "md5";
109   var $last_pw_storage= "unset";
110   var $had_userCertificate= FALSE;
112   var $view_logged = FALSE;
114   /* attribute list for save action */
115   var $attributes= array("sn", "givenName", "uid", "personalTitle", "academicTitle",
116       "homePostalAddress", "homePhone", "labeledURI", "ou", "o", "dateOfBirth", "gender","preferredLanguage",
117       "departmentNumber", "employeeNumber", "employeeType", "l", "st","jpegPhoto",
118       "roomNumber", "telephoneNumber", "mobile", "pager", "cn", "userPKCS12",
119       "postalAddress", "facsimileTelephoneNumber", "userSMIMECertificate");
121   var $objectclasses= array("top", "person", "organizationalPerson", "inetOrgPerson",
122       "gosaAccount");
124   /* attributes that are part of the government mode */
125   var $govattrs= array("gouvernmentOrganizationalUnit", "houseIdentifier", "vocation",
126       "ivbbLastDeliveryCollective", "gouvernmentOrganizationalPersonLocality",
127       "gouvernmentOrganizationalUnitDescription","gouvernmentOrganizationalUnitSubjectArea",
128       "functionalTitle", "certificateSerialNumber", "publicVisible", "street", "role",
129       "postalCode");
131   var $multiple_support = TRUE;
133   var $governmentmode = FALSE;
135   /* constructor, if 'dn' is set, the node loads the given
136      'dn' from LDAP */
137   function user (&$config, $dn= NULL)
138   {
139     $this->config= $config;
140     /* Configuration is fine, allways */
141     if($this->config->get_cfg_value("honourIvbbAttributes") == "true"){
142       $this->governmentmode = TRUE;
143       $this->attributes=array_merge($this->attributes,$this->govattrs);
144     }
146     /* Load base attributes */
147     plugin::plugin ($config, $dn);
149     /*  If gotoLastSystemLogin is available read it from ldap and create a readable
150         date time string.
151      */
152     if(isset($this->attrs['gotoLastSystemLogin'][0]) && preg_match("/^[0-9]*$/",$this->attrs['gotoLastSystemLogin'][0])){
153       $this->gotoLastSystemLogin = date("d.m.Y H:i:s", $this->attrs['gotoLastSystemLogin'][0]);
154     }
156     $this->orig_dn  = $this->dn;
157     $this->new_dn   = $dn;
159     if ($this->governmentmode){
160       /* Fix public visible attribute if unset */
161       if (!isset($this->attrs['publicVisible'])){
162         $this->publicVisible == "nein";
163       }
164     }
166     /* Load government mode attributes */
167     if ($this->governmentmode){
168       /* Copy all attributs */
169       foreach ($this->govattrs as $val){
170         if (isset($this->attrs["$val"][0])){
171           $this->$val= $this->attrs["$val"][0];
172         }
173       }
174     }
176     /* Create me for new accounts */
177     if ($dn == "new"){
178       $this->is_account= TRUE;
179     }
181     /* Make hash default to md5 if not set in config */
182     $hash= $this->config->get_cfg_value("hash", "crypt/md5");
184     /* Load data from LDAP? */
185     if ($dn !== NULL){
187       /* Do base conversation */
188       if ($this->dn == "new"){
189         $ui= get_userinfo();
190         $this->base= dn2base($ui->dn);
191       } else {
192         $this->base= dn2base($dn);
193       }
195       /* get password storage type */
196       if (isset ($this->attrs['userPassword'][0])){
197         /* Initialize local array */
198         $matches= array();
199         if (preg_match ("/^{[^}]+}/", $this->attrs['userPassword'][0])){
200           $tmp= passwordMethod::get_method($this->attrs['userPassword'][0]);
201           if(is_object($tmp)){
202             $this->pw_storage= $tmp->get_hash(); 
203           }
205         } else {
206           if ($this->attrs['userPassword'][0] != ""){
207             $this->pw_storage= "clear";
208           } else {
209             $this->pw_storage= $hash;
210           }
211         }
212       } else {
213         /* Preset with vaule from configuration */
214         $this->pw_storage= $hash;
215       }
217       /* Load extra attributes: certificate and picture */
218       $this->load_cert();
219       $this->load_picture();
220       if ($this->userCertificate != ""){
221         $this->had_userCertificate= TRUE;
222       }
223     }
225     /* Reset password storage indicator, used by password_change_needed() */
226     if ($dn == "new"){
227       $this->last_pw_storage= "unset";
228     } else {
229       $this->last_pw_storage= $this->pw_storage;
230     }
232     /* Generate dateOfBirth entry */
233     if (isset ($this->attrs['dateOfBirth'])){
234       /* This entry is ISO 8601 conform */
235       list($year, $month, $day)= split("-", $this->attrs['dateOfBirth'][0], 3);
236     
237       $this->dateOfBirth=array( 'mon'=> $month,"mday"=> $day,"year"=> $year);
238       $this->use_dob= "1";
239     } else {
240       $this->use_dob= "0";
241     }
243     /* Put gender attribute to upper case */
244     if (isset ($this->attrs['gender'])){
245       $this->gender= strtoupper($this->attrs['gender'][0]);
246     }
247  
248     $this->orig_base = $this->base;
249   }
254   /* execute generates the html output for this node */
255   function execute()
256   {
257     /* Call parent execute */
258     plugin::execute();
260     /* Log view */
261     if($this->is_account && !$this->view_logged){
262       $this->view_logged = TRUE;
263       new log("view","users/".get_class($this),$this->dn);
264     }
266     $smarty= get_smarty();
267     $smarty->assign("gotoLastSystemLogin",$this->gotoLastSystemLogin);
269     /* Fill calendar */
270     if ($this->dateOfBirth == "0"){
271       $date= getdate();
272     } else {
273       if(is_array($this->dateOfBirth)){
274         $date = $this->dateOfBirth;
275   
276         // Trigger on dates like 1985-04-01, getdate only understands timestamps
277       } else if (!empty($this->dateOfBirth) && !is_numeric($this->dateOfBirth)){
278         $date= getdate(strtotime($this->dateOfBirth));
280       } else {
281         $date = getdate($this->dateOfBirth);
282       }
283     }
285     $days= array();
286     for($d= 1; $d<32; $d++){
287       $days[$d]= $d;
288     }
289     $years= array();
291     if(($date['year']-100)<1901){
292       $start = 1901;
293     }else{
294       $start = $date['year']-100;
295     }
297     $end = $start +100;
298     
299     for($y= $start; $y<=$end; $y++){
300       $years[]= $y;
301     }
302     $years['-']= "-&nbsp;";
303     $months= msgPool::months();
304     $months['-'] = '-&nbsp;';
306     $smarty->assign("day", $date["mday"]);
307     $smarty->assign("days", $days);
308     $smarty->assign("months", $months);
309     $smarty->assign("month", $date["mon"]-1);
310     $smarty->assign("years", $years);
311     $smarty->assign("year", $date["year"]);
313     /* Assign sex */
314     $sex= array(0 => "&nbsp;", "F" => _("female"), "M" => _("male"));
315     $smarty->assign("gender_list", $sex);
316     $language= array_merge(array(0 => "&nbsp;") ,get_languages(TRUE));
317     $smarty->assign("preferredLanguage_list", $language);
319     /* Get random number for pictures */
320     srand((double)microtime()*1000000); 
321     $smarty->assign("rand", rand(0, 10000));
324     /* Do we represent a valid gosaAccount? */
325     if (!$this->is_account){
326       $str = "<img alt=\"\" src=\"images/small-error.png\" align=\"middle\">&nbsp;<b>".
327         msgPool::noValidExtension("GOsa")."</b>";
328       return($str);
329     }
331     /* Base select dialog */
332     $once = true;
333     foreach($_POST as $name => $value){
334       if(preg_match("/^chooseBase/",$name) && $once && $this->acl_is_writeable("base")){
335         $once = false;
336         $this->dialog = new baseSelectDialog($this->config,$this,$this->allowedBasesToMoveTo());
337         $this->dialog->setCurrentBase($this->base);
338       }
339     }
341     /* Password configure dialog handling */
342     if(is_object($this->pwObject) && $this->pwObject->display){
343       $output= $this->pwObject->configure();
344       if ($output != ""){
345         $this->dialog= TRUE;
346         return $output;
347       }
348       $this->dialog= false;
349     }
351     /* Dialog handling */
352     if(is_object($this->dialog)){
353       /* Must be called before save_object */
354       $this->dialog->save_object();
355    
356       if($this->dialog->isClosed()){
357         $this->dialog = false;
358       }elseif($this->dialog->isSelected()){
360         /* check if selected base is allowed to move to / create a new object */
361         $tmp = $this->get_allowed_bases();
362         if(isset($tmp[$this->dialog->isSelected()])){
363           $this->base = $this->dialog->isSelected();
364         }
365         $this->dialog= false;
366       }else{
367         return($this->dialog->execute());
368       }
369     }
371     /* Want password method editing? */
372     if ($this->acl_is_writeable("userPassword")){
373       if (isset($_POST['edit_pw_method'])){
374         if (!is_object($this->pwObject) || $this->pw_storage != $this->pwObject->get_hash_name()){
375           $temp= passwordMethod::get_available_methods();
376           $this->pwObject= new $temp[$this->pw_storage]($this->config,$this->dn);
377         }
378         $this->pwObject->display = TRUE;
379         $this->dialog= TRUE;
380         return ($this->pwObject->configure());
381       }
382     }
384     /* Want picture edit dialog? */
385     if($this->acl_is_writeable("userPicture")) {
386       if (isset($_POST['edit_picture'])){
387         /* Save values for later recovery, in case some presses
388            the cancel button. */
389         $this->old_jpegPhoto= $this->jpegPhoto;
390         $this->old_photoData= $this->photoData;
391         $this->picture_dialog= TRUE;
392         $this->dialog= TRUE;
393       }
394     }
396     /* Remove picture? */
397     if($this->acl_is_writeable("userPicture",(!is_object($this->parent) && !session::is_set('edit'))) ){
398       if (isset($_POST['picture_remove'])){
399         $this->set_picture ();
400         $this->jpegPhoto= "*removed*";
401         $this->is_modified= TRUE;
402         return($smarty->fetch (get_template_path('generic_picture.tpl', TRUE, dirname(__FILE__))));
403       }
404     }
406     /* Save picture */
407     if (isset($_POST['picture_edit_finish'])){
409       /* Check for clean upload */
410       if ($_FILES['picture_file']['name'] != ""){
411         if (!is_uploaded_file($_FILES['picture_file']['tmp_name'])) {
412           msg_dialog::display(_("Error"), _("Cannot upload file!"), ERROR_DIALOG);
413         }else{
414           /* Activate new picture */
415           $this->set_picture($_FILES['picture_file']['tmp_name']);
416         }
417       }
418       $this->picture_dialog= FALSE;
419       $this->dialog= FALSE;
420       $this->is_modified= TRUE;
421     }
424     /* Cancel picture */
425     if (isset($_POST['picture_edit_cancel'])){
427       /* Restore values */
428       $this->jpegPhoto= $this->old_jpegPhoto;
429       $this->photoData= $this->old_photoData;
431       /* Update picture */
432       session::set('binary',$this->photoData);
433       session::set('binarytype',"image/jpeg");
434       $this->picture_dialog= FALSE;
435       $this->dialog= FALSE;
436     }
438     /* Toggle dateOfBirth information */
439     if (isset($_POST['set_dob'])){
440       $this->use_dob= ($this->use_dob == "0")?"1":"0";
441     }
444     /* Want certificate= */
445     if ((isset($_POST['edit_cert'])) && $this->acl_is_readable("Certificate")){
447       /* Save original values for later reconstruction */
448       foreach (array("certificateSerialNumber", "userCertificate",
449             "userSMIMECertificate", "userPKCS12") as $val){
451         $oval= "old_$val";
452         $this->$oval= $this->$val;
453       }
455       $this->cert_dialog= TRUE;
456       $this->dialog= TRUE;
457     }
460     /* Cancel certificate dialog */
461     if (isset($_POST['cert_edit_cancel'])){
463       /* Restore original values in case of 'cancel' */
464       foreach (array("certificateSerialNumber", "userCertificate",
465             "userSMIMECertificate", "userPKCS12") as $val){
467         $oval= "old_$val";
468         $this->$val= $this->$oval;
469       }
470       $this->cert_dialog= FALSE;
471       $this->dialog= FALSE;
472     }
475     /* Remove certificate? */
476     if($this->acl_is_writeable("Certificate",(!is_object($this->parent) && !session::is_set('edit')))){ 
477       foreach (array ("userCertificate", "userSMIMECertificate", "userPKCS12") as $val){
478         if (isset($_POST["remove_$val"])){
480           /* Reset specified cert*/
481           $this->$val= "";
482           $this->is_modified= TRUE;
483         }
484       }
485     }
487     /* Upload new cert and close dialog? */     
488     if($this->acl_is_writeable("Certificate",(!is_object($this->parent) && !session::is_set('edit')))){ 
490       $fail =false;
492       if (isset($_POST['cert_edit_finish'])){
494         /* for all certificates do */
495         foreach (array ("userCertificate", "userSMIMECertificate", "userPKCS12")
496             as $val){
498           /* Check for clean upload */
499           if (array_key_exists($val."_file", $_FILES) &&
500               array_key_exists('name', $_FILES[$val."_file"]) &&
501               $_FILES[$val."_file"]['name'] != "" &&
502               is_uploaded_file($_FILES[$val."_file"]['tmp_name'])) {
503             $this->set_cert("$val", $_FILES[$val."_file"]['tmp_name']);
504           }
505         }
507         /* Save serial number */
508         if (isset($_POST["certificateSerialNumber"]) &&
509             $_POST["certificateSerialNumber"] != ""){
511           if (!tests::is_id($_POST["certificateSerialNumber"])){
512             $fail = true;
513             msg_dialog::display(_("Error"), msgPool::invalid(_("Serial number"),$_POST["certificateSerialNumber"],"/[0-9]/"),ERROR_DIALOG);
515             foreach(array("userCertificate", "userSMIMECertificate", "userPKCS12") as $cert){
516               if ($this->$cert != ""){
517                 $smarty->assign("$cert"."_state", "true");
518               } else {
519                 $smarty->assign("$cert"."_state", "");
520               }
521             }
522           }
524           $this->certificateSerialNumber= $_POST["certificateSerialNumber"];
525           $this->is_modified= TRUE;
526         }
527         if(!$fail){
528           $this->cert_dialog= FALSE;
529           $this->dialog= FALSE;
530         }
531       }
532     }
533     /* Display picture dialog */
534     if ($this->picture_dialog){
535       return($smarty->fetch (get_template_path('generic_picture.tpl', TRUE, dirname(__FILE__))));
536     }
538     /* Display cert dialog */
539     if ($this->cert_dialog){
540       $smarty->assign("CertificateACL",$this->getacl("Certificate",(!is_object($this->parent) && !session::is_set('edit'))));
541       $smarty->assign("Certificate_readable",$this->acl_is_readable("Certificate"));
542       $smarty->assign("certificateSerialNumber",$this->certificateSerialNumber);
544       foreach(array("userCertificate", "userSMIMECertificate", "userPKCS12") as $cert){
545         if ($this->$cert != ""){
546           /* import certificate */
547           $certificate = new certificate;
548           $certificate->import($this->$cert);
549       
550           /* Read out data*/
551           $timeto   = $certificate->getvalidto_date();
552           $timefrom = $certificate->getvalidfrom_date();
553          
554           
555           /* Additional info if start end time is '0' */
556           $add_str_info = "";
557           if($timeto == 0 && $timefrom == 0){
558             $add_str_info = "<br><i>"._("(Some types of certificates are currently not supported and may be displayed as 'invalid'.)")."</i>";
559           }
561           $str = "<table summary=\"\" border=0>
562                     <tr>
563                       <td style='vertical-align:top'>CN</td>
564                       <td>".preg_replace("/ /", "&nbsp;", $certificate->getname())."</td>
565                     </tr>
566                   </table><br>".
568                   sprintf(_("Certificate is valid from %s to %s and is currently %s."),
569                         "<b>".date('d M Y',$timefrom)."</b>",
570                         "<b>".date('d M Y',$timeto)."</b>",
571                         $certificate->isvalid()?"<b><font style='color:green'>"._("valid")."</font></b>":
572                                                 "<b><font style='color:red'>"._("invalid")."</font></b>").$add_str_info;
574           $smarty->assign($cert."info",$str);
575           $smarty->assign($cert."_state","true");
576         } else {
577           $smarty->assign($cert."info", "<i>"._("No certificate installed")."</i>");
578           $smarty->assign($cert."_state","");
579         }
580       }
581   
582       if($this->governmentmode){
583         $smarty->assign("honourIvbbAttributes", "true");
584       }else{
585         $smarty->assign("honourIvbbAttributes", "false");
586       }
587       return($smarty->fetch (get_template_path('generic_certs.tpl', TRUE, dirname(__FILE__))));
588     }
590     /* Prepare password hashes */
591     if ($this->pw_storage == ""){
592       $this->pw_storage= $this->config->get_cfg_value("hash");
593     }
595     $temp= passwordMethod::get_available_methods();
596     $is_configurable= FALSE;
597     $hashes = $temp['name'];
598     if(isset($temp[$this->pw_storage])){
599       $test= new $temp[$this->pw_storage]($this->config);
600       $is_configurable= $test->is_configurable();
601     }else{
602       new msg_dialog(_("Password method"),_("The selected password method is no longer available."),WARNING_DIALOG);
603     }
606     /* Create password methods array */
607     $pwd_methods = array();
608     foreach($hashes as $id => $name){
609       if(!empty($temp['desc'][$id])){
610         $pwd_methods[$name] = $name." (".$temp['desc'][$id].")";
611       }else{
612         $pwd_methods[$name] = $name;
613       }
614     }
615  
616     /* Load attributes and acl's */
617     $ui =get_userinfo();
618     foreach($this->attributes as $val){
619       $smarty->assign("$val", $this->$val);
620       if(in_array($val,$this->multi_boxes)){
621         $smarty->assign("use_".$val,TRUE);
622       }else{
623         $smarty->assign("use_".$val,FALSE);
624       }
625     }
626     foreach(array("base","pw_storage","edit_picture") as $val){
627       if(in_array($val,$this->multi_boxes)){
628         $smarty->assign("use_".$val,TRUE);
629       }else{
630         $smarty->assign("use_".$val,FALSE);
631       }
632     }
634     /* Set acls */
635     $tmp = $this->plinfo();
636     foreach($tmp['plProvidedAcls'] as $val => $translation){
637       $smarty->assign("$val"."ACL", $this->getacl($val,(!is_object($this->parent) && !session::is_set('edit'))));
638     }
640     $smarty->assign("pwmode", $pwd_methods);
641     $smarty->assign("pwmode_select", $this->pw_storage);
642     $smarty->assign("pw_configurable", $is_configurable);
643     $smarty->assign("passwordStorageACL", $this->getacl("userPassword",(!is_object($this->parent) && !session::is_set('edit'))));
644     $smarty->assign("base_select",      $this->base);
646     if(!session::is_set('edit')){
647       $smarty->assign("CertificatesACL","");
648     }else{
649       $smarty->assign("CertificatesACL",  $this->getacl("Certificate"));
650     }
651     
652     $smarty->assign("userPictureACL",   $this->getacl("userPicture",(!is_object($this->parent) && !session::is_set('edit'))));
653     $smarty->assign("userPicture_is_readable",   $this->acl_is_readable("userPicture",(!is_object($this->parent) && !session::is_set('edit'))));
655     /* Create base acls */
656     $tmp = @$this->allowedBasesToMoveTo();
657     $smarty->assign("bases", $tmp);
659     /* Save government mode attributes */
660     if($this->governmentmode){
661       $smarty->assign("governmentmode", "true");
662       $ivbbmodes= array("nein", "ivbv", "testa", "ivbv,testa", "internet",
663           "internet,ivbv", "internet,testa", "internet,ivbv,testa");
664       $smarty->assign("ivbbmodes", $ivbbmodes);
665       foreach ($this->govattrs as $val){
666         $smarty->assign("$val", $this->$val);
667         $smarty->assign("$val"."ACL", $this->getacl($val,(!is_object($this->parent) && !session::is_set('edit'))));
668       }
669     } else {
670       $smarty->assign("governmentmode", "false");
671     }
673     /* Special mode for uid */
674     $uidACL= $this->getacl("uid",(!is_object($this->parent) && !session::is_set('edit')));
675     if (isset ($this->dn)){
676       if ($this->dn != "new"){
677         $uidACL= preg_replace("/w/","",$uidACL);
678       }
679     }  else {
680       $uidACL= preg_replace("/w/","",$uidACL);
681     }
682     
683     $smarty->assign("uidACL", $uidACL);
684     $smarty->assign("is_template", $this->is_template);
685     $smarty->assign("use_dob", $this->use_dob);
687     if (isset($this->parent)){
688       if (isset($this->parent->by_object['phoneAccount']) &&
689           $this->parent->by_object['phoneAccount']->is_account){
690         $smarty->assign("has_phoneaccount", "true");
691       } else {
692         $smarty->assign("has_phoneaccount", "false");
693       }
694     } else {
695       $smarty->assign("has_phoneaccount", "false");
696     }
697     $smarty->assign("multiple_support" , $this->multiple_support_active);
698     return($smarty->fetch (get_template_path('generic.tpl', TRUE, dirname(__FILE__))));
699   }
702   /* remove object from parent */
703   function remove_from_parent()
704   {
705     /* Remove password extension */
706     $temp= passwordMethod::get_available_methods();
708     /* Remove password method from user account */
709     if(isset($temp[$this->pw_storage]) && class_available($temp[$this->pw_storage])){
710       $this->pwObject= new $temp[$this->pw_storage]($this->config,$this->dn);
711       $this->pwObject->remove_from_parent();
712     }
714     /* Remove user */
715     $ldap= $this->config->get_ldap_link();
716     $ldap->rmdir ($this->dn);
717     if (!$ldap->success()){
718       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_DEL, get_class()));
719     }
720   
721     new log("remove","users/".get_class($this),$this->dn,$this->attributes,$ldap->get_error());
722   
723     /* Delete references to groups */
724     $ldap->cd ($this->config->current['BASE']);
725     $ldap->search ("(&(objectClass=posixGroup)(memberUid=".$this->uid."))", array("uid"));
726     while ($ldap->fetch()){
727       $g= new group($this->config, $ldap->getDN());
728       $g->removeUser($this->uid);
729       $g->save ();
730     }
732     /* Delete references to object groups */
733     $ldap->cd ($this->config->current['BASE']);
734     $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".LDAP::prepare4filter($this->dn)."))", array("cn"));
735     while ($ldap->fetch()){
736       $og= new ogroup($this->config, $ldap->getDN());
737       unset($og->member[$this->dn]);
738       $og->save ();
739     }
741     /* If needed, let the password method do some cleanup */
742     $tmp = new passwordMethod($this->config);
743     $available = $tmp->get_available_methods();
744     if (in_array_ics($this->pw_storage, $available['name'])){
745       $test= new $available[$this->pw_storage]($this->config);
746       $test->attrs= $this->attrs;
747       $test->dn= $this->dn;
748       $test->remove_from_parent();
749     }
751     /* Remove ACL dependencies too */
752     $tmp = new acl($this->config,$this->parent,$this->dn);
753     $tmp->remove_acl();
755     /* Optionally execute a command after we're done */
756     $this->handle_post_events("remove",array("uid" => $this->uid));
757   }
760   /* Save data to object */
761   function save_object()
762   {
763     if(isset($_POST['generic']) || isset($_POST['multiple_user_posted'])){
765       /* Make a backup of the current selected base */
766       $base_tmp = $this->base;
768       /* Parents save function */
769       plugin::save_object ();
771       /* Save government mode attributes */
772       if ($this->governmentmode){
773         foreach ($this->govattrs as $val){
774           if ($this->acl_is_writeable($val,(!is_object($this->parent) && !session::is_set('edit'))) && isset($_POST["$val"])){
775             $data= stripcslashes($_POST["$val"]);
776             if ($data != $this->$val){
777               $this->is_modified= TRUE;
778             }
779             $this->$val= $data;
780           }
781         }
782       }
784       /* In template mode, the uid is autogenerated... */
785       if ($this->is_template){
786         $this->uid= strtolower($this->sn);
787         $this->givenName= $this->sn;
788       }
790       /* Save base and pw_storage, since these are no LDAP attributes */
791       if (isset($_POST['base'])){
793         $tmp = $this->get_allowed_bases();
794         if(isset($tmp[$_POST['base']])){
795           $base= validate($_POST['base']);
796           if ($base != $this->base){
797             $this->is_modified= TRUE;
798           }
799           $this->base= $base;
800         }else{
801           $this->base = $base_tmp;
802           msg_dialog::display(_("Error"), msgPool::permMove(), ERROR_DIALOG);
803         }
804       }
806       /* Get pw_storage mode */
807       if (isset($_POST['pw_storage'])){
808         foreach(array("pw_storage") as $val){
809           if(isset($_POST[$val])){
810             $data= validate($_POST[$val]);
811             if ($data != $this->$val){
812               $this->is_modified= TRUE;
813             }
814             $this->$val= $data;
815           }
816         }
817       }
819       if($this->pw_storage != $this->last_pw_storage && isset($_POST['pw_storage'])){
820         if ($this->acl_is_writeable("userPassword")){
821           $temp= passwordMethod::get_available_methods();
822           if (!is_object($this->pwObject) || !($this->pwObject instanceOf $temp[$this->pw_storage])){
823             foreach($temp as $id => $data){
824               if(isset($data['name']) && $data['name'] == $this->pw_storage && $data['is_configurable']){
825                 $this->pwObject= new $temp[$this->pw_storage]($this->config,$this->dn);
826                 break;
827               }
828             }
829           }
830         }
831       }
833       /* Save current cn
834        */
835       $this->cn = $this->givenName." ".$this->sn;
836     }
837   }
839   function rebind($ldap, $referral)
840   {
841     $credentials= LDAP::get_credentials($referral, $this->config->current['REFERRAL']);
842     if (ldap_bind($ldap, $credentials['ADMIN'], $credentials['PASSWORD'])) {
843       $this->error = "Success";
844       $this->hascon=true;
845       $this->reconnect= true;
846       return (0);
847     } else {
848       $this->error = "Could not bind to " . $credentials['ADMIN'];
849       return NULL;
850     }
851   }
853   
854   /* Save data to LDAP, depending on is_account we save or delete */
855   function save()
856   {
857     /* Only force save of changes .... 
858        If this attributes aren't changed, avoid saving.
859      */
860     if($this->gender=="0") $this->gender ="";
861     if($this->preferredLanguage=="0") $this->preferredLanguage ="";
863     /* First use parents methods to do some basic fillup in $this->attrs */
864     plugin::save ();
866     if ($this->use_dob == "1"){
867       /* If it is an array, the generic page has never been loaded - so there's no difference. Using an array would cause an error btw. */
868       if(!is_array($this->attrs['dateOfBirth'])) {
869         $this->attrs['dateOfBirth'] = date("Y-m-d", $this->dateOfBirth);
870       }
871     }
873     /* Remove additional objectClasses */
874     $tmp= array();
875     foreach ($this->attrs['objectClass'] as $key => $set){
876       $found= false;
877       foreach (array("ivbbentry", "gosaUserTemplate") as $val){
878         if (preg_match ("/^$set$/i", $val)){
879           $found= true;
880           break;
881         }
882       }
883       if (!$found){
884         $tmp[]= $set;
885       }
886     }
888     /* Replace the objectClass array. This is done because of the
889        separation into government and normal mode. */
890     $this->attrs['objectClass']= $tmp;
892     /* Add objectClasss for template mode? */
893     if ($this->is_template){
894       $this->attrs['objectClass'][]= "gosaUserTemplate";
895     }
897     /* Hard coded government mode? */
898     if ($this->governmentmode){
899       $this->attrs['objectClass'][]= "ivbbentry";
901       /* Copy standard attributes */
902       foreach ($this->govattrs as $val){
903         if ($this->$val != ""){
904           $this->attrs["$val"]= $this->$val;
905         } elseif (!$this->is_new) {
906           $this->attrs["$val"]= array();
907         }
908       }
910       /* Remove attribute if set to "nein" */
911       if ($this->publicVisible == "nein"){
912         $this->attrs['publicVisible']= array();
913         if($this->is_new){
914           unset($this->attrs['publicVisible']);
915         }else{
916           $this->attrs['publicVisible']=array();
917         }
919       }
921     }
923     /* Special handling for attribute userCertificate needed */
924     if ($this->userCertificate != ""){
925       $this->attrs["userCertificate;binary"]= $this->userCertificate;
926       $remove_userCertificate= false;
927     } else {
928       $remove_userCertificate= true;
929     }
931     /* Special handling for dateOfBirth value */
932     if ($this->use_dob != "1"){
933       if ($this->is_new) {
934         unset($this->attrs["dateOfBirth"]);
935       } else {
936         $this->attrs["dateOfBirth"]= array();
937       }
938     }
939     if (!$this->gender){
940       if ($this->is_new) {
941         unset($this->attrs["gender"]);
942       } else {
943         $this->attrs["gender"]= array();
944       }
945     }
946     if (!$this->preferredLanguage){
947       if ($this->is_new) {
948         unset($this->attrs["preferredLanguage"]);
949       } else {
950         $this->attrs["preferredLanguage"]= array();
951       }
952     }
954     /* Special handling for attribute jpegPhote needed, scale image via
955        image magick to 147x200 pixels and inject resulting data. */
956     if ($this->jpegPhoto == "*removed*"){
957     
958       /* Reset attribute to avoid writing *removed* as value */    
959       $this->attrs["jpegPhoto"] = array();
961     } else {
963       /* Fallback if there's no image magick inside PHP */
964       if (!function_exists("imagick_blob2image")){
965         /* Get temporary file name for conversation */
966         $fname = tempnam (TEMP_DIR, "GOsa");
967   
968         /* Open file and write out photoData */
969         $fp = fopen ($fname, "w");
970         fwrite ($fp, $this->photoData);
971         fclose ($fp);
973         /* Build conversation query. Filename is generated automatically, so
974            we do not need any special security checks. Exec command and save
975            output. For PHP safe mode, you'll need a configuration which respects
976            image magick as executable... */
977         $query= "convert -size 147x200 $fname -resize 147x200 +profile \"*\" -";
978         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__,
979             $query, "Execute");
980   
981         /* Read data written by convert */
982         $output= "";
983         $sh= popen($query, 'r');
984         while (!feof($sh)){
985           $output.= fread($sh, 4096);
986         }
987         pclose($sh);
989         unlink($fname);
991         /* Save attribute */
992         $this->attrs["jpegPhoto"] = $output;
994       } else {
996         /* Load the new uploaded Photo */
997         if(!$handle  =  imagick_blob2image($this->photoData))  {
998           new log("debug","users/".get_class($this),$this->dn,array(),"Could not access uploaded image");
999         }
1001         /* Resizing image to 147x200 and blur */
1002         if(!imagick_resize($handle,147,200,IMAGICK_FILTER_GAUSSIAN,0)){
1003           new log("debug","users/".get_class($this),$this->dn,array(),"Could not resize uploaded image");
1004         }
1006         /* Converting image to JPEG */
1007         if(!imagick_convert($handle,"JPEG")) {
1008           new log("debug","users/".get_class($this),$this->dn,array(),"Could not convert uploaded image to jepg");
1009         }
1011         /* Creating binary Code for the Image */
1012         if(!$dump = imagick_image2blob($handle)){
1013           new log("debug","users/".get_class($this),$this->dn,array(),"Could not create new user image");
1014         }
1016         /* Sending Image */
1017         $output=  $dump;
1019         /* Save attribute */
1020         $this->attrs["jpegPhoto"] = $output;
1021       }
1023     }
1025     /* This only gets called when user is renaming himself */
1026     $ldap= $this->config->get_ldap_link();
1027     if ($this->dn != $this->new_dn){
1029       /* Write entry on new 'dn' */
1030       $this->update_acls($this->dn,$this->new_dn);
1031       $this->move($this->dn, $this->new_dn);
1033       /* Happen to use the new one */
1034       change_ui_dn($this->dn, $this->new_dn);
1035       $this->dn= $this->new_dn;
1036     }
1039     /* Save data. Using 'modify' implies that the entry is already present, use 'add' for
1040        new entries. So do a check first... */
1041     $ldap->cat ($this->dn, array('dn'));
1042     if ($ldap->fetch()){
1043       $mode= "modify";
1044     } else {
1045       $mode= "add";
1046       $ldap->cd($this->config->current['BASE']);
1047       $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
1048     }
1050     /* Set password to some junk stuff in case of templates */
1051     if ($this->is_template){
1052       $temp= passwordMethod::get_available_methods();
1053       foreach($temp as $id => $data){
1054         if(isset($data['name']) && $data['name'] == $this->pw_storage){
1055           $tmp = new  $temp[$this->pw_storage]($this->config,$this->dn);
1056           $this->attrs['userPassword'] = $tmp->create_template_hash($this->attrs);
1057           break;
1058         }
1059       }
1060     }
1062     @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__,
1063         $this->attributes, "Save via $mode");
1065     /* Finally write data with selected 'mode' */
1066     $this->cleanup();
1068     /* Update current locale settings, if we have edited ourselves */
1069     $ui = session::get('ui');
1070     if(isset($this->attrs['preferredLanguage']) && $this->dn == $ui->dn){
1071       $ui->language = $this->preferredLanguage;
1072       session::set('ui',$ui);
1073       session::set('Last_init_lang',"update");
1074     }
1076     $ldap->cd ($this->dn);
1077     $ldap->$mode ($this->attrs);
1078     if (!$ldap->success()){
1079       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_DEL, get_class()));
1080       return (1);
1081     }
1083     /* Remove ACL dependencies too */
1084     if($this->dn != $this->orig_dn && $this->orig_dn != "new"){
1085       $tmp = new acl($this->config,$this->parent,$this->dn);
1086       $tmp->update_acl_membership($this->orig_dn,$this->dn);
1087     }
1089     if($mode == "modify"){
1090       new log("modify","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
1091     }else{
1092       new log("create","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
1093     }
1095     /* Remove cert? 
1096        For some reason, the 'ldap' class doesn't want to remove binary entries, so I need
1097        to work around myself. */
1098     if ($remove_userCertificate == true && !$this->is_new && $this->had_userCertificate){
1100       /* Reset array, assemble new, this should be reworked */
1101       $this->attrs= array();
1102       $this->attrs['userCertificate;binary']= array();
1104       /* Prepare connection */
1105       if (!($ds = ldap_connect($this->config->current['SERVER']))) {
1106         die ("Could not connect to LDAP server");
1107       }
1108       ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
1109       if (function_exists("ldap_set_rebind_proc") && $this->config->get_cfg_value("ldapFollowReferrals") == "true") {
1110         ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
1111         ldap_set_rebind_proc($ds, array(&$this, "rebind"));
1112       }
1113       if($this->config->get_cfg_value("ldapTLS") == "true"){
1114         ldap_start_tls($ds);
1115       }
1116       if (!($res = @ldap_bind($ds, $this->config->current['ADMIN'],
1117               $this->config->current['PASSWORD']))) {
1118         die ("Could not bind to LDAP");
1119       }
1121       /* Modify using attrs */
1122       ldap_mod_del($ds,$this->dn,$this->attrs);
1123       ldap_close($ds);
1124     }
1126     /* If needed, let the password method do some cleanup */
1127     if ($this->pw_storage != $this->last_pw_storage){
1128       $tmp = new passwordMethod($this->config);
1129       $available = $tmp->get_available_methods();
1130       if (in_array_ics($this->last_pw_storage, $available['name'])){
1131         $test= new $available[$this->last_pw_storage]($this->config,$this->dn);
1132         $test->attrs= $this->attrs;
1133         $test->remove_from_parent();
1134       }
1135     }
1137     /* Maybe the current password method want's to do some changes... */
1138     if (is_object($this->pwObject)){
1139       $this->pwObject->save($this->dn);
1140     }
1142     /* Optionally execute a command after we're done */
1143     if ($mode == "add"){
1144       $this->handle_post_events("add", array("uid" => $this->uid));
1145     } elseif ($this->is_modified){
1146       $this->handle_post_events("modify", array("uid" => $this->uid));
1147     }
1149     return (0);
1150   }
1152   
1153   function update_new_dn()
1154   {
1155     $pt= "";
1156     if($this->config->get_cfg_value("personalTitleInDN") == "true"){
1157       if(!empty($this->personalTitle)){
1158         $pt = $this->personalTitle." ";
1159       }
1160     }
1161     $this->cn= $pt.$this->givenName." ".$this->sn;
1163     /* Permissions for that base? */
1164     if ($this->config->get_cfg_value("accountPrimaryAttribute") == "uid"){
1165       $this->new_dn= 'uid='.$this->uid.','.get_people_ou().$this->base;
1166     } else {
1167       /* Don't touch dn, if cn hasn't changed */
1168       if (isset($this->saved_attributes['cn']) && $this->saved_attributes['cn'] == $this->cn &&
1169           $this->orig_base == $this->base ){
1170         $this->new_dn= $this->dn;
1171       } else {
1172         $this->new_dn= $this->create_unique_dn('cn', get_people_ou().$this->base);
1173       }
1174     }
1175   }
1176   
1178   /* Check formular input */
1179   function check()
1180   {
1181     /* Call common method to give check the hook */
1182     $message= plugin::check();
1184     /* Configurable password methods should be configured initially. 
1185      */ 
1186     if($this->last_pw_storage != $this->pw_storage){
1187       $temp= passwordMethod::get_available_methods();
1188       foreach($temp['name'] as $id => $name){
1189         if($name == $this->pw_storage){
1190           if($temp['is_configurable'][$id] && !$this->pwObject instanceof $temp[$name] ){
1191             $message[] = _("The selected password method requires initial configuration!");
1192           }
1193           break;
1194         }
1195       }
1196     }
1198     $this->update_new_dn();
1200     /* Set the new acl base */
1201     if($this->dn == "new") {
1202       $this->set_acl_base($this->base);
1203     }
1205     /* Check if we are allowed to create/move this user 
1206      */
1207     
1208     if($this->orig_dn == "new" && !$this->acl_is_createable($this->base)){
1209       $message[]= msgPool::permCreate();
1210     }elseif($this->orig_dn != "new" && $this->new_dn != $this->orig_dn && !$this->acl_is_moveable($this->base)){
1211       $message[]= msgPool::permMove();
1212     }
1214     /* UID already used? */
1215     $ldap= $this->config->get_ldap_link();
1216     $ldap->cd($this->config->current['BASE']);
1217     $ldap->search("(uid=$this->uid)", array("uid"));
1218     $ldap->fetch();
1219     if ($ldap->count() != 0 && $this->dn == 'new'){
1220       $message[]= msgPool::duplicated(_("Login"));
1221     }
1223     /* In template mode, the uid and givenName are autogenerated... */
1224     if ($this->sn == ""){
1225       $message[]= msgPool::required(_("Name"));
1226     }
1228     if (!$this->is_template){
1229       if ($this->givenName == ""){
1230         $message[]= msgPool::required(_("Given name"));
1231       }
1232       if ($this->uid == ""){
1233         $message[]= msgPool::required(_("Login"));
1234       }
1235       if ($this->config->get_cfg_value("accountPrimaryAttribute") != "uid"){
1236         $ldap->cat($this->new_dn);
1237         if ($ldap->count() != 0 && $this->dn != $this->new_dn && $this->dn == 'new'){
1238           $message[]= msgPool::duplicated(_("Name"));
1239         }
1240       }
1241     }
1243     /* Check for valid input */
1244     if ($this->is_modified && !tests::is_uid($this->uid)){
1246       if (strict_uid_mode()){
1247         $message[]= msgPool::invalid(_("Login"), $this->uid, "/[a-z0-9_-]/");
1248       } else {
1249         $message[]= msgPool::invalid(_("Login"), $this->uid, "/[a-z0-9_-]/i");
1250       }
1251     }
1252     if (!tests::is_url($this->labeledURI)){
1253       $message[]= msgPool::invalid(_("Homepage"), "", "", "http://www.your-domain.com/yourname");
1254     }
1256     /* Check phone numbers */
1257     if (!tests::is_phone_nr($this->telephoneNumber)){
1258       $message[]= msgPool::invalid(_("Phone"), $this->telephoneNumber, "/[\/0-9 ()+*-]/");
1259     }
1260     if (!tests::is_phone_nr($this->facsimileTelephoneNumber)){
1261       $message[]= msgPool::invalid(_("Fax"), $this->facsimileTelephoneNumber, "/[\/0-9 ()+*-]/");
1262     }
1263     if (!tests::is_phone_nr($this->mobile)){
1264       $message[]= msgPool::invalid(_("Mobile"), $this->mobile, "/[\/0-9 ()+*-]/");
1265     }
1266     if (!tests::is_phone_nr($this->pager)){
1267       $message[]= msgPool::invalid(_("Pager"), $this->pager, "/[\/0-9 ()+*-]/");
1268     }
1270     /* Check for reserved characers */
1271     if (preg_match ('/[,+"?\'()=<>;\\\\]/', $this->givenName)){
1272       $message[]= msgPool::invalid(_("Given name"), $this->givenName, '/[^,+"?\'()=<>;\\\\]/');
1273     }
1274     if (preg_match ('/[,+"?\'()=<>;\\\\]/', $this->sn)){
1275       $message[]= msgPool::invalid(_("Name"), $this->sn, '/[^,+"?\'()=<>;\\\\]/');
1276     }
1278     return $message;
1279   }
1282   /* Indicate whether a password change is needed or not */
1283   function password_change_needed()
1284   {
1285     if(in_array("pw_storage",$this->multi_boxes)){
1286       return(TRUE);
1287     }
1288     return($this->pw_storage != $this->last_pw_storage);
1289   }
1292   /* Load a jpegPhoto from LDAP, this is going to be simplified later on */
1293   function load_picture()
1294   {
1295     $ldap = $this->config->get_ldap_link();
1296     $ldap->cd ($this->dn);
1297     $data = $ldap->get_attribute($this->dn,"jpegPhoto");
1299     if((!$data) || ($data == "*removed*")){ 
1301       /* In case we don't get an entry, load a default picture */
1302       $this->set_picture ();
1303       $this->jpegPhoto= "*removed*";
1304     }else{
1306       /* Set picture */
1307       $this->photoData= $data;
1308       session::set('binary',$this->photoData);
1309       session::set('binarytype',"image/jpeg");
1310       $this->jpegPhoto= "";
1311     }
1312   }
1315   /* Load a certificate from LDAP, this is going to be simplified later on */
1316   function load_cert()
1317   {
1318     $ds= ldap_connect($this->config->current['SERVER']);
1319     ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
1320     if (function_exists("ldap_set_rebind_proc") && $this->config->get_cfg_value("ldapFollowReferrals") == "true"){
1321       ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
1322       ldap_set_rebind_proc($ds, array(&$this, "rebind"));
1323     }
1324     if ($this->config->get_cfg_value("ldapTLS") == "true"){
1325       ldap_start_tls($ds);
1326     }
1328     $r= ldap_bind($ds);
1329     $sr= @ldap_read($ds, $this->dn, "userCertificate=*", array("userCertificate"));
1331     if ($sr) {
1332       $ei= @ldap_first_entry($ds, $sr);
1333       
1334       if ($ei) {
1335         if (!$info = @ldap_get_values_len($ds, $ei, "userCertificate;binary")){
1336           $this->userCertificate= "";
1337         } else {
1338           $this->userCertificate= $info[0];
1339         }
1340       }
1341     } else {
1342       $this->userCertificate= "";
1343     }
1345     ldap_unbind($ds);
1346   }
1349   /* Load picture from file to object */
1350   function set_picture($filename ="")
1351   {
1352     if (!is_file($filename) || $filename =="" ){
1353       $filename= "./plugins/users/images/default.jpg";
1354       $this->jpegPhoto= "*removed*";
1355     }
1357     $fd = fopen ($filename, "rb");
1358     $this->photoData= fread ($fd, filesize ($filename));
1359     session::set('binary',$this->photoData);
1360     session::set('binarytype',"image/jpeg");
1361     $this->jpegPhoto= "";
1363     fclose ($fd);
1364   }
1367   /* Load certificate from file to object */
1368   function set_cert($cert, $filename)
1369   {
1370     if(!$this->acl_is_writeable("Certificate",(!is_object($this->parent) && !session::is_set('edit')))) return;
1371     $fd = fopen ($filename, "rb");
1372     if (filesize($filename)>0) {
1373       $this->$cert= fread ($fd, filesize ($filename));
1374       fclose ($fd);
1375       $this->is_modified= TRUE;
1376     } else {
1377       msg_dialog::display(_("Error"), _("Cannot open certificate!"), ERROR_DIALOG);
1378     }
1379   }
1381   /* Adapt from given 'dn' */
1382   function adapt_from_template($dn, $skip= array())
1383   {
1384     plugin::adapt_from_template($dn, $skip);
1386     /* Get password method from template 
1387      */
1388     $tmp= passwordMethod::get_method($this->attrs['userPassword'][0]);
1389     if(is_object($tmp)){
1390       if($tmp->is_configurable()){
1391         $tmp->adapt_from_template($dn);
1392         $this->pwObject = &$tmp;
1393       }
1394       $this->pw_storage= $tmp->get_hash();
1395     }
1397     /* Get base */
1398     $this->base= preg_replace('/^[^,]+,'.get_people_ou().'/i', '', $dn);
1400     if($this->governmentmode){
1402       /* Walk through govattrs */
1403       foreach ($this->govattrs as $val){
1405         if (in_array($val, $skip)){
1406           continue;
1407         }
1409         if (isset($this->attrs["$val"][0])){
1411           /* If attribute is set, replace dynamic parts: 
1412              %sn, %givenName and %uid. Fill these in our local variables. */
1413           $value= $this->attrs["$val"][0];
1415           foreach (array("sn", "givenName", "uid") as $repl){
1416             if (preg_match("/%$repl/i", $value)){
1417               $value= preg_replace ("/%$repl/i",
1418                   $this->parent->$repl, $value);
1419             }
1420           }
1421           $this->$val= $value;
1422         }
1423       }
1424     }
1426     /* Get back uid/sn/givenName - only write if nothing's skipped */
1427     if ($this->parent !== NULL && count($skip) == 0){
1428       $this->uid= $this->parent->uid;
1429       $this->sn= $this->parent->sn;
1430       $this->givenName= $this->parent->givenName;
1431     }
1432   }
1434  
1435   /* This avoids that users move themselves out of their rights. 
1436    */
1437   function allowedBasesToMoveTo()
1438   {
1439     /* Get bases */
1440     $bases  = $this->get_allowed_bases();
1441     return($bases);
1442   } 
1445   function getCopyDialog()
1446   {
1447     $str = "";
1449     session::set('binary',$this->photoData); 
1450     session::set('binarytype',"image/jpeg");
1452     /* Get random number for pictures */
1453     srand((double)microtime()*1000000); 
1454     $rand = rand(0, 10000);
1456     $smarty = get_smarty();
1458     $smarty->assign("passwordTodo","clear");
1460     if(isset($_POST['passwordTodo'])){
1461       $smarty->assign("passwordTodo",$_POST['passwordTodo']);
1462     }
1464     $smarty->assign("sn",       $this->sn);
1465     $smarty->assign("givenName",$this->givenName);
1466     $smarty->assign("uid",      $this->uid);
1467     $smarty->assign("rand",     $rand);
1468     $str = $smarty->fetch(get_template_path("paste_generic.tpl",TRUE,dirname(__FILE__)));
1471     $ret = array();
1472     $ret['string'] = $str;
1473     $ret['status'] = "";  
1474     return($ret);
1475   }
1477   function saveCopyDialog()
1478   {
1479     /* Set_acl_base */
1480     $this->set_acl_base("cn=dummy,".get_people_ou().$this->base);
1482     if((isset($_FILES['picture_file']['tmp_name'])) && ($_FILES['picture_file']['size'] > 0)){
1483       $this->set_picture($_FILES['picture_file']['tmp_name']);
1484     }
1486     /* Remove picture? */
1487     if (isset($_POST['picture_remove'])){
1488       $this->jpegPhoto= "*removed*";
1489       $this->set_picture ("./plugins/users/images/default.jpg");
1490       $this->is_modified= TRUE;
1491     }
1493     $attrs = array("uid","givenName","sn");
1494     foreach($attrs as $attr){
1495       if(isset($_POST[$attr])){
1496         $this->$attr = $_POST[$attr];
1497       }
1498     } 
1499   }
1502   function PrepareForCopyPaste($source)
1503   {
1504     plugin::PrepareForCopyPaste($source);
1506     /* Reset certificate information addepted from source user
1507        to avoid setting the same user certificate for the destination user. */
1508     $this->userPKCS12= "";
1509     $this->userSMIMECertificate= "";
1510     $this->userCertificate= "";
1511     $this->certificateSerialNumber= "";
1512     $this->old_certificateSerialNumber= "";
1513     $this->old_userPKCS12= "";
1514     $this->old_userSMIMECertificate= "";
1515     $this->old_userCertificate= "";
1516   }
1519   static function plInfo()
1520   {
1521   
1522     $govattrs= array(
1523         "gouvernmentOrganizationalUnit"             =>  _("Unit"), 
1524         "houseIdentifier"                           =>  _("House identifier"), 
1525         "vocation"                                  =>  _("Vocation"),
1526         "ivbbLastDeliveryCollective"                =>  _("Last delivery"), 
1527         "gouvernmentOrganizationalPersonLocality"   =>  _("Person locality"),
1528         "gouvernmentOrganizationalUnitDescription"  =>  _("Unit description"),
1529         "gouvernmentOrganizationalUnitSubjectArea"  =>  _("Subject area"),
1530         "functionalTitle"                           =>  _("Functional title"),
1531         "certificateSerialNumber"                   =>  _("Certificate serial number"),
1532         "publicVisible"                             =>  _("Public visible"),
1533         "street"                                    =>  _("Street"),
1534         "role"                                      =>  _("Role"),
1535         "postalCode"                                =>  _("Postal code"));
1537     $ret = array(
1538         "plShortName" => _("Generic"),
1539         "plDescription" => _("Generic user settings"),
1540         "plSelfModify"  => TRUE,
1541         "plDepends"     => array(),
1542         "plPriority"    => 1,
1543         "plSection"     => array("personal" => _("My account")),
1544         "plCategory"    => array("users" => array("description" => _("Users"),
1545                                                   "objectClass" => "gosaAccount")),
1547         "plProvidedAcls" => array(
1549           "sn"                => _("Surname"),
1550           "givenName"         => _("Given name"),
1551           "uid"               => _("User identification"),
1552           "personalTitle"     => _("Personal title"),
1553           "academicTitle"     => _("Academic title"),
1555           "dateOfBirth"       => _("Date of birth"),
1556           "gender"            => _("Gender"),
1557           "preferredLanguage" => _("Preferred language"),
1558           "base"              => _("Base"), 
1560           "userPicture"       => _("User picture"),
1562           "o"                 => _("Organization"),
1563           "ou"                => _("Department"),
1564           "departmentNumber"  => _("Department number"),
1565           "employeeNumber"    => _("Employee number"),
1566           "employeeType"      => _("Employee type"),
1568           "roomNumber"        => _("Room number"),
1569           "telephoneNumber"   => _("Telefon number"),
1570           "pager"             => _("Pager number"),
1571           "mobile"            => _("Mobile number"),
1572           "facsimileTelephoneNumber"     => _("Fax number"),
1574           "st"                => _("State"),
1575           "l"                 => _("Location"),
1576           "postalAddress"     => _("Postal address"),
1578           "homePostalAddress" => _("Home postal address"),
1579           "homePhone"         => _("Home phone number"),
1580           "labeledURI"        => _("Homepage"),
1581           "userPassword"      => _("User password method"), 
1582           "Certificate"       => _("User certificates"))
1584         );
1586     /* Append government attributes if required */
1587     global $config;
1588     if($config->get_cfg_value("honourIvbbAttributes") == "true"){
1589       foreach($govattrs as $attr => $desc){
1590         $ret["plProvidedAcls"][$attr] = $desc;
1591       }
1592     }
1593     return($ret);
1594   }
1596   function get_multi_edit_values()
1597   {
1598     $ret = plugin::get_multi_edit_values();
1599     if(in_array("pw_storage",$this->multi_boxes)){
1600       $ret['pw_storage'] = $this->pw_storage;
1601     }
1602     if(in_array("edit_picture",$this->multi_boxes)){
1603       $ret['jpegPhoto'] = $this->jpegPhoto;
1604       $ret['photoData'] = $this->photoData;
1605       $ret['old_jpegPhoto'] = $this->old_jpegPhoto;
1606       $ret['old_photoData'] = $this->old_photoData;
1607     }
1608     if(isset($ret['dateOfBirth'])){
1609       unset($ret['dateOfBirth']);
1610     }
1611     if(isset($ret['cn'])){
1612       unset($ret['cn']);
1613     }
1614     $ret['is_modified'] = $this->is_modified;
1615     if(in_array("base",$this->multi_boxes)){
1616       $ret['orig_base']="Changed_by_Multi_Plug";
1617       $ret['base']=$this->base;
1618     }
1619     return($ret); 
1620   }
1623   function multiple_save_object()
1624   {
1625     plugin::multiple_save_object();
1627     /* Get pw_storage mode */
1628     if (isset($_POST['pw_storage'])){
1629       foreach(array("pw_storage") as $val){
1630         if(isset($_POST[$val])){
1631           $data= validate(get_post($val));
1632           if ($data != $this->$val){
1633             $this->is_modified= TRUE;
1634           }
1635           $this->$val= $data;
1636         }
1637       }
1638     }
1639     if(isset($_POST['base'])){
1640       $this->base = get_post('base');
1641     }
1643     if(isset($_POST['user_mulitple_edit'])){
1644       foreach(array("base","pw_storage","edit_picture") as $val){
1645         if(isset($_POST["use_".$val])){
1646           $this->multi_boxes[] = $val;
1647         }
1648       }
1649     }
1650   }
1652   
1653   function multiple_check()
1654   {
1655     /* Call check() to set new_dn correctly ... */
1656     $message = plugin::multiple_check();
1658     /* Set the new acl base */
1659     if($this->dn == "new") {
1660       $this->set_acl_base($this->base);
1661     }
1662     if (!tests::is_url($this->labeledURI) && in_array("labeledURI",$this->multi_boxes)){
1663       $message[]= msgPool::invalid(_("Homepage"));
1664     }
1665     if (!tests::is_phone_nr($this->telephoneNumber) && in_array("telephoneNumber",$this->multi_boxes)){
1666       $message[]= msgPool::invalid(_("Phone"), $this->telephoneNumber, "/[\/0-9 ()+*-]/");
1667     }
1668     if (!tests::is_phone_nr($this->facsimileTelephoneNumber) &&  in_array("facsimileTelephoneNumber",$this->multi_boxes)){
1669       $message[]= msgPool::invalid(_("Fax"), $this->facsimileTelephoneNumber, "/[\/0-9 ()+*-]/");
1670     }
1671     if (!tests::is_phone_nr($this->mobile) && in_array("mobile",$this->multi_boxes)){
1672       $message[]= msgPool::invalid(_("Mobile"), $this->mobile, "/[\/0-9 ()+*-]/");
1673     }
1674     if (!tests::is_phone_nr($this->pager) && in_array("pager",$this->multi_boxes)){
1675       $message[]= msgPool::invalid(_("Pager"), $this->pager, "/[\/0-9 ()+*-]/");
1676     }
1677     if (preg_match ('/[,+"?\'()=<>;\\\\]/', $this->givenName) && in_array("givenName",$this->multi_boxes)){
1678       $message[]= msgPool::invalid(_("Given name"), $this->giveName, '/[^,+"?\'()=<>;\\\\]/');
1679     }
1680     if (preg_match ('/[,+"?\'()=<>;\\\\]/', $this->sn) && in_array("sn",$this->multi_boxes)){
1681       $message[]= msgPool::invalid(_("Name"), $this->sn, '/[^,+"?\'()=<>;\\\\]/');
1682     }
1683     return($message);
1684   }
1688   function multiple_execute()
1689   {
1690     return($this->execute());
1691   }
1696 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1697 ?>