mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-15 06:53:04 +01:00
6f52489a59
pour ne pas obliger sa recopie. - LSlog : Début d'ecriture d'une possibilité de fichiers de logs - Ajout d'une fonction de test validPas() retournant false - LSformElement : Ajout d'un type de LSformElement gérant les attributs maildir. Il fonctionne en frontend du LSaddon Maildir. - LSsession : -> Ajout de la méthode statique includeFile() utilisé à la place de la fonction php include_once() -> displayAjaxReturn() : Gestion du LSredirect -> Ajout d'un require_once() sur functions.php - LSaddon::FTP : Ajout de la fonction renameDirByFTP() - LSaddon::Maildir : -> Ajout de la fonction renameMaildirByFTP() -> Modification des fonctions createMaildirByFTP() et removeMaildirByFTP() pour pour pouvoir leur passé en deuxième paramètre le chemin de la maildir à utlisé - LSdefault : -> LSdebugHidde() devient hideLSdebug() -> Ajout de la méthode hideLSerror() accroché sur l'événement double-clique de la LSerrorsBox -> displayErrorBox() : plus de timeout d'affichage des erreurs -> checkAjaxReturn() : Gestion des LSredirect - LSform : -> plus de LSformRedirect : utilisation de LSdefault::LSredirect - modify.php et create.php : Utilisation des LSdefault::LSredirect et affichages des erreurs non-bloquant sur la page suivante. - LSerror : -> Utilisation d'une variable de session pour stocké les erreurs -> Ajout de la méthode resetError() exécutée à chaque exécution de LSerror::getErrors() - LSldapObject : -> Correction de la gestion des binding -> Event before_modify : bloquant en cas d'échec -> Event after_modify : non-bloquant en cas d'échec
231 lines
7.5 KiB
PHP
231 lines
7.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.
|
|
|
|
******************************************************************************/
|
|
|
|
// Messages d'erreur
|
|
|
|
// Support
|
|
$GLOBALS['LSerror_code']['FTP_SUPPORT_01']= array (
|
|
'msg' => _("FTP Support : Pear::Net_FTP est introuvable."),
|
|
'level' => 'c'
|
|
);
|
|
|
|
$GLOBALS['LSerror_code']['FTP_SUPPORT_02']= array (
|
|
'msg' => _("FTP Support : La constante %{const} n'est pas défini."),
|
|
'level' => 'c'
|
|
);
|
|
|
|
|
|
// Autres erreurs
|
|
$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'
|
|
);
|
|
$GLOBALS['LSerror_code']['FTP_04']= array (
|
|
'msg' => _("FTP Support : Impossible de modifier les droits du dossier %{dir} sur le serveur distant."),
|
|
'level' => 'c'
|
|
);
|
|
$GLOBALS['LSerror_code']['FTP_05']= array (
|
|
'msg' => _("FTP Support : Impossible de renomer le dossier %{old} en %{new} sur le serveur distant."),
|
|
'level' => 'c'
|
|
);
|
|
|
|
/**
|
|
* 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 (!defined('NET_FTP')) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_SUPPORT_02','NET_FTP');
|
|
$retval=false;
|
|
} else if(!LSsession::includeFile(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,$chmod=NULL) {
|
|
$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;
|
|
}
|
|
if ($chmod) {
|
|
$do = $cnx -> chmod($dir,$chmod);
|
|
if ($do instanceof PEAR_Error) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_04',$dir);
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_00',$do -> getMessage());
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Suppression d'un ou plusieurs dossiers via FTP
|
|
*
|
|
* Note : Attention : suppression récursive. Cela veut dire que les sous-dossiers
|
|
* lister par un LS FTP seront supprimé d'abord. Attention : Si votre serveur
|
|
* FTP est configuré pour caché certains fichiers ou dossiers (dont le nom
|
|
* commence par un '.' par exempl), ces fichiers ne seront pas supprimés et la
|
|
* suppression du dossier parent échoura.
|
|
*
|
|
* Pour VsFTPd : Ajouter force_dot_files=1 dans la configuration.
|
|
*
|
|
* @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;
|
|
}
|
|
|
|
/**
|
|
* Renomage d'un dossier 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] $old string Le dossier à renomer
|
|
* @param[in] $new string Le nouveau nom du dossier à renomer
|
|
*
|
|
* @retval string True ou false si il y a un problème durant le renomage du/des dossier(s)
|
|
*/
|
|
function renameDirByFTP($host,$port,$user,$pwd,$old,$new) {
|
|
$cnx = connectToFTP($host,$port,$user,$pwd);
|
|
if (! $cnx){
|
|
return;
|
|
}
|
|
$do = $cnx -> rename($old,$new);
|
|
if ($do instanceof PEAR_Error) {
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_05',array('old' => $old,'new' => $new));
|
|
$GLOBALS['LSerror'] -> addErrorCode('FTP_00',$do -> getMessage());
|
|
return;
|
|
}
|
|
return true;
|
|
}
|