/**
  * Autentica un usuario usando el adaptador
  *
  * @return boolean
  */
 public function authenticate()
 {
     $this->resource = kadm5_init_with_password($this->server, $this->realm, $this->principal, $this->password);
     if ($this->resource === false) {
         return false;
     } else {
         return true;
     }
 }
Exemplo n.º 2
0
 /**
  * Try to login to the KADM5 server
  *
  * @param   string Username
  * @param   string Password
  * @return  boolean
  */
 function fetchData($username, $password)
 {
     $this->log('Auth_Container_KADM5::fetchData() called.', AUTH_LOG_DEBUG);
     if ($username == NULL || $password == NULL) {
         return false;
     }
     $server = $this->options['hostname'];
     $realm = $this->options['realm'];
     $check = @kadm5_init_with_password($server, $realm, $username, $password);
     if ($check == false) {
         return false;
     } else {
         return true;
     }
 }
Exemplo n.º 3
0
<?php

$handle = kadm5_init_with_password("afs-1", "GONICUS.LOCAL", "admin/admin", "password");
print "<h1>get_principals</h1>\n";
$principals = kadm5_get_principals($handle);
for ($i = 0; $i < count($principals); $i++) {
    print "{$principals[$i]}<br>\n";
}
print "<h1>get_policies</h1>\n";
$policies = kadm5_get_policies($handle);
for ($i = 0; $i < count($policies); $i++) {
    print "{$policies[$i]}<br>\n";
}
print "<h1>get_principal burbach@GONICUS.LOCAL</h1>\n";
$options = kadm5_get_principal($handle, "*****@*****.**");
$keys = array_keys($options);
for ($i = 0; $i < count($keys); $i++) {
    $value = $options[$keys[$i]];
    print "{$keys[$i]}: {$value}<br>\n";
}
$options = array(KADM5_PRINC_EXPIRE_TIME => 0);
kadm5_modify_principal($handle, "*****@*****.**", $options);
kadm5_destroy($handle);