Code

Renamed gosaLastSystemLogin to gotoLastSystemLogin
[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("governmentmode") == "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("governmentmode", "true");
584       }else{
585         $smarty->assign("governmentmode", "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       /* Save current cn
820        */
821       $this->cn = $this->givenName." ".$this->sn;
822     }
823   }
825   function rebind($ldap, $referral)
826   {
827     $credentials= LDAP::get_credentials($referral, $this->config->current['REFERRAL']);
828     if (ldap_bind($ldap, $credentials['ADMIN'], $credentials['PASSWORD'])) {
829       $this->error = "Success";
830       $this->hascon=true;
831       $this->reconnect= true;
832       return (0);
833     } else {
834       $this->error = "Could not bind to " . $credentials['ADMIN'];
835       return NULL;
836     }
837   }
839   
840   /* Save data to LDAP, depending on is_account we save or delete */
841   function save()
842   {
843     /* Only force save of changes .... 
844        If this attributes aren't changed, avoid saving.
845      */
846     if($this->gender=="0") $this->gender ="";
847     if($this->preferredLanguage=="0") $this->preferredLanguage ="";
849     /* First use parents methods to do some basic fillup in $this->attrs */
850     plugin::save ();
852     if ($this->use_dob == "1"){
853       /* 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. */
854       if(!is_array($this->attrs['dateOfBirth'])) {
855         $this->attrs['dateOfBirth'] = date("Y-m-d", $this->dateOfBirth);
856       }
857     }
859     /* Remove additional objectClasses */
860     $tmp= array();
861     foreach ($this->attrs['objectClass'] as $key => $set){
862       $found= false;
863       foreach (array("ivbbentry", "gosaUserTemplate") as $val){
864         if (preg_match ("/^$set$/i", $val)){
865           $found= true;
866           break;
867         }
868       }
869       if (!$found){
870         $tmp[]= $set;
871       }
872     }
874     /* Replace the objectClass array. This is done because of the
875        separation into government and normal mode. */
876     $this->attrs['objectClass']= $tmp;
878     /* Add objectClasss for template mode? */
879     if ($this->is_template){
880       $this->attrs['objectClass'][]= "gosaUserTemplate";
881     }
883     /* Hard coded government mode? */
884     if ($this->governmentmode){
885       $this->attrs['objectClass'][]= "ivbbentry";
887       /* Copy standard attributes */
888       foreach ($this->govattrs as $val){
889         if ($this->$val != ""){
890           $this->attrs["$val"]= $this->$val;
891         } elseif (!$this->is_new) {
892           $this->attrs["$val"]= array();
893         }
894       }
896       /* Remove attribute if set to "nein" */
897       if ($this->publicVisible == "nein"){
898         $this->attrs['publicVisible']= array();
899         if($this->is_new){
900           unset($this->attrs['publicVisible']);
901         }else{
902           $this->attrs['publicVisible']=array();
903         }
905       }
907     }
909     /* Special handling for attribute userCertificate needed */
910     if ($this->userCertificate != ""){
911       $this->attrs["userCertificate;binary"]= $this->userCertificate;
912       $remove_userCertificate= false;
913     } else {
914       $remove_userCertificate= true;
915     }
917     /* Special handling for dateOfBirth value */
918     if ($this->use_dob != "1"){
919       if ($this->is_new) {
920         unset($this->attrs["dateOfBirth"]);
921       } else {
922         $this->attrs["dateOfBirth"]= array();
923       }
924     }
925     if (!$this->gender){
926       if ($this->is_new) {
927         unset($this->attrs["gender"]);
928       } else {
929         $this->attrs["gender"]= array();
930       }
931     }
932     if (!$this->preferredLanguage){
933       if ($this->is_new) {
934         unset($this->attrs["preferredLanguage"]);
935       } else {
936         $this->attrs["preferredLanguage"]= array();
937       }
938     }
940     /* Special handling for attribute jpegPhote needed, scale image via
941        image magick to 147x200 pixels and inject resulting data. */
942     if ($this->jpegPhoto == "*removed*"){
943     
944       /* Reset attribute to avoid writing *removed* as value */    
945       $this->attrs["jpegPhoto"] = array();
947     } else {
949       /* Fallback if there's no image magick inside PHP */
950       if (!function_exists("imagick_blob2image")){
951         /* Get temporary file name for conversation */
952         $fname = tempnam (TEMP_DIR, "GOsa");
953   
954         /* Open file and write out photoData */
955         $fp = fopen ($fname, "w");
956         fwrite ($fp, $this->photoData);
957         fclose ($fp);
959         /* Build conversation query. Filename is generated automatically, so
960            we do not need any special security checks. Exec command and save
961            output. For PHP safe mode, you'll need a configuration which respects
962            image magick as executable... */
963         $query= "convert -size 147x200 $fname -resize 147x200 +profile \"*\" -";
964         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__,
965             $query, "Execute");
966   
967         /* Read data written by convert */
968         $output= "";
969         $sh= popen($query, 'r');
970         while (!feof($sh)){
971           $output.= fread($sh, 4096);
972         }
973         pclose($sh);
975         unlink($fname);
977         /* Save attribute */
978         $this->attrs["jpegPhoto"] = $output;
980       } else {
982         /* Load the new uploaded Photo */
983         if(!$handle  =  imagick_blob2image($this->photoData))  {
984           new log("debug","users/".get_class($this),$this->dn,array(),"Could not access uploaded image");
985         }
987         /* Resizing image to 147x200 and blur */
988         if(!imagick_resize($handle,147,200,IMAGICK_FILTER_GAUSSIAN,0)){
989           new log("debug","users/".get_class($this),$this->dn,array(),"Could not resize uploaded image");
990         }
992         /* Converting image to JPEG */
993         if(!imagick_convert($handle,"JPEG")) {
994           new log("debug","users/".get_class($this),$this->dn,array(),"Could not convert uploaded image to jepg");
995         }
997         /* Creating binary Code for the Image */
998         if(!$dump = imagick_image2blob($handle)){
999           new log("debug","users/".get_class($this),$this->dn,array(),"Could not create new user image");
1000         }
1002         /* Sending Image */
1003         $output=  $dump;
1005         /* Save attribute */
1006         $this->attrs["jpegPhoto"] = $output;
1007       }
1009     }
1011     /* This only gets called when user is renaming himself */
1012     $ldap= $this->config->get_ldap_link();
1013     if ($this->dn != $this->new_dn){
1015       /* Write entry on new 'dn' */
1016       $this->update_acls($this->dn,$this->new_dn);
1017       $this->move($this->dn, $this->new_dn);
1019       /* Happen to use the new one */
1020       change_ui_dn($this->dn, $this->new_dn);
1021       $this->dn= $this->new_dn;
1022     }
1025     /* Save data. Using 'modify' implies that the entry is already present, use 'add' for
1026        new entries. So do a check first... */
1027     $ldap->cat ($this->dn, array('dn'));
1028     if ($ldap->fetch()){
1029       $mode= "modify";
1030     } else {
1031       $mode= "add";
1032       $ldap->cd($this->config->current['BASE']);
1033       $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
1034     }
1036     /* Set password to some junk stuff in case of templates */
1037     if ($this->is_template){
1038       $this->attrs['userPassword']= '{crypt}N0T$3T4N0W';
1039     }
1041     @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__,
1042         $this->attributes, "Save via $mode");
1044     /* Finally write data with selected 'mode' */
1045     $this->cleanup();
1047     /* Update current locale settings, if we have edited ourselves */
1048     $ui = session::get('ui');
1049     if(isset($this->attrs['preferredLanguage']) && $this->dn == $ui->dn){
1050       $ui->language = $this->preferredLanguage;
1051       session::set('ui',$ui);
1052       session::set('Last_init_lang',"update");
1053     }
1055     $ldap->cd ($this->dn);
1056     $ldap->$mode ($this->attrs);
1057     if (!$ldap->success()){
1058       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_DEL, get_class()));
1059       return (1);
1060     }
1062     /* Remove ACL dependencies too */
1063     if($this->dn != $this->orig_dn && $this->orig_dn != "new"){
1064       $tmp = new acl($this->config,$this->parent,$this->dn);
1065       $tmp->update_acl_membership($this->orig_dn,$this->dn);
1066     }
1068     if($mode == "modify"){
1069       new log("modify","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
1070     }else{
1071       new log("create","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
1072     }
1074     /* Remove cert? 
1075        For some reason, the 'ldap' class doesn't want to remove binary entries, so I need
1076        to work around myself. */
1077     if ($remove_userCertificate == true && !$this->is_new && $this->had_userCertificate){
1079       /* Reset array, assemble new, this should be reworked */
1080       $this->attrs= array();
1081       $this->attrs['userCertificate;binary']= array();
1083       /* Prepare connection */
1084       if (!($ds = ldap_connect($this->config->current['SERVER']))) {
1085         die ("Could not connect to LDAP server");
1086       }
1087       ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
1088       if (function_exists("ldap_set_rebind_proc") && $this->config->get_cfg_value("recursive") == "true") {
1089         ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
1090         ldap_set_rebind_proc($ds, array(&$this, "rebind"));
1091       }
1092       if($this->config->get_cfg_value("tls") == "true"){
1093         ldap_start_tls($ds);
1094       }
1095       if (!($res = @ldap_bind($ds, $this->config->current['ADMIN'],
1096               $this->config->current['PASSWORD']))) {
1097         die ("Could not bind to LDAP");
1098       }
1100       /* Modify using attrs */
1101       ldap_mod_del($ds,$this->dn,$this->attrs);
1102       ldap_close($ds);
1103     }
1105     /* If needed, let the password method do some cleanup */
1106     if ($this->pw_storage != $this->last_pw_storage){
1107       $tmp = new passwordMethod($this->config);
1108       $available = $tmp->get_available_methods();
1109       if (in_array_ics($this->last_pw_storage, $available['name'])){
1110         $test= new $available[$this->last_pw_storage]($this->config,$this->dn);
1111         $test->attrs= $this->attrs;
1112         $test->remove_from_parent();
1113       }
1114     }
1116     /* Maybe the current password method want's to do some changes... */
1117     if (is_object($this->pwObject)){
1118       $this->pwObject->save($this->dn);
1119     }
1121     /* Optionally execute a command after we're done */
1122     if ($mode == "add"){
1123       $this->handle_post_events("add", array("uid" => $this->uid));
1124     } elseif ($this->is_modified){
1125       $this->handle_post_events("modify", array("uid" => $this->uid));
1126     }
1128     return (0);
1129   }
1131   
1132   function update_new_dn()
1133   {
1134     $pt= "";
1135     if($this->config->get_cfg_value("include_personal_title") == "true"){
1136       if(!empty($this->personalTitle)){
1137         $pt = $this->personalTitle." ";
1138       }
1139     }
1140     $this->cn= $pt.$this->givenName." ".$this->sn;
1142     /* Permissions for that base? */
1143     if ($this->config->get_cfg_value("dnmode") == "uid"){
1144       $this->new_dn= 'uid='.$this->uid.','.get_people_ou().$this->base;
1145     } else {
1146       /* Don't touch dn, if cn hasn't changed */
1147       if (isset($this->saved_attributes['cn']) && $this->saved_attributes['cn'] == $this->cn &&
1148           $this->orig_base == $this->base ){
1149         $this->new_dn= $this->dn;
1150       } else {
1151         $this->new_dn= $this->create_unique_dn('cn', get_people_ou().$this->base);
1152       }
1153     }
1154   }
1155   
1157   /* Check formular input */
1158   function check()
1159   {
1160     /* Call common method to give check the hook */
1161     $message= plugin::check();
1163     /* Configurable password methods should be configured initially. 
1164      */ 
1165     if($this->last_pw_storage != $this->pw_storage){
1166       $temp= passwordMethod::get_available_methods();
1167       foreach($temp['name'] as $id => $name){
1168         if($name == $this->pw_storage){
1169           if($temp['is_configurable'][$id] && !$this->pwObject instanceof $temp[$name] ){
1170             $message[] = _("The selected password method requires initial configuration!");
1171           }
1172           break;
1173         }
1174       }
1175     }
1177     $this->update_new_dn();
1179     /* Set the new acl base */
1180     if($this->dn == "new") {
1181       $this->set_acl_base($this->base);
1182     }
1184     /* Check if we are allowed to create/move this user 
1185      */
1186     
1187     if($this->orig_dn == "new" && !$this->acl_is_createable($this->base)){
1188       $message[]= msgPool::permCreate();
1189     }elseif($this->orig_dn != "new" && $this->new_dn != $this->orig_dn && !$this->acl_is_moveable($this->base)){
1190       $message[]= msgPool::permMove();
1191     }
1193     /* UID already used? */
1194     $ldap= $this->config->get_ldap_link();
1195     $ldap->cd($this->config->current['BASE']);
1196     $ldap->search("(uid=$this->uid)", array("uid"));
1197     $ldap->fetch();
1198     if ($ldap->count() != 0 && $this->dn == 'new'){
1199       $message[]= msgPool::duplicated(_("Login"));
1200     }
1202     /* In template mode, the uid and givenName are autogenerated... */
1203     if ($this->sn == ""){
1204       $message[]= msgPool::required(_("Name"));
1205     }
1207     if (!$this->is_template){
1208       if ($this->givenName == ""){
1209         $message[]= msgPool::required(_("Given name"));
1210       }
1211       if ($this->uid == ""){
1212         $message[]= msgPool::required(_("Login"));
1213       }
1214       if ($this->config->get_cfg_value("dnmode") != "uid"){
1215         $ldap->cat($this->new_dn);
1216         if ($ldap->count() != 0 && $this->dn != $this->new_dn && $this->dn == 'new'){
1217           $message[]= msgPool::duplicated(_("Name"));
1218         }
1219       }
1220     }
1222     /* Check for valid input */
1223     if ($this->is_modified && !tests::is_uid($this->uid)){
1225       if (strict_uid_mode()){
1226         $message[]= msgPool::invalid(_("Login"), $this->uid, "/[a-z0-9_-]/");
1227       } else {
1228         $message[]= msgPool::invalid(_("Login"), $this->uid, "/[a-z0-9_-]/i");
1229       }
1230     }
1231     if (!tests::is_url($this->labeledURI)){
1232       $message[]= msgPool::invalid(_("Homepage"), "", "", "http://www.your-domain.com/yourname");
1233     }
1235     /* Check phone numbers */
1236     if (!tests::is_phone_nr($this->telephoneNumber)){
1237       $message[]= msgPool::invalid(_("Phone"), $this->telephoneNumber, "/[\/0-9 ()+*-]/");
1238     }
1239     if (!tests::is_phone_nr($this->facsimileTelephoneNumber)){
1240       $message[]= msgPool::invalid(_("Fax"), $this->facsimileTelephoneNumber, "/[\/0-9 ()+*-]/");
1241     }
1242     if (!tests::is_phone_nr($this->mobile)){
1243       $message[]= msgPool::invalid(_("Mobile"), $this->mobile, "/[\/0-9 ()+*-]/");
1244     }
1245     if (!tests::is_phone_nr($this->pager)){
1246       $message[]= msgPool::invalid(_("Pager"), $this->pager, "/[\/0-9 ()+*-]/");
1247     }
1249     /* Check for reserved characers */
1250     if (preg_match ('/[,+"?\'()=<>;\\\\]/', $this->givenName)){
1251       $message[]= msgPool::invalid(_("Given name"), $this->givenName, '/[^,+"?\'()=<>;\\\\]/');
1252     }
1253     if (preg_match ('/[,+"?\'()=<>;\\\\]/', $this->sn)){
1254       $message[]= msgPool::invalid(_("Name"), $this->sn, '/[^,+"?\'()=<>;\\\\]/');
1255     }
1257     return $message;
1258   }
1261   /* Indicate whether a password change is needed or not */
1262   function password_change_needed()
1263   {
1264     if(in_array("pw_storage",$this->multi_boxes)){
1265       return(TRUE);
1266     }
1267     return($this->pw_storage != $this->last_pw_storage);
1268   }
1271   /* Load a jpegPhoto from LDAP, this is going to be simplified later on */
1272   function load_picture()
1273   {
1274     $ldap = $this->config->get_ldap_link();
1275     $ldap->cd ($this->dn);
1276     $data = $ldap->get_attribute($this->dn,"jpegPhoto");
1278     if((!$data) || ($data == "*removed*")){ 
1280       /* In case we don't get an entry, load a default picture */
1281       $this->set_picture ();
1282       $this->jpegPhoto= "*removed*";
1283     }else{
1285       /* Set picture */
1286       $this->photoData= $data;
1287       session::set('binary',$this->photoData);
1288       session::set('binarytype',"image/jpeg");
1289       $this->jpegPhoto= "";
1290     }
1291   }
1294   /* Load a certificate from LDAP, this is going to be simplified later on */
1295   function load_cert()
1296   {
1297     $ds= ldap_connect($this->config->current['SERVER']);
1298     ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
1299     if (function_exists("ldap_set_rebind_proc") && $this->config->get_cfg_value("recursive") == "true"){
1300       ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
1301       ldap_set_rebind_proc($ds, array(&$this, "rebind"));
1302     }
1303     if ($this->config->get_cfg_value("tls") == "true"){
1304       ldap_start_tls($ds);
1305     }
1307     $r= ldap_bind($ds);
1308     $sr= @ldap_read($ds, $this->dn, "userCertificate=*", array("userCertificate"));
1310     if ($sr) {
1311       $ei= @ldap_first_entry($ds, $sr);
1312       
1313       if ($ei) {
1314         if (!$info = @ldap_get_values_len($ds, $ei, "userCertificate;binary")){
1315           $this->userCertificate= "";
1316         } else {
1317           $this->userCertificate= $info[0];
1318         }
1319       }
1320     } else {
1321       $this->userCertificate= "";
1322     }
1324     ldap_unbind($ds);
1325   }
1328   /* Load picture from file to object */
1329   function set_picture($filename ="")
1330   {
1331     if (!is_file($filename) || $filename =="" ){
1332       $filename= "./plugins/users/images/default.jpg";
1333       $this->jpegPhoto= "*removed*";
1334     }
1336     $fd = fopen ($filename, "rb");
1337     $this->photoData= fread ($fd, filesize ($filename));
1338     session::set('binary',$this->photoData);
1339     session::set('binarytype',"image/jpeg");
1340     $this->jpegPhoto= "";
1342     fclose ($fd);
1343   }
1346   /* Load certificate from file to object */
1347   function set_cert($cert, $filename)
1348   {
1349     if(!$this->acl_is_writeable("Certificate",(!is_object($this->parent) && !session::is_set('edit')))) return;
1350     $fd = fopen ($filename, "rb");
1351     if (filesize($filename)>0) {
1352       $this->$cert= fread ($fd, filesize ($filename));
1353       fclose ($fd);
1354       $this->is_modified= TRUE;
1355     } else {
1356       msg_dialog::display(_("Error"), _("Cannot open certificate!"), ERROR_DIALOG);
1357     }
1358   }
1360   /* Adapt from given 'dn' */
1361   function adapt_from_template($dn, $skip= array())
1362   {
1363     plugin::adapt_from_template($dn, $skip);
1365     /* Get base */
1366     $this->base= preg_replace('/^[^,]+,'.get_people_ou().'/i', '', $dn);
1368     if($this->governmentmode){
1370       /* Walk through govattrs */
1371       foreach ($this->govattrs as $val){
1373         if (in_array($val, $skip)){
1374           continue;
1375         }
1377         if (isset($this->attrs["$val"][0])){
1379           /* If attribute is set, replace dynamic parts: 
1380              %sn, %givenName and %uid. Fill these in our local variables. */
1381           $value= $this->attrs["$val"][0];
1383           foreach (array("sn", "givenName", "uid") as $repl){
1384             if (preg_match("/%$repl/i", $value)){
1385               $value= preg_replace ("/%$repl/i",
1386                   $this->parent->$repl, $value);
1387             }
1388           }
1389           $this->$val= $value;
1390         }
1391       }
1392     }
1394     /* Get back uid/sn/givenName - only write if nothing's skipped */
1395     if ($this->parent !== NULL && count($skip) == 0){
1396       $this->uid= $this->parent->uid;
1397       $this->sn= $this->parent->sn;
1398       $this->givenName= $this->parent->givenName;
1399     }
1400   }
1402  
1403   /* This avoids that users move themselves out of their rights. 
1404    */
1405   function allowedBasesToMoveTo()
1406   {
1407     /* Get bases */
1408     $bases  = $this->get_allowed_bases();
1409     return($bases);
1410   } 
1413   function getCopyDialog()
1414   {
1415     $str = "";
1417     session::set('binary',$this->photoData); 
1418     session::set('binarytype',"image/jpeg");
1420     /* Get random number for pictures */
1421     srand((double)microtime()*1000000); 
1422     $rand = rand(0, 10000);
1424     $smarty = get_smarty();
1426     $smarty->assign("passwordTodo","clear");
1428     if(isset($_POST['passwordTodo'])){
1429       $smarty->assign("passwordTodo",$_POST['passwordTodo']);
1430     }
1432     $smarty->assign("sn",       $this->sn);
1433     $smarty->assign("givenName",$this->givenName);
1434     $smarty->assign("uid",      $this->uid);
1435     $smarty->assign("rand",     $rand);
1436     $str = $smarty->fetch(get_template_path("paste_generic.tpl",TRUE,dirname(__FILE__)));
1439     $ret = array();
1440     $ret['string'] = $str;
1441     $ret['status'] = "";  
1442     return($ret);
1443   }
1445   function saveCopyDialog()
1446   {
1447     /* Set_acl_base */
1448     $this->set_acl_base("cn=dummy,".get_people_ou().$this->base);
1450     if((isset($_FILES['picture_file']['tmp_name'])) && ($_FILES['picture_file']['size'] > 0)){
1451       $this->set_picture($_FILES['picture_file']['tmp_name']);
1452     }
1454     /* Remove picture? */
1455     if (isset($_POST['picture_remove'])){
1456       $this->jpegPhoto= "*removed*";
1457       $this->set_picture ("./plugins/users/images/default.jpg");
1458       $this->is_modified= TRUE;
1459     }
1461     $attrs = array("uid","givenName","sn");
1462     foreach($attrs as $attr){
1463       if(isset($_POST[$attr])){
1464         $this->$attr = $_POST[$attr];
1465       }
1466     } 
1467   }
1470   function PrepareForCopyPaste($source)
1471   {
1472     plugin::PrepareForCopyPaste($source);
1474     /* Reset certificate information addepted from source user
1475        to avoid setting the same user certificate for the destination user. */
1476     $this->userPKCS12= "";
1477     $this->userSMIMECertificate= "";
1478     $this->userCertificate= "";
1479     $this->certificateSerialNumber= "";
1480     $this->old_certificateSerialNumber= "";
1481     $this->old_userPKCS12= "";
1482     $this->old_userSMIMECertificate= "";
1483     $this->old_userCertificate= "";
1484   }
1487   static function plInfo()
1488   {
1489   
1490     $govattrs= array(
1491         "gouvernmentOrganizationalUnit"             =>  _("Unit"), 
1492         "houseIdentifier"                           =>  _("House identifier"), 
1493         "vocation"                                  =>  _("Vocation"),
1494         "ivbbLastDeliveryCollective"                =>  _("Last delivery"), 
1495         "gouvernmentOrganizationalPersonLocality"   =>  _("Person locality"),
1496         "gouvernmentOrganizationalUnitDescription"  =>  _("Unit description"),
1497         "gouvernmentOrganizationalUnitSubjectArea"  =>  _("Subject area"),
1498         "functionalTitle"                           =>  _("Functional title"),
1499         "certificateSerialNumber"                   =>  _("Certificate serial number"),
1500         "publicVisible"                             =>  _("Public visible"),
1501         "street"                                    =>  _("Street"),
1502         "role"                                      =>  _("Role"),
1503         "postalCode"                                =>  _("Postal code"));
1505     $ret = array(
1506         "plShortName" => _("Generic"),
1507         "plDescription" => _("Generic user settings"),
1508         "plSelfModify"  => TRUE,
1509         "plDepends"     => array(),
1510         "plPriority"    => 1,
1511         "plSection"     => array("personal" => _("My account")),
1512         "plCategory"    => array("users" => array("description" => _("Users"),
1513                                                   "objectClass" => "gosaAccount")),
1515         "plProvidedAcls" => array(
1517           "sn"                => _("Surname"),
1518           "givenName"         => _("Given name"),
1519           "uid"               => _("User identification"),
1520           "personalTitle"     => _("Personal title"),
1521           "academicTitle"     => _("Academic title"),
1523           "dateOfBirth"       => _("Date of birth"),
1524           "gender"            => _("Gender"),
1525           "preferredLanguage" => _("Preferred language"),
1526           "base"              => _("Base"), 
1528           "userPicture"       => _("User picture"),
1530           "o"                 => _("Organization"),
1531           "ou"                => _("Department"),
1532           "departmentNumber"  => _("Department number"),
1533           "employeeNumber"    => _("Employee number"),
1534           "employeeType"      => _("Employee type"),
1536           "roomNumber"        => _("Room number"),
1537           "telephoneNumber"   => _("Telefon number"),
1538           "pager"             => _("Pager number"),
1539           "mobile"            => _("Mobile number"),
1540           "facsimileTelephoneNumber"     => _("Fax number"),
1542           "st"                => _("State"),
1543           "l"                 => _("Location"),
1544           "postalAddress"     => _("Postal address"),
1546           "homePostalAddress" => _("Home postal address"),
1547           "homePhone"         => _("Home phone number"),
1548           "labeledURI"        => _("Homepage"),
1549           "userPassword"      => _("User password method"), 
1550           "Certificate"       => _("User certificates"))
1552         );
1554     /* Append government attributes if required */
1555     global $config;
1556     if($config->get_cfg_value("governmentmode") == "true"){
1557       foreach($govattrs as $attr => $desc){
1558         $ret["plProvidedAcls"][$attr] = $desc;
1559       }
1560     }
1561     return($ret);
1562   }
1564   function get_multi_edit_values()
1565   {
1566     $ret = plugin::get_multi_edit_values();
1567     if(in_array("pw_storage",$this->multi_boxes)){
1568       $ret['pw_storage'] = $this->pw_storage;
1569     }
1570     if(in_array("edit_picture",$this->multi_boxes)){
1571       $ret['jpegPhoto'] = $this->jpegPhoto;
1572       $ret['photoData'] = $this->photoData;
1573       $ret['old_jpegPhoto'] = $this->old_jpegPhoto;
1574       $ret['old_photoData'] = $this->old_photoData;
1575     }
1576     if(isset($ret['dateOfBirth'])){
1577       unset($ret['dateOfBirth']);
1578     }
1579     if(isset($ret['cn'])){
1580       unset($ret['cn']);
1581     }
1582     $ret['is_modified'] = $this->is_modified;
1583     if(in_array("base",$this->multi_boxes)){
1584       $ret['orig_base']="Changed_by_Multi_Plug";
1585       $ret['base']=$this->base;
1586     }
1587     return($ret); 
1588   }
1591   function multiple_save_object()
1592   {
1593     plugin::multiple_save_object();
1595     /* Get pw_storage mode */
1596     if (isset($_POST['pw_storage'])){
1597       foreach(array("pw_storage") as $val){
1598         if(isset($_POST[$val])){
1599           $data= validate(get_post($val));
1600           if ($data != $this->$val){
1601             $this->is_modified= TRUE;
1602           }
1603           $this->$val= $data;
1604         }
1605       }
1606     }
1607     if(isset($_POST['base'])){
1608       $this->base = get_post('base');
1609     }
1611     if(isset($_POST['user_mulitple_edit'])){
1612       foreach(array("base","pw_storage","edit_picture") as $val){
1613         if(isset($_POST["use_".$val])){
1614           $this->multi_boxes[] = $val;
1615         }
1616       }
1617     }
1618   }
1620   
1621   function multiple_check()
1622   {
1623     /* Call check() to set new_dn correctly ... */
1624     $message = plugin::multiple_check();
1626     /* Set the new acl base */
1627     if($this->dn == "new") {
1628       $this->set_acl_base($this->base);
1629     }
1630     if (!tests::is_url($this->labeledURI) && in_array("labeledURI",$this->multi_boxes)){
1631       $message[]= msgPool::invalid(_("Homepage"));
1632     }
1633     if (!tests::is_phone_nr($this->telephoneNumber) && in_array("telephoneNumber",$this->multi_boxes)){
1634       $message[]= msgPool::invalid(_("Phone"), $this->telephoneNumber, "/[\/0-9 ()+*-]/");
1635     }
1636     if (!tests::is_phone_nr($this->facsimileTelephoneNumber) &&  in_array("facsimileTelephoneNumber",$this->multi_boxes)){
1637       $message[]= msgPool::invalid(_("Fax"), $this->facsimileTelephoneNumber, "/[\/0-9 ()+*-]/");
1638     }
1639     if (!tests::is_phone_nr($this->mobile) && in_array("mobile",$this->multi_boxes)){
1640       $message[]= msgPool::invalid(_("Mobile"), $this->mobile, "/[\/0-9 ()+*-]/");
1641     }
1642     if (!tests::is_phone_nr($this->pager) && in_array("pager",$this->multi_boxes)){
1643       $message[]= msgPool::invalid(_("Pager"), $this->pager, "/[\/0-9 ()+*-]/");
1644     }
1645     if (preg_match ('/[,+"?\'()=<>;\\\\]/', $this->givenName) && in_array("givenName",$this->multi_boxes)){
1646       $message[]= msgPool::invalid(_("Given name"), $this->giveName, '/[^,+"?\'()=<>;\\\\]/');
1647     }
1648     if (preg_match ('/[,+"?\'()=<>;\\\\]/', $this->sn) && in_array("sn",$this->multi_boxes)){
1649       $message[]= msgPool::invalid(_("Name"), $this->sn, '/[^,+"?\'()=<>;\\\\]/');
1650     }
1651     return($message);
1652   }
1656   function multiple_execute()
1657   {
1658     return($this->execute());
1659   }
1664 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1665 ?>