123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822 |
- <?php
- /* Copyright (C) 2008-2016 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2008-2009 Regis Houssin <regis.houssin@capnetworks.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * 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, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/ftp/index.php
- * \ingroup ftp
- * \brief Main page for FTP section area
- */
- require('../main.inc.php');
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/treeview.lib.php';
- // Load traductions files
- $langs->load("ftp");
- $langs->load("companies");
- $langs->load("other");
- // Security check
- if ($user->societe_id) $socid=$user->societe_id;
- $result = restrictedArea($user, 'ftp','');
- // Get parameters
- $action=GETPOST('action','aZ09');
- $section=GETPOST('section');
- if (! $section) $section='/';
- $numero_ftp = GETPOST("numero_ftp");
- /* if (! $numero_ftp) $numero_ftp=1; */
- $file=GETPOST("file");
- $confirm=GETPOST('confirm');
- $upload_dir = $conf->ftp->dir_temp;
- $download_dir = $conf->ftp->dir_temp;
- $sortfield = GETPOST("sortfield",'alpha');
- $sortorder = GETPOST("sortorder",'alpha');
- $page = GETPOST("page",'int');
- if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
- $offset = $conf->liste_limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (! $sortorder) $sortorder="ASC";
- if (! $sortfield) $sortfield="label";
- $s_ftp_name='FTP_NAME_'.$numero_ftp;
- $s_ftp_server='FTP_SERVER_'.$numero_ftp;
- $s_ftp_port='FTP_PORT_'.$numero_ftp;
- $s_ftp_user='FTP_USER_'.$numero_ftp;
- $s_ftp_password='FTP_PASSWORD_'.$numero_ftp;
- $s_ftp_passive='FTP_PASSIVE_'.$numero_ftp;
- $ftp_name=$conf->global->$s_ftp_name;
- $ftp_server=$conf->global->$s_ftp_server;
- $ftp_port=$conf->global->$s_ftp_port; if (empty($ftp_port)) $ftp_port=21;
- $ftp_user=$conf->global->$s_ftp_user;
- $ftp_password=$conf->global->$s_ftp_password;
- $ftp_passive=$conf->global->$s_ftp_passive;
- // For result on connection
- $ok=0;
- $conn_id=null; // FTP connection ID
- $mesg='';
- /*
- * ACTIONS
- */
- // Submit file
- if (GETPOST("sendit") && ! empty($conf->global->MAIN_UPLOAD_DOC))
- {
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- $result=$ecmdir->fetch($_REQUEST["section"]);
- if (! $result > 0)
- {
- dol_print_error($db,$ecmdir->error);
- exit;
- }
- $relativepath=$ecmdir->getRelativePath();
- $upload_dir = $conf->ecm->dir_output.'/'.$relativepath;
- if (dol_mkdir($upload_dir) >= 0)
- {
- $resupload = dol_move_uploaded_file($_FILES['userfile']['tmp_name'], $upload_dir . "/" . dol_unescapefile($_FILES['userfile']['name']),0);
- if (is_numeric($resupload) && $resupload > 0)
- {
- $result=$ecmdir->changeNbOfFiles('+');
- }
- else {
- $langs->load("errors");
- if ($resupload < 0) // Unknown error
- {
- setEventMessages($langs->trans("ErrorFileNotUploaded"), null, 'errors');
- }
- else if (preg_match('/ErrorFileIsInfectedWithAVirus/',$resupload)) // Files infected by a virus
- {
- setEventMessages($langs->trans("ErrorFileIsInfectedWithAVirus"), null, 'errors');
- }
- else // Known error
- {
- setEventMessages($langs->trans($resupload), null, 'errors');
- }
- }
- }
- else
- {
- // Echec transfert (fichier depassant la limite ?)
- $langs->load("errors");
- setEventMessages($langs->trans("ErrorFailToCreateDir",$upload_dir), null, 'errors');
- }
- }
- // Action ajout d'un rep
- if ($action == 'add' && $user->rights->ftp->setup)
- {
- $ecmdir->ref = $_POST["ref"];
- $ecmdir->label = $_POST["label"];
- $ecmdir->description = $_POST["desc"];
- $id = $ecmdir->create($user);
- if ($id > 0)
- {
- header("Location: ".$_SERVER["PHP_SELF"]);
- exit;
- }
- else
- {
- setEventMessages($langs->trans("ErrorFailToCreateDir"), null, 'errors');
- $action = "create";
- }
- }
- // Remove file
- if ($action == 'confirm_deletefile' && $_REQUEST['confirm'] == 'yes')
- {
- // set up a connection or die
- if (! $conn_id)
- {
- $newsectioniso=utf8_decode($section);
- $resultarray=dol_ftp_connect($ftp_server, $ftp_port, $ftp_user, $ftp_password, $newsectioniso, $ftp_passive);
- $conn_id=$resultarray['conn_id'];
- $ok=$resultarray['ok'];
- $mesg=$resultarray['mesg'];
- }
- if ($conn_id && $ok && ! $mesg)
- {
- $langs->load("other");
- // Remote file
- $filename=$file;
- $remotefile=$section.(preg_match('@[\\\/]$@',$section)?'':'/').$file;
- $newremotefileiso=utf8_decode($remotefile);
- //print "x".$newremotefileiso;
- dol_syslog("ftp/index.php ftp_delete ".$newremotefileiso);
- $result=@ftp_delete($conn_id, $newremotefileiso);
- if ($result)
- {
- setEventMessages($langs->trans("FileWasRemoved",$file), null, 'mesgs');
- }
- else
- {
- dol_syslog("ftp/index.php ftp_delete", LOG_ERR);
- setEventMessages($langs->trans("FTPFailedToRemoveFile",$file), null, 'errors');
- }
- //ftp_close($conn_id); Close later
- $action='';
- }
- else
- {
- dol_print_error('',$mesg);
- }
- }
- // Delete several lines at once
- if ($_POST["const"] && $_POST["delete"] && $_POST["delete"] == $langs->trans("Delete"))
- {
- // set up a connection or die
- if (! $conn_id)
- {
- $newsectioniso=utf8_decode($section);
- $resultarray=dol_ftp_connect($ftp_server, $ftp_port, $ftp_user, $ftp_password, $newsectioniso, $ftp_passive);
- $conn_id=$resultarray['conn_id'];
- $ok=$resultarray['ok'];
- $mesg=$resultarray['mesg'];
- }
- if ($conn_id && $ok && ! $mesg)
- {
- foreach($_POST["const"] as $const)
- {
- if ($const["check"]) // Is checkbox checked
- {
- $langs->load("other");
- // Remote file
- $file=$const["file"];
- $section=$const["section"];
- $remotefile=$section.(preg_match('@[\\\/]$@',$section)?'':'/').$file;
- $newremotefileiso=utf8_decode($remotefile);
- //print "x".$newremotefileiso;
- dol_syslog("ftp/index.php ftp_delete ".$newremotefileiso);
- $result=@ftp_delete($conn_id, $newremotefileiso);
- if ($result)
- {
- setEventMessages($langs->trans("FileWasRemoved",$file), null, 'mesgs');
- }
- else
- {
- dol_syslog("ftp/index.php ftp_delete", LOG_ERR);
- setEventMessages($langs->trans("FTPFailedToRemoveFile",$file), null, 'errors');
- }
- //ftp_close($conn_id); Close later
- $action='';
- }
- }
- }
- else
- {
- dol_print_error('',$mesg);
- }
- }
- // Remove directory
- if ($action == 'confirm_deletesection' && $confirm == 'yes')
- {
- // set up a connection or die
- if (! $conn_id)
- {
- $newsectioniso=utf8_decode($section);
- $resultarray=dol_ftp_connect($ftp_server, $ftp_port, $ftp_user, $ftp_password, $newsectioniso, $ftp_passive);
- $conn_id=$resultarray['conn_id'];
- $ok=$resultarray['ok'];
- $mesg=$resultarray['mesg'];
- }
- if ($conn_id && $ok && ! $mesg)
- {
- // Remote file
- $filename=$file;
- $remotefile=$section.(preg_match('@[\\\/]$@',$section)?'':'/').$file;
- $newremotefileiso=utf8_decode($remotefile);
- $result=@ftp_rmdir($conn_id, $newremotefileiso);
- if ($result)
- {
- setEventMessages($langs->trans("DirWasRemoved",$file), null, 'mesgs');
- }
- else
- {
- setEventMessages($langs->trans("FTPFailedToRemoveDir",$file), null, 'errors');
- }
- //ftp_close($conn_id); Close later
- $action='';
- }
- else
- {
- dol_print_error('',$mesg);
- }
- }
- // Download directory
- if ($action == 'download')
- {
- // set up a connection or die
- if (! $conn_id)
- {
- $newsectioniso=utf8_decode($section);
- $resultarray=dol_ftp_connect($ftp_server, $ftp_port, $ftp_user, $ftp_password, $newsectioniso, $ftp_passive);
- $conn_id=$resultarray['conn_id'];
- $ok=$resultarray['ok'];
- $mesg=$resultarray['mesg'];
- }
- if ($conn_id && $ok && ! $mesg)
- {
- // Local file
- $localfile=tempnam($download_dir,'dol_');
- // Remote file
- $filename=$file;
- $remotefile=$section.(preg_match('@[\\\/]$@',$section)?'':'/').$file;
- $newremotefileiso=utf8_decode($remotefile);
- $result=ftp_get($conn_id,$localfile,$newremotefileiso,FTP_BINARY);
- if ($result)
- {
- if (! empty($conf->global->MAIN_UMASK))
- @chmod($localfile, octdec($conf->global->MAIN_UMASK));
- // Define mime type
- $type = 'application/octet-stream';
- if (! empty($_GET["type"])) $type=$_GET["type"];
- else $type=dol_mimetype($original_file);
- // Define attachment (attachment=true to force choice popup 'open'/'save as')
- $attachment = true;
- if ($encoding) header('Content-Encoding: '.$encoding);
- if ($type) header('Content-Type: '.$type);
- if ($attachment) header('Content-Disposition: attachment; filename="'.$filename.'"');
- else header('Content-Disposition: inline; filename="'.$filename.'"');
- // Ajout directives pour resoudre bug IE
- header('Cache-Control: Public, must-revalidate');
- header('Pragma: public');
- readfile($localfile);
- ftp_close($conn_id);
- exit;
- }
- else
- {
- setEventMessages($langs->transnoentitiesnoconv('FailedToGetFile',$remotefile), null, 'errors');
- }
- }
- else
- {
- dol_print_error('',$mesg);
- }
- //ftp_close($conn_id); Close later
- }
- /*
- * View
- */
- llxHeader();
- // Add logic to shoow/hide buttons
- if ($conf->use_javascript_ajax)
- {
- ?>
- <script type="text/javascript">
- jQuery(document).ready(function() {
- jQuery("#delconst").hide();
- jQuery(".checkboxfordelete").click(function() {
- jQuery("#delconst").show();
- });
- $("#checkall").click(function() {
- $(".checkboxfordelete").prop('checked', true);
- jQuery("#delconst").show();
- });
- $("#checknone").click(function() {
- $(".checkboxfordelete").prop('checked', false);
- jQuery("#delconst").hide();
- });
-
- });
- </script>
- <?php
- }
- $form=new Form($db);
- $formfile=new FormFile($db);
- $userstatic = new User($db);
- // List
- print load_fiche_titre($langs->trans("FTPArea"));
- print $langs->trans("FTPAreaDesc")."<br>";
- if (! function_exists('ftp_connect'))
- {
- print $langs->trans("FTPFeatureNotSupportedByYourPHP");
- }
- else
- {
- if (! empty($ftp_server))
- {
- // Confirm remove file
- if ($action == 'delete')
- {
- print $form->formconfirm($_SERVER["PHP_SELF"].'?numero_ftp='.$numero_ftp.'§ion='.urlencode($_REQUEST["section"]).'&file='.urlencode($_GET["file"]), $langs->trans('DeleteFile'), $langs->trans('ConfirmDeleteFile'), 'confirm_deletefile','','',1);
-
- }
- // Confirmation de la suppression d'une ligne categorie
- if ($action == 'delete_section')
- {
- print $form->formconfirm($_SERVER["PHP_SELF"].'?numero_ftp='.$numero_ftp.'§ion='.urlencode($_REQUEST["section"]).'&file='.urlencode($_GET["file"]), $langs->trans('DeleteSection'), $langs->trans('ConfirmDeleteSection',$ecmdir->label), 'confirm_deletesection','','',1);
- }
- print $langs->trans("Server").': <b>'.$ftp_server.'</b><br>';
- print $langs->trans("Port").': <b>'.$ftp_port.'</b> '.($ftp_passive?"(Passive)":"(Active)").'<br>';
- print $langs->trans("User").': <b>'.$ftp_user.'</b><br>';
- print $langs->trans("FTPs (FTP over SSH)").': <b>'.yn($conf->global->FTP_CONNECT_WITH_SSL).'</b><br>';
- print $langs->trans("SFTP (FTP as a subsytem of SSH)").': <b>'.yn($conf->global->FTP_CONNECT_WITH_SFTP).'</b><br>';
- print $langs->trans("Directory").': ';
- $sectionarray=preg_split('|[\/]|',$section);
- // For /
- $newsection='/';
- print '<a href="'.$_SERVER["PHP_SELF"].'?action=refreshmanual&numero_ftp='.$numero_ftp.($newsection?'§ion='.urlencode($newsection):'').'">';
- print '/';
- print '</a> ';
- // For other directories
- $i=0;
- foreach($sectionarray as $val)
- {
- if (empty($val)) continue; // Discard first and last entry that should be empty as section start/end with /
- if ($i > 0)
- {
- print ' / ';
- $newsection.='/';
- }
- $newsection.=$val;
- print '<a href="'.$_SERVER["PHP_SELF"].'?action=refreshmanual&numero_ftp='.$numero_ftp.($newsection?'§ion='.urlencode($newsection):'').'">';
- print $val;
- print '</a>';
- $i++;
- }
- print '<br>';
- print "<br>\n";
- print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
- print '<input type="hidden" name="numero_ftp" value="'.$numero_ftp.'">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- // Construit liste des repertoires
- print '<table width="100%" class="noborder">'."\n";
- print '<tr class="liste_titre">'."\n";
- print '<td class="liste_titre" align="left">'.$langs->trans("Content").'</td>'."\n";
- print '<td class="liste_titre" align="center">'.$langs->trans("Size").'</td>'."\n";
- print '<td class="liste_titre" align="center">'.$langs->trans("Date").'</td>'."\n";
- print '<td class="liste_titre" align="center">'.$langs->trans("Owner").'</td>'."\n";
- print '<td class="liste_titre" align="center">'.$langs->trans("Group").'</td>'."\n";
- print '<td class="liste_titre" align="center">'.$langs->trans("Permissions").'</td>'."\n";
- print '<td class="liste_titre nowrap" align="right">';
- if ($conf->use_javascript_ajax) print '<a href="#" id="checkall">'.$langs->trans("All").'</a> / <a href="#" id="checknone">'.$langs->trans("None").'</a> ';
- print '<a href="'.$_SERVER["PHP_SELF"].'?action=refreshmanual&numero_ftp='.$numero_ftp.($section?'§ion='.urlencode($section):'').'">'.img_picto($langs->trans("Refresh"),'refresh').'</a> ';
- print '</td>'."\n";
- print '</tr>'."\n";
- // set up a connection or die
- if (empty($conn_id))
- {
- $resultarray=dol_ftp_connect($ftp_server, $ftp_port, $ftp_user, $ftp_password, $section, $ftp_passive);
- $conn_id=$resultarray['conn_id'];
- $ok=$resultarray['ok'];
- $mesg=$resultarray['mesg'];
- }
- if ($ok)
- {
- //$type = ftp_systype($conn_id);
- $newsection=$section;
- $newsectioniso=utf8_decode($section);
- //$newsection='/home';
-
- // List content of directory ($newsection = '/', '/home', ...)
- if (! empty($conf->global->FTP_CONNECT_WITH_SFTP))
- {
- if ($newsection == '/') $newsection='/./'; // workaround for bug https://bugs.php.net/bug.php?id=64169
- //$dirHandle = opendir("ssh2.sftp://$conn_id".$newsection);
- //var_dump($dirHandle);
- $contents = scandir('ssh2.sftp://' . $conn_id . $newsection);
- $buff=array();
- foreach($contents as $i => $key)
- {
- $buff[$i]="---------- - root root 1234 Aug 01 2000 ".$key;
- }
- }
- else
- {
- $buff = ftp_rawlist($conn_id, $newsectioniso);
- $contents = ftp_nlist($conn_id, $newsectioniso); // Sometimes rawlist fails but never nlist
- //var_dump($contents);
- //var_dump($buff);
- }
- $nboflines=count($contents);
- $var=true;
- $rawlisthasfailed=false;
- $i=0;
- while ($i < $nboflines && $i < 1000)
- {
- $vals=preg_split('@ +@',utf8_encode($buff[$i]),9);
- //$vals=preg_split('@ +@','drwxr-xr-x 2 root root 4096 Aug 30 2008 backup_apollon1',9);
- //var_dump($vals);
- $file=$vals[8];
- if (empty($file))
- {
- $rawlisthasfailed=true;
- $file=utf8_encode($contents[$i]);
- }
- if ($file == '.' || ($file == '..' && $section == '/'))
- {
- $i++;
- continue;
- }
- // Is it a directory ?
- $is_directory=0;
- if ($file == '..') $is_directory=1;
- else if (! $rawlisthasfailed)
- {
- if (preg_match('/^d/',$vals[0])) $is_directory=1;
- if (preg_match('/^l/',$vals[0])) $is_link=1;
- }
- else
- {
- // Remote file
- $filename=$file;
- //print "section=".$section.' file='.$file.'X';
- //print preg_match('@[\/]$@','aaa/').'Y';
- //print preg_match('@[\\\/]$@',"aaa\\").'Y';
- $remotefile=$section.(preg_match('@[\\\/]$@',$section)?'':'/').preg_replace('@^[\\\/]@','',$file);
- //print 'A'.$remotefile.'A';
- $newremotefileiso=utf8_decode($remotefile);
- //print 'Z'.$newremotefileiso.'Z';
- $is_directory=ftp_isdir($conn_id, $newremotefileiso);
- }
-
- print '<tr '.$bc[$var].' height="18">';
- // Name
- print '<td>';
- $newsection=$section.(preg_match('@[\\\/]$@',$section)?'':'/').$file;
- $newsection=preg_replace('@[\\\/][^\\\/]+[\\\/]\.\.$@','/',$newsection); // Change aaa/xxx/.. to new aaa
- if ($is_directory) print '<a href="'.$_SERVER["PHP_SELF"].'?section='.urlencode($newsection).'&numero_ftp='.$numero_ftp.'">';
- print $file;
- if ($is_directory) print '</a>';
- print '</td>';
- // Size
- print '<td align="center" class="nowrap">';
- if (! $is_directory && ! $is_link) print $vals[4];
- else print ' ';
- print '</td>';
- // Date
- print '<td align="center" class="nowrap">';
- print $vals[5].' '.$vals[6].' '.$vals[7];
- print '</td>';
- // User
- print '<td align="center" class="nowrap">';
- print $vals[2];
- print '</td>';
- // Group
- print '<td align="center" class="nowrap">';
- print $vals[3];
- print '</td>';
- // Permissions
- print '<td align="center" class="nowrap">';
- print $vals[0];
- print '</td>';
- // Action
- print '<td align="right" width="64" class="nowrap">';
- if ($is_directory)
- {
- if ($file != '..') print '<a href="'.$_SERVER["PHP_SELF"].'?action=delete_section&numero_ftp='.$numero_ftp.'§ion='.urlencode($section).'&file='.urlencode($file).'">'.img_delete().'</a>';
- else print ' ';
- }
- else if ($is_link)
- {
- $newfile=$file;
- $newfile=preg_replace('/ ->.*/','',$newfile);
- print '<a href="'.$_SERVER["PHP_SELF"].'?action=delete&numero_ftp='.$numero_ftp.'§ion='.urlencode($section).'&file='.urlencode($newfile).'">'.img_delete().'</a>';
- }
- else
- {
- print '<a href="'.$_SERVER["PHP_SELF"].'?action=download&numero_ftp='.$numero_ftp.'§ion='.urlencode($section).'&file='.urlencode($file).'">'.img_picto('','file').'</a>';
- print ' ';
- print '<input type="checkbox" class="flat checkboxfordelete" id="check_'.$i.'" name="const['.$i.'][check]" value="1">';
- print ' ';
- print '<a href="'.$_SERVER["PHP_SELF"].'?action=delete&numero_ftp='.$numero_ftp.'§ion='.urlencode($section).'&file='.urlencode($file).'">'.img_delete().'</a>';
- print '<input type="hidden" name="const['.$i.'][section]" value="'.$section.'">';
- print '<input type="hidden" name="const['.$i.'][file]" value="'.$file.'">';
- }
- print '</td>';
- print '</tr>'."\n";
- $i++;
- $nbofentries++;
- }
- }
- print "</table>";
-
- if (! $ok)
- {
- print $mesg.'<br>'."\n";
- setEventMessages($mesg, null, 'errors');
- }
-
-
- // Actions
- /*
- if ($user->rights->ftp->write && ! empty($section))
- {
- $formfile->form_attach_new_file(DOL_URL_ROOT.'/ftp/index.php','',0,$section,1);
- }
- else print ' ';
- */
- print '<br>';
- print '<div id="delconst" align="right">';
- print '<input type="submit" name="delete" class="button" value="'.$langs->trans("Delete").'">';
- print '</div>';
- print "</form>";
- }
- else
- {
- $foundsetup=false;
- $MAXFTP=20;
- $i=1;
- while ($i <= $MAXFTP)
- {
- $paramkey='FTP_NAME_'.$i;
- //print $paramkey;
- if (! empty($conf->global->$paramkey))
- {
- $foundsetup=true;
- break;
- }
- $i++;
- }
- if (! $foundsetup)
- {
- print $langs->trans("SetupOfFTPClientModuleNotComplete");
- }
- else
- {
- print $langs->trans("ChooseAFTPEntryIntoMenu");
- }
- }
- }
- print '<br>';
- // Close FTP connection
- if ($conn_id)
- {
- if (! empty($conf->global->FTP_CONNECT_WITH_SFTP))
- {
-
- }
- else if (! empty($conf->global->FTP_CONNECT_WITH_SSL))
- {
- ftp_close($conn_id);
- }
- else
- {
- ftp_close($conn_id);
- }
- }
-
- llxFooter();
- $db->close();
- /**
- * Connect to FTP server
- *
- * @param string $ftp_server Server name
- * @param string $ftp_port Server port
- * @param string $ftp_user FTP user
- * @param string $ftp_password FTP password
- * @param string $section Directory
- * @param integer $ftp_passive Use a passive mode
- * @return int <0 if OK, >0 if KO
- */
- function dol_ftp_connect($ftp_server, $ftp_port, $ftp_user, $ftp_password, $section, $ftp_passive=0)
- {
- global $langs, $conf;
- $ok=1;
- $conn_id=null;
-
- if (! is_numeric($ftp_port))
- {
- $mesg=$langs->transnoentitiesnoconv("FailedToConnectToFTPServer",$ftp_server,$ftp_port);
- $ok=0;
- }
- if ($ok)
- {
- $connecttimeout=(empty($conf->global->FTP_CONNECT_TIMEOUT)?40:$conf->global->FTP_CONNECT_TIMEOUT);
- if (! empty($conf->global->FTP_CONNECT_WITH_SFTP))
- {
- dol_syslog('Try to connect with ssh2_ftp');
- $tmp_conn_id = ssh2_connect($ftp_server, $ftp_port);
- }
- else if (! empty($conf->global->FTP_CONNECT_WITH_SSL))
- {
- dol_syslog('Try to connect with ftp_ssl_connect');
- $conn_id = ftp_ssl_connect($ftp_server, $ftp_port, $connecttimeout);
- }
- else
- {
- dol_syslog('Try to connect with ftp_connect');
- $conn_id = ftp_connect($ftp_server, $ftp_port, $connecttimeout);
- }
- if ($conn_id || $tmp_conn_id)
- {
- if ($ftp_user)
- {
- if (! empty($conf->global->FTP_CONNECT_WITH_SFTP))
- {
- if (ssh2_auth_password($tmp_conn_id, $ftp_user, $ftp_password))
- {
- // Turn on passive mode transfers (must be after a successful login
- //if ($ftp_passive) ftp_pasv($conn_id, true);
-
- // Change the dir
- $newsectioniso=utf8_decode($section);
- //ftp_chdir($conn_id, $newsectioniso);
- $conn_id = ssh2_sftp($tmp_conn_id);
- if (! $conn_id)
- {
- $mesg=$langs->transnoentitiesnoconv("FailedToConnectToSFTPAfterSSHAuthentication");
- $ok=0;
- $error++;
- }
- }
- else
- {
- $mesg=$langs->transnoentitiesnoconv("FailedToConnectToFTPServerWithCredentials");
- $ok=0;
- $error++;
- }
- }
- else
- {
- if (ftp_login($conn_id, $ftp_user, $ftp_password))
- {
- // Turn on passive mode transfers (must be after a successful login
- if ($ftp_passive) ftp_pasv($conn_id, true);
-
- // Change the dir
- $newsectioniso=utf8_decode($section);
- ftp_chdir($conn_id, $newsectioniso);
- }
- else
- {
- $mesg=$langs->transnoentitiesnoconv("FailedToConnectToFTPServerWithCredentials");
- $ok=0;
- $error++;
- }
- }
- }
- }
- else
- {
- dol_syslog('FailedToConnectToFTPServer '.$ftp_server.' '.$ftp_port, LOG_ERR);
- $mesg=$langs->transnoentitiesnoconv("FailedToConnectToFTPServer",$ftp_server,$ftp_port);
- $ok=0;
- }
- }
- $arrayresult=array('conn_id'=>$conn_id, 'ok'=>$ok, 'mesg'=>$mesg, 'curdir'=>$section, 'curdiriso'=>$newsectioniso);
- return $arrayresult;
- }
- /**
- * Tell if an entry is a FTP directory
- *
- * @param resource $connect_id Connection handler
- * @param string $dir Directory
- * @return int 1=directory, 0=not a directory
- */
- function ftp_isdir($connect_id,$dir)
- {
- if (@ftp_chdir($connect_id,$dir))
- {
- ftp_cdup($connect_id);
- return 1;
- }
- else
- {
- return 0;
- }
- }
|