2007-03-29 18:10:14 +02:00
|
|
|
<?php
|
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
|
|
|
* http://ldapsaisie.labs.libre-entreprise.org
|
|
|
|
*
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
2008-02-05 17:11:21 +01:00
|
|
|
$GLOBALS['LSsession'] -> loadLSclass('LSattr_ldap');
|
|
|
|
$GLOBALS['LSsession'] -> loadLSclass('LSattr_html');
|
|
|
|
|
2007-03-29 18:10:14 +02:00
|
|
|
/**
|
|
|
|
* Attribut Ldap
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette classe modélise un attribut Ldap
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*/
|
|
|
|
class LSattribute {
|
|
|
|
|
|
|
|
var $name;
|
|
|
|
var $config;
|
2007-11-15 19:07:24 +01:00
|
|
|
var $ldapObject;
|
2007-03-29 18:10:14 +02:00
|
|
|
var $ldap;
|
|
|
|
var $html;
|
|
|
|
var $data;
|
|
|
|
var $updateData=false;
|
|
|
|
var $is_validate=false;
|
2008-02-08 18:39:24 +01:00
|
|
|
var $_finalUpdateData=false;
|
|
|
|
var $_myRights=NULL;
|
2007-03-29 18:10:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructeur
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette methode construit l'objet et définis la configuration.
|
2007-03-29 18:10:14 +02:00
|
|
|
* Elle lance la construction des objets LSattr_html et LSattr_ldap correspondant
|
2008-04-25 16:09:27 +02:00
|
|
|
* à ses types définis définis dans sa configuration
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @param[in] $name string Nom de l'attribut ldap
|
|
|
|
* @param[in] $config array Configuration de l'objet
|
2007-11-15 19:07:24 +01:00
|
|
|
* @param[in] &$ldapObject LSldapObject L'objet ldap parent
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval boolean Retourne true si la création a réussi, false sinon.
|
2008-02-08 18:39:24 +01:00
|
|
|
*/
|
2007-11-15 19:07:24 +01:00
|
|
|
function LSattribute ($name,$config,&$ldapObject) {
|
2007-03-29 18:10:14 +02:00
|
|
|
$this -> name = $name;
|
|
|
|
$this -> config = $config;
|
2008-02-08 18:39:24 +01:00
|
|
|
$this -> ldapObject = $ldapObject;
|
2007-03-29 18:10:14 +02:00
|
|
|
$html_type = "LSattr_html_".$config['html_type'];
|
|
|
|
$ldap_type = "LSattr_ldap_".$config['ldap_type'];
|
2008-02-08 18:39:24 +01:00
|
|
|
$GLOBALS['LSsession'] -> loadLSclass($html_type);
|
|
|
|
$GLOBALS['LSsession'] -> loadLSclass($ldap_type);
|
2007-03-29 18:10:14 +02:00
|
|
|
if((class_exists($html_type))&&(class_exists($ldap_type))) {
|
2007-11-15 19:07:24 +01:00
|
|
|
$this -> html = new $html_type($name,$config,$this);
|
|
|
|
$this -> ldap = new $ldap_type($name,$config,$this);
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-11-15 19:07:24 +01:00
|
|
|
$GLOBALS['LSerror'] -> addErrorCode(41,array('attr' => $name,'html'=>$config['html_type'],'ldap'=>$config['ldap_type']));
|
2007-03-29 18:10:14 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retourne la valeur du label de l'attribut
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @retval string Le label de l'attribut
|
|
|
|
*
|
|
|
|
* @see LSattr_html::getLabel()
|
2008-02-08 18:39:24 +01:00
|
|
|
*/
|
2007-03-29 18:10:14 +02:00
|
|
|
|
|
|
|
function getLabel() {
|
|
|
|
return $this -> html -> getLabel();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Défini la valeur de l'attribut
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @retval boolean true
|
|
|
|
*/
|
|
|
|
function loadData($attr_data) {
|
2008-07-31 11:16:25 +02:00
|
|
|
if ((!is_array($attr_data))&&(!empty($attr_data))) {
|
|
|
|
$attr_data = array($attr_data);
|
|
|
|
}
|
2007-03-29 18:10:14 +02:00
|
|
|
$this -> data = $attr_data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Redéfini la valeur de l'attribut
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2007-11-15 19:07:24 +01:00
|
|
|
* @retval boolean true
|
2007-03-29 18:10:14 +02:00
|
|
|
*/
|
2007-11-15 19:07:24 +01:00
|
|
|
function reloadData($attr_data) {
|
2008-07-31 11:16:25 +02:00
|
|
|
if ((!is_array($attr_data))&&(!empty($attr_data))) {
|
|
|
|
$attr_data = array($attr_data);
|
|
|
|
}
|
2007-11-15 19:07:24 +01:00
|
|
|
$this -> data = $attr_data;
|
|
|
|
$this -> updateData=false;
|
|
|
|
$this -> is_validate=false;
|
|
|
|
return true;
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retourne la valeur de l'attribut
|
2008-02-08 18:39:24 +01:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Retourne la valeur nouvelle si elle existe, sinon la valeur passé.
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @retval mixed La valeur de l'attribut
|
|
|
|
*/
|
|
|
|
function getValue() {
|
2008-02-08 18:39:24 +01:00
|
|
|
$updateData=$this -> getUpdateData();
|
|
|
|
if (empty($updateData)) {
|
|
|
|
return $this -> data;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return $updateData;
|
|
|
|
}
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retourne la valeur d'affichage de l'attribut
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @retval string La valeur d'affichage de l'attribut
|
|
|
|
*/
|
|
|
|
function getDisplayValue() {
|
|
|
|
$data = $this -> ldap -> getDisplayValue($this -> data);
|
|
|
|
if ($this -> config['onDisplay']) {
|
|
|
|
if (is_array($this -> config['onDisplay'])) {
|
|
|
|
$result=$data;
|
|
|
|
foreach($this -> config['onDisplay'] as $func) {
|
|
|
|
if (function_exists($func)) {
|
|
|
|
$result=$func($result);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$GLOBALS['LSerror'] -> addErrorCode(42,array('attr' => $this->name,'func' => $func));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (function_exists($this -> config['onDisplay'])) {
|
|
|
|
return $this -> config['onDisplay']($data);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$GLOBALS['LSerror'] -> addErrorCode(42,array('attr' => $this->name,'func' => $this -> config['onDisplay']));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ajoute l'attribut au formualaire
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette méthode ajoute l'attribut au formulaire $form si l'identifiant de celui-ci
|
2007-03-29 18:10:14 +02:00
|
|
|
* ($idForm) est connu dans la configuration de l'objet.
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @param[in] object $form Le formulaire dans lequel doit être ajouté l'attribut
|
2007-11-15 19:07:24 +01:00
|
|
|
* @param[in] string $idForm L'identifiant du formulaire
|
2008-04-25 16:09:27 +02:00
|
|
|
* @param[in] objet &$obj Objet utilisable pour la génération de la valeur de l'attribut
|
|
|
|
* @param[in] array $value valeur de l'élement
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval boolean true si l'ajout a fonctionner ou qu'il n'est pas nécessaire, false sinon
|
2007-03-29 18:10:14 +02:00
|
|
|
*/
|
2008-02-12 18:59:44 +01:00
|
|
|
function addToForm(&$form,$idForm,&$obj=NULL,$value=NULL) {
|
2007-03-29 18:10:14 +02:00
|
|
|
if(isset($this -> config['form'][$idForm])) {
|
2008-02-08 18:39:24 +01:00
|
|
|
if($this -> myRights() == 'n') {
|
|
|
|
return true;
|
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
if ($value) {
|
|
|
|
$data = $value;
|
|
|
|
}
|
|
|
|
else if($this -> data !='') {
|
2007-11-15 19:07:24 +01:00
|
|
|
$data=$this -> getFormVal();
|
|
|
|
}
|
|
|
|
else if (isset($this -> config['default_value'])) {
|
|
|
|
$data=$obj -> getFData($this -> config['default_value']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$element = $this -> html -> addToForm($form,$idForm,$data);
|
2008-02-08 18:39:24 +01:00
|
|
|
if(!$element) {
|
|
|
|
$GLOBALS['LSerror'] -> addErrorCode(206,$this -> name);
|
|
|
|
}
|
2007-11-15 19:07:24 +01:00
|
|
|
|
|
|
|
if($this -> config['required']==1) {
|
|
|
|
$form -> setRequired($this -> name);
|
|
|
|
}
|
|
|
|
|
2008-02-08 18:39:24 +01:00
|
|
|
if (($this -> config['form'][$idForm]==0) || ($this -> myRights() == 'r')) {
|
2007-03-29 18:10:14 +02:00
|
|
|
$element -> freeze();
|
2007-11-15 19:07:24 +01:00
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
else {
|
|
|
|
if(isset($this -> config['check_data'])) {
|
|
|
|
if(is_array($this -> config['check_data'])) {
|
|
|
|
foreach ($this -> config['check_data'] as $rule => $rule_infos) {
|
|
|
|
if((!$form -> isRuleRegistered($rule))&&($rule!='')) {
|
|
|
|
$GLOBALS['LSerror'] -> addErrorCode(43,array('attr' => $this->name,'rule' => $rule));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(!isset($rule_infos['msg']))
|
|
|
|
$rule_infos['msg']=getFData(_('La valeur du champs %{label} est invalide.'),$this -> config['label']);
|
|
|
|
if(!isset($rule_infos['param']))
|
|
|
|
$rule_infos['param']=NULL;
|
|
|
|
$form -> addRule($this -> name,$rule,array('msg' => $rule_infos['msg'], 'param' => $rule_infos['param']));
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$GLOBALS['LSerror'] -> addErrorCode(44,$this->name);
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Récupération des droits de l'utilisateur sur l'attribut
|
2008-02-12 18:59:44 +01:00
|
|
|
*
|
|
|
|
* @retval string 'r'/'w'/'n' pour 'read'/'write'/'none'
|
|
|
|
**/
|
2008-02-08 18:39:24 +01:00
|
|
|
function myRights() {
|
|
|
|
// cache
|
|
|
|
if ($this -> _myRights != NULL) {
|
|
|
|
return $this -> _myRights;
|
|
|
|
}
|
|
|
|
$return='n';
|
|
|
|
switch ($this -> ldapObject -> whoami()) {
|
|
|
|
case 'admin':
|
|
|
|
if($this -> config['rights']['admin']=='w') {
|
|
|
|
$return='w';
|
|
|
|
}
|
2007-03-29 18:10:14 +02:00
|
|
|
else {
|
2008-02-08 18:39:24 +01:00
|
|
|
$return='r';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'self':
|
|
|
|
if (($this -> config['rights']['self'] == 'w') || ($this -> config['rights']['self'] == 'r')) {
|
2008-04-25 15:48:12 +02:00
|
|
|
$return=$this -> config['rights']['self'];
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: //user
|
|
|
|
if (($this -> config['rights']['user'] == 'w') || ($this -> config['rights']['user'] == 'r')) {
|
2008-04-25 15:48:12 +02:00
|
|
|
$return=$this -> config['rights']['user'];
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
$this -> _myRights = $return;
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ajoute l'attribut au formualaire de vue
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* Cette méthode ajoute l'attribut au formulaire $form de vue si il doit l'être
|
2008-02-08 18:39:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @param[in] object $form Le formulaire dans lequel doit être ajouté l'attribut
|
2008-02-08 18:39:24 +01:00
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval boolean true si l'ajout a fonctionner ou qu'il n'est pas nécessaire, false sinon
|
2008-02-08 18:39:24 +01:00
|
|
|
*/
|
|
|
|
function addToView(&$form) {
|
|
|
|
if((isset($this -> config['view'])) && ($this -> myRights() != 'n')) {
|
|
|
|
if($this -> data !='') {
|
|
|
|
$data=$this -> getFormVal();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$data='';
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
$element = $this -> html -> addToForm($form,'view',$data);
|
2008-07-18 16:43:19 +02:00
|
|
|
if(!$element instanceof LSformElement) {
|
2008-02-08 18:39:24 +01:00
|
|
|
$GLOBALS['LSerror'] -> addErrorCode(206,$this -> name);
|
2008-07-18 16:43:19 +02:00
|
|
|
return;
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
|
|
|
$element -> freeze();
|
|
|
|
return true;
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-11-15 19:07:24 +01:00
|
|
|
/**
|
|
|
|
* Rafraichis la valeur de l'attribut dans un formualaire
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @param[in] object &$form LSform Le formulaire dans lequel doit être ajouté l'attribut
|
2007-11-15 19:07:24 +01:00
|
|
|
* @param[in] string $idForm L'identifiant du formulaire
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval boolean true si la valeur a été rafraichie ou que ce n'est pas nécessaire, false sinon
|
2007-11-15 19:07:24 +01:00
|
|
|
*/
|
|
|
|
function refreshForm(&$form,$idForm) {
|
2008-07-31 11:16:25 +02:00
|
|
|
if(isset($this -> config['form'][$idForm])) {
|
2008-04-25 15:48:12 +02:00
|
|
|
$form_element = $form -> getElement($this -> name);
|
2008-02-26 18:40:05 +01:00
|
|
|
$values = $this -> html -> refreshForm($this -> getFormVal());
|
|
|
|
return $form_element -> setValue($values);
|
2007-11-15 19:07:24 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-03-29 18:10:14 +02:00
|
|
|
/**
|
|
|
|
* Retourne la valeur a afficher dans le formulaire
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @retval string La valeur a afficher dans le formulaire.
|
|
|
|
*/
|
|
|
|
function getFormVal() {
|
2008-02-08 18:39:24 +01:00
|
|
|
$data=$this -> getDisplayValue();
|
|
|
|
if(!is_array($data))
|
|
|
|
$data=array($data);
|
2008-02-05 17:11:21 +01:00
|
|
|
return $data;
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
|
2007-11-15 19:07:24 +01:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Définis les données de mises à jour si un changement a eut lieu
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @param[in] string $data Les données de mise à jour.
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
*/
|
2007-03-29 18:10:14 +02:00
|
|
|
function setUpdateData($data) {
|
2008-02-05 17:11:21 +01:00
|
|
|
if($this -> getFormVal() != $data) {
|
2007-03-29 18:10:14 +02:00
|
|
|
$this -> updateData=$data;
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Vérifie si l'attribut a été validé
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval boolean true si l'attribut a été validé, false sinon
|
2007-03-29 18:10:14 +02:00
|
|
|
*/
|
|
|
|
function isValidate() {
|
2007-11-15 19:07:24 +01:00
|
|
|
return $this -> is_validate;
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Valide le champs
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
*/
|
|
|
|
function validate() {
|
|
|
|
$this -> is_validate=true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Vérifie si l'attribut a été mise à jour
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval boolean true si l'attribut a été mis à jour, false sinon
|
2007-03-29 18:10:14 +02:00
|
|
|
*/
|
|
|
|
function isUpdate() {
|
|
|
|
return ($this -> updateData)?true:false;
|
|
|
|
}
|
|
|
|
|
2007-11-15 19:07:24 +01:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Vérifie si l'attribut est obligatoire
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @retval boolean true si l'attribut est obligatoire, false sinon
|
|
|
|
*/
|
|
|
|
function isRequired() {
|
|
|
|
return $this -> config['required'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Vérifie si la valeur de l'attribut peut être générée
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval boolean true si la valeur de l'attribut peut être générée, false sinon
|
2007-11-15 19:07:24 +01:00
|
|
|
*/
|
|
|
|
function canBeGenerated() {
|
2008-07-29 15:45:02 +02:00
|
|
|
if (function_exists($this -> config['generate_function'])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (isset($this -> config['generate_value_format'])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return ;
|
|
|
|
}
|
2007-11-15 19:07:24 +01:00
|
|
|
}
|
|
|
|
|
2008-02-08 18:39:24 +01:00
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Génere la valeur de l'attribut à partir de la fonction de génération
|
2008-02-08 18:39:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval boolean true si la valeur à put être générée, false sinon
|
2008-02-08 18:39:24 +01:00
|
|
|
*/
|
|
|
|
function generateValue() {
|
2008-07-29 15:45:02 +02:00
|
|
|
if (function_exists($this -> config['generate_function'])) {
|
|
|
|
$value=call_user_func($this -> config['generate_function'],$this -> ldapObject);
|
|
|
|
}
|
|
|
|
else if (isset($this -> config['generate_value_format'])) {
|
|
|
|
$value = $this -> ldapObject -> getFData($this -> config['generate_value_format']);
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
|
|
|
if (!empty($value)) {
|
2008-04-25 16:09:27 +02:00
|
|
|
//$this -> setValue($value); // pas nécéssaire ??
|
2008-04-25 15:48:12 +02:00
|
|
|
$this -> updateData=array($value);
|
2008-02-08 18:39:24 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2007-11-15 19:07:24 +01:00
|
|
|
|
2007-03-29 18:10:14 +02:00
|
|
|
/**
|
|
|
|
* Retourne la valeur de l'attribut pour son enregistrement dans l'annuaire
|
2008-04-25 16:09:27 +02:00
|
|
|
* si l'attribut à été modifié.
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @retval mixed La valeur de l'attribut pour son enregistrement dans l'annuaire
|
|
|
|
*/
|
|
|
|
function getUpdateData() {
|
2008-02-08 18:39:24 +01:00
|
|
|
if (!$this -> isUpdate()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( $this -> _finalUpdateData ) {
|
|
|
|
return $this -> _finalUpdateData;
|
|
|
|
}
|
2007-11-15 19:07:24 +01:00
|
|
|
$data=$this -> updateData;
|
2007-03-29 18:10:14 +02:00
|
|
|
if ($this -> config['onSave']) {
|
|
|
|
if (is_array($this -> config['onSave'])) {
|
|
|
|
$result=$data;
|
|
|
|
foreach($this -> config['onSave'] as $func) {
|
|
|
|
if (function_exists($func)) {
|
|
|
|
$result=$func($result);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$GLOBALS['LSerror'] -> addErrorCode(45,array('attr' => $this->name,'func' => $func));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (function_exists($this -> config['onSave'])) {
|
2007-11-15 19:07:24 +01:00
|
|
|
$result = $this -> config['onSave']($data);
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$GLOBALS['LSerror'] -> addErrorCode(45,array('attr' => $this->name,'func' => $this -> config['onSave']));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-11-15 19:07:24 +01:00
|
|
|
else {
|
|
|
|
$result = $this -> ldap -> getUpdateData($data);
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
$this -> _finalUpdateData = $result;
|
2007-11-15 19:07:24 +01:00
|
|
|
return $result;
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
2007-11-15 19:07:24 +01:00
|
|
|
|
2007-03-29 18:10:14 +02:00
|
|
|
/**
|
2007-11-15 19:07:24 +01:00
|
|
|
* Retourne la configuration de validation de l'attribut
|
2007-03-29 18:10:14 +02:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @retval mixed La configuration de validation de l'attribut
|
|
|
|
*/
|
|
|
|
function getValidateConfig() {
|
|
|
|
return $this -> config['validation'];
|
|
|
|
}
|
2007-11-15 19:07:24 +01:00
|
|
|
|
|
|
|
/**
|
2008-04-25 16:09:27 +02:00
|
|
|
* Retourne les attributs dépendants de celui-ci
|
2007-11-15 19:07:24 +01:00
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
2008-04-25 16:09:27 +02:00
|
|
|
* @retval array les noms des attributs dépendants
|
2007-11-15 19:07:24 +01:00
|
|
|
*/
|
|
|
|
function getDependsAttrs() {
|
|
|
|
return $this -> config['dependAttrs'];
|
2008-02-08 18:39:24 +01:00
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
|
2007-03-29 18:10:14 +02:00
|
|
|
}
|
|
|
|
|
2007-11-15 19:07:24 +01:00
|
|
|
?>
|