Code

Applied remove patch for trunk
[gosa.git] / plugins / personal / generic / class_user.inc
1 <?php
2 /*!
3   \brief   user plugin
4   \author  Cajus Pollmeier <pollmeier@gonicus.de>
5   \version 2.00
6   \date    24.07.2003
8   This class provides the functionality to read and write all attributes
9   relevant for person, organizationalPerson, inetOrgPerson and gosaAccount
10   from/to the LDAP. It does syntax checking and displays the formulars required.
11  */
13 class user extends plugin
14 {
15   /* Definitions */
16   var $plHeadline= "Generic";
17   var $plDescription= "This does something";
19   /* CLI vars */
20   var $cli_summary= "Handling of GOsa's user base object";
21   var $cli_description= "Some longer text\nfor help";
22   var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
24   /* Plugin specific values */
25   var $base= "";
26   var $cn= "";
27   var $personalTitle= "";
28   var $academicTitle= "";
29   var $homePostalAddress= "";
30   var $homePhone= "";
31   var $labeledURI= "";
32   var $o= "";
33   var $ou= "";
34   var $departmentNumber= "";
35   var $employeeNumber= "";
36   var $employeeType= "";
37   var $roomNumber= "";
38   var $telephoneNumber= "";
39   var $facsimileTelephoneNumber= "";
40   var $mobile= "";
41   var $pager= "";
42   var $l= "";
43   var $st= "";
44   var $postalAddress= "";
45   var $dateOfBirth;
46   var $use_dob= "0";
47   var $gender="0";
48   var $preferredLanguage="0";
50   var $jpegPhoto= "*removed*";
51   var $photoData= "";
52   var $old_jpegPhoto= "";
53   var $old_photoData= "";
54   var $cert_dialog= FALSE;
55   var $picture_dialog= FALSE;
57   var $userPKCS12= "";
58   var $userSMIMECertificate= "";
59   var $userCertificate= "";
60   var $certificateSerialNumber= "";
61   var $old_certificateSerialNumber= "";
62   var $old_userPKCS12= "";
63   var $old_userSMIMECertificate= "";
64   var $old_userCertificate= "";
66   var $gouvernmentOrganizationalUnit= "";
67   var $houseIdentifier= "";
68   var $street= "";
69   var $postalCode= "";
70   var $vocation= "";
71   var $ivbbLastDeliveryCollective= "";
72   var $gouvernmentOrganizationalPersonLocality= "";
73   var $gouvernmentOrganizationalUnitDescription= "";
74   var $gouvernmentOrganizationalUnitSubjectArea= "";
75   var $functionalTitle= "";
76   var $role= "";
77   var $publicVisible= "";
79   var $dialog;
81   /* variables to trigger password changes */
82   var $pw_storage= "crypt";
83   var $last_pw_storage= "unset";
84   var $had_userCertificate= FALSE;
86   /* attribute list for save action */
87   var $attributes= array("sn", "givenName", "uid", "personalTitle", "academicTitle",
88       "homePostalAddress", "homePhone", "labeledURI", "o", "ou", "dateOfBirth", "gender","preferredLanguage",
89       "departmentNumber", "employeeNumber", "employeeType", "l", "st","jpegPhoto",
90       "roomNumber", "telephoneNumber", "mobile", "pager", "cn", "userPKCS12",
91       "postalAddress", "facsimileTelephoneNumber", "userSMIMECertificate");
93   var $objectclasses= array("top", "person", "organizationalPerson", "inetOrgPerson",
94       "gosaAccount");
96   /* attributes that are part of the government mode */
97   var $govattrs= array("gouvernmentOrganizationalUnit", "houseIdentifier", "vocation",
98       "ivbbLastDeliveryCollective", "gouvernmentOrganizationalPersonLocality",
99       "gouvernmentOrganizationalUnitDescription","gouvernmentOrganizationalUnitSubjectArea",
100       "functionalTitle", "certificateSerialNumber", "publicVisible", "street", "role",
101       "postalCode");
104   /* constructor, if 'dn' is set, the node loads the given
105      'dn' from LDAP */
106   function user ($config, $dn= NULL)
107   {
108     $this->config= $config;
109     /* Configuration is fine, allways */
110     if ($this->config->current['GOVERNMENTMODE']){
111       $this->attributes=array_merge($this->attributes,$this->govattrs);
112     }
114     /* Load base attributes */
115     plugin::plugin ($config, $dn);
117     if ($this->config->current['GOVERNMENTMODE']){
118       /* Fix public visible attribute if unset */
119       if (!isset($this->attrs['publicVisible'])){
120         $this->publicVisible == "nein";
121       }
122     }
124     /* Load government mode attributes */
125     if ($this->config->current['GOVERNMENTMODE']){
126       /* Copy all attributs */
127       foreach ($this->govattrs as $val){
128         if (isset($this->attrs["$val"][0])){
129           $this->$val= $this->attrs["$val"][0];
130         }
131       }
132     }
134     /* Create me for new accounts */
135     if ($dn == "new"){
136       $this->is_account= TRUE;
137     }
139     /* Make hash default to md5 if not set in config */
140     if (!isset($this->config->current['HASH'])){
141       $hash= "md5";
142     } else {
143       $hash= $this->config->current['HASH'];
144     }
146     /* Load data from LDAP? */
147     if ($dn != NULL){
149       /* Do base conversation */
150       if ($this->dn == "new"){
151         $ui= get_userinfo();
152         $this->base= dn2base($ui->dn);
153       } else {
154         $this->base= dn2base($dn);
155       }
157       /* get password storage type */
158       if (isset ($this->attrs['userPassword'][0])){
159         /* Initialize local array */
160         $matches= array();
161         if (preg_match ("/^{([^}]+)}(.+)/", $this->attrs['userPassword'][0], $matches)){
162           $this->pw_storage= strtolower($matches[1]);
163         } else {
164           if ($this->attrs['userPassword'][0] != ""){
165             $this->pw_storage= "clear";
166           } else {
167             $this->pw_storage= $hash;
168           }
169         }
170       } else {
171         /* Preset with vaule from configuration */
172         $this->pw_storage= $hash;
173       }
175       /* Load extra attributes: certificate and picture */
176       $this->load_cert();
177       $this->load_picture();
178       if ($this->userCertificate != ""){
179         $this->had_userCertificate= TRUE;
180       }
181     }
183     /* Reset password storage indicator, used by password_change_needed() */
184     if ($dn == "new"){
185       $this->last_pw_storage= "unset";
186     } else {
187       $this->last_pw_storage= $this->pw_storage;
188     }
190     /* Generate dateOfBirth entry */
191     if (isset ($this->attrs['dateOfBirth'])){
192       /* This entry is ISO 8601 conform */
193       list($year, $month, $day)= split("-", $this->attrs['dateOfBirth'][0], 3);
194     
195       $this->dateOfBirth=array( 'mon'=> $month,"mday"=> $day,"year"=> $year);
196       $this->use_dob= "1";
197     } else {
198       $this->use_dob= "0";
199     }
201     /* Put gender attribute to upper case */
202     if (isset ($this->attrs['gender'])){
203       $this->gender= strtoupper($this->attrs['gender'][0]);
204     }
205   }
208   /* execute generates the html output for this node */
209   function execute()
210   {
211     /* Call parent execute */
212     plugin::execute();
214     $smarty= get_smarty();
216     /* Fill calendar */
217     if ($this->dateOfBirth == "0"){
218       $date= getdate();
219     } else {
220       if(is_array($this->dateOfBirth)){
221         $date = $this->dateOfBirth;
222       }else{
223         $date = getdate($this->dateOfBirth);
224       }
225     }
227     $days= array();
228     for($d= 1; $d<32; $d++){
229       $days[$d]= $d;
230     }
231     $years= array();
233     if(($date['year']-100)<1901){
234       $start = 1901;
235     }else{
236       $start = $date['year']-100;
237     }
239     $end = $start +100;
240     
241     for($y= $start; $y<=$end; $y++){
242       $years[]= $y;
243     }
244     $years['-']= "-&nbsp;";
245     $months= array(_("January"), _("February"), _("March"), _("April"),
246         _("May"), _("June"), _("July"), _("August"), _("September"),
247         _("October"), _("November"), _("December"), '-' => '-&nbsp;');
248     $smarty->assign("day", $date["mday"]);
249     $smarty->assign("days", $days);
250     $smarty->assign("months", $months);
251     $smarty->assign("month", $date["mon"]-1);
252     $smarty->assign("years", $years);
253     $smarty->assign("year", $date["year"]);
255     /* Assign sex */
256     $sex= array(0 => "&nbsp;", "F" => _("female"), "M" => _("male"));
257     $smarty->assign("gender_list", $sex);
259     /* Assign prefered langage */
260     $language= array(0 => "&nbsp;", "fr_FR" => ("fr_FR"), "en_EN" => ("en_EN"), 
261                                     "de_DE" => ("de_DE"), "it_IT" => ("it_IT"), 
262                                     "nl_NL" => ("nl_NL"), "ru_RU" => ("ru_RU"));
263     $smarty->assign("preferredLanguage_list", $language);
265     /* Get random number for pictures */
266     srand((double)microtime()*1000000); 
267     $smarty->assign("rand", rand(0, 10000));
270     /* Do we represent a valid gosaAccount? */
271     if (!$this->is_account){
272       echo "<img alt=\"\" src=\"images/stop.png\" align=\"middle\">&nbsp;<b>".
273         _("This account has no valid GOsa extensions.")."</b>";
274       return;
275     }
277     /* Base select dialog */
278     $once = true;
279     foreach($_POST as $name => $value){
280       if(preg_match("/^chooseBase/",$name) && $once){
281         $once = false;
282         $this->dialog = new baseSelectDialog($this->config,$this,$this->allowedBasesToMoveTo());
283         $this->dialog->setCurrentBase($this->base);
284       }
285     }
287     /* Dialog handling */
288     if(is_object($this->dialog)){
289       /* Must be called before save_object */
290       $this->dialog->save_object();
291    
292       if($this->dialog->isClosed()){
293         $this->dialog = false;
294       }elseif($this->dialog->isSelected()){
295         $this->base = $this->dialog->isSelected();
296         $this->dialog= false;
297       }else{
298         return($this->dialog->execute());
299       }
300     }
302     /* Want picture edit dialog? */
303     if($this->acl_is_writeable("userPicture")) {
304       if (isset($_POST['edit_picture'])){
305         /* Save values for later recovery, in case some presses
306            the cancel button. */
307         $this->old_jpegPhoto= $this->jpegPhoto;
308         $this->old_photoData= $this->photoData;
309         $this->picture_dialog= TRUE;
310         $this->dialog= TRUE;
311       }
312     }
314     /* Remove picture? */
315     if($this->acl_is_writeable("userPicture",(!is_object($this->parent) && !isset($_SESSION['edit']))) ){
316       if (isset($_POST['picture_remove'])){
317         $this->set_picture ();
318         $this->jpegPhoto= "*removed*";
319         $this->is_modified= TRUE;
320         return($smarty->fetch (get_template_path('generic_picture.tpl', TRUE, dirname(__FILE__))));
321       }
322     }
324     /* Save picture */
325     if (isset($_POST['picture_edit_finish'])){
327       /* Check for clean upload */
328       if ($_FILES['picture_file']['name'] != ""){
329         if (!is_uploaded_file($_FILES['picture_file']['tmp_name'])) {
330           print_red(_("The specified file has not been uploaded via HTTP POST! Aborted."));
331         }else{
332           /* Activate new picture */
333           $this->set_picture($_FILES['picture_file']['tmp_name']);
334         }
335       }
336       $this->picture_dialog= FALSE;
337       $this->dialog= FALSE;
338       $this->is_modified= TRUE;
339     }
342     /* Cancel picture */
343     if (isset($_POST['picture_edit_cancel'])){
345       /* Restore values */
346       $this->jpegPhoto= $this->old_jpegPhoto;
347       $this->photoData= $this->old_photoData;
349       /* Update picture */
350       $_SESSION['binary']= $this->photoData;
351       $_SESSION['binarytype']= "image/jpeg";
352       $this->picture_dialog= FALSE;
353       $this->dialog= FALSE;
354     }
356     /* Toggle dateOfBirth information */
357     if (isset($_POST['set_dob'])){
358       $this->use_dob= ($this->use_dob == "0")?"1":"0";
359     }
362     /* Want certificate= */
363     if ((isset($_POST['edit_cert'])) && $this->acl_is_readable("Certificate")){
365       /* Save original values for later reconstruction */
366       foreach (array("certificateSerialNumber", "userCertificate",
367             "userSMIMECertificate", "userPKCS12") as $val){
369         $oval= "old_$val";
370         $this->$oval= $this->$val;
371       }
373       $this->cert_dialog= TRUE;
374       $this->dialog= TRUE;
375     }
378     /* Cancel certificate dialog */
379     if (isset($_POST['cert_edit_cancel'])){
381       /* Restore original values in case of 'cancel' */
382       foreach (array("certificateSerialNumber", "userCertificate",
383             "userSMIMECertificate", "userPKCS12") as $val){
385         $oval= "old_$val";
386         $this->$val= $this->$oval;
387       }
388       $this->cert_dialog= FALSE;
389       $this->dialog= FALSE;
390     }
393     /* Remove certificate? */
394     if($this->acl_is_writeable("Certificate",(!is_object($this->parent) && !isset($_SESSION['edit'])))){ 
395       foreach (array ("userCertificate", "userSMIMECertificate", "userPKCS12") as $val){
396         if (isset($_POST["remove_$val"])){
398           /* Reset specified cert*/
399           $this->$val= "";
400           $this->is_modified= TRUE;
401         }
402       }
403     }
405     /* Upload new cert and close dialog? */     
406     if($this->acl_is_writeable("Certificate",(!is_object($this->parent) && !isset($_SESSION['edit'])))){ 
407       if (isset($_POST['cert_edit_finish'])){
409         /* for all certificates do */
410         foreach (array ("userCertificate", "userSMIMECertificate", "userPKCS12")
411             as $val){
413           /* Check for clean upload */
414           if (array_key_exists($val."_file", $_FILES) &&
415               array_key_exists('name', $_FILES[$val."_file"]) &&
416               $_FILES[$val."_file"]['name'] != "" &&
417               is_uploaded_file($_FILES[$val."_file"]['tmp_name'])) {
418             $this->set_cert("$val", $_FILES[$val."_file"]['tmp_name']);
419           }
420         }
422         /* Save serial number */
423         if (isset($_POST["certificateSerialNumber"]) &&
424             $_POST["certificateSerialNumber"] != ""){
426           if (!is_id($_POST["certificateSerialNumber"])){
427             print_red (_("Please enter a valid serial number"));
429             foreach(array("userCertificate", "userSMIMECertificate", "userPKCS12") as $cert){
430               if ($this->$cert != ""){
431                 $smarty->assign("$cert"."_state", "true");
432               } else {
433                 $smarty->assign("$cert"."_state", "");
434               }
435             }
436             return ($smarty->fetch (get_template_path('generic_certs.tpl', TRUE, dirname(__FILE__))));
437           }
439           $this->certificateSerialNumber= $_POST["certificateSerialNumber"];
440           $this->is_modified= TRUE;
441         }
443         $this->cert_dialog= FALSE;
444         $this->dialog= FALSE;
445       }
446     }
447     /* Display picture dialog */
448     if ($this->picture_dialog){
449       return($smarty->fetch (get_template_path('generic_picture.tpl', TRUE, dirname(__FILE__))));
450     }
452     /* Display cert dialog */
453     if ($this->cert_dialog){
454       $smarty->assign("CertificateACL",$this->getacl("Certificate",(!is_object($this->parent) && !isset($_SESSION['edit']))));
455       $smarty->assign("Certificate_readable",$this->acl_is_readable("Certificate"));
457       foreach(array("userCertificate", "userSMIMECertificate", "userPKCS12") as $cert){
458         if ($this->$cert != ""){
459           /* import certificate */
460           $certificate = new certificate;
461           $certificate->import($this->$cert);
462       
463           /* Read out data*/
464           $timeto   = $certificate->getvalidto_date();
465           $timefrom = $certificate->getvalidfrom_date();
466          
467           
468           /* Additional info if start end time is '0' */
469           $add_str_info = "";
470           if($timeto == 0 && $timefrom == 0){
471             $add_str_info = "<br><i>"._("(Some types of certificates are currently not supported and may be displayed as 'invalid'.)")."</i>";
472           }
474           $str = "<table summary=\"\" border=0>
475                     <tr>
476                       <td style='vertical-align:top'>CN</td>
477                       <td>".preg_replace("/ /", "&nbsp;", $certificate->getname())."</td>
478                     </tr>
479                   </table><br>".
481                   sprintf(_("Certificate is valid from %s to %s and is currently %s."),
482                         "<b>".date('d M Y',$timefrom)."</b>",
483                         "<b>".date('d M Y',$timeto)."</b>",
484                         $certificate->isvalid()?"<b><font style='color:green'>"._("valid")."</font></b>":
485                                                 "<b><font style='color:red'>"._("invalid")."</font></b>").$add_str_info;
487           $smarty->assign($cert."info",$str);
488           $smarty->assign($cert."_state","true");
489         } else {
490           $smarty->assign($cert."info", "<i>"._("No certificate installed")."</i>");
491           $smarty->assign($cert."_state","");
492         }
493       }
494       $smarty->assign("governmentmode", "false");
495       return($smarty->fetch (get_template_path('generic_certs.tpl', TRUE, dirname(__FILE__))));
496     }
498     /* Prepare password hashes */
499     if ($this->pw_storage == ""){
500       $this->pw_storage= $this->config->current['HASH'];
501     }
503     $temp   = @passwordMethod::get_available_methods();
504     $hashes = $temp['name'];
505     
506     /* Load attributes and acl's */
507     $ui =get_userinfo();
508     foreach($this->attributes as $val){
509       $smarty->assign("$val", $this->$val);
510       $smarty->assign("$val"."ACL", $this->getacl($val,(!is_object($this->parent) && !isset($_SESSION['edit']))));
511     }
513     $smarty->assign("pwmode", $hashes);
514     $smarty->assign("pwmode_select", $this->pw_storage);
515     $smarty->assign("passwordStorageACL", $this->getacl("userPassword",(!is_object($this->parent) && !isset($_SESSION['edit']))));
516     $smarty->assign("base_select",      $this->base);
517     $smarty->assign("CertificatesACL",  $this->getacl("Certificate",(!is_object($this->parent) && !isset($_SESSION['edit']))));
518     $smarty->assign("userPictureACL",   $this->getacl("userPicture",(!is_object($this->parent) && !isset($_SESSION['edit']))));
519     $smarty->assign("userPicture_is_readable",   $this->acl_is_readable("userPicture",(!is_object($this->parent) && !isset($_SESSION['edit']))));
521     /* Create base acls */
522     $baseACL = $this->getacl("base",(!is_object($this->parent) && !isset($_SESSION['edit'])));
523     if($this->dn == "new" && !$this->acl_is_createable()) {
524       $baseACL = preg_replace("/w/","",$baseACL);
525     }elseif($this->dn != "new" && !$this->acl_is_moveable()) {
526       $baseACL = preg_replace("/w/","",$baseACL);
527     }
528     $smarty->assign("baseACL",          $baseACL);
529     @$smarty->assign("bases", $this->allowedBasesToMoveTo());
531     /* Save government mode attributes */
532     if (isset($this->config->current['GOVERNMENTMODE']) &&
533         preg_match('/true/i', $this->config->current['GOVERNMENTMODE'])){
534       $smarty->assign("governmentmode", "true");
535       $ivbbmodes= array("nein", "ivbv", "testa", "ivbv,testa", "internet",
536           "internet,ivbv", "internet,testa", "internet,ivbv,testa");
537       $smarty->assign("ivbbmodes", $ivbbmodes);
538       foreach ($this->govattrs as $val){
539         $smarty->assign("$val", $this->$val);
540         $smarty->assign("$val"."ACL", $this->getacl($val,(!is_object($this->parent) && !isset($_SESSION['edit']))));
541       }
542     } else {
543       $smarty->assign("governmentmode", "false");
544     }
546     /* Special mode for uid */
547     $uidACL= $this->getacl("uid",(!is_object($this->parent) && !isset($_SESSION['edit'])));
548     if (isset ($this->dn)){
549       if ($this->dn != "new"){
550         $uidACL= preg_replace("/w/","",$uidACL);
551       }
552     }  else {
553       $uidACL= preg_replace("/w/","",$uidACL);
554     }
555     
556     $smarty->assign("uidACL", $uidACL);
557     $smarty->assign("is_template", $this->is_template);
558     $smarty->assign("use_dob", $this->use_dob);
560     if (isset($this->parent)){
561       if (isset($this->parent->by_object['phoneAccount']) &&
562           $this->parent->by_object['phoneAccount']->is_account){
563         $smarty->assign("has_phoneaccount", "true");
564       } else {
565         $smarty->assign("has_phoneaccount", "false");
566       }
567     } else {
568       $smarty->assign("has_phoneaccount", "false");
569     }
570     return($smarty->fetch (get_template_path('generic.tpl', TRUE, dirname(__FILE__))));
571   }
574   /* remove object from parent */
575   function remove_from_parent()
576   {
577     $ldap= $this->config->get_ldap_link();
578     $ldap->rmdir ($this->dn);
579     show_ldap_error($ldap->get_error(), sprintf(_("Removing of user/generic account with dn '%s' failed."),$this->dn));
581     /* Delete references to groups */
582     $ldap->cd ($this->config->current['BASE']);
583     $ldap->search ("(&(objectClass=posixGroup)(memberUid=".$this->uid."))", array("uid"));
584     while ($ldap->fetch()){
585       $g= new group($this->config, $ldap->getDN());
586       $g->removeUser($this->uid);
587       $g->save ();
588     }
590     /* Delete references to object groups */
591     $ldap->cd ($this->config->current['BASE']);
592     $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn"));
593     while ($ldap->fetch()){
594       $og= new ogroup($this->config, $ldap->getDN());
595       unset($og->member[$this->dn]);
596       $og->save ();
597     }
599     /* Kerberos server defined? */
600     if (isset($this->config->data['SERVERS']['KERBEROS'])){
601       $cfg= $this->config->data['SERVERS']['KERBEROS'];
602     }
603     if (isset($cfg['SERVER']) && function_exists('kadm5_init_with_password')){
605       /* Connect to the admin interface */
606       $handle = kadm5_init_with_password($cfg['SERVER'], $cfg['REALM'],
607           $cfg['ADMIN'], $cfg['PASSWORD']);
609       /* Errors? */             
610       if ($handle === FALSE){
611         print_red (_("Kerberos database communication failed"));
612         return (2);
613       }
615       /* Build user principal, get list of existsing principals */
616       $principal= $this->uid."@".$cfg['REALM'];
617       $principals = kadm5_get_principals($handle);
619       /* User exists in database? */
620       if (in_array($principal, $principals)){
622         /* Ok. User exists. Remove him/her */
623           $ret= kadm5_delete_principal ( $handle, $principal);
624           if ($ret === FALSE){
625             print_red (_("Can't remove user from kerberos database."));
626           }
627       }
629       /* Free kerberos admin handle */
630       kadm5_destroy($handle);
631     }
634     /* Optionally execute a command after we're done */
635     $this->handle_post_events("remove",array("uid" => $this->uid));
636   }
639   /* Save data to object */
640   function save_object()
641   {
642     if (isset($_POST['generic'])){
644       /* Parents save function */
645       plugin::save_object ();
647       /* Save government mode attributes */
648       if ($this->config->current['GOVERNMENTMODE']){
649         foreach ($this->govattrs as $val){
650           if ($this->acl_is_writeable($val,(!is_object($this->parent) && !isset($_SESSION['edit']))) && isset($_POST["$val"])){
651             $data= stripcslashes($_POST["$val"]);
652             if ($data != $this->$val){
653               $this->is_modified= TRUE;
654             }
655             $this->$val= $data;
656           }
657         }
658       }
660       /* In template mode, the uid is autogenerated... */
661       if ($this->is_template){
662         $this->uid= strtolower($this->sn);
663         $this->givenName= $this->sn;
664       }
666       /* Save base and pw_storage, since these are no LDAP attributes */
667       if (isset($_POST['base'])){
669         $this->set_acl_base('dummy,'.$_POST['base']);
670         if($this->acl_is_moveable("base")){
672           foreach(array("base") as $val){
673             if(isset($_POST[$val])){
674               $data= validate($_POST[$val]);
675               if ($data != $this->$val){
676                 $this->is_modified= TRUE;
677               }
678               $this->$val= $data;
679             }
680           }
681         }else{
682           print_red(sprintf(_("You are not allowed to move this object to '%s'."),LDAP::fix($_POST['base'])));
683           $this->set_acl_base('dummy,'.$this->base);
684         }
685       }
687       /* Get pw_storage mode */
688       if (isset($_POST['pw_storage'])){
689         foreach(array("pw_storage") as $val){
690           if(isset($_POST[$val])){
691             $data= validate($_POST[$val]);
692             if ($data != $this->$val){
693               $this->is_modified= TRUE;
694             }
695             $this->$val= $data;
696           }
697         }
698       }
700       $this->set_acl_base('dummy,'.$this->base);
701     }
702   }
704   function rebind($ldap, $referral)
705   {
706     $credentials= LDAP::get_credentials($referral, $this->config->current['REFERRAL']);
707     if (ldap_bind($ldap, $credentials['ADMIN'], $credentials['PASSWORD'])) {
708       $this->error = "Success";
709       $this->hascon=true;
710       $this->reconnect= true;
711       return (0);
712     } else {
713       $this->error = "Could not bind to " . $credentials['ADMIN'];
714       return NULL;
715     }
716   }
718   /* Save data to LDAP, depending on is_account we save or delete */
719   function save()
720   {
721     /* Only force save of changes .... 
722        If this attributes aren't changed, avoid saving.
723      */
724     if($this->gender=="0") $this->gender ="";
725     if($this->preferredLanguage=="0") $this->preferredLanguage ="";
726     
727  
728     /* First use parents methods to do some basic fillup in $this->attrs */
729     plugin::save ();
731     if ($this->use_dob == "1"){
732       $this->attrs['dateOfBirth'] = date("Y-m-d", $this->dateOfBirth);
733     }
735     /* Remove additional objectClasses */
736     $tmp= array();
737     foreach ($this->attrs['objectClass'] as $key => $set){
738       $found= false;
739       foreach (array("ivbbentry", "gosaUserTemplate") as $val){
740         if (preg_match ("/^$set$/i", $val)){
741           $found= true;
742           break;
743         }
744       }
745       if (!$found){
746         $tmp[]= $set;
747       }
748     }
750     /* Replace the objectClass array. This is done because of the
751        separation into government and normal mode. */
752     $this->attrs['objectClass']= $tmp;
754     /* Add objectClasss for template mode? */
755     if ($this->is_template){
756       $this->attrs['objectClass'][]= "gosaUserTemplate";
757     }
759     /* Hard coded government mode? */
760     if ($this->config->current['GOVERNMENTMODE'] != 'false'){
761       $this->attrs['objectClass'][]= "ivbbentry";
763       /* Copy standard attributes */
764       foreach ($this->govattrs as $val){
765         if ($this->$val != ""){
766           $this->attrs["$val"]= $this->$val;
767         } elseif (!$this->is_new) {
768           $this->attrs["$val"]= array();
769         }
770       }
772       /* Remove attribute if set to "nein" */
773       if ($this->publicVisible == "nein"){
774         $this->attrs['publicVisible']= array();
775         if($this->is_new){
776           unset($this->attrs['publicVisible']);
777         }else{
778           $this->attrs['publicVisible']=array();
779         }
781       }
783     }
785     /* Special handling for attribute userCertificate needed */
786     if ($this->userCertificate != ""){
787       $this->attrs["userCertificate;binary"]= $this->userCertificate;
788       $remove_userCertificate= false;
789     } else {
790       $remove_userCertificate= true;
791     }
793     /* Special handling for dateOfBirth value */
794     if ($this->use_dob != "1"){
795       if ($this->is_new) {
796         unset($this->attrs["dateOfBirth"]);
797       } else {
798         $this->attrs["dateOfBirth"]= array();
799       }
800     }
801     if (!$this->gender){
802       if ($this->is_new) {
803         unset($this->attrs["gender"]);
804       } else {
805         $this->attrs["gender"]= array();
806       }
807     }
808     if (!$this->preferredLanguage){
809       if ($this->is_new) {
810         unset($this->attrs["preferredLanguage"]);
811       } else {
812         $this->attrs["preferredLanguage"]= array();
813       }
814     }
816     /* Special handling for attribute jpegPhote needed, scale image via
817        image magick to 147x200 pixels and inject resulting data. */
818     if ($this->jpegPhoto == "*removed*"){
819     
820       /* Reset attribute to avoid writing *removed* as value */    
821       $this->attrs["jpegPhoto"] = array();
823     } else {
825       /* Fallback if there's no image magick inside PHP */
826       if (!function_exists("imagick_blob2image")){
827         /* Get temporary file name for conversation */
828         $fname = tempnam ("/tmp", "GOsa");
830         /* Open file and write out photoData */
831         $fp = fopen ($fname, "w");
832         fwrite ($fp, $this->photoData);
833         fclose ($fp);
835         /* Build conversation query. Filename is generated automatically, so
836            we do not need any special security checks. Exec command and save
837            output. For PHP safe mode, you'll need a configuration which respects
838            image magick as executable... */
839         $query= "convert -size 147x200 $fname -resize 147x200 +profile \"*\" -";
840         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__,
841             $query, "Execute");
843         /* Read data written by convert */
844         $output= "";
845         $sh= popen($query, 'r');
846         while (!feof($sh)){
847           $output.= fread($sh, 4096);
848         }
849         pclose($sh);
851         unlink($fname);
853         /* Save attribute */
854         $this->attrs["jpegPhoto"] = $output;
856       } else {
858         /* Load the new uploaded Photo */
859         if(!$handle  =  imagick_blob2image($this->photoData))  {
860           gosa_log("Can't Load image");
861         }
863         /* Resizing image to 147x200 and blur */
864         if(!imagick_resize($handle,147,200,IMAGICK_FILTER_GAUSSIAN,0)){
865           gosa_log("imagick_resize failed");
866         }
868         /* Converting image to JPEG */
869         if(!imagick_convert($handle,"JPEG")) {
870           gosa_log("Can't Convert to JPEG");
871         }
873         /* Creating binary Code for the Image */
874         if(!$dump = imagick_image2blob($handle)){
875           gosa_log("Can't create blob for image");
876         }
878         /* Sending Image */
879         $output=  $dump;
881         /* Save attribute */
882         $this->attrs["jpegPhoto"] = $output;
883       }
885     }
887     /* Build new dn */
888     if (isset($this->config->current['DNMODE']) && $this->config->current['DNMODE'] == "uid"){
889       $new_dn= 'uid='.$this->uid.','.get_people_ou().$this->base;
890     } else {
891       $new_dn= 'cn='.$this->cn.','.get_people_ou().$this->base;
892     }
894     /* This only gets called when user is renaming himself */
895     $ldap= $this->config->get_ldap_link();
896     if ($this->dn != $new_dn){
898       /* Write entry on new 'dn' */
899       $this->move($this->dn, $new_dn);
901       /* Happen to use the new one */
902       change_ui_dn($this->dn, $new_dn);
903       $this->dn= $new_dn;
904     }
907     /* Save data. Using 'modify' implies that the entry is already present, use 'add' for
908        new entries. So do a check first... */
909     $ldap->cat ($this->dn, array('dn'));
910     if ($ldap->fetch()){
911       $mode= "modify";
912     } else {
913       $mode= "add";
914       $ldap->cd($this->config->current['BASE']);
915       $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
916     }
918     /* Set password to some junk stuff in case of templates */
919     if ($this->is_template){
920       $this->attrs['userPassword']= '{crypt}N0T$3T4N0W';
921     }
923     @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__,
924         $this->attributes, "Save via $mode");
926     /* Finally write data with selected 'mode' */
927     $this->cleanup();
928     $ldap->cd ($this->dn);
929     $ldap->$mode ($this->attrs);
930     if (show_ldap_error($ldap->get_error(), sprintf(_("Saving of user/generic account with dn '%s' failed."),$this->dn))){
931       return (1);
932     }
934     /* Remove cert? 
935        For some reason, the 'ldap' class doesn't want to remove binary entries, so I need
936        to work around myself. */
937     if ($remove_userCertificate == true && !$this->is_new && $this->had_userCertificate){
939       /* Reset array, assemble new, this should be reworked */
940       $this->attrs= array();
941       $this->attrs['userCertificate;binary']= array();
943       /* Prepare connection */
944       if (!($ds = ldap_connect($this->config->current['SERVER']))) {
945         die ("Could not connect to LDAP server");
946       }
947       ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
948       if (function_exists("ldap_set_rebind_proc") && isset($this->config->current['RECURSIVE']) && $this->config->current['RECURSIVE'] == "true") {
949         ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
950         ldap_set_rebind_proc($ds, array(&$this, "rebind"));
951       }
952       if(isset($config->current['TLS']) && $config->current['TLS'] == "true"){
953         ldap_start_tls($ds);
954       }
955       if (!($res = @ldap_bind($ds, $this->config->current['ADMIN'],
956               $this->config->current['PASSWORD']))) {
957         die ("Could not bind to LDAP");
958       }
960       /* Modify using attrs */
961       ldap_mod_del($ds,$this->dn,$this->attrs);
962       ldap_close($ds);
963     }
965     /* Kerberos server defined? */
966     if (isset($this->config->data['SERVERS']['KERBEROS'])){
967       $cfg= $this->config->data['SERVERS']['KERBEROS'];
968     }
969     if (isset($cfg['SERVER']) && function_exists('kadm5_init_with_password')){
971       /* Connect to the admin interface */
972       $handle = kadm5_init_with_password($cfg['SERVER'], $cfg['REALM'],
973           $cfg['ADMIN'], $cfg['PASSWORD']);
975       /* Errors? */             
976       if ($handle === FALSE){
977         print_red (_("Kerberos database communication failed"));
978         return (2);
979       }
981       /* Build user principal, get list of existsing principals */
982       $principal= $this->uid."@".$cfg['REALM'];
983       $principals = kadm5_get_principals($handle);
985       /* User exists in database? */
986       if (in_array($principal, $principals)){
988         /* Ok. User exists. Remove him/her when pw_storage has
989            changed to be NOT kerberos. */
990         if ($this->pw_storage != "kerberos"){
991           $ret= kadm5_delete_principal ( $handle, $principal);
993           if ($ret === FALSE){
994             print_red (_("Can't remove user from kerberos database."));
995           }
996         }
998       } else {
1000         /* User doesn't exists, create it when pw_storage is kerberos. */
1001         if ($this->pw_storage == "kerberos"){
1002           $ret= kadm5_create_principal ( $handle, $principal);
1004           if ($ret === FALSE){
1005             print_red (_("Can't add user to kerberos database."));
1006           }
1007         }
1009       }
1011       /* Free kerberos admin handle */
1012       kadm5_destroy($handle);
1013     }
1015     /* Optionally execute a command after we're done */
1016     if ($mode == "add"){
1017       $this->handle_post_events("add", array("uid" => $this->uid));
1018     } elseif ($this->is_modified){
1019       $this->handle_post_events("modify", array("uid" => $this->uid));
1020     }
1022     /* Fix tagging if needed */
1023     $this->handle_object_tagging();
1025     return (0);
1026   }
1029   /* Check formular input */
1030   function check()
1031   {
1032     /* Call common method to give check the hook */
1033     $message= plugin::check();
1035     /* Assemble cn */
1036     $this->cn= $this->givenName." ".$this->sn;
1038     /* Permissions for that base? */
1039     if (isset($this->config->current['DNMODE']) && $this->config->current['DNMODE'] == "uid"){
1040       $new_dn= 'uid='.$this->uid.','.get_people_ou().$this->base;
1041     } else {
1042       $new_dn= 'cn='.$this->cn.','.get_people_ou().$this->base;
1043     }
1045     if ($this->dn == "new" &&  !$this->acl_is_createable()){
1046       $message[]= _("You have no permissions to create a user on this 'Base'.");
1047     } elseif ($this->dn != $new_dn && $this->dn != "new"){
1048       if (!$this->acl_is_writeable($this->dn, "user","create",(!is_object($this->parent) && !isset($_SESSION['edit'])))){
1049         $message[]= _("You have no permissions to move this user to the spicified 'Base'.");
1050       }
1051     }
1053     /* must: sn, givenName, uid */
1054     if ($this->sn == "" && ($this->acl_is_writeable("sn",(!is_object($this->parent) && !isset($_SESSION['edit'])) || ($this->is_new)))){
1055       $message[]= _("The required field 'Name' is not set.");
1056     }
1058     /* UID already used? */
1059     $ldap= $this->config->get_ldap_link();
1060     $ldap->cd($this->config->current['BASE']);
1061     $ldap->search("(uid=$this->uid)", array("uid"));
1062     $ldap->fetch();
1063     if ($ldap->count() != 0 && $this->dn == 'new'){
1064       $message[]= _("There's already a person with this 'Login' in the database.");
1065     }
1067     /* In template mode, the uid and givenName are autogenerated... */
1068     if (!$this->is_template){
1069       if ($this->givenName == "" && $this->acl_is_writeable("givenName",(!is_object($this->parent) && !isset($_SESSION['edit'])))){
1070         $message[]= _("The required field 'Given name' is not set.");
1071       }
1072       if ($this->uid == "" && $this->acl_is_writeable("uid",(!is_object($this->parent) && !isset($_SESSION['edit'])))){
1073         $message[]= _("The required field 'Login' is not set.");
1074       }
1075       if (!(isset($this->config->current['DNMODE']) && $this->config->current['DNMODE'] == "uid")){
1076         $ldap->cd($this->config->current['BASE']);
1077         $ldap->search("(cn=".$this->cn.")", array("uid"));
1078         $ldap->fetch();
1079         if ($ldap->count() != 0 && $this->dn != $new_dn && $this->dn == 'new'){
1080           $message[]= _("There's already a person with this 'Name'/'Given name' combination in the database.");
1081         }
1082       }
1083     }
1085     /* Check for valid input */
1086     if ($this->is_modified && !is_uid($this->uid)){
1087       $message[]= _("The field 'Login' contains invalid characters. Lowercase, numbers and dashes are allowed.");
1088     }
1089     if (!is_url($this->labeledURI)){
1090       $message[]= _("The field 'Homepage' contains an invalid URL definition.");
1091     }
1092     if (preg_match ("/[\\\\]/", $this->sn)){
1093       $message[]= _("The field 'Name' contains invalid characters.");
1094     }
1095     if (preg_match ("/[\\\\]/", $this->givenName)){
1096       $message[]= _("The field 'Given name' contains invalid characters.");
1097     }
1099     /* Check phone numbers */
1100     if (!is_phone_nr($this->telephoneNumber)){
1101       $message[]= _("The field 'Phone' contains an invalid phone number.");
1102     }
1103     if (!is_phone_nr($this->facsimileTelephoneNumber)){
1104       $message[]= _("The field 'Fax' contains an invalid phone number.");
1105     }
1106     if (!is_phone_nr($this->mobile)){
1107       $message[]= _("The field 'Mobile' contains an invalid phone number.");
1108     }
1109     if (!is_phone_nr($this->pager)){
1110       $message[]= _("The field 'Pager' contains an invalid phone number.");
1111     }
1113     /* Check for reserved characers */
1114     if (preg_match ('/[,+"?\'()=<>;]/', $this->givenName)){
1115       $message[]= _("The field 'Given name' contains invalid characters.");
1116     }
1117     if (preg_match ('/[,+"?\'()=<>;]/', $this->sn)){
1118       $message[]= _("The field 'Name' contains invalid characters.");
1119     }
1121   return $message;
1122   }
1125   /* Indicate whether a password change is needed or not */
1126   function password_change_needed()
1127   {
1128     return ($this->pw_storage != $this->last_pw_storage);
1129   }
1132   /* Load a jpegPhoto from LDAP, this is going to be simplified later on */
1133   function load_picture()
1134   {
1135     $ldap = $this->config->get_ldap_link();
1136     $ldap->cd ($this->dn);
1137     $data = $ldap->get_attribute($this->dn,"jpegPhoto");
1138       
1139     if((!$data) || ($data == "*removed*")){ 
1141       /* In case we don't get an entry, load a default picture */
1142       $this->set_picture ();//"./images/default.jpg");
1143       $this->jpegPhoto= "*removed*";
1144     }else{
1146       /* Set picture */
1147       $this->photoData= $data;
1148       $_SESSION['binary']= $this->photoData;
1149       $_SESSION['binarytype']= "image/jpeg";
1150       $this->jpegPhoto= "";
1151     }
1152   }
1155   /* Load a certificate from LDAP, this is going to be simplified later on */
1156   function load_cert()
1157   {
1158     $ds= ldap_connect($this->config->current['SERVER']);
1159     ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
1160     if (function_exists("ldap_set_rebind_proc") && isset($this->config->current['RECURSIVE']) && $this->config->current['RECURSIVE'] == "true") {
1161       ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
1162       ldap_set_rebind_proc($ds, array(&$this, "rebind"));
1163     }
1164     if(isset($this->config->current['TLS']) &&
1165         $this->config->current['TLS'] == "true"){
1167       ldap_start_tls($ds);
1168     }
1170     $r= ldap_bind($ds);
1171     $sr= @ldap_read($ds, $this->dn, "userCertificate=*", array("userCertificate"));
1173     if ($sr) {
1174       $ei= @ldap_first_entry($ds, $sr);
1175       
1176       if ($ei) {
1177         if (!$info = @ldap_get_values_len($ds, $ei, "userCertificate;binary")){
1178           $this->userCertificate= "";
1179         } else {
1180           $this->userCertificate= $info[0];
1181         }
1182       }
1183     } else {
1184       $this->userCertificate= "";
1185     }
1187     ldap_unbind($ds);
1188   }
1191   /* Load picture from file to object */
1192   function set_picture($filename ="")
1193   {
1194     if (!is_file($filename) || $filename =="" ){
1195       $filename= "./images/default.jpg";
1196       $this->jpegPhoto= "*removed*";
1197     }
1199     $fd = fopen ($filename, "rb");
1200     $this->photoData= fread ($fd, filesize ($filename));
1201     $_SESSION['binary']= $this->photoData;
1202     $_SESSION['binarytype']= "image/jpeg";
1203     $this->jpegPhoto= "";
1205     fclose ($fd);
1206   }
1209   /* Load certificate from file to object */
1210   function set_cert($cert, $filename)
1211   {
1212     if(!$thsi->acl_is_writeable("Certificate",(!is_object($this->parent) && !isset($_SESSION['edit'])))) return;
1213     $fd = fopen ($filename, "rb");
1214     if (filesize($filename)>0) {
1215       $this->$cert= fread ($fd, filesize ($filename));
1216       fclose ($fd);
1217       $this->is_modified= TRUE;
1218     } else {
1219       print_red(_("Could not open specified certificate!"));
1220     }
1221   }
1223   /* Adapt from given 'dn' */
1224   function adapt_from_template($dn)
1225   {
1226     plugin::adapt_from_template($dn);
1228     /* Get base */
1229     $this->base= preg_replace('/^[^,]+,'.get_people_ou().'/i', '', $dn);
1231     if ($this->config->current['GOVERNMENTMODE']){
1233       /* Walk through govattrs */
1234       foreach ($this->govattrs as $val){
1236         if (isset($this->attrs["$val"][0])){
1238           /* If attribute is set, replace dynamic parts: 
1239              %sn, %givenName and %uid. Fill these in our local variables. */
1240           $value= $this->attrs["$val"][0];
1242           foreach (array("sn", "givenName", "uid") as $repl){
1243             if (preg_match("/%$repl/i", $value)){
1244               $value= preg_replace ("/%$repl/i",
1245                   $this->parent->$repl, $value);
1246             }
1247           }
1248           $this->$val= $value;
1249         }
1250       }
1251     }
1253     /* Get back uid/sn/givenName */
1254     if ($this->parent != NULL){
1255       $this->uid= $this->parent->uid;
1256       $this->sn= $this->parent->sn;
1257       $this->givenName= $this->parent->givenName;
1258     }
1259   }
1261  
1262   /* This avoids that users move themselves out of their rights. 
1263    */
1264   function allowedBasesToMoveTo()
1265   {
1266     /* Get bases */
1267     $bases  = $this->get_allowed_bases();
1268     return($bases);
1269   } 
1272   function getCopyDialog()
1273   {
1274     $str = "";
1276     $_SESSION['binary'] = $this->photoData; 
1277     $_SESSION['binarytype']= "image/jpeg";
1279     /* Get random number for pictures */
1280     srand((double)microtime()*1000000); 
1281     $rand = rand(0, 10000);
1283     $smarty = get_smarty();
1285     $smarty->assign("passwordTodo","clear");
1287     if(isset($_POST['passwordTodo'])){
1288       $smarty->assign("passwordTodo",$_POST['passwordTodo']);
1289     }
1291     $smarty->assign("sn",       $this->sn);
1292     $smarty->assign("givenName",$this->givenName);
1293     $smarty->assign("uid",      $this->uid);
1294     $smarty->assign("rand",     $rand);
1295     $str = $smarty->fetch(get_template_path("paste_generic.tpl",TRUE,dirname(__FILE__)));
1298     $ret = array();
1299     $ret['string'] = $str;
1300     $ret['status'] = "";  
1301     return($ret);
1302   }
1304   function saveCopyDialog()
1305   {
1306     /* Set_acl_base */
1307     $this->set_acl_base("cn=dummy,".get_people_ou().$this->base);
1309     if((isset($_FILES['picture_file']['tmp_name'])) && ($_FILES['picture_file']['size'] > 0)){
1310       $this->set_picture($_FILES['picture_file']['tmp_name']);
1311     }
1313     /* Remove picture? */
1314     if (isset($_POST['picture_remove'])){
1315       $this->jpegPhoto= "*removed*";
1316       $this->set_picture ("./images/default.jpg");
1317       $this->is_modified= TRUE;
1318     }
1320     $attrs = array("uid","givenName","sn");
1321     foreach($attrs as $attr){
1322       if(isset($_POST[$attr])){
1323         $this->$attr = $_POST[$attr];
1324       }
1325     } 
1326   }
1329   function PrepareForCopyPaste($source)
1330   {
1331     plugin::PrepareForCopyPaste($source);
1333     /* Reset certificate information addepted from source user
1334        to avoid setting the same user certificate for the destination user. */
1335     $this->userPKCS12= "";
1336     $this->userSMIMECertificate= "";
1337     $this->userCertificate= "";
1338     $this->certificateSerialNumber= "";
1339     $this->old_certificateSerialNumber= "";
1340     $this->old_userPKCS12= "";
1341     $this->old_userSMIMECertificate= "";
1342     $this->old_userCertificate= "";
1343   }
1346   function plInfo()
1347   {
1348   
1349     $govattrs= array(
1350         "gouvernmentOrganizationalUnit"             =>  _("Unit"), 
1351         "houseIdentifier"                           =>  _("House identifier"), 
1352         "vocation"                                  =>  _("Vocation"),
1353         "ivbbLastDeliveryCollective"                =>  _("Last delivery"), 
1354         "gouvernmentOrganizationalPersonLocality"   =>  _("Person locality"),
1355         "gouvernmentOrganizationalUnitDescription"  =>  _("Unit description"),
1356         "gouvernmentOrganizationalUnitSubjectArea"  =>  _("Subject area"),
1357         "functionalTitle"                           =>  _("Functional title"),
1358         "certificateSerialNumber"                   =>  _(""),
1359         "publicVisible"                             =>  _("Public visible"),
1360         "street"                                    =>  _("Street"),
1361         "role"                                      =>  _("Role"),
1362         "postalCode"                                =>  _("Postal code"));
1364     $ret = array(
1365         "plShortName" => _("Generic"),
1366         "plDescription" => _("Generic user settings"),
1367         "plSelfModify"  => TRUE,
1368         "plDepends"     => array(),
1369         "plPriority"    => 1,
1370         "plSection"     => array("personal" => _("My account")),
1371         "plCategory"    => array("users" => array("description" => _("Users"),
1372                                                   "objectClass" => "gosaAccount")),
1374         "plProvidedAcls" => array(
1375           "base"              => _("Base"), 
1376           "userPassword"      => _("User password"), 
1377           "sn"                => _("Surename"),
1378           "givenName"         => _("Given name"),
1379           "uid"               => _("User identification"),
1380           "personalTitle"     => _("Personal title"),
1381           "academicTitle"     => _("Academic title"),
1382           "homePostalAddress" => _("Home postal address"),
1383           "homePhone"         => _("Home phone number"),
1384           "labeledURI"        => _("Homepage"),
1385           "o"                 => _("Organization"),
1386           "ou"                => _("Department"),
1387           "dateOfBirth"       => _("Date of birth"),
1388           "gender"            => _("Gender"),
1389           "preferredLanguage" => _("Preferred language"),
1390           "departmentNumber"  => _("Department number"),
1391           "employeeNumber"    => _("Employee number"),
1392           "employeeType"      => _("Employee type"),
1393           "l"                 => _("Location"),
1394           "st"                => _("State"),
1395           "userPicture"       => _("User picture"),
1396           "roomNumber"        => _("Room number"),
1397           "telephoneNumber"   => _("Telefon number"),
1398           "mobile"            => _("Mobile number"),
1399           "pager"             => _("Pager number"),
1400           "Certificate"        => _("User certificates"),
1402           "postalAddress"                => _("Postal address"),
1403           "facsimileTelephoneNumber"     => _("Fax number"))
1404         );
1406     /* Append government attributes if required */
1407       global $config;
1408     if (isset($config->current['GOVERNMENTMODE']) &&  preg_match('/true/i', $config->current['GOVERNMENTMODE'])){
1409       foreach($govattrs as $attr => $desc){
1410         $ret["plProvidedAcls"][$attr] = $desc;
1411       }
1412     }
1414     return($ret);
1415   }
1418 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1419 ?>