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.
183 lines
5.5 KiB
PHP
183 lines
5.5 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 FTP
|
|
*/
|
|
|
|
// Pear :: NET_FTP
|
|
define('NET_FTP','/usr/share/php/Net/FTP.php');
|
|
|
|
// Message d'erreur
|
|
|
|
$GLOBALS['LSerror_code']['FTP_SUPPORT_01']= array (
|
|
'msg' => _("FTP Support : Pear::Net_FTP est introuvable."),
|
|
'level' => 'c'
|
|
);
|
|
|
|
$GLOBALS['LSerror_code']['FTP_00']= array (
|
|
'msg' => _("Net_FTP Error : %{msg}"),
|
|
'level' => 'c'
|
|
);
|
|
|
|
$GLOBALS['LSerror_code']['FTP_01']= array (
|
|
'msg' => _("FTP Support : Impossible de se connecter au serveur FTP (Etape : %{etape})."),
|
|
'level' => 'c'
|
|
);
|
|
$GLOBALS['LSerror_code']['FTP_02']= array (
|
|
'msg' => _("FTP Support : Impossible de créer le dossier %{dir} sur le serveur distant."),
|
|
'level' => 'c'
|
|
);
|
|
$GLOBALS['LSerror_code']['FTP_03']= array (
|
|
'msg' => _("FTP Support : Impossible de supprimer le dossier %{dir} sur le serveur distant."),
|
|
'level' => 'c'
|
|
);
|
|
|
|
|
|
/**
|
|
* Fin des données de configuration
|
|
*/
|
|
|
|
|
|
/**
|
|
* Verification du support FTP par ldapSaisie
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @retval boolean true si FTP est pleinement supporté, false sinon
|
|
*/
|
|
function LSaddon_ftp_support() {
|
|
$retval=true;
|
|
|
|
// Dependance de librairie
|
|
if (!class_exists('Net_FTP')) {
|
|
if(!@include(NET_FTP)) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_SUPPORT_01');
|
|
$retval=false;
|
|
}
|
|
}
|
|
|
|
return $retval;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Connexion a un serveur FTP
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @param[in] $host string Le nom ou l'IP du serveur FTP
|
|
* @param[in] $port string Le port de connexion au serveur ftp
|
|
* @param[in] $user string Le nom d'utilidateur de connexion
|
|
* @param[in] $pwd string Le mot de passe de connexion
|
|
*
|
|
* @retval mixed Net_FTP object en cas de succès, false sinon
|
|
*/
|
|
function connectToFTP($host,$port,$user,$pwd) {
|
|
$cnx = new Net_FTP();
|
|
$do = $cnx -> connect($host,$port);
|
|
if (! $do instanceof PEAR_Error){
|
|
$do = $cnx -> login($user,$pwd);
|
|
if (! $do instanceof PEAR_Error) {
|
|
return $cnx;
|
|
}
|
|
else {
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_01',"2");
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_00',$do -> getMessage());
|
|
return;
|
|
}
|
|
}
|
|
else {
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_01',"1");
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_00',$do -> getMessage());
|
|
return;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Creation d'un ou plusieurs dossiers via FTP
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @param[in] $host string Le nom ou l'IP du serveur FTP
|
|
* @param[in] $port string Le port de connexion au serveur ftp
|
|
* @param[in] $user string Le nom d'utilidateur de connexion
|
|
* @param[in] $pwd string Le mot de passe de connexion
|
|
* @param[in] $dirs array ou string Le(s) dossier(s) à ajouter
|
|
*
|
|
* @retval string True ou false si il y a un problème durant la création du/des dossier(s)
|
|
*/
|
|
function createDirsByFTP($host,$port,$user,$pwd,$dirs) {
|
|
$cnx = connectToFTP($host,$port,$user,$pwd);
|
|
if (! $cnx){
|
|
return;
|
|
}
|
|
if (!is_array($dirs)) {
|
|
$dirs = array($dirs);
|
|
}
|
|
foreach($dirs as $dir) {
|
|
$do = $cnx -> mkdir($dir,true);
|
|
if ($do instanceof PEAR_Error) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_02',$dir);
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_00',$do -> getMessage());
|
|
return;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Suppression d'un ou plusieurs dossiers via FTP
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @param[in] $host string Le nom ou l'IP du serveur FTP
|
|
* @param[in] $port string Le port de connexion au serveur ftp
|
|
* @param[in] $user string Le nom d'utilidateur de connexion
|
|
* @param[in] $pwd string Le mot de passe de connexion
|
|
* @param[in] $dirs array ou string Le(s) dossier(s) à supprimer
|
|
*
|
|
* @retval string True ou false si il y a un problème durant la suppression du/des dossier(s)
|
|
*/
|
|
function removeDirsByFTP($host,$port,$user,$pwd,$dirs) {
|
|
$cnx = connectToFTP($host,$port,$user,$pwd);
|
|
if (! $cnx){
|
|
return;
|
|
}
|
|
if (!is_array($dirs)) {
|
|
$dirs = array($dirs);
|
|
}
|
|
foreach($dirs as $dir) {
|
|
if ($dir[strlen($dir)-1]!='/') {
|
|
$dir.='/';
|
|
}
|
|
$do = $cnx -> rm($dir,true);
|
|
if ($do instanceof PEAR_Error) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_03',$dir);
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_00',$do -> getMessage());
|
|
return;
|
|
}
|
|
}
|
|
return true;
|
|
}
|