Code

Updated logview to display the target object too.
[gosa.git] / include / class_password-methods-heimdal.inc
1 <?php
2 /*
3    This code is part of GOsa (https://gosa.gonicus.de)
4    Copyright (C) 2004  Fabian Hickert 
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
22 class passwordMethodheimdal extends passwordMethod
23 {
25         function passwordMethodheimdal(&$config)  
26         {
27     $this->config= $config;
28         }
31         function is_available()
32         {
33     # Check if heimdal information is available
34     # in configuration and return true/false
35     #
36     # In particular, we need the hook to feed kadmin
37     #
38     return true;
39         }
42         function generate_hash($pwd)
43         {
44     $mode= "kerberos";
45     if (isset($this->config->current['KRBSASL']) && preg_match('/^true$/i', $this->config->current['KRBSASL'])){
46       $mode= "sasl";
47     }
49     return "{".$mode."}".$this->attrs['uid'][0]."@".$cfg= $this->config->data['SERVERS']['KERBEROS']['REALM'];
50         }
53   function remove_from_parent()
54   {
55     # Find and remove kerberos entry below $this->dn
56   }
59   function set_password()
60   {
61     # Add or modify kerberos entry below $this->dn
63   }
66   function get_hash_name()
67   {
68     $mode= "kerberos";
69     if (isset($this->config->current['KRBSASL']) && preg_match('/^true$/i', $this->config->current['KRBSASL'])){
70       $mode= "sasl";
71     }
72     return "$mode";
73   }
76   function is_configurable()
77   {
78     return TRUE;
79   }
82   function configure()
83   {
84     echo "Show dialog";
85   }
87 }
89 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
90 ?>