forked from Wavyzz/dolibarr
232 lines
9.6 KiB
PHP
232 lines
9.6 KiB
PHP
<?php
|
|
/* Copyright (C) 2007-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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/core/ajax/ajaxdirtree.php
|
|
* \ingroup ecm
|
|
* \brief This script returns content of a directory for filetree
|
|
*/
|
|
|
|
|
|
// This script is called with a POST method.
|
|
// Directory to scan (full path) is inside POST['dir'].
|
|
|
|
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal
|
|
//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1');
|
|
if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1');
|
|
if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1');
|
|
if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1');
|
|
|
|
$res=@include '../../main.inc.php';
|
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
|
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/treeview.lib.php';
|
|
include_once DOL_DOCUMENT_ROOT.'/core/class/html.form.class.php';
|
|
include_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmdirectory.class.php';
|
|
|
|
$openeddir = GETPOST('openeddir');
|
|
$modulepart= GETPOST('modulepart');
|
|
$selecteddir = jsUnEscape(GETPOST('dir')); // relative path. We must decode using same encoding function used by javascript: escape()
|
|
if ($selecteddir != '/') $selecteddir = preg_replace('/\/$/','',$selecteddir); // We removed last '/' except if it is '/'
|
|
|
|
$langs->load("ecm");
|
|
|
|
// Define selecteddir (fullpath).
|
|
if ($modulepart == 'ecm') $fullpathselecteddir=$conf->ecm->dir_output.'/'.($selecteddir != '/' ? $selecteddir : '');
|
|
|
|
|
|
// Security:
|
|
// On interdit les remontees de repertoire ainsi que les pipe dans
|
|
// les noms de fichiers.
|
|
if (preg_match('/\.\./',$fullpathselecteddir) || preg_match('/[<>|]/',$fullpathselecteddir))
|
|
{
|
|
dol_syslog("Refused to deliver file ".$original_file);
|
|
// Do no show plain path in shown error message
|
|
dol_print_error(0,$langs->trans("ErrorFileNameInvalid",GETPOST("file")));
|
|
exit;
|
|
}
|
|
|
|
// Check permissions
|
|
if ($modulepart == 'ecm')
|
|
{
|
|
if (! $user->rights->ecm->read) accessforbidden();
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
top_httphead();
|
|
|
|
//print '<!-- selecteddir = '.$selecteddir.', openeddir = '.$openeddir.', modulepart='.$modulepart.' -->'."\n";
|
|
$userstatic=new User($db);
|
|
$form=new Form($db);
|
|
$ecmdirstatic = new EcmDirectory($db);
|
|
|
|
// Load full tree from database. We will use it to define nbofsubdir and nboffilesinsubdir
|
|
if (empty($sqltree)) $sqltree=$ecmdirstatic->get_full_arbo(0);
|
|
|
|
// Try to find key into $sqltree
|
|
$current_ecmdir_id=-1;
|
|
foreach($sqltree as $keycursor => $val)
|
|
{
|
|
//print $val['fullrelativename']." == ".$selecteddir;
|
|
if ($val['fullrelativename'] == $selecteddir)
|
|
{
|
|
$current_ecmdir_id = $keycursor;
|
|
}
|
|
}
|
|
|
|
|
|
if (file_exists($fullpathselecteddir))
|
|
{
|
|
$files = @scandir($fullpathselecteddir);
|
|
if ($files)
|
|
{
|
|
natcasesort($files);
|
|
if ( count($files) > 2 ) /* The 2 accounts for . and .. */
|
|
{
|
|
echo "<ul class=\"ecmjqft\" style=\"display: none;\">\n";
|
|
|
|
// All dirs
|
|
foreach( $files as $file ) // $file can be '.', '..', or 'My dir' or 'My file'
|
|
{
|
|
if ($file == 'temp') continue;
|
|
|
|
$nbofsubdir=0;
|
|
$nboffilesinsubdir=0;
|
|
|
|
$val=array();
|
|
|
|
// Loop on all database entries (sqltree) to find the one matching the subdir found into dir to scan
|
|
foreach($sqltree as $key => $tmpval)
|
|
{
|
|
//print "-- key=".$key." - ".$tmpval['fullrelativename']." vs ".(($selecteddir != '/'?$selecteddir.'/':'').$file)."<br>\n";
|
|
if ($tmpval['fullrelativename'] == (($selecteddir != '/'?$selecteddir.'/':'').$file)) // We found equivalent record into database
|
|
{
|
|
$val=$tmpval;
|
|
$resarray=tree_showpad($sqltree,$key,1);
|
|
|
|
// Refresh cache for this subdir
|
|
if (isset($val['cachenbofdoc']) && $val['cachenbofdoc'] < 0) // Cache is not up to date, so we update it for this directory t
|
|
{
|
|
$result=$ecmdirstatic->fetch($val['id']);
|
|
$ecmdirstatic->ref=$ecmdirstatic->label;
|
|
|
|
$result=$ecmdirstatic->refreshcachenboffile(0);
|
|
$val['cachenbofdoc']=$result;
|
|
}
|
|
|
|
$a=$resarray[0];
|
|
$nbofsubdir=$resarray[1];
|
|
$nboffilesinsubdir=$resarray[2];
|
|
break;
|
|
}
|
|
}
|
|
|
|
//print 'modulepart='.$modulepart.' fullpathselecteddir='.$fullpathselecteddir.' - val[fullrelativename] (in database)='.$val['fullrelativename'].' - val[id]='.$val['id'].' - is_dir='.dol_is_dir($fullpathselecteddir . $file).' - file='.$file."\n";
|
|
if ($file != '.' && $file != '..' && ((! empty($val['fullrelativename']) && $val['id'] >= 0) || dol_is_dir($fullpathselecteddir . (preg_match('/\/$/',$fullpathselecteddir)?'':'/') . $file)))
|
|
{
|
|
if (empty($val['fullrelativename'])) // If we did not find entry into database, but found a directory (dol_is_dir was ok at previous test)
|
|
{
|
|
$val['fullrelativename']=$file;
|
|
$val['id']=0;
|
|
$val['label']=$file;
|
|
$val['description']='';
|
|
$nboffilesinsubdir=$langs->trans("Unknown");
|
|
}
|
|
|
|
print '<li class="directory collapsed">';
|
|
|
|
print "<a class=\"fmdirlia jqft ecmjqft\" href=\"#\" rel=\"" . dol_escape_htmltag($val['fullrelativename'].'/') . "\" id=\"fmdirlia_id_".$val['id']."\"";
|
|
print " onClick=\"loadandshowpreview('".dol_escape_js($val['fullrelativename'])."',".$val['id'].")\">";
|
|
print dol_escape_htmltag($file);
|
|
print "</a>";
|
|
|
|
print '<div class="ecmjqft">';
|
|
|
|
print '<table class="nobordernopadding"><tr>';
|
|
|
|
/*print '<td align="left">';
|
|
print dol_escape_htmltag($file);
|
|
print '</td>';*/
|
|
|
|
// Nb of docs
|
|
print '<td align="right">';
|
|
print (isset($val['cachenbofdoc']) && $val['cachenbofdoc'] >= 0)?$val['cachenbofdoc']:' ';
|
|
print '</td>';
|
|
print '<td align="left">';
|
|
if ($nbofsubdir > 0 && $nboffilesinsubdir > 0) print '<font color="#AAAAAA">+'.$nboffilesinsubdir.'</font> ';
|
|
print '</td>';
|
|
|
|
// Edit link
|
|
print '<td align="right" width="18"><a href="'.DOL_URL_ROOT.'/ecm/docmine.php?section='.$val['id'].'&relativedir='.urlencode($val['fullrelativename']).'">'.img_view($langs->trans("Edit").' - '.$langs->trans("View")).'</a></td>';
|
|
|
|
// Add link
|
|
//print '<td align="right"><a href="'.DOL_URL_ROOT.'/ecm/docdir.php?action=create&catParent='.$val['id'].'">'.img_edit_add().'</a></td>';
|
|
//print '<td align="right" width="14"> </td>';
|
|
|
|
// Info
|
|
print '<td align="right" width="18">';
|
|
$userstatic->id=isset($val['fk_user_c'])?$val['fk_user_c']:0;
|
|
$userstatic->lastname=isset($val['login_c'])?$val['login_c']:0;
|
|
$htmltooltip='<b>'.$langs->trans("ECMSection").'</b>: '.$val['label'].'<br>';
|
|
$htmltooltip='<b>'.$langs->trans("Type").'</b>: '.$langs->trans("ECMSectionManual").'<br>';
|
|
$htmltooltip.='<b>'.$langs->trans("ECMCreationUser").'</b>: '.$userstatic->getNomUrl(1, '', false, 1).'<br>';
|
|
$htmltooltip.='<b>'.$langs->trans("ECMCreationDate").'</b>: '.(isset($val['date_c'])?dol_print_date($val['date_c'],"dayhour"):$langs->trans("NeedRefresh")).'<br>';
|
|
$htmltooltip.='<b>'.$langs->trans("Description").'</b>: '.$val['description'].'<br>';
|
|
$htmltooltip.='<b>'.$langs->trans("ECMNbOfFilesInDir").'</b>: '.((isset($val['cachenbofdoc']) && $val['cachenbofdoc'] >= 0)?$val['cachenbofdoc']:$langs->trans("NeedRefresh")).'<br>';
|
|
if ($nboffilesinsubdir > 0) $htmltooltip.='<b>'.$langs->trans("ECMNbOfFilesInSubDir").'</b>: '.$nboffilesinsubdir;
|
|
else $htmltooltip.='<b>'.$langs->trans("ECMNbOfSubDir").'</b>: '.($nbofsubdir >= 0 ? $nbofsubdir : $langs->trans("NeedRefresh")).'<br>';
|
|
print $form->textwithpicto('',$htmltooltip,1,"info");
|
|
print "</td>";
|
|
|
|
print "</tr></table>\n";
|
|
print '</div>';
|
|
|
|
//print '<div> </div>';
|
|
print "</li>\n";
|
|
}
|
|
}
|
|
|
|
// Enable jquery handlers on new generated HTML objects
|
|
print '<script type="text/javascript">';
|
|
print 'jQuery(".classfortooltip").tipTip({ maxWidth: "600px", edgeOffset: 10, delay: 50, fadeIn: 50, fadeOut: 50});';
|
|
// TODO Remove this. Is replaced with function as 3rd parameter of fileTree
|
|
print 'jQuery(".fmdirlia").click(function(e) {
|
|
id=jQuery(this).attr(\'id\').substr(12);
|
|
jQuery("#formuserfile_section_dir").val(jQuery(this).attr(\'rel\'));
|
|
jQuery("#formuserfile_section_id").val(id);
|
|
});';
|
|
print '</script>';
|
|
|
|
echo "</ul>\n";
|
|
|
|
}
|
|
}
|
|
else print "PermissionDenied";
|
|
}
|
|
|
|
// This ajax service is called only when a directory $selecteddir is opened but not when closed.
|
|
//print '<script language="javascript">';
|
|
//print "loadandshowpreview('".dol_escape_js($selecteddir)."');";
|
|
//print '</script>';
|
|
|
|
if (is_object($db)) $db->close();
|