mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 06:23:02 +01:00
721eddd92f
-> Ajout de la methode redirect() -> Ajout d'une possibilité d'affichage d'infos à au chargement de la page -> methode addInfo() -> modification de la methode displayTemplate() en conséquence -> modification de LSdefault.js et LSdefault.css en conséquence - remove.php -> Redirection vers la liste des objets du même type que l'objet supprimé après sa suppression avec une demande de rafraichissement. - modify.php -> Redirection vers la fiche de l'objet après sa modification avec affichage d'un message. (Feature Request #1702) - LSaddons : -> FTP : support FTP a travers la librairie PEAR :: Net_FTP -> Maildir : Pour la création et la suppresion de la Maildir d'un utilisateur -> Posix : Ajout de la méthode createHomeDirectoryByFTP() et correction d'un bug dans l'affichage des erreurs -> Samba : Correction d'un bug dans l'affichage des erreurs - LSldapObject : -> Ajout d'une possibilité de trigger personnalisé à travers la configuration d'un LSobjet : -> after_create -> after_delete -> Renomage du trigger before_save et after_save en before_modify et after_modify.
139 lines
4.2 KiB
PHP
139 lines
4.2 KiB
PHP
<?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.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
/**
|
|
* Données de configuration pour le support Maildir
|
|
*/
|
|
|
|
// Serveur FTP - Host
|
|
define('LS_MAILDIR_FTP_HOST','127.0.0.1');
|
|
|
|
// Serveur FTP - Port
|
|
define('LS_MAILDIR_FTP_PORT',21);
|
|
|
|
// Serveur FTP - User
|
|
define('LS_MAILDIR_FTP_USER','vmail');
|
|
|
|
// Serveur FTP - Passorwd
|
|
define('LS_MAILDIR_FTP_PWD','password');
|
|
|
|
// Serveur FTP - Maildir Path
|
|
define('LS_MAILDIR_FTP_MAILDIR_PATH','%{uid}');
|
|
|
|
// Message d'erreur
|
|
|
|
$GLOBALS['LSerror_code']['MAILDIR_SUPPORT_01']= array (
|
|
'msg' => _("MAILDIR Support : Impossible de charger LSaddons::FTP."),
|
|
'level' => 'c'
|
|
);
|
|
$GLOBALS['LSerror_code']['MAILDIR_SUPPORT_02']= array (
|
|
'msg' => _("MAILDIR Support : La constante %{const} n'est pas définie."),
|
|
'level' => 'c'
|
|
);
|
|
$GLOBALS['LSerror_code']['MAILDIR_01']= array (
|
|
'msg' => _("MAILDIR Support : Erreur durant la création de la maildir sur le serveur distant."),
|
|
'level' => 'c'
|
|
);
|
|
$GLOBALS['LSerror_code']['MAILDIR_02']= array (
|
|
'msg' => _("MAILDIR Support : Erreur durant la création de la maildir sur le serveur distant."),
|
|
'level' => 'c'
|
|
);
|
|
|
|
/**
|
|
* Fin des données de configuration
|
|
*/
|
|
|
|
|
|
/**
|
|
* Verification du support Maildir par ldapSaisie
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @retval boolean true si Maildir est pleinement supporté, false sinon
|
|
*/
|
|
function LSaddon_maildir_support() {
|
|
$retval=true;
|
|
|
|
// Dependance de librairie
|
|
if (!function_exists('createDirsByFTP')) {
|
|
if(!$GLOBALS['LSsession'] -> loadLSaddon('ftp')) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('MAILDIR_SUPPORT_01');
|
|
$retval=false;
|
|
}
|
|
}
|
|
|
|
$MUST_DEFINE_CONST= array(
|
|
'LS_MAILDIR_FTP_HOST',
|
|
'LS_MAILDIR_FTP_USER',
|
|
'LS_MAILDIR_FTP_MAILDIR_PATH'
|
|
);
|
|
|
|
foreach($MUST_DEFINE_CONST as $const) {
|
|
if ( constant($const) == '' ) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('MAILDIR_SUPPORT_02',$const);
|
|
$retval=false;
|
|
}
|
|
}
|
|
return $retval;
|
|
}
|
|
|
|
/**
|
|
* Creation d'une Maildir via FTP
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @param[in] $ldapObject L'objet ldap
|
|
*
|
|
* @retval string True ou false si il y a un problème durant la création de la Maildir
|
|
*/
|
|
function createMaildirByFTP($ldapObject) {
|
|
$dir = getFData(LS_MAILDIR_FTP_MAILDIR_PATH,$ldapObject,'getValue');
|
|
$dirs = array(
|
|
$dir.'/cur',
|
|
$dir.'/new',
|
|
$dir.'/tmp'
|
|
);
|
|
if (!createDirsByFTP(LS_MAILDIR_FTP_HOST,LS_MAILDIR_FTP_PORT,LS_MAILDIR_FTP_USER,LS_MAILDIR_FTP_PWD,$dirs)) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('MAILDIR_01');
|
|
return;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Suppression d'une Maildir via FTP
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @param[in] $ldapObject L'objet ldap
|
|
*
|
|
* @retval string True ou false si il y a un problème durant la suppression de la Maildir
|
|
*/
|
|
function removeMaildirByFTP($ldapObject) {
|
|
$dir = getFData(LS_MAILDIR_FTP_MAILDIR_PATH,$ldapObject,'getValue');
|
|
if (!removeDirsByFTP(LS_MAILDIR_FTP_HOST,LS_MAILDIR_FTP_PORT,LS_MAILDIR_FTP_USER,LS_MAILDIR_FTP_PWD,$dir)) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('MAILDIR_02');
|
|
return;
|
|
}
|
|
return true;
|
|
}
|