Code

Recent changes in win2003sp1 required some fixes (backward compatible).
[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           $str = "<table summary=\"\" border=0><tr><td style='vertical-align:top'>CN</td><td>".preg_replace("/ /", "&nbsp;", $certificate->getname())."</td></tr></table><br>".
467                   sprintf(_("Certificate is valid from %s to %s and is currently %s."), "<b>".date('d M Y',$timefrom)."</b>","<b>".date('d M Y',$timeto)."</b>", $certificate->isvalid()?"<b><font style='color:green'>"._("valid")."</font></b>":"<b><font style='color:red'>"._("invalid")."</font></b>");
468           $smarty->assign($cert."info",$str);
469           $smarty->assign($cert."_state","true");
470         } else {
471           $smarty->assign($cert."info", "<i>"._("No certificate installed")."</i>");
472           $smarty->assign($cert."_state","");
473         }
474       }
475       $smarty->assign("governmentmode", "false");
476       return($smarty->fetch (get_template_path('generic_certs.tpl', TRUE, dirname(__FILE__))));
477     }
479     /* Prepare password hashes */
480     if ($this->pw_storage == ""){
481       $this->pw_storage= $this->config->current['HASH'];
482     }
484     $temp   = @passwordMethod::get_available_methods();
485     $hashes = $temp['name'];
486     
487     /* Load attributes and acl's */
488     $ui =get_userinfo();
489     foreach($this->attributes as $val){
490       $smarty->assign("$val", $this->$val);
491       $smarty->assign("$val"."ACL", $this->getacl($val,(!is_object($this->parent) && !isset($_SESSION['edit']))));
492     }
494     $smarty->assign("pwmode", $hashes);
495     $smarty->assign("pwmode_select", $this->pw_storage);
496     $smarty->assign("passwordStorageACL", $this->getacl("userPassword",(!is_object($this->parent) && !isset($_SESSION['edit']))));
497     $smarty->assign("base_select",      $this->base);
498     $smarty->assign("CertificatesACL",  $this->getacl("Certificate",(!is_object($this->parent) && !isset($_SESSION['edit']))));
499     $smarty->assign("userPictureACL",   $this->getacl("userPicture",(!is_object($this->parent) && !isset($_SESSION['edit']))));
500     $smarty->assign("userPicture_is_readable",   $this->acl_is_readable("userPicture",(!is_object($this->parent) && !isset($_SESSION['edit']))));
502     /* Create base acls */
503     $baseACL = $this->getacl("base",(!is_object($this->parent) && !isset($_SESSION['edit'])));
504     if(!$this->acl_is_moveable()) {
505       $baseACL = preg_replace("/w/","",$baseACL);
506     }
507     $smarty->assign("baseACL",          $baseACL);
509     /* Show us the edit screen */
510     @$smarty->assign("bases", $this->allowedBasesToMoveTo());
511    #  $smarty->assign("bases", $this->config->idepartments);
514     /* Save government mode attributes */
515     if (isset($this->config->current['GOVERNMENTMODE']) &&
516         preg_match('/true/i', $this->config->current['GOVERNMENTMODE'])){
517       $smarty->assign("governmentmode", "true");
518       $ivbbmodes= array("nein", "ivbv", "testa", "ivbv,testa", "internet",
519           "internet,ivbv", "internet,testa", "internet,ivbv,testa");
520       $smarty->assign("ivbbmodes", $ivbbmodes);
521       foreach ($this->govattrs as $val){
522         $smarty->assign("$val", $this->$val);
523         $smarty->assign("$val"."ACL", $this->getacl($val,(!is_object($this->parent) && !isset($_SESSION['edit']))));
524       }
525     } else {
526       $smarty->assign("governmentmode", "false");
527     }
529     /* Special mode for uid */
530     $uidACL= $this->getacl("uid",(!is_object($this->parent) && !isset($_SESSION['edit'])));
531     if (isset ($this->dn)){
532       if ($this->dn != "new"){
533         $uidACL= preg_replace("/w/","",$uidACL);
534       }
535     }  else {
536       $uidACL= preg_replace("/w/","",$uidACL);
537     }
538     
539     $smarty->assign("uidACL", $uidACL);
540     $smarty->assign("is_template", $this->is_template);
541     $smarty->assign("use_dob", $this->use_dob);
543     if (isset($this->parent)){
544       if (isset($this->parent->by_object['phoneAccount']) &&
545           $this->parent->by_object['phoneAccount']->is_account){
546         $smarty->assign("has_phoneaccount", "true");
547       } else {
548         $smarty->assign("has_phoneaccount", "false");
549       }
550     } else {
551       $smarty->assign("has_phoneaccount", "false");
552     }
553     return($smarty->fetch (get_template_path('generic.tpl', TRUE, dirname(__FILE__))));
554   }
557   /* remove object from parent */
558   function remove_from_parent()
559   {
560     $ldap= $this->config->get_ldap_link();
561     $ldap->rmdir ($this->dn);
562     show_ldap_error($ldap->get_error(), sprintf(_("Removing of user/generic account with dn '%s' failed."),$this->dn));
564     /* Delete references to groups */
565     $ldap->cd ($this->config->current['BASE']);
566     $ldap->search ("(&(objectClass=posixGroup)(memberUid=".$this->uid."))", array("uid"));
567     while ($ldap->fetch()){
568       $g= new group($this->config, $ldap->getDN());
569       $g->removeUser($this->uid);
570       $g->save ();
571     }
573     /* Delete references to object groups */
574     $ldap->cd ($this->config->current['BASE']);
575     $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn"));
576     while ($ldap->fetch()){
577       $og= new ogroup($this->config, $ldap->getDN());
578       unset($og->member[$this->dn]);
579       $og->save ();
580     }
582     /* Optionally execute a command after we're done */
583     $this->handle_post_events("remove",array("uid" => $this->uid));
584   }
587   /* Save data to object */
588   function save_object()
589   {
590     if (isset($_POST['generic'])){
592       /* Parents save function */
593       plugin::save_object ();
595       /* Save government mode attributes */
596       if ($this->config->current['GOVERNMENTMODE']){
597         foreach ($this->govattrs as $val){
598           if ($this->acl_is_writeable($val,(!is_object($this->parent) && !isset($_SESSION['edit']))) && isset($_POST["$val"])){
599             $data= stripcslashes($_POST["$val"]);
600             if ($data != $this->$val){
601               $this->is_modified= TRUE;
602             }
603             $this->$val= $data;
604           }
605         }
606       }
608       /* In template mode, the uid is autogenerated... */
609       if ($this->is_template){
610         $this->uid= strtolower($this->sn);
611         $this->givenName= $this->sn;
612       }
614       /* Save base and pw_storage, since these are no LDAP attributes */
615       if (isset($_POST['base'])){
617         $this->set_acl_base('dummy,'.$_POST['base']);
618         if($this->acl_is_moveable("base")){
620           foreach(array("base") as $val){
621             if(isset($_POST[$val])){
622               $data= validate($_POST[$val]);
623               if ($data != $this->$val){
624                 $this->is_modified= TRUE;
625               }
626               $this->$val= $data;
627             }
628           }
629         }else{
630           print_red(sprintf(_("You are not allowed to move this object to '%s'."),LDAP::fix($_POST['base'])));
631           $this->set_acl_base('dummy,'.$this->base);
632         }
633       }
635       /* Get pw_storage mode */
636       if (isset($_POST['pw_storage'])){
637         foreach(array("pw_storage") as $val){
638           if(isset($_POST[$val])){
639             $data= validate($_POST[$val]);
640             if ($data != $this->$val){
641               $this->is_modified= TRUE;
642             }
643             $this->$val= $data;
644           }
645         }
646       }
648       $this->set_acl_base('dummy,'.$this->base);
649     }
650   }
652   function rebind($ldap, $referral)
653   {
654     $credentials= LDAP::get_credentials($referral, $this->config->current['REFERRAL']);
655     if (ldap_bind($ldap, $credentials['ADMIN'], $credentials['PASSWORD'])) {
656       $this->error = "Success";
657       $this->hascon=true;
658       $this->reconnect= true;
659       return (0);
660     } else {
661       $this->error = "Could not bind to " . $credentials['ADMIN'];
662       return NULL;
663     }
664   }
666   /* Save data to LDAP, depending on is_account we save or delete */
667   function save()
668   {
669     /* Only force save of changes .... 
670        If this attributes aren't changed, avoid saving.
671      */
672     if($this->gender=="0") $this->gender ="";
673     if($this->preferredLanguage=="0") $this->preferredLanguage ="";
674     
675  
676     /* First use parents methods to do some basic fillup in $this->attrs */
677     plugin::save ();
679     if ($this->use_dob == "1"){
680       $this->attrs['dateOfBirth'] = date("Y-m-d", $this->dateOfBirth);
681     }
683     /* Remove additional objectClasses */
684     $tmp= array();
685     foreach ($this->attrs['objectClass'] as $key => $set){
686       $found= false;
687       foreach (array("ivbbentry", "gosaUserTemplate") as $val){
688         if (preg_match ("/^$set$/i", $val)){
689           $found= true;
690           break;
691         }
692       }
693       if (!$found){
694         $tmp[]= $set;
695       }
696     }
698     /* Replace the objectClass array. This is done because of the
699        separation into government and normal mode. */
700     $this->attrs['objectClass']= $tmp;
702     /* Add objectClasss for template mode? */
703     if ($this->is_template){
704       $this->attrs['objectClass'][]= "gosaUserTemplate";
705     }
707     /* Hard coded government mode? */
708     if ($this->config->current['GOVERNMENTMODE'] != 'false'){
709       $this->attrs['objectClass'][]= "ivbbentry";
711       /* Copy standard attributes */
712       foreach ($this->govattrs as $val){
713         if ($this->$val != ""){
714           $this->attrs["$val"]= $this->$val;
715         } elseif (!$this->is_new) {
716           $this->attrs["$val"]= array();
717         }
718       }
720       /* Remove attribute if set to "nein" */
721       if ($this->publicVisible == "nein"){
722         $this->attrs['publicVisible']= array();
723         if($this->is_new){
724           unset($this->attrs['publicVisible']);
725         }else{
726           $this->attrs['publicVisible']=array();
727         }
729       }
731     }
733     /* Special handling for attribute userCertificate needed */
734     if ($this->userCertificate != ""){
735       $this->attrs["userCertificate;binary"]= $this->userCertificate;
736       $remove_userCertificate= false;
737     } else {
738       $remove_userCertificate= true;
739     }
741     /* Special handling for dateOfBirth value */
742     if ($this->use_dob != "1"){
743       if ($this->is_new) {
744         unset($this->attrs["dateOfBirth"]);
745       } else {
746         $this->attrs["dateOfBirth"]= array();
747       }
748     }
749     if (!$this->gender){
750       if ($this->is_new) {
751         unset($this->attrs["gender"]);
752       } else {
753         $this->attrs["gender"]= array();
754       }
755     }
756     if (!$this->preferredLanguage){
757       if ($this->is_new) {
758         unset($this->attrs["preferredLanguage"]);
759       } else {
760         $this->attrs["preferredLanguage"]= array();
761       }
762     }
764     /* Special handling for attribute jpegPhote needed, scale image via
765        image magick to 147x200 pixels and inject resulting data. */
766     if ($this->jpegPhoto != "*removed*"){
768       /* Fallback if there's no image magick inside PHP */
769       if (!function_exists("imagick_blob2image")){
770         /* Get temporary file name for conversation */
771         $fname = tempnam ("/tmp", "GOsa");
773         /* Open file and write out photoData */
774         $fp = fopen ($fname, "w");
775         fwrite ($fp, $this->photoData);
776         fclose ($fp);
778         /* Build conversation query. Filename is generated automatically, so
779            we do not need any special security checks. Exec command and save
780            output. For PHP safe mode, you'll need a configuration which respects
781            image magick as executable... */
782         $query= "convert -size 147x200 $fname -resize 147x200 +profile \"*\" -";
783         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__,
784             $query, "Execute");
786         /* Read data written by convert */
787         $output= "";
788         $sh= popen($query, 'r');
789         while (!feof($sh)){
790           $output.= fread($sh, 4096);
791         }
792         pclose($sh);
794         unlink($fname);
796         /* Save attribute */
797         $this->attrs["jpegPhoto"] = $output;
799       } else {
801         /* Load the new uploaded Photo */
802         if(!$handle  =  imagick_blob2image($this->photoData))  {
803           gosa_log("Can't Load image");
804         }
806         /* Resizing image to 147x200 and blur */
807         if(!imagick_resize($handle,147,200,IMAGICK_FILTER_GAUSSIAN,0)){
808           gosa_log("imagick_resize failed");
809         }
811         /* Converting image to JPEG */
812         if(!imagick_convert($handle,"JPEG")) {
813           gosa_log("Can't Convert to JPEG");
814         }
816         /* Creating binary Code for the Image */
817         if(!$dump = imagick_image2blob($handle)){
818           gosa_log("Can't create blob for image");
819         }
821         /* Sending Image */
822         $output=  $dump;
824         /* Save attribute */
825         $this->attrs["jpegPhoto"] = $output;
826       }
828     } elseif(!$this->is_new) {
829       // # FIXME User picture saveing ...  seams to work.
830       // This should be set to array in all cases ... else we write *removed* into this attribute ...
831       $this->attrs["jpegPhoto"] = array();
832     }
834     /* Build new dn */
835     if (isset($this->config->current['DNMODE']) && $this->config->current['DNMODE'] == "uid"){
836       $new_dn= 'uid='.$this->uid.','.get_people_ou().$this->base;
837     } else {
838       $new_dn= 'cn='.$this->cn.','.get_people_ou().$this->base;
839     }
841     /* This only gets called when user is renaming himself */
842     $ldap= $this->config->get_ldap_link();
843     if ($this->dn != $new_dn){
845       /* Write entry on new 'dn' */
846       $this->move($this->dn, $new_dn);
848       /* Happen to use the new one */
849       change_ui_dn($this->dn, $new_dn);
850       $this->dn= $new_dn;
851     }
854     /* Save data. Using 'modify' implies that the entry is already present, use 'add' for
855        new entries. So do a check first... */
856     $ldap->cat ($this->dn, array('dn'));
857     if ($ldap->fetch()){
858       $mode= "modify";
859     } else {
860       $mode= "add";
861       $ldap->cd($this->config->current['BASE']);
862       $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
863     }
865     /* Set password to some junk stuff in case of templates */
866     if ($this->is_template){
867       $this->attrs['userPassword']= '{crypt}N0T$3T4N0W';
868     }
870     @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__,
871         $this->attributes, "Save via $mode");
873     /* Finally write data with selected 'mode' */
874     $this->cleanup();
875     $ldap->cd ($this->dn);
876     $ldap->$mode ($this->attrs);
877     if (show_ldap_error($ldap->get_error(), sprintf(_("Saving of user/generic account with dn '%s' failed."),$this->dn))){
878       return (1);
879     }
881     /* Remove cert? 
882        For some reason, the 'ldap' class doesn't want to remove binary entries, so I need
883        to work around myself. */
884     if ($remove_userCertificate == true && !$this->is_new && $this->had_userCertificate){
886       /* Reset array, assemble new, this should be reworked */
887       $this->attrs= array();
888       $this->attrs['userCertificate;binary']= array();
890       /* Prepare connection */
891       if (!($ds = ldap_connect($this->config->current['SERVER']))) {
892         die ("Could not connect to LDAP server");
893       }
894       ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
895       if (function_exists("ldap_set_rebind_proc") && isset($this->config->current['RECURSIVE']) && $this->config->current['RECURSIVE'] == "true") {
896         ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
897         ldap_set_rebind_proc($ds, array(&$this, "rebind"));
898       }
899       if(isset($config->current['TLS']) && $config->current['TLS'] == "true"){
900         ldap_start_tls($ds);
901       }
902       if (!($res = @ldap_bind($ds, $this->config->current['ADMIN'],
903               $this->config->current['PASSWORD']))) {
904         die ("Could not bind to LDAP");
905       }
907       /* Modify using attrs */
908       ldap_mod_del($ds,$this->dn,$this->attrs);
909       ldap_close($ds);
910     }
912     /* Kerberos server defined? */
913     if (isset($this->config->data['SERVERS']['KERBEROS'])){
914       $cfg= $this->config->data['SERVERS']['KERBEROS'];
915     }
916     if (isset($cfg['SERVER']) && function_exists('kadm5_init_with_password')){
918       /* Connect to the admin interface */
919       $handle = kadm5_init_with_password($cfg['SERVER'], $cfg['REALM'],
920           $cfg['ADMIN'], $cfg['PASSWORD']);
922       /* Errors? */             
923       if ($handle === FALSE){
924         print_red (_("Kerberos database communication failed"));
925         return (2);
926       }
928       /* Build user principal, get list of existsing principals */
929       $principal= $this->uid."@".$cfg['REALM'];
930       $principals = kadm5_get_principals($handle);
932       /* User exists in database? */
933       if (in_array($principal, $principals)){
935         /* Ok. User exists. Remove him/her when pw_storage has
936            changed to be NOT kerberos. */
937         if ($this->pw_storage != "kerberos"){
938           $ret= kadm5_delete_principal ( $handle, $principal);
940           if ($ret === FALSE){
941             print_red (_("Can't remove user from kerberos database."));
942           }
943         }
945       } else {
947         /* User doesn't exists, create it when pw_storage is kerberos. */
948         if ($this->pw_storage == "kerberos"){
949           $ret= kadm5_create_principal ( $handle, $principal);
951           if ($ret === FALSE){
952             print_red (_("Can't add user to kerberos database."));
953           }
954         }
956       }
958       /* Free kerberos admin handle */
959       kadm5_destroy($handle);
960     }
962     /* Optionally execute a command after we're done */
963     if ($mode == "add"){
964       $this->handle_post_events("add", array("uid" => $this->uid));
965     } elseif ($this->is_modified){
966       $this->handle_post_events("modify", array("uid" => $this->uid));
967     }
969     /* Fix tagging if needed */
970     $this->handle_object_tagging();
972     return (0);
973   }
976   /* Check formular input */
977   function check()
978   {
979     /* Call common method to give check the hook */
980     $message= plugin::check();
982     /* Assemble cn */
983     $this->cn= $this->givenName." ".$this->sn;
985     /* Permissions for that base? */
986     if (isset($this->config->current['DNMODE']) && $this->config->current['DNMODE'] == "uid"){
987       $new_dn= 'uid='.$this->uid.','.get_people_ou().$this->base;
988     } else {
989       $new_dn= 'cn='.$this->cn.','.get_people_ou().$this->base;
990     }
992     if ($this->dn == "new" &&  !$this->acl_is_createable()){
993       $message[]= _("You have no permissions to create a user on this 'Base'.");
994     } elseif ($this->dn != $new_dn && $this->dn != "new"){
995       if (!$this->acl_is_writeable($this->dn, "user","create",(!is_object($this->parent) && !isset($_SESSION['edit'])))){
996         $message[]= _("You have no permissions to move a user from the original 'Base'.");
997       }
998     }
1000     /* must: sn, givenName, uid */
1001     if ($this->sn == "" && ($this->acl_is_writeable("sn",(!is_object($this->parent) && !isset($_SESSION['edit'])) || ($this->is_new)))){
1002       $message[]= _("The required field 'Name' is not set.");
1003     }
1005     /* UID already used? */
1006     $ldap= $this->config->get_ldap_link();
1007     $ldap->cd($this->config->current['BASE']);
1008     $ldap->search("(uid=$this->uid)", array("uid"));
1009     $ldap->fetch();
1010     if ($ldap->count() != 0 && $this->dn == 'new'){
1011       $message[]= _("There's already a person with this 'Login' in the database.");
1012     }
1014     /* In template mode, the uid and givenName are autogenerated... */
1015     if (!$this->is_template){
1016       if ($this->givenName == "" && $this->acl_is_writeable("givenName",(!is_object($this->parent) && !isset($_SESSION['edit'])))){
1017         $message[]= _("The required field 'Given name' is not set.");
1018       }
1019       if ($this->uid == "" && $this->acl_is_writeable("uid",(!is_object($this->parent) && !isset($_SESSION['edit'])))){
1020         $message[]= _("The required field 'Login' is not set.");
1021       }
1022       if (!(isset($this->config->current['DNMODE']) && $this->config->current['DNMODE'] == "uid")){
1023         $ldap->cd($this->config->current['BASE']);
1024         $ldap->search("(cn=".$this->cn.")", array("uid"));
1025         $ldap->fetch();
1026         if ($ldap->count() != 0 && $this->dn != $new_dn && $this->dn == 'new'){
1027           $message[]= _("There's already a person with this 'Name'/'Given name' combination in the database.");
1028         }
1029       }
1030     }
1032     /* Check for valid input */
1033     if ($this->is_modified && !is_uid($this->uid)){
1034       $message[]= _("The field 'Login' contains invalid characters. Lowercase, numbers and dashes are allowed.");
1035     }
1036     if (!is_url($this->labeledURI)){
1037       $message[]= _("The field 'Homepage' contains an invalid URL definition.");
1038     }
1039     if (preg_match ("/[\\\\]/", $this->sn)){
1040       $message[]= _("The field 'Name' contains invalid characters.");
1041     }
1042     if (preg_match ("/[\\\\]/", $this->givenName)){
1043       $message[]= _("The field 'Given name' contains invalid characters.");
1044     }
1046     /* Check phone numbers */
1047     if (!is_phone_nr($this->telephoneNumber)){
1048       $message[]= _("The field 'Phone' contains an invalid phone number.");
1049     }
1050     if (!is_phone_nr($this->facsimileTelephoneNumber)){
1051       $message[]= _("The field 'Fax' contains an invalid phone number.");
1052     }
1053     if (!is_phone_nr($this->mobile)){
1054       $message[]= _("The field 'Mobile' contains an invalid phone number.");
1055     }
1056     if (!is_phone_nr($this->pager)){
1057       $message[]= _("The field 'Pager' contains an invalid phone number.");
1058     }
1060     /* Check for reserved characers */
1061     if (preg_match ('/[,+"?\'()=<>;]/', $this->givenName)){
1062       $message[]= _("The field 'Given name' contains invalid characters.");
1063     }
1064     if (preg_match ('/[,+"?\'()=<>;]/', $this->sn)){
1065       $message[]= _("The field 'Name' contains invalid characters.");
1066     }
1068   return $message;
1069   }
1072   /* Indicate whether a password change is needed or not */
1073   function password_change_needed()
1074   {
1075     return ($this->pw_storage != $this->last_pw_storage);
1076   }
1079   /* Load a jpegPhoto from LDAP, this is going to be simplified later on */
1080   function load_picture()
1081   {
1082     /* make connection and read jpegPhoto */
1083     $ds= ldap_connect($this->config->current['SERVER']);
1084     ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
1085     if (function_exists("ldap_set_rebind_proc") && isset($this->config->current['RECURSIVE']) && $this->config->current['RECURSIVE'] == "true") {
1086       ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
1087       ldap_set_rebind_proc($ds, array(&$this, "rebind"));
1088     }
1090     if(isset($this->config->current['TLS']) &&
1091         $this->config->current['TLS'] == "true"){
1093       ldap_start_tls($ds);
1094     }
1096     $r= ldap_bind($ds);
1097     $sr= @ldap_read($ds, $this->dn, "jpegPhoto=*", array("jpegPhoto"));
1099     /* in case we don't get an entry, load a default picture */
1100     $this->set_picture ("./images/default.jpg");
1101     $this->jpegPhoto= "*removed*";
1103     /* fill data from LDAP */
1104     if ($sr) {
1105       $ei=ldap_first_entry($ds, $sr);
1106       if ($ei) {
1107         if ($info = ldap_get_values_len($ds, $ei, "jpegPhoto")){
1108           $this->photoData= $info[0];
1109           $_SESSION['binary']= $this->photoData;
1110           $_SESSION['binarytype']= "image/jpeg";
1111           $this->jpegPhoto= "";
1112         }
1113       }
1114     }
1116     /* close conncetion */
1117     ldap_unbind($ds);
1118   }
1121   /* Load a certificate from LDAP, this is going to be simplified later on */
1122   function load_cert()
1123   {
1124     $ds= ldap_connect($this->config->current['SERVER']);
1125     ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
1126     if (function_exists("ldap_set_rebind_proc") && isset($this->config->current['RECURSIVE']) && $this->config->current['RECURSIVE'] == "true") {
1127       ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
1128       ldap_set_rebind_proc($ds, array(&$this, "rebind"));
1129     }
1130     if(isset($this->config->current['TLS']) &&
1131         $this->config->current['TLS'] == "true"){
1133       ldap_start_tls($ds);
1134     }
1136     $r= ldap_bind($ds);
1137     $sr= @ldap_read($ds, $this->dn, "userCertificate=*", array("userCertificate"));
1139     if ($sr) {
1140       $ei= @ldap_first_entry($ds, $sr);
1141       
1142       if ($ei) {
1143         if (!$info = @ldap_get_values_len($ds, $ei, "userCertificate;binary")){
1144           $this->userCertificate= "";
1145         } else {
1146           $this->userCertificate= $info[0];
1147         }
1148       }
1149     } else {
1150       $this->userCertificate= "";
1151     }
1153     ldap_unbind($ds);
1154   }
1157   /* Load picture from file to object */
1158   function set_picture($filename ="")
1159   {
1160     if (!is_file($filename) || $filename =="" ){
1161       $filename= "./images/default.jpg";
1162       $this->jpegPhoto= "*removed*";
1163     }
1165     $fd = fopen ($filename, "rb");
1166     $this->photoData= fread ($fd, filesize ($filename));
1167     $_SESSION['binary']= $this->photoData;
1168     $_SESSION['binarytype']= "image/jpeg";
1169     $this->jpegPhoto= "";
1171     fclose ($fd);
1172   }
1175   /* Load certificate from file to object */
1176   function set_cert($cert, $filename)
1177   {
1178     if(!$thsi->acl_is_writeable("Certificate",(!is_object($this->parent) && !isset($_SESSION['edit'])))) return;
1179     $fd = fopen ($filename, "rb");
1180     if (filesize($filename)>0) {
1181       $this->$cert= fread ($fd, filesize ($filename));
1182       fclose ($fd);
1183       $this->is_modified= TRUE;
1184     } else {
1185       print_red(_("Could not open specified certificate!"));
1186     }
1187   }
1189   /* Adapt from given 'dn' */
1190   function adapt_from_template($dn)
1191   {
1192     plugin::adapt_from_template($dn);
1194     /* Get base */
1195     $this->base= preg_replace('/^[^,]+,'.get_people_ou().'/i', '', $dn);
1197     if ($this->config->current['GOVERNMENTMODE']){
1199       /* Walk through govattrs */
1200       foreach ($this->govattrs as $val){
1202         if (isset($this->attrs["$val"][0])){
1204           /* If attribute is set, replace dynamic parts: 
1205              %sn, %givenName and %uid. Fill these in our local variables. */
1206           $value= $this->attrs["$val"][0];
1208           foreach (array("sn", "givenName", "uid") as $repl){
1209             if (preg_match("/%$repl/i", $value)){
1210               $value= preg_replace ("/%$repl/i",
1211                   $this->parent->$repl, $value);
1212             }
1213           }
1214           $this->$val= $value;
1215         }
1216       }
1217     }
1219     /* Get back uid/sn/givenName */
1220     if ($this->parent != NULL){
1221       $this->uid= $this->parent->uid;
1222       $this->sn= $this->parent->sn;
1223       $this->givenName= $this->parent->givenName;
1224     }
1225   }
1227  
1228   /* This avoids that users move themselves out of their rights. 
1229    */
1230   function allowedBasesToMoveTo()
1231   {
1232     /* Get bases */
1233     $bases  = $this->get_allowed_bases();
1234     return($bases);
1235   } 
1238   function getCopyDialog()
1239   {
1240     $str = "";
1242     $_SESSION['binary'] = $this->photoData; 
1243     $_SESSION['binarytype']= "image/jpeg";
1245     /* Get random number for pictures */
1246     srand((double)microtime()*1000000); 
1247     $rand = rand(0, 10000);
1249     $smarty = get_smarty();
1251     $smarty->assign("passwordTodo","clear");
1253     if(isset($_POST['passwordTodo'])){
1254       $smarty->assign("passwordTodo",$_POST['passwordTodo']);
1255     }
1257     $smarty->assign("sn",       $this->sn);
1258     $smarty->assign("givenName",$this->givenName);
1259     $smarty->assign("uid",      $this->uid);
1260     $smarty->assign("rand",     $rand);
1261     $str = $smarty->fetch(get_template_path("paste_generic.tpl",TRUE,dirname(__FILE__)));
1264     $ret = array();
1265     $ret['string'] = $str;
1266     $ret['status'] = "";  
1267     return($ret);
1268   }
1270   function saveCopyDialog()
1271   {
1273     if((isset($_FILES['picture_file']['tmp_name'])) && ($_FILES['picture_file']['size'] > 0)){
1274       $this->set_picture($_FILES['picture_file']['tmp_name']);
1275     }
1277     /* Remove picture? */
1278     if (isset($_POST['picture_remove'])){
1279       $this->jpegPhoto= "*removed*";
1280       $this->set_picture ("./images/default.jpg");
1281       $this->is_modified= TRUE;
1282     }
1284     $attrs = array("uid","givenName","sn");
1285     foreach($attrs as $attr){
1286       if(isset($_POST[$attr])){
1287         $this->$attr = $_POST[$attr];
1288       }
1289     } 
1290   }
1293   function plInfo()
1294   {
1295   
1296     $govattrs= array(
1297         "gouvernmentOrganizationalUnit"             =>  _("Unit"), 
1298         "houseIdentifier"                           =>  _("House identifier"), 
1299         "vocation"                                  =>  _("Vocation"),
1300         "ivbbLastDeliveryCollective"                =>  _("Last delivery"), 
1301         "gouvernmentOrganizationalPersonLocality"   =>  _("Person locality"),
1302         "gouvernmentOrganizationalUnitDescription"  =>  _("Unit description"),
1303         "gouvernmentOrganizationalUnitSubjectArea"  =>  _("Subject area"),
1304         "functionalTitle"                           =>  _("Functional title"),
1305         "certificateSerialNumber"                   =>  _(""),
1306         "publicVisible"                             =>  _("Public visible"),
1307         "street"                                    =>  _("Street"),
1308         "role"                                      =>  _("Role"),
1309         "postalCode"                                =>  _("Postal code"));
1311     $ret = array(
1312         "plShortName" => _("Generic"),
1313         "plDescription" => _("Generic user settings"),
1314         "plSelfModify"  => TRUE,
1315         "plDepends"     => array(),
1316         "plPriority"    => 0,
1317         "plSection"     => array("personal" => _("My account")),
1318         "plCategory"    => array("users" => array("description" => _("Users"),
1319                                                   "objectClass" => "gosaAccount")),
1321         "plProvidedAcls" => array(
1322           "base"              => _("Base"), 
1323           "userPassword"      => _("User password"), 
1324           "sn"                => _("Surename"),
1325           "givenName"         => _("Given name"),
1326           "uid"               => _("User identification"),
1327           "personalTitle"     => _("Personal title"),
1328           "academicTitle"     => _("Academic title"),
1329           "homePostalAddress" => _("Home postal address"),
1330           "homePhone"         => _("Home phone number"),
1331           "labeledURI"        => _("Homepage"),
1332           "o"                 => _("Organization"),
1333           "ou"                => _("Department"),
1334           "dateOfBirth"       => _("Date of birth"),
1335           "gender"            => _("Gender"),
1336           "preferredLanguage" => _("Preferred language"),
1337           "departmentNumber"  => _("Department number"),
1338           "employeeNumber"    => _("Employee number"),
1339           "employeeType"      => _("Employee type"),
1340           "l"                 => _("Location"),
1341           "st"                => _("State"),
1342           "userPicture"       => _("User picture"),
1343           "roomNumber"        => _("Room number"),
1344           "telephoneNumber"   => _("Telefon number"),
1345           "mobile"            => _("Mobile number"),
1346           "pager"             => _("Pager number"),
1347           "Certificate"        => _("User certificates"),
1349           "postalAddress"                => _("Postal address"),
1350           "facsimileTelephoneNumber"     => _("Fax number"))
1351         );
1353     /* Append government attributes if required */
1354       global $config;
1355     if (isset($config->current['GOVERNMENTMODE']) &&  preg_match('/true/i', $config->current['GOVERNMENTMODE'])){
1356       foreach($govattrs as $attr => $desc){
1357         $ret["plProvidedAcls"][$attr] = $desc;
1358       }
1359     }
1361     return($ret);
1362   }
1365 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1366 ?>