mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
some vfs test code
This commit is contained in:
parent
a7c54190d7
commit
f87c13704e
98
filemanager/test.php
Normal file
98
filemanager/test.php
Normal file
@ -0,0 +1,98 @@
|
||||
<?php
|
||||
/**
|
||||
* eGroupWare - Filemanager - test script
|
||||
*
|
||||
* @link http://www.egroupware.org
|
||||
* @package filemanager
|
||||
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @copyright (c) 2009 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||||
* @version $Id: test.php 26927 2009-05-03 18:48:36Z ralfbecker $
|
||||
*/
|
||||
|
||||
$GLOBALS['egw_info']['flags'] = array(
|
||||
'currentapp' => 'filemanager'
|
||||
);
|
||||
include('../header.inc.php');
|
||||
|
||||
if (!($path = egw_session::appsession('test','filemanger')))
|
||||
{
|
||||
$path = '/home/'.$GLOBALS['egw_info']['user']['account_lid'];
|
||||
}
|
||||
if (isset($_REQUEST['path'])) $path = $_REQUEST['path'];
|
||||
echo html::form("<p>Path: ".html::input('path',$path,'text','size="40"').
|
||||
html::submit_button('',lang('Submit'))."</p>\n",array(),'','','','','GET');
|
||||
|
||||
if (isset($path) && !empty($path))
|
||||
{
|
||||
if ($path[0] != '/')
|
||||
{
|
||||
throw new egw_exception_wrong_userinput('Not an absolute path!');
|
||||
}
|
||||
egw_session::appsession('test','filemanger',$path);
|
||||
|
||||
echo "<h2>";
|
||||
foreach(explode('/',$path) as $n => $part)
|
||||
{
|
||||
$p .= ($p != '/' ? '/' : '').$part;
|
||||
echo ($n > 1 ? ' / ' : '').html::a_href($n ? $part : ' / ','/filemanager/test.php',array('path'=>$p));
|
||||
}
|
||||
echo "</h2>\n";
|
||||
|
||||
$is_dir = egw_vfs::is_dir($path);
|
||||
echo "<p><b>is_dir('$path')</b>=".array2string($is_dir)."</p>\n";
|
||||
|
||||
$time = microtime(true);
|
||||
$stat = egw_vfs::stat($path);
|
||||
$time = number_format(1000*(microtime(true)-$time),1);
|
||||
|
||||
if ($is_dir && ($d = egw_vfs::opendir($path)))
|
||||
{
|
||||
$files = array();
|
||||
while(($file = readdir($d)))
|
||||
{
|
||||
if (egw_vfs::is_readable($fpath=egw_vfs::concat($path,$file)))
|
||||
{
|
||||
$file = html::a_href($file,'/filemanager/test.php',array('path'=>$fpath));
|
||||
}
|
||||
$files[] = $file;
|
||||
}
|
||||
closedir($d);
|
||||
echo ($files ? '<ol><li>'.implode("</li>\n<li>",$files).'</ol>' : '<p>Empty directory</p>')."\n";
|
||||
}
|
||||
|
||||
echo "<p><b>stat('$path')</b> took $time ms (mode = ".(isset($stat['mode'])?sprintf('%o',$stat['mode']).' = '.egw_vfs::int2mode($stat['mode']):'NULL').')';
|
||||
if (is_array($stat))
|
||||
{
|
||||
_debug_array($stat);
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "<p>".array2string($stat)."</p>\n";
|
||||
}
|
||||
|
||||
echo "<p><b>egw_vfs::is_readable('$path')</b>=".array2string(egw_vfs::is_readable($path))."</p>\n";
|
||||
echo "<p><b>egw_vfs::is_writable('$path')</b>=".array2string(egw_vfs::is_writable($path))."</p>\n";
|
||||
|
||||
echo "<p><b>is_link('$path')</b>=".array2string(egw_vfs::is_link($path))."</p>\n";
|
||||
echo "<p><b>readlink('$path')</b>=".array2string(egw_vfs::readlink($path))."</p>\n";
|
||||
$time = microtime(true);
|
||||
$lstat = egw_vfs::lstat($path);
|
||||
$time = number_format(1000*(microtime(true)-$time),1);
|
||||
echo "<p><b>lstat('$path')</b> took $time ms (mode = ".(isset($lstat['mode'])?sprintf('%o',$lstat['mode']).' = '.egw_vfs::int2mode($lstat['mode']):'NULL').')';
|
||||
if (is_array($lstat))
|
||||
{
|
||||
_debug_array($lstat);
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "<p>".array2string($lstat)."</p>\n";
|
||||
}
|
||||
if (!$is_dir && $stat)
|
||||
{
|
||||
echo "<p><b>egw_vfs::mime_content_type('$path')</b>=".array2string(egw_vfs::mime_content_type($path))."</p>\n";
|
||||
echo "<p><b>filesize(egw_vfs::PREFIX.'$path')</b>=".array2string(filesize(egw_vfs::PREFIX.$path))."</p>\n";
|
||||
echo "<p><b>bytes(file_get_contents(egw_vfs::PREFIX.'$path'))</b>=".array2string(bytes(file_get_contents(egw_vfs::PREFIX.$path)))."</p>\n";
|
||||
}
|
||||
}
|
||||
$GLOBALS['egw']->common->egw_footer();
|
Loading…
Reference in New Issue
Block a user