2008-02-07 07:37:45 +01:00
< ? php
/**
* eGroupWare API : VFS - static methods to use the new eGW virtual file system
*
* @ link http :// www . egroupware . org
* @ license http :// opensource . org / licenses / gpl - license . php GPL - GNU General Public License
* @ package api
* @ subpackage vfs
* @ author Ralf Becker < RalfBecker - AT - outdoor - training . de >
2010-04-22 19:38:01 +02:00
* @ copyright ( c ) 2008 - 10 by Ralf Becker < RalfBecker - AT - outdoor - training . de >
2008-02-07 07:37:45 +01:00
* @ version $Id $
*/
/**
* Class containing static methods to use the new eGW virtual file system
*
2008-04-16 09:07:31 +02:00
* This extension of the vfs stream - wrapper allows to use the following static functions ,
2008-02-07 07:37:45 +01:00
* which only allow access to the eGW VFS and need no 'vfs://default' prefix for filenames :
2008-04-16 09:07:31 +02:00
*
2008-02-07 07:37:45 +01:00
* - resource egw_vfs :: fopen ( $path , $mode ) like fopen , returned resource can be used with fwrite etc .
* - resource egw_vfs :: opendir ( $path ) like opendir , returned resource can be used with readdir etc .
* - boolean egw_vfs :: copy ( $from , $to ) like copy
* - boolean egw_vfs :: rename ( $old , $new ) renaming or moving a file in the vfs
* - boolean egw_vfs :: mkdir ( $path ) creating a new dir in the vfs
* - boolean egw_vfs :: rmdir ( $path ) removing ( an empty ) directory
* - boolean egw_vfs :: unlink ( $path ) removing a file
* - boolean egw_vfs :: touch ( $path , $mtime = null ) touch a file
2008-04-16 09:07:31 +02:00
* - boolean egw_vfs :: stat ( $path ) returning status of file like stat (), but only with string keys ( no numerical indexes ) !
*
* With the exception of egw_vfs :: touch () ( not yet part of the stream_wrapper interface )
2008-02-07 07:37:45 +01:00
* you can always use the standard php functions , if you add a 'vfs://default' prefix
* to every filename or path . Be sure to always add the prefix , as the user otherwise gains
* access to the real filesystem of the server !
2008-04-16 09:07:31 +02:00
*
2008-02-07 07:37:45 +01:00
* The two following methods can be used to persitently mount further filesystems ( without editing the code ) :
2008-04-16 09:07:31 +02:00
*
2011-06-14 09:31:56 +02:00
* - boolean | array egw_vfs :: mount ( $url , $path ) to mount $ur on $path or to return the fstab when called without argument
2008-02-07 07:37:45 +01:00
* - boolean egw_vfs :: umount ( $path ) to unmount a path or url
2008-04-16 09:07:31 +02:00
*
* The stream wrapper interface allows to access hugh files in junks to not be limited by the
2010-12-13 03:37:46 +01:00
* memory_limit setting of php . To do you should pass the opened file as resource and not the content :
2008-04-16 09:07:31 +02:00
*
2008-02-07 07:37:45 +01:00
* $file = egw_vfs :: fopen ( '/home/user/somefile' , 'r' );
* $content = fread ( $file , 1024 );
2008-04-16 09:07:31 +02:00
*
* You can also attach stream filters , to eg . base64 encode or compress it on the fly ,
* without the need to hold the content of the whole file in memmory .
*
* If you want to copy a file , you can use stream_copy_to_stream to do a copy of a file far bigger then
2008-02-07 07:37:45 +01:00
* php ' s memory_limit :
2008-04-16 09:07:31 +02:00
*
2008-02-07 07:37:45 +01:00
* $from = egw_vfs :: fopen ( '/home/user/fromfile' , 'r' );
* $to = egw_vfs :: fopen ( '/home/user/tofile' , 'w' );
2008-04-16 09:07:31 +02:00
*
2008-02-07 07:37:45 +01:00
* stream_copy_to_stream ( $from , $to );
2008-04-16 09:07:31 +02:00
*
2008-02-07 07:37:45 +01:00
* The static egw_vfs :: copy () method does exactly that , but you have to do it eg . on your own , if
* you want to copy eg . an uploaded file into the vfs .
*/
class egw_vfs extends vfs_stream_wrapper
{
2008-03-02 22:44:15 +01:00
const PREFIX = 'vfs://default' ;
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
/**
* Readable bit , for dirs traversable
*/
const READABLE = 4 ;
/**
* Writable bit , for dirs delete or create files in that dir
*/
const WRITABLE = 2 ;
/**
* Excecutable bit , here only use to check if user is allowed to search dirs
*/
const EXECUTABLE = 1 ;
2008-05-01 13:44:55 +02:00
/**
* Name of the lock table
*/
const LOCK_TABLE = 'egw_locks' ;
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
/**
* Current user has root rights , no access checks performed !
*
* @ var boolean
*/
static $is_root = false ;
/**
* Current user id , in case we ever change if away from $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ]
*
* @ var int
*/
static $user ;
2008-04-14 07:52:24 +02:00
/**
* Current user is an eGW admin
*
* @ var boolean
*/
static $is_admin = false ;
2008-03-03 08:53:43 +01:00
/**
* Total of last find call
*
* @ var int
*/
static $find_total ;
2008-05-01 13:44:55 +02:00
/**
* Reference to the global db object
*
* @ var egw_db
*/
static $db ;
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
2008-02-07 07:37:45 +01:00
/**
* fopen working on just the eGW VFS
*
* @ param string $path filename with absolute path in the eGW VFS
* @ param string $mode 'r' , 'w' , ... like fopen
* @ return resource
*/
static function fopen ( $path , $mode )
{
if ( $path [ 0 ] != '/' )
{
throw new egw_exception_assertion_failed ( " Filename ' $path ' is not an absolute path! " );
}
2009-04-01 16:06:50 +02:00
return fopen ( self :: PREFIX . $path , $mode );
2008-02-07 07:37:45 +01:00
}
2008-04-16 09:07:31 +02:00
2008-02-07 07:37:45 +01:00
/**
2009-05-16 10:22:20 +02:00
* opendir working on just the eGW VFS : returns resource for readdir () etc .
2008-02-07 07:37:45 +01:00
*
* @ param string $path filename with absolute path in the eGW VFS
* @ return resource
*/
static function opendir ( $path )
{
if ( $path [ 0 ] != '/' )
{
throw new egw_exception_assertion_failed ( " Directory ' $path ' is not an absolute path! " );
}
2009-04-01 16:06:50 +02:00
return opendir ( self :: PREFIX . $path );
2008-02-07 07:37:45 +01:00
}
2009-05-16 10:22:20 +02:00
/**
* dir working on just the eGW VFS : returns directory object
*
* @ param string $path filename with absolute path in the eGW VFS
* @ return Directory
*/
static function dir ( $path )
{
if ( $path [ 0 ] != '/' )
{
throw new egw_exception_assertion_failed ( " Directory ' $path ' is not an absolute path! " );
}
return dir ( self :: PREFIX . $path );
}
/**
* scandir working on just the eGW VFS : returns array with filenames as values
*
* @ param string $path filename with absolute path in the eGW VFS
* @ param int $sorting_order = 0 ! $sorting_order ( default ) alphabetical in ascending order , $sorting_order alphabetical in descending order .
* @ return array
*/
static function scandir ( $path , $sorting_order = 0 )
{
if ( $path [ 0 ] != '/' )
{
throw new egw_exception_assertion_failed ( " Directory ' $path ' is not an absolute path! " );
}
return scandir ( self :: PREFIX . $path , $sorting_order );
}
2008-02-07 07:37:45 +01:00
/**
* copy working on just the eGW VFS
*
* @ param string $from
* @ param string $to
* @ return boolean
*/
static function copy ( $from , $to )
{
$ret = false ;
2010-12-13 03:37:46 +01:00
$old_props = self :: file_exists ( $to ) ? self :: propfind ( $to , null ) : array ();
2008-04-16 09:07:31 +02:00
if (( $from_fp = self :: fopen ( $from , 'r' )) &&
2008-02-07 07:37:45 +01:00
( $to_fp = self :: fopen ( $to , 'w' )))
{
2008-03-02 22:44:15 +01:00
$ret = stream_copy_to_stream ( $from_fp , $to_fp ) !== false ;
2008-02-07 07:37:45 +01:00
}
2010-12-13 03:37:46 +01:00
if ( $from_fp )
{
fclose ( $from_fp );
}
if ( $to_fp )
{
fclose ( $to_fp );
if ( $ret ) // successful copyied file
{
// copy properties (eg. file comment), if there are any and evtl. existing old properties
$props = self :: propfind ( $from , null );
foreach ( $old_props as $prop )
{
if ( ! self :: find_prop ( $props , $prop ))
{
$prop [ 'val' ] = null ; // null = delete prop
$props [] = $prop ;
}
}
if ( $props ) self :: proppatch ( $to , $props );
}
}
return $ret ;
}
/**
* Find a specific property in an array of properties ( eg . returned by propfind )
*
* @ param array & $props
* @ param array | string $name property array or name
* @ param string $ns = self :: DEFAULT_PROP_NAMESPACE namespace , only if $prop is no array
* @ return & array reference to property in $props or null if not found
*/
static function & find_prop ( array & $props , $name , $ns = self :: DEFAULT_PROP_NAMESPACE )
{
if ( is_array ( $name ))
{
$ns = $name [ 'ns' ];
$name = $name [ 'name' ];
}
foreach ( $props as & $prop )
{
if ( $prop [ 'name' ] == $name && $prop [ 'ns' ] == $ns ) return $prop ;
}
return null ;
2008-02-07 07:37:45 +01:00
}
/**
* stat working on just the eGW VFS ( alias of url_stat )
*
* @ param string $path filename with absolute path in the eGW VFS
2009-04-06 15:46:45 +02:00
* @ param boolean $try_create_home = false should a non - existing home - directory be automatically created
2009-03-19 21:12:35 +01:00
* @ return array
2008-02-07 07:37:45 +01:00
*/
2009-04-06 15:46:45 +02:00
static function stat ( $path , $try_create_home = false )
2008-02-07 07:37:45 +01:00
{
if ( $path [ 0 ] != '/' )
{
throw new egw_exception_assertion_failed ( " File ' $path ' is not an absolute path! " );
}
2009-04-06 15:46:45 +02:00
if (( $stat = self :: url_stat ( $path , 0 , $try_create_home )))
2008-03-02 22:44:15 +01:00
{
$stat = array_slice ( $stat , 13 ); // remove numerical indices 0-12
}
return $stat ;
}
2008-04-16 09:07:31 +02:00
2009-03-19 21:12:35 +01:00
/**
* lstat ( not resolving symbolic links ) working on just the eGW VFS ( alias of url_stat )
*
* @ param string $path filename with absolute path in the eGW VFS
2009-04-06 15:46:45 +02:00
* @ param boolean $try_create_home = false should a non - existing home - directory be automatically created
2009-03-19 21:12:35 +01:00
* @ return array
*/
2009-04-06 15:46:45 +02:00
static function lstat ( $path , $try_create_home = false )
2009-03-19 21:12:35 +01:00
{
if ( $path [ 0 ] != '/' )
{
throw new egw_exception_assertion_failed ( " File ' $path ' is not an absolute path! " );
}
2009-04-06 15:46:45 +02:00
if (( $stat = self :: url_stat ( $path , STREAM_URL_STAT_LINK , $try_create_home )))
2009-03-19 21:12:35 +01:00
{
$stat = array_slice ( $stat , 13 ); // remove numerical indices 0-12
}
return $stat ;
}
2008-03-02 22:44:15 +01:00
/**
* is_dir () version working only inside the vfs
*
* @ param string $path
* @ return boolean
*/
static function is_dir ( $path )
{
2009-04-01 16:06:50 +02:00
return $path [ 0 ] == '/' && is_dir ( self :: PREFIX . $path );
2008-02-07 07:37:45 +01:00
}
2008-04-16 09:07:31 +02:00
2009-03-19 21:12:35 +01:00
/**
* is_link () version working only inside the vfs
*
* @ param string $path
* @ return boolean
*/
static function is_link ( $path )
{
2009-04-01 16:06:50 +02:00
return $path [ 0 ] == '/' && is_link ( self :: PREFIX . $path );
2009-03-19 21:12:35 +01:00
}
2008-04-16 09:07:31 +02:00
2009-04-18 11:51:51 +02:00
/**
* file_exists () version working only inside the vfs
*
* @ param string $path
* @ return boolean
*/
static function file_exists ( $path )
{
return $path [ 0 ] == '/' && file_exists ( self :: PREFIX . $path );
}
2008-02-07 07:37:45 +01:00
/**
* Mounts $url under $path in the vfs , called without parameter it returns the fstab
2008-04-16 09:07:31 +02:00
*
2008-02-07 07:37:45 +01:00
* The fstab is stored in the eGW configuration and used for all eGW users .
*
* @ param string $url = null url of the filesystem to mount , eg . oldvfs :// default /
* @ param string $path = null path to mount the filesystem in the vfs , eg . /
2010-11-07 14:17:53 +01:00
* @ param boolean $check_url = null check if url is an existing directory , before mounting it
* default null only checks if url does not contain a $ as used in $user or $pass
* @ return array | boolean array with fstab , if called without parameter or true on successful mount
2008-02-07 07:37:45 +01:00
*/
2010-11-07 14:21:56 +01:00
static function mount ( $url = null , $path = null , $check_url = null )
2008-02-07 07:37:45 +01:00
{
2010-11-07 14:17:53 +01:00
if ( is_null ( $check_url )) $check_url = strpos ( $url , '$' ) === false ;
2009-05-28 13:29:17 +02:00
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'vfs_fstab' ])) // happens eg. in setup
{
$api_config = config :: read ( 'phpgwapi' );
if ( isset ( $api_config [ 'vfs_fstab' ]) && is_array ( $api_config [ 'vfs_fstab' ]))
{
self :: $fstab = $api_config [ 'vfs_fstab' ];
}
unset ( $api_config );
}
2008-02-07 07:37:45 +01:00
if ( is_null ( $url ) || is_null ( $path ))
{
2009-04-01 16:06:50 +02:00
if ( self :: LOG_LEVEL > 1 ) error_log ( __METHOD__ . '(' . array2string ( $url ) . ',' . array2string ( $path ) . ') returns ' . array2string ( self :: $fstab ));
2008-02-07 07:37:45 +01:00
return self :: $fstab ;
}
2008-02-29 08:27:49 +01:00
if ( ! self :: $is_root )
{
2009-04-01 16:06:50 +02:00
if ( self :: LOG_LEVEL > 0 ) error_log ( __METHOD__ . '(' . array2string ( $url ) . ',' . array2string ( $path ) . ') permission denied, you are NOT root!' );
2008-02-29 08:27:49 +01:00
return false ; // only root can mount
}
2009-04-01 16:06:50 +02:00
if ( isset ( self :: $fstab [ $path ]) && self :: $fstab [ $path ] === $url )
2008-02-07 07:37:45 +01:00
{
2009-04-01 16:06:50 +02:00
if ( self :: LOG_LEVEL > 0 ) error_log ( __METHOD__ . '(' . array2string ( $url ) . ',' . array2string ( $path ) . ') already mounted.' );
2008-02-07 07:37:45 +01:00
return true ; // already mounted
}
2009-05-28 13:29:17 +02:00
self :: load_wrapper ( parse_url ( $url , PHP_URL_SCHEME ));
2010-10-12 10:17:10 +02:00
if ( $check_url && ( ! file_exists ( $url ) || opendir ( $url ) === false ))
2008-02-07 07:37:45 +01:00
{
2009-04-01 16:06:50 +02:00
if ( self :: LOG_LEVEL > 0 ) error_log ( __METHOD__ . '(' . array2string ( $url ) . ',' . array2string ( $path ) . ') url does NOT exist!' );
2008-02-07 07:37:45 +01:00
return false ; // url does not exist
}
self :: $fstab [ $path ] = $url ;
2008-04-16 09:07:31 +02:00
2008-02-07 07:37:45 +01:00
uksort ( self :: $fstab , create_function ( '$a,$b' , 'return strlen($a)-strlen($b);' ));
2008-04-16 09:07:31 +02:00
2008-02-07 07:37:45 +01:00
config :: save_value ( 'vfs_fstab' , self :: $fstab , 'phpgwapi' );
$GLOBALS [ 'egw_info' ][ 'server' ][ 'vfs_fstab' ] = self :: $fstab ;
2010-05-15 22:40:27 +02:00
// invalidate session cache
if ( method_exists ( $GLOBALS [ 'egw' ], 'invalidate_session_cache' )) // egw object in setup is limited
{
$GLOBALS [ 'egw' ] -> invalidate_session_cache ();
}
2009-04-01 16:06:50 +02:00
if ( self :: LOG_LEVEL > 1 ) error_log ( __METHOD__ . '(' . array2string ( $url ) . ',' . array2string ( $path ) . ') returns true (successful new mount).' );
2008-02-07 07:37:45 +01:00
return true ;
}
2008-04-16 09:07:31 +02:00
2008-02-07 07:37:45 +01:00
/**
* Unmounts a filesystem part of the vfs
*
* @ param string $path url or path of the filesystem to unmount
*/
static function umount ( $path )
{
2008-02-29 08:27:49 +01:00
if ( ! self :: $is_root )
{
2009-04-01 16:06:50 +02:00
if ( self :: LOG_LEVEL > 0 ) error_log ( __METHOD__ . '(' . array2string ( $url ) . ',' . array2string ( $path ) . ') permission denied, you are NOT root!' );
2008-02-29 08:27:49 +01:00
return false ; // only root can mount
}
2008-02-07 07:37:45 +01:00
if ( ! isset ( self :: $fstab [ $path ]) && ( $path = array_search ( $path , self :: $fstab )) === false )
{
2009-04-01 16:06:50 +02:00
if ( self :: LOG_LEVEL > 0 ) error_log ( __METHOD__ . '(' . array2string ( $url ) . ',' . array2string ( $path ) . ') NOT mounted!' );
2008-02-07 07:37:45 +01:00
return false ; // $path not mounted
}
unset ( self :: $fstab [ $path ]);
config :: save_value ( 'vfs_fstab' , self :: $fstab , 'phpgwapi' );
$GLOBALS [ 'egw_info' ][ 'server' ][ 'vfs_fstab' ] = self :: $fstab ;
2010-05-15 22:40:27 +02:00
// invalidate session cache
if ( method_exists ( $GLOBALS [ 'egw' ], 'invalidate_session_cache' )) // egw object in setup is limited
{
$GLOBALS [ 'egw' ] -> invalidate_session_cache ();
}
2009-04-01 16:06:50 +02:00
if ( self :: LOG_LEVEL > 1 ) error_log ( __METHOD__ . '(' . array2string ( $url ) . ',' . array2string ( $path ) . ') returns true (successful unmount).' );
2008-02-07 07:37:45 +01:00
return true ;
}
2008-04-16 09:07:31 +02:00
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
/**
* find = recursive search over the filesystem
*
2011-06-14 09:31:56 +02:00
* @ param string | array $base base of the search
2008-02-29 08:27:49 +01:00
* @ param array $options = null the following keys are allowed :
2009-05-04 18:37:10 +02:00
* - type => { d | f | F } d = dirs , f = files ( incl . symlinks ), F = files ( incl . symlinks to files ), default all
2008-03-02 22:44:15 +01:00
* - depth => { true | false ( default )} put the contents of a dir before the dir itself
2008-10-06 19:43:42 +02:00
* - dirsontop => { true ( default ) | false } allways return dirs before the files ( two distinct blocks )
2008-03-02 22:44:15 +01:00
* - mindepth , maxdepth minimal or maximal depth to be returned
2008-02-29 08:27:49 +01:00
* - name , path => pattern with * , ? wildcards , eg . " *.php "
* - name_preg , path_preg => preg regular expresion , eg . " /(vfs|wrapper)/ "
* - uid , user , gid , group , nouser , nogroup file belongs to user / group with given name or ( numerical ) id
* - mime => type [ / subtype ]
* - empty , size => ( +|-| ) N
* - cmin / mmin => ( +|-| ) N file / dir create / modified in the last N minutes
* - ctime / mtime => ( +|-| ) N file / dir created / modified in the last N days
2008-03-02 22:44:15 +01:00
* - url => false ( default ), true allow ( and return ) full URL ' s instead of VFS pathes ( only set it , if you know what you doing securitywise ! )
2008-03-03 08:53:43 +01:00
* - need_mime => false ( default ), true should we return the mime type
* - order => name order rows by name column
* - sort => ( ASC | DESC ) sort , default ASC
* - limit => N ,[ n = 0 ] return N entries from position n on , which defaults to 0
2009-03-19 21:12:35 +01:00
* - follow => { true | false ( default )} follow symlinks
2009-05-11 22:42:23 +02:00
* - hidden => { true | false ( default )} include hidden files ( name starts with a '.' or is Thumbs . db )
2011-06-14 09:31:56 +02:00
* @ param string | array / true $exec = null function to call with each found file / dir as first param and stat array as last param or
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
* true to return file => stat pairs
2008-10-03 13:06:41 +02:00
* @ param array $exec_params = null further params for exec as array , path is always the first param and stat the last !
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
* @ return array of pathes if no $exec , otherwise path => stat pairs
*/
2008-03-02 22:44:15 +01:00
static function find ( $base , $options = null , $exec = null , $exec_params = null )
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
{
2008-02-29 08:27:49 +01:00
//error_log(__METHOD__."(".print_r($base,true).",".print_r($options,true).",".print_r($exec,true).",".print_r($exec_params,true).")\n");
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
2009-05-04 18:37:10 +02:00
$type = $options [ 'type' ]; // 'd', 'f' or 'F'
2008-03-02 22:44:15 +01:00
$dirs_last = $options [ 'depth' ]; // put content of dirs before the dir itself
2008-10-06 19:43:42 +02:00
// show dirs on top by default, if no recursive listing (allways disabled if $type specified, as unnecessary)
$dirsontop = ! $type && ( isset ( $options [ 'dirsontop' ]) ? ( boolean ) $options [ 'dirsontop' ] : isset ( $options [ 'maxdepth' ]) && $options [ 'maxdepth' ] > 0 );
2010-11-09 13:56:05 +01:00
if ( $dirsontop ) $options [ 'need_mime' ] = true ; // otherwise dirsontop can NOT work
2008-04-16 09:07:31 +02:00
2008-02-29 08:27:49 +01:00
// process some of the options (need to be done only once)
if ( isset ( $options [ 'name' ]) && ! isset ( $options [ 'name_preg' ])) // change from simple *,? wildcards to preg regular expression once
{
2008-03-03 13:16:11 +01:00
$options [ 'name_preg' ] = '/^' . str_replace ( array ( '\\?' , '\\*' ), array ( '.{1}' , '.*' ), preg_quote ( $options [ 'name' ])) . '$/i' ;
2008-02-29 08:27:49 +01:00
}
if ( isset ( $options [ 'path' ]) && ! isset ( $options [ 'preg_path' ])) // change from simple *,? wildcards to preg regular expression once
{
2008-03-03 13:16:11 +01:00
$options [ 'path_preg' ] = '/^' . str_replace ( array ( '\\?' , '\\*' ), array ( '.{1}' , '.*' ), preg_quote ( $options [ 'path' ])) . '$/i' ;
2008-02-29 08:27:49 +01:00
}
if ( ! isset ( $options [ 'uid' ]))
{
if ( isset ( $options [ 'user' ]))
{
$options [ 'uid' ] = $GLOBALS [ 'egw' ] -> accounts -> name2id ( $options [ 'user' ], 'account_lid' , 'u' );
}
elseif ( isset ( $options [ 'nouser' ]))
{
$options [ 'uid' ] = 0 ;
}
}
if ( ! isset ( $options [ 'gid' ]))
{
if ( isset ( $options [ 'group' ]))
{
$options [ 'gid' ] = abs ( $GLOBALS [ 'egw' ] -> accounts -> name2id ( $options [ 'group' ], 'account_lid' , 'g' ));
}
elseif ( isset ( $options [ 'nogroup' ]))
{
$options [ 'gid' ] = 0 ;
}
}
2008-03-03 08:53:43 +01:00
if ( $options [ 'order' ] == 'mime' )
{
$options [ 'need_mime' ] = true ; // we need to return the mime colum
}
2008-03-02 22:44:15 +01:00
$url = $options [ 'url' ];
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
if ( ! is_array ( $base ))
{
$base = array ( $base );
}
$result = array ();
foreach ( $base as $path )
{
2008-03-02 22:44:15 +01:00
if ( ! $url ) $path = egw_vfs :: PREFIX . $path ;
2008-03-03 13:16:11 +01:00
if ( ! isset ( $options [ 'remove' ]))
{
2008-10-02 13:03:26 +02:00
$options [ 'remove' ] = count ( $base ) == 1 ? count ( explode ( '/' , $path )) - 3 + ( int )( substr ( $path , - 1 ) != '/' ) : 0 ;
2008-03-03 13:16:11 +01:00
}
2009-05-02 16:00:31 +02:00
$is_dir = is_dir ( $path );
2008-03-02 22:44:15 +01:00
if (( int ) $options [ 'mindepth' ] == 0 && ( ! $dirs_last || ! $is_dir ))
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
{
2008-02-29 08:27:49 +01:00
self :: _check_add ( $options , $path , $result );
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
}
2008-03-02 22:44:15 +01:00
if ( $is_dir && ( ! isset ( $options [ 'maxdepth' ]) || $options [ 'maxdepth' ] > 0 ) && ( $dir = @ opendir ( $path )))
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
{
2009-01-29 19:58:52 +01:00
while (( $file = readdir ( $dir )) !== false )
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
{
2008-09-30 13:52:56 +02:00
if ( $file == '.' || $file == '..' ) continue ; // ignore current and parent dir!
2009-05-11 22:42:23 +02:00
if (( $file [ 0 ] == '.' || $file == 'Thumbs.db' ) && ! $options [ 'hidden' ]) continue ; // ignore hidden files
2008-04-14 07:52:24 +02:00
$file = self :: concat ( $path , $file );
2008-04-16 09:07:31 +02:00
2008-03-02 22:44:15 +01:00
if (( int ) $options [ 'mindepth' ] <= 1 )
{
2008-10-02 13:03:26 +02:00
self :: _check_add ( $options , $file , $result );
2008-03-02 22:44:15 +01:00
}
2009-05-02 16:00:31 +02:00
// only descend into subdirs, if it's a real dir (no link to a dir) or we should follow symlinks
if ( is_dir ( $file ) && ( $options [ 'follow' ] || ! is_link ( $file )) && ( ! isset ( $options [ 'maxdepth' ]) || $options [ 'maxdepth' ] > 1 ))
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
{
2008-03-02 22:44:15 +01:00
$opts = $options ;
if ( $opts [ 'mindepth' ]) $opts [ 'mindepth' ] -- ;
if ( $opts [ 'maxdepth' ]) $opts [ 'maxdepth' ] ++ ;
2008-03-03 08:53:43 +01:00
unset ( $opts [ 'order' ]);
unset ( $opts [ 'limit' ]);
2008-03-02 22:44:15 +01:00
foreach ( self :: find ( $options [ 'url' ] ? $file : parse_url ( $file , PHP_URL_PATH ), $opts , true ) as $p => $s )
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
{
unset ( $result [ $p ]);
$result [ $p ] = $s ;
}
}
}
closedir ( $dir );
2008-03-02 22:44:15 +01:00
}
if ( $is_dir && ( int ) $options [ 'mindepth' ] == 0 && $dirs_last )
{
self :: _check_add ( $options , $path , $result );
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
}
}
2008-10-06 19:43:42 +02:00
// sort code, to place directories before files, if $dirsontop enabled
$dirsfirst = $dirsontop ? '($a[mime]==\'' . self :: DIR_MIME_TYPE . '\')!==($b[mime]==\'' . self :: DIR_MIME_TYPE . '\')?' .
'($a[mime]==\'' . self :: DIR_MIME_TYPE . '\'?-1:1):' : '' ;
2008-03-03 08:53:43 +01:00
// ordering of the rows
if ( isset ( $options [ 'order' ]))
{
$sort = strtolower ( $options [ 'sort' ]) == 'desc' ? '-' : '' ;
switch ( $options [ 'order' ])
{
// sort numerical
case 'size' :
case 'uid' :
case 'gid' :
case 'mode' :
case 'ctime' :
case 'mtime' :
2009-05-06 11:00:36 +02:00
$code = $dirsfirst . $sort . '($a[\'' . $options [ 'order' ] . '\']-$b[\'' . $options [ 'order' ] . '\']);' ;
// always use name as second sort criteria
$code = '$cmp = ' . $code . ' return $cmp ? $cmp : strcasecmp($a[\'name\'],$b[\'name\']);' ;
2010-11-09 13:56:05 +01:00
$ok = uasort ( $result , create_function ( '$a,$b' , $code ));
2008-03-03 08:53:43 +01:00
break ;
2008-04-16 09:07:31 +02:00
2008-03-03 08:53:43 +01:00
// sort alphanumerical
default :
$options [ 'order' ] = 'name' ;
// fall throught
case 'name' :
case 'mime' :
2009-05-06 11:00:36 +02:00
$code = $dirsfirst . $sort . 'strcasecmp($a[\'' . $options [ 'order' ] . '\'],$b[\'' . $options [ 'order' ] . '\']);' ;
if ( $options [ 'order' ] != 'name' )
{
// always use name as second sort criteria
$code = '$cmp = ' . $code . ' return $cmp ? $cmp : strcasecmp($a[\'name\'],$b[\'name\']);' ;
}
else
{
$code = 'return ' . $code ;
}
2010-11-09 13:56:05 +01:00
$ok = uasort ( $result , create_function ( '$a,$b' , $code ));
2008-03-03 08:53:43 +01:00
break ;
}
2010-11-09 13:56:05 +01:00
//echo "<p>order='$options[order]', sort='$options[sort]' --> uasort($result,create_function(,'$code'))=".array2string($ok)."</p>>\n";
2008-03-03 08:53:43 +01:00
}
// limit resultset
self :: $find_total = count ( $result );
if ( isset ( $options [ 'limit' ]))
{
list ( $limit , $start ) = explode ( ',' , $options [ 'limit' ]);
if ( ! $limit && ! ( $limit = $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'comman' ][ 'maxmatches' ])) $limit = 15 ;
//echo "total=".egw_vfs::$find_total.", limit=$options[limit] --> start=$start, limit=$limit<br>\n";
2008-04-16 09:07:31 +02:00
2008-03-03 08:53:43 +01:00
if (( int ) $start || self :: $find_total > $limit )
{
$result = array_slice ( $result ,( int ) $start ,( int ) $limit , true );
}
}
2008-03-02 22:44:15 +01:00
//echo $path; _debug_array($result);
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
if ( $exec !== true && is_callable ( $exec ))
{
if ( ! is_array ( $exec_params ))
{
$exec_params = is_null ( $exec_params ) ? array () : array ( $exec_params );
}
foreach ( $result as $path => & $stat )
{
2008-02-29 08:27:49 +01:00
$options = $exec_params ;
array_unshift ( $options , $path );
2008-10-03 13:06:41 +02:00
array_push ( $options , $stat );
2008-02-29 08:27:49 +01:00
//echo "calling ".print_r($exec,true).print_r($options,true)."\n";
$stat = call_user_func_array ( $exec , $options );
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
}
return $result ;
}
2008-04-14 07:52:24 +02:00
//error_log("egw_vfs::find($path)=".print_r(array_keys($result),true));
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
if ( $exec !== true )
{
return array_keys ( $result );
}
return $result ;
}
2008-04-16 09:07:31 +02:00
2008-02-29 08:27:49 +01:00
/**
* Function carying out the various ( optional ) checks , before files & dirs get returned as result of find
*
* @ param array $options options , see egw_vfs :: find (, $options )
* @ param string $path name of path to add
* @ param array & $result here we add the stat for the key $path , if the checks are successful
*/
2008-10-02 13:03:26 +02:00
private static function _check_add ( $options , $path , & $result )
2008-02-29 08:27:49 +01:00
{
$type = $options [ 'type' ]; // 'd' or 'f'
2008-04-16 09:07:31 +02:00
2009-07-01 17:17:36 +02:00
if ( $options [ 'url' ])
{
2010-10-12 10:17:10 +02:00
$stat = @ lstat ( $path );
2009-07-01 17:17:36 +02:00
}
else
{
$stat = self :: url_stat ( $path , STREAM_URL_STAT_LINK );
}
if ( ! $stat )
2008-02-29 08:27:49 +01:00
{
2009-05-02 16:15:31 +02:00
return ; // not found, should not happen
2008-02-29 08:27:49 +01:00
}
2009-05-04 18:37:10 +02:00
if ( $type && (( $type == 'd' ) == ! ( $stat [ 'mode' ] & sqlfs_stream_wrapper :: MODE_DIR ) || // != is_dir() which can be true for symlinks
$type == 'F' && is_dir ( $path ))) // symlink to a directory
2008-02-29 08:27:49 +01:00
{
2009-05-02 16:15:31 +02:00
return ; // wrong type
2008-04-16 09:07:31 +02:00
}
2008-03-03 08:53:43 +01:00
$stat = array_slice ( $stat , 13 ); // remove numerical indices 0-12
2008-03-03 13:16:11 +01:00
$stat [ 'path' ] = parse_url ( $path , PHP_URL_PATH );
2008-10-02 13:03:26 +02:00
$stat [ 'name' ] = $options [ 'remove' ] > 0 ? implode ( '/' , array_slice ( explode ( '/' , $stat [ 'path' ]), $options [ 'remove' ])) : self :: basename ( $path );
2008-03-03 08:53:43 +01:00
if ( $options [ 'mime' ] || $options [ 'need_mime' ])
{
$stat [ 'mime' ] = self :: mime_content_type ( $path );
2008-02-29 08:27:49 +01:00
}
2008-03-03 08:53:43 +01:00
if ( isset ( $options [ 'name_preg' ]) && ! preg_match ( $options [ 'name_preg' ], $stat [ 'name' ]) ||
2008-02-29 08:27:49 +01:00
isset ( $options [ 'path_preg' ]) && ! preg_match ( $options [ 'path_preg' ], $path ))
{
2009-10-13 23:05:09 +02:00
//echo "<p>!preg_match('{$options['name_preg']}','{$stat['name']}')</p>\n";
2008-02-29 08:27:49 +01:00
return ; // wrong name or path
}
if ( isset ( $options [ 'gid' ]) && $stat [ 'gid' ] != $options [ 'gid' ] ||
isset ( $options [ 'uid' ]) && $stat [ 'uid' ] != $options [ 'uid' ])
{
return ; // wrong user or group
}
2008-03-03 08:53:43 +01:00
if ( isset ( $options [ 'mime' ]) && $options [ 'mime' ] != $stat [ 'mime' ])
2008-02-29 08:27:49 +01:00
{
list ( $type , $subtype ) = explode ( '/' , $options [ 'mime' ]);
// no subtype (eg. 'image') --> check only the main type
if ( $sub_type || substr ( $mime , 0 , strlen ( $type ) + 1 ) != $type . '/' )
{
return ; // wrong mime-type
}
}
if ( isset ( $options [ 'size' ]) && ! self :: _check_num ( $stat [ 'size' ], $options [ 'size' ]) ||
( isset ( $options [ 'empty' ]) && !! $options [ 'empty' ] !== ! $stat [ 'size' ]))
{
return ; // wrong size
}
if ( isset ( $options [ 'cmin' ]) && ! self :: _check_num ( round (( time () - $stat [ 'ctime' ]) / 60 ), $options [ 'cmin' ]) ||
isset ( $options [ 'mmin' ]) && ! self :: _check_num ( round (( time () - $stat [ 'mtime' ]) / 60 ), $options [ 'mmin' ]) ||
isset ( $options [ 'ctime' ]) && ! self :: _check_num ( round (( time () - $stat [ 'ctime' ]) / 86400 ), $options [ 'ctime' ]) ||
2010-04-07 14:28:07 +02:00
isset ( $options [ 'mtime' ]) && ! self :: _check_num ( round (( time () - $stat [ 'mtime' ]) / 86400 ), $options [ 'mtime' ]))
2008-02-29 08:27:49 +01:00
{
return ; // not create/modified in the spezified time
}
2008-03-02 22:44:15 +01:00
// do we return url or just vfs pathes
if ( ! $options [ 'url' ])
{
$path = parse_url ( $path , PHP_URL_PATH );
}
2008-02-29 08:27:49 +01:00
$result [ $path ] = $stat ;
}
2008-04-16 09:07:31 +02:00
2008-03-02 22:44:15 +01:00
private static function _check_num ( $value , $argument )
2008-02-29 08:27:49 +01:00
{
if ( is_int ( $argument ) && $argument >= 0 || $argument [ 0 ] != '-' && $argument [ 0 ] != '+' )
{
//echo "_check_num($value,$argument) check = == ".(int)($value == $argument)."\n";
return $value == $argument ;
}
if ( $argument < 0 )
{
//echo "_check_num($value,$argument) check < == ".(int)($value < abs($argument))."\n";
return $value < abs ( $argument );
}
//echo "_check_num($value,$argument) check > == ".(int)($value > (int)substr($argument,1))."\n";
return $value > ( int ) substr ( $argument , 1 );
}
2008-04-16 09:07:31 +02:00
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
/**
* Recursiv remove all given url 's, including it' s content if they are files
*
2011-06-14 09:31:56 +02:00
* @ param string | array $urls url or array of url ' s
2008-04-14 07:52:24 +02:00
* @ param boolean $allow_urls = false allow to use url ' s , default no only pathes ( to stay within the vfs )
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
* @ return array
*/
2008-04-14 07:52:24 +02:00
static function remove ( $urls , $allow_urls = false )
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
{
2009-08-12 11:47:53 +02:00
//error_log(__METHOD__.'('.array2string($urls).')');
// some precaution to never allow to (recursivly) remove /, /apps or /home
foreach (( array ) $urls as $url )
{
if ( preg_match ( '/^\/?(home|apps|)\/*$/' , parse_url ( $url , PHP_URL_PATH )))
{
throw new egw_exception_assertion_failed ( __METHOD__ . '(' . array2string ( $urls ) . " ) Cautiously rejecting to remove folder ' $url '! " );
}
}
return self :: find ( $urls , array ( 'depth' => true , 'url' => $allow_urls , 'hidden' => true ), array ( __CLASS__ , '_rm_rmdir' ));
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
}
2008-04-16 09:07:31 +02:00
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
/**
* Helper function for remove : either rmdir or unlink given url ( depending if it ' s a dir or file )
*
* @ param string $url
* @ return boolean
*/
static function _rm_rmdir ( $url )
{
2008-04-19 11:15:46 +02:00
if ( $url [ 0 ] == '/' )
{
$url = self :: PREFIX . $url ;
}
2009-03-19 21:12:35 +01:00
if ( is_dir ( $url ) && ! is_link ( $url ))
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
{
return rmdir ( $url );
}
return unlink ( $url );
}
2008-02-18 07:43:49 +01:00
/**
* The stream_wrapper interface checks is_ { readable | writable | executable } against the webservers uid ,
* which is wrong in case of our vfs , as we use the current users id and memberships
*
* @ param string $path
2010-11-07 14:17:53 +01:00
* @ param int $check mode to check : one or more or ' ed together of : 4 = egw_vfs :: READABLE ,
* 2 = egw_vfs :: WRITABLE , 1 = egw_vfs :: EXECUTABLE
2008-02-18 07:43:49 +01:00
* @ return boolean
*/
2010-11-07 14:17:53 +01:00
static function is_readable ( $path , $check = self :: READABLE )
2008-02-18 07:43:49 +01:00
{
2008-04-14 07:52:24 +02:00
return self :: check_access ( $path , $check );
2008-02-18 07:43:49 +01:00
}
/**
* The stream_wrapper interface checks is_ { readable | writable | executable } against the webservers uid ,
* which is wrong in case of our vfs , as we use the current users id and memberships
*
2011-06-14 09:31:56 +02:00
* @ param array | string $path stat array or path
2010-11-07 14:17:53 +01:00
* @ param int $check mode to check : one or more or ' ed together of : 4 = egw_vfs :: READABLE ,
* 2 = egw_vfs :: WRITABLE , 1 = egw_vfs :: EXECUTABLE
2008-04-14 07:52:24 +02:00
* @ param array $stat = null stat array , to not query it again
2008-02-18 07:43:49 +01:00
* @ return boolean
*/
2008-04-14 07:52:24 +02:00
static function check_access ( $path , $check , $stat = null )
2008-02-18 07:43:49 +01:00
{
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
if ( self :: $is_root )
{
return true ;
}
2008-04-16 09:07:31 +02:00
2008-04-14 07:52:24 +02:00
// throw exception if stat array is used insead of path, can be removed soon
if ( is_array ( $path ))
{
throw new egw_exception_wrong_parameter ( 'path has to be string, use check_acces($path,$check,$stat=null)!' );
}
// query stat array, if not given
if ( is_null ( $stat ))
{
$stat = self :: url_stat ( $path , 0 );
}
//error_log(__METHOD__."(path=$path||stat[name]={$stat['name']},stat[mode]=".sprintf('%o',$stat['mode']).",$check)");
2008-02-18 07:43:49 +01:00
if ( ! $stat )
{
2008-04-14 07:52:24 +02:00
//error_log(__METHOD__."(path=$path||stat[name]={$stat['name']},stat[mode]=".sprintf('%o',$stat['mode']).",$check) no stat array!");
2008-02-18 07:43:49 +01:00
return false ; // file not found
}
2010-11-07 14:17:53 +01:00
// check if we use an EGroupwre stream wrapper, or a stock php one
// if it's not an EGroupware one, we can NOT use uid, gid and mode!
if (( $scheme = parse_url ( $stat [ 'url' ], PHP_URL_SCHEME )) && ! ( class_exists ( self :: scheme2class ( $scheme ))))
{
switch ( $check )
{
case self :: READABLE :
return is_readable ( $stat [ 'url' ]);
case self :: WRITABLE :
return is_writable ( $stat [ 'url' ]);
case self :: EXECUTABLE :
return is_executable ( $stat [ 'url' ]);
}
}
2008-02-18 07:43:49 +01:00
// check if other rights grant access
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
if (( $stat [ 'mode' ] & $check ) == $check )
2008-02-18 07:43:49 +01:00
{
2008-04-14 07:52:24 +02:00
//error_log(__METHOD__."(path=$path||stat[name]={$stat['name']},stat[mode]=".sprintf('%o',$stat['mode']).",$check) access via other rights!");
2008-02-18 07:43:49 +01:00
return true ;
}
// check if there's owner access and we are the owner
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
if (( $stat [ 'mode' ] & ( $check << 6 )) == ( $check << 6 ) && $stat [ 'uid' ] && $stat [ 'uid' ] == self :: $user )
2008-02-18 07:43:49 +01:00
{
2008-04-14 07:52:24 +02:00
//error_log(__METHOD__."(path=$path||stat[name]={$stat['name']},stat[mode]=".sprintf('%o',$stat['mode']).",$check) access via owner rights!");
2008-02-18 07:43:49 +01:00
return true ;
}
// check if there's a group access and we have the right membership
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
if (( $stat [ 'mode' ] & ( $check << 3 )) == ( $check << 3 ) && $stat [ 'gid' ])
2008-02-18 07:43:49 +01:00
{
static $memberships ;
if ( is_null ( $memberships ))
{
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
$memberships = $GLOBALS [ 'egw' ] -> accounts -> memberships ( self :: $user , true );
2008-02-18 07:43:49 +01:00
}
if ( in_array ( - abs ( $stat [ 'gid' ]), $memberships ))
{
2008-04-14 07:52:24 +02:00
//error_log(__METHOD__."(path=$path||stat[name]={$stat['name']},stat[mode]=".sprintf('%o',$stat['mode']).",$check) access via group rights!");
2008-02-18 07:43:49 +01:00
return true ;
}
}
2008-04-14 07:52:24 +02:00
// check backend for extended acls (only if path given)
2009-04-22 12:02:18 +02:00
$ret = $path && self :: _call_on_backend ( 'check_extended_acl' , array ( isset ( $stat [ 'url' ]) ? $stat [ 'url' ] : $path , $check ), true ); // true = fail silent if backend does not support
2008-02-18 07:43:49 +01:00
2008-04-14 07:52:24 +02:00
//error_log(__METHOD__."(path=$path||stat[name]={$stat['name']},stat[mode]=".sprintf('%o',$stat['mode']).",$check) ".($ret ? 'backend extended acl granted access.' : 'no access!!!'));
return $ret ;
2008-02-18 07:43:49 +01:00
}
2008-04-16 09:07:31 +02:00
2008-02-18 07:43:49 +01:00
/**
* The stream_wrapper interface checks is_ { readable | writable | executable } against the webservers uid ,
* which is wrong in case of our vfs , as we use the current users id and memberships
*
* @ param string $path
* @ return boolean
*/
static function is_writable ( $path )
{
2010-11-07 14:17:53 +01:00
return self :: is_readable ( $path , self :: WRITABLE );
2008-02-18 07:43:49 +01:00
}
2008-04-16 09:07:31 +02:00
2008-02-18 07:43:49 +01:00
/**
* The stream_wrapper interface checks is_ { readable | writable | executable } against the webservers uid ,
* which is wrong in case of our vfs , as we use the current users id and memberships
*
* @ param string $path
* @ return boolean
*/
static function is_executable ( $path )
{
2010-11-07 14:17:53 +01:00
return self :: is_readable ( $path , self :: EXECUTABLE );
2008-02-18 07:43:49 +01:00
}
2008-04-16 09:07:31 +02:00
2009-03-31 13:30:12 +02:00
/**
* Check if path is a script and write access would be denied by backend
*
* @ param string $path
* @ return boolean true if $path is a script AND exec mount - option is NOT set , false otherwise
*/
static function deny_script ( $path )
{
return self :: _call_on_backend ( 'deny_script' , array ( $path ), true );
}
2008-04-14 07:52:24 +02:00
/**
* Set or delete extended acl for a given path and owner ( or delete them if is_null ( $rights )
2008-04-16 09:07:31 +02:00
*
2008-04-14 07:52:24 +02:00
* Does NOT check if user has the rights to set the extended acl for the given url / path !
*
* @ param string $path string with path
* @ param int $rights = null rights to set , or null to delete the entry
2011-06-14 09:31:56 +02:00
* @ param int | boolean $owner = null owner for whom to set the rights , null for the current user , or false to delete all rights for $path
2008-04-14 07:52:24 +02:00
* @ return boolean true if acl is set / deleted , false on error
*/
static function eacl ( $url , $rights = null , $owner = null )
{
2008-10-05 19:07:36 +02:00
return self :: _call_on_backend ( 'eacl' , array ( $url , $rights , $owner ));
2008-04-14 07:52:24 +02:00
}
/**
* Get all ext . ACL set for a path
2008-04-16 09:07:31 +02:00
*
2008-04-14 07:52:24 +02:00
* Calls itself recursive , to get the parent directories
*
* @ param string $path
2011-06-14 09:31:56 +02:00
* @ return array | boolean array with array ( 'path' => $path , 'owner' => $owner , 'rights' => $rights ) or false if $path not found
2008-04-14 07:52:24 +02:00
*/
static function get_eacl ( $path )
{
2009-03-24 14:56:22 +01:00
return self :: _call_on_backend ( 'get_eacl' , array ( $path ), true ); // true = fail silent (no PHP Warning)
2008-10-05 19:07:36 +02:00
}
/**
* Store properties for a single ressource ( file or dir )
*
* @ param string $path string with path
2010-12-13 03:37:46 +01:00
* @ param array $props array of array with values for keys 'name' , 'ns' , 'val' ( null to delete the prop )
2008-10-05 19:07:36 +02:00
* @ return boolean true if props are updated , false otherwise ( eg . ressource not found )
*/
static function proppatch ( $path , array $props )
{
return self :: _call_on_backend ( 'proppatch' , array ( $path , $props ));
}
2008-04-14 07:52:24 +02:00
2008-10-05 19:07:36 +02:00
/**
* Default namespace for properties set by eGroupware : comment or custom fields ( leading #)
*
*/
const DEFAULT_PROP_NAMESPACE = 'http://egroupware.org/' ;
/**
* Read properties for a ressource ( file , dir or all files of a dir )
*
* @ param array | string $path ( array of ) string with path
* @ param string $ns = 'http://egroupware.org/' namespace if propfind should be limited to a single one , otherwise use null
2008-10-05 21:01:49 +02:00
* @ return array | boolean array with props ( values for keys 'name' , 'ns' , 'val' ), or path => array of props for is_array ( $path )
2008-10-05 19:07:36 +02:00
* false if $path does not exist
*/
static function propfind ( $path , $ns = self :: DEFAULT_PROP_NAMESPACE )
{
2009-03-24 14:56:22 +01:00
return self :: _call_on_backend ( 'propfind' , array ( $path , $ns ), true ); // true = fail silent (no PHP Warning)
2008-04-14 07:52:24 +02:00
}
2008-02-07 07:37:45 +01:00
/**
* Private constructor to prevent instanciating this class , only it ' s static methods should be used
*/
private function __construct ()
{
2008-04-16 09:07:31 +02:00
2008-02-07 07:37:45 +01:00
}
2008-04-16 09:07:31 +02:00
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
/**
* Convert a symbolic mode string or octal mode to an integer
*
2011-06-14 09:31:56 +02:00
* @ param string | int $set comma separated mode string to set [ ugo ] + [ +=- ] + [ rwx ] +
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
* @ param int $mode = 0 current mode of the file , necessary for +/- operation
* @ return int
*/
static function mode2int ( $set , $mode = 0 )
{
if ( is_int ( $set )) // already an integer
{
return $set ;
}
if ( is_numeric ( $set )) // octal string
{
//error_log(__METHOD__."($set,$mode) returning ".(int)base_convert($set,8,10));
return ( int ) base_convert ( $set , 8 , 10 ); // convert octal to decimal
}
foreach ( explode ( ',' , $set ) as $s )
{
if ( ! preg_match ( $use = '/^([ugoa]*)([+=-]+)([rwx]+)$/' , $s , $matches ))
{
$use = str_replace ( array ( '/' , '^' , '$' , '(' , ')' ), '' , $use );
throw new egw_exception_wrong_userinput ( " $s is not an allowed mode, use $use ! " );
}
$base = ( strpos ( $matches [ 3 ], 'r' ) !== false ? self :: READABLE : 0 ) |
( strpos ( $matches [ 3 ], 'w' ) !== false ? self :: WRITABLE : 0 ) |
( strpos ( $matches [ 3 ], 'x' ) !== false ? self :: EXECUTABLE : 0 );
2008-04-16 09:07:31 +02:00
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
for ( $n = $m = 0 ; $n < strlen ( $matches [ 1 ]); $n ++ )
{
switch ( $matches [ 1 ][ $n ])
{
case 'o' :
$m |= $base ;
break ;
case 'g' :
$m |= $base << 3 ;
break ;
case 'u' :
$m |= $base << 6 ;
break ;
default :
case 'a' :
$m = $base | ( $base << 3 ) | ( $base << 6 );
}
}
switch ( $matches [ 2 ])
{
case '+' :
$mode |= $m ;
break ;
case '=' :
$mode = $m ;
break ;
case '-' :
$mode &= ~ $m ;
}
}
//error_log(__METHOD__."($set,) returning ".sprintf('%o',$mode));
return $mode ;
}
2008-04-16 09:07:31 +02:00
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
/**
* Convert a numerical mode to a symbolic mode - string
*
* @ param int $mode
* @ return string
*/
static function int2mode ( $mode )
{
2009-03-24 14:56:22 +01:00
if (( $mode & self :: MODE_LINK ) == self :: MODE_LINK ) // Symbolic Link
{
$sP = 'l' ;
}
elseif (( $mode & 0xC000 ) == 0xC000 ) // Socket
{
$sP = 's' ;
}
elseif ( $mode & 0x1000 ) // FIFO pipe
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
{
$sP = 'p' ;
}
elseif ( $mode & 0x2000 ) // Character special
{
$sP = 'c' ;
}
elseif ( $mode & 0x4000 ) // Directory
{
$sP = 'd' ;
}
elseif ( $mode & 0x6000 ) // Block special
{
$sP = 'b' ;
}
elseif ( $mode & 0x8000 ) // Regular
{
$sP = '-' ;
}
else // UNKNOWN
{
$sP = 'u' ;
}
2008-04-16 09:07:31 +02:00
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
// owner
$sP .= (( $mode & 0x0100 ) ? 'r' : '-' ) .
(( $mode & 0x0080 ) ? 'w' : '-' ) .
(( $mode & 0x0040 ) ? (( $mode & 0x0800 ) ? 's' : 'x' ) :
(( $mode & 0x0800 ) ? 'S' : '-' ));
2008-04-16 09:07:31 +02:00
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
// group
$sP .= (( $mode & 0x0020 ) ? 'r' : '-' ) .
(( $mode & 0x0010 ) ? 'w' : '-' ) .
(( $mode & 0x0008 ) ? (( $mode & 0x0400 ) ? 's' : 'x' ) :
(( $mode & 0x0400 ) ? 'S' : '-' ));
2008-04-16 09:07:31 +02:00
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
// world
$sP .= (( $mode & 0x0004 ) ? 'r' : '-' ) .
(( $mode & 0x0002 ) ? 'w' : '-' ) .
(( $mode & 0x0001 ) ? (( $mode & 0x0200 ) ? 't' : 'x' ) :
(( $mode & 0x0200 ) ? 'T' : '-' ));
return $sP ;
}
2008-04-16 09:07:31 +02:00
/**
* Get the closest mime icon
*
* @ param string $mime_type
* @ param boolean $et_image = true return $app / $icon string for etemplate ( default ) or html img tag if false
* @ param int $size = 16
* @ return string
*/
static function mime_icon ( $mime_type , $et_image = true , $size = 16 )
{
if ( $mime_type == egw_vfs :: DIR_MIME_TYPE )
{
$mime_type = 'Directory' ;
}
if ( ! $mime_type )
{
$mime_type = 'unknown' ;
}
$mime_full = strtolower ( str_replace ( '/' , '_' , $mime_type ));
2008-10-03 10:14:35 +02:00
list ( $mime_part ) = explode ( '_' , $mime_full );
2008-04-16 09:07:31 +02:00
2008-10-06 19:43:42 +02:00
if ( ! ( $img = $GLOBALS [ 'egw' ] -> common -> image ( 'etemplate' , $icon = 'mime' . $size . '_' . $mime_full )) &&
! ( $img = $GLOBALS [ 'egw' ] -> common -> image ( 'etemplate' , $icon = 'mime' . $size . '_' . $mime_part )))
2008-04-16 09:07:31 +02:00
{
2008-10-06 19:43:42 +02:00
$img = $GLOBALS [ 'egw' ] -> common -> image ( 'etemplate' , $icon = 'mime' . $size . '_unknown' );
2008-04-16 09:07:31 +02:00
}
2010-10-15 22:22:40 +02:00
if ( $et_image === 'url' )
{
return $img ;
}
2008-04-16 09:07:31 +02:00
if ( $et_image )
{
2008-10-06 19:43:42 +02:00
return 'etemplate/' . $icon ;
2008-04-16 09:07:31 +02:00
}
2009-04-22 12:02:18 +02:00
return html :: image ( 'etemplate' , $icon , mime_magic :: mime2label ( $mime_type ));
2008-04-16 09:07:31 +02:00
}
2008-03-02 22:44:15 +01:00
/**
2010-05-19 11:12:16 +02:00
* Human readable size values in k , M or G
2008-03-02 22:44:15 +01:00
*
* @ param int $size
* @ return string
*/
static function hsize ( $size )
{
if ( $size < 1024 ) return $size ;
if ( $size < 1024 * 1024 ) return sprintf ( '%3.1lfk' ,( float ) $size / 1024 );
2010-05-19 11:12:16 +02:00
if ( $size < 1024 * 1024 * 1024 ) return sprintf ( '%3.1lfM' ,( float ) $size / ( 1024 * 1024 ));
return sprintf ( '%3.1lfG' ,( float ) $size / ( 1024 * 1024 * 1024 ));
2008-03-02 22:44:15 +01:00
}
/**
* like basename ( $path ), but also working if the 1. char of the basename is non - ascii
*
* @ param string $path
* @ return string
*/
static function basename ( $path )
{
2009-04-27 13:49:50 +02:00
list ( $path , $query ) = explode ( '?' , $path ); // remove query
2008-03-02 22:44:15 +01:00
$parts = explode ( '/' , $path );
2008-04-16 09:07:31 +02:00
2008-03-02 22:44:15 +01:00
return array_pop ( $parts );
}
2008-04-16 09:07:31 +02:00
2008-04-14 07:52:24 +02:00
/**
* Get the directory / parent of a given path or url ( ! ), return false for '/' !
*
2011-06-14 09:31:56 +02:00
* Also works around PHP under Windows returning dirname ( '/something' ) === '\\' , which is NOT understood by EGroupware ' s VFS !
*
2008-04-14 07:52:24 +02:00
* @ param string $path path or url
2011-06-14 09:31:56 +02:00
* @ return string | boolean parent or false if there 's none ($path == ' / ' )
2008-04-14 07:52:24 +02:00
*/
static function dirname ( $url )
{
2009-04-27 13:49:50 +02:00
list ( $url , $query ) = explode ( '?' , $url , 2 ); // strip the query first, as it can contain slashes
2008-04-14 07:52:24 +02:00
if ( $url == '/' || $url [ 0 ] != '/' && parse_url ( $url , PHP_URL_PATH ) == '/' )
{
2009-04-15 23:09:04 +02:00
//error_log(__METHOD__."($url) returning FALSE: already in root!");
2008-04-14 07:52:24 +02:00
return false ;
}
$parts = explode ( '/' , $url );
if ( substr ( $url , - 1 ) == '/' ) array_pop ( $parts );
array_pop ( $parts );
2009-04-15 23:09:04 +02:00
if ( $url [ 0 ] != '/' && count ( $parts ) == 3 || count ( $parts ) == 1 && $parts [ 0 ] === '' )
2008-04-14 07:52:24 +02:00
{
array_push ( $parts , '' ); // scheme://host is wrong (no path), has to be scheme://host/
}
2008-09-30 13:52:56 +02:00
//error_log(__METHOD__."($url)=".implode('/',$parts).($query ? '?'.$query : ''));
return implode ( '/' , $parts ) . ( $query ? '?' . $query : '' );
2008-04-14 07:52:24 +02:00
}
2008-04-16 09:07:31 +02:00
2008-04-14 07:52:24 +02:00
/**
* Check if the current use has owner rights for the given path or stat
2008-04-16 09:07:31 +02:00
*
2008-04-14 07:52:24 +02:00
* We define all eGW admins the owner of the group directories !
*
* @ param string $path
* @ param array $stat = null stat for path , default queried by this function
* @ return boolean
*/
static function has_owner_rights ( $path , array $stat = null )
{
if ( ! $stat ) $stat = self :: url_stat ( $path , 0 );
2008-04-16 09:07:31 +02:00
2008-04-14 07:52:24 +02:00
return $stat [ 'uid' ] == self :: $user || // user is the owner
self :: $is_root || // class runs with root rights
! $stat [ 'uid' ] && $stat [ 'gid' ] && self :: $is_admin ; // group directory and user is an eGW admin
}
2008-04-16 09:07:31 +02:00
2008-04-14 07:52:24 +02:00
/**
2008-10-01 20:02:23 +02:00
* Concat a relative path to an url , taking into account , that the url might already end with a slash or the path starts with one or is empty
2008-04-14 07:52:24 +02:00
*
2009-03-19 21:12:35 +01:00
* Also normalizing the path , as the relative path can contain ../
*
2008-04-14 07:52:24 +02:00
* @ param string $url base url or path , might end in a /
* @ param string $relative relative path to add to $url
* @ return string
*/
static function concat ( $url , $relative )
{
2008-09-30 13:52:56 +02:00
list ( $url , $query ) = explode ( '?' , $url , 2 );
2008-10-01 20:02:23 +02:00
if ( substr ( $url , - 1 ) == '/' ) $url = substr ( $url , 0 , - 1 );
2009-03-19 21:12:35 +01:00
$url = ( $relative === '' || $relative [ 0 ] == '/' ? $url . $relative : $url . '/' . $relative );
// now normalize the path (remove "/something/..")
2009-03-24 18:19:38 +01:00
while ( strpos ( $url , '/../' ) !== false )
2009-03-19 21:12:35 +01:00
{
2009-03-24 18:19:38 +01:00
list ( $a , $b ) = explode ( '/../' , $url , 2 );
2009-03-19 21:12:35 +01:00
$a = explode ( '/' , $a );
array_pop ( $a );
$b = explode ( '/' , $b );
$url = implode ( '/' , array_merge ( $a , $b ));
}
2009-03-31 13:30:12 +02:00
return $url . ( $query ? ( strpos ( $url , '?' ) === false ? '?' : '&' ) . $query : '' );
2009-03-19 21:12:35 +01:00
}
/**
* Build an url from it ' s components ( reverse of parse_url )
*
* @ param array $url_parts values for keys 'scheme' , 'host' , 'user' , 'pass' , 'query' , 'fragment' ( all but 'path' are optional )
* @ return string
*/
static function build_url ( array $url_parts )
{
$url = ( ! isset ( $url_parts [ 'scheme' ]) ? '' : $url_parts [ 'scheme' ] . '://' .
( ! isset ( $url_parts [ 'user' ]) ? '' : $url_parts [ 'user' ] . ( ! isset ( $url_parts [ 'pass' ]) ? '' : ':' . $url_parts [ 'pass' ]) . '@' ) .
$url_parts [ 'host' ]) . $url_parts [ 'path' ] .
( ! isset ( $url_parts [ 'query' ]) ? '' : '?' . $url_parts [ 'query' ]) .
( ! isset ( $url_parts [ 'fragment' ]) ? '' : '?' . $url_parts [ 'fragment' ]);
//error_log(__METHOD__.'('.array2string($url_parts).") = '".$url."'");
return $url ;
2008-04-14 07:52:24 +02:00
}
2008-03-14 16:00:06 +01:00
/**
* URL to download a file
2008-04-16 09:07:31 +02:00
*
* We use our webdav handler as download url instead of an own download method .
2008-03-14 16:00:06 +01:00
* The webdav hander ( filemanager / webdav . php ) recognices eGW ' s session cookie and of cause understands regular GET requests .
2008-04-16 09:07:31 +02:00
*
2008-03-14 16:00:06 +01:00
* Please note : If you dont use eTemplate or the html class , you have to run this url throught egw :: link () to get a full url
*
* @ param string $path
2008-04-16 09:07:31 +02:00
* @ param boolean $force_download = false add header ( 'Content-disposition: filename="' . basename ( $path ) . '"' ), currently not supported !
* @ todo get $force_download working through webdav
2008-03-14 16:00:06 +01:00
* @ return string
*/
2008-04-16 09:07:31 +02:00
static function download_url ( $path , $force_download = false )
2008-03-14 16:00:06 +01:00
{
2010-09-07 13:05:20 +02:00
if (( $url = self :: _call_on_backend ( 'download_url' , array ( $path , $force_download ), true )))
{
return $url ;
}
2008-04-21 13:05:34 +02:00
if ( $path [ 0 ] != '/' )
{
$path = parse_url ( $path , PHP_URL_PATH );
}
2010-05-11 17:02:30 +02:00
// we do NOT need to encode % itself, as our path are already url encoded, with the exception of ' ' and '+'
// we urlencode double quotes '"', as that fixes many problems in html markup
return '/webdav.php' . strtr ( $path , array ( '+' => '%2B' , ' ' => '%20' , '"' => '%22' ));
2008-03-14 16:00:06 +01:00
}
2008-04-16 09:07:31 +02:00
2008-05-01 13:44:55 +02:00
/**
* We cache locks within a request , as HTTP_WebDAV_Server generates so many , that it can be a bottleneck
*
* @ var array
*/
static protected $lock_cache ;
2009-10-13 23:05:09 +02:00
/**
* Log ( to error log ) all calls to lock (), unlock () or checkLock ()
*
*/
const LOCK_DEBUG = false ;
2008-05-01 13:44:55 +02:00
/**
* lock a ressource / path
*
* @ param string $path path or url
2008-05-08 22:33:09 +02:00
* @ param string & $token
2008-05-01 13:44:55 +02:00
* @ param int & $timeout
* @ param string & $owner
* @ param string & $scope
* @ param string & $type
* @ param boolean $update = false
* @ param boolean $check_writable = true should we check if the ressource is writable , before granting locks , default yes
* @ return boolean true on success
*/
2008-05-08 22:33:09 +02:00
static function lock ( $path , & $token , & $timeout , & $owner , & $scope , & $type , $update = false , $check_writable = true )
2008-05-01 13:44:55 +02:00
{
// we require write rights to lock/unlock a resource
if ( ! $path || $update && ! $token || $check_writable && ! egw_vfs :: is_writable ( $path ))
{
return false ;
}
// remove the lock info evtl. set in the cache
unset ( self :: $lock_cache [ $path ]);
2008-05-08 22:33:09 +02:00
if ( $timeout < 1000000 ) // < 1000000 is a relative timestamp, so we add the current time
{
$timeout += time ();
}
2008-05-01 13:44:55 +02:00
if ( $update ) // Lock Update
{
if (( $ret = ( boolean )( $row = self :: $db -> select ( self :: LOCK_TABLE , array ( 'lock_owner' , 'lock_exclusive' , 'lock_write' ), array (
'lock_path' => $path ,
'lock_token' => $token ,
2009-10-13 23:05:09 +02:00
), __LINE__ , __FILE__ ) -> fetch ())))
2008-05-01 13:44:55 +02:00
{
$owner = $row [ 'lock_owner' ];
$scope = egw_db :: from_bool ( $row [ 'lock_exclusive' ]) ? 'exclusive' : 'shared' ;
$type = egw_db :: from_bool ( $row [ 'lock_write' ]) ? 'write' : 'read' ;
self :: $db -> update ( self :: LOCK_TABLE , array (
'lock_expires' => $timeout ,
'lock_modified' => time (),
), array (
2009-10-13 23:05:09 +02:00
'lock_path' => $path ,
'lock_token' => $token ,
2008-05-01 13:44:55 +02:00
), __LINE__ , __FILE__ );
}
}
// HTTP_WebDAV_Server does this check before calling LOCK, but we want to be complete and usable outside WebDAV
elseif (( $lock = self :: checkLock ( $path )) && ( $lock [ 'scope' ] == 'exclusive' || $scope == 'exclusive' ))
{
$ret = false ; // there's alread a lock
}
else
{
// HTTP_WebDAV_Server sets owner and token, but we want to be complete and usable outside WebDAV
if ( ! $owner || $owner == 'unknown' )
{
$owner = 'mailto:' . $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_email' ];
}
if ( ! $token )
{
2008-05-08 22:33:09 +02:00
require_once ( 'HTTP/WebDAV/Server.php' );
2008-05-01 13:44:55 +02:00
$token = HTTP_WebDAV_Server :: _new_locktoken ();
}
try {
self :: $db -> insert ( self :: LOCK_TABLE , array (
'lock_token' => $token ,
'lock_path' => $path ,
'lock_created' => time (),
'lock_modified' => time (),
'lock_owner' => $owner ,
'lock_expires' => $timeout ,
'lock_exclusive' => $scope == 'exclusive' ,
'lock_write' => $type == 'write' ,
), false , __LINE__ , __FILE__ );
$ret = true ;
}
catch ( egw_exception_db $e ) {
$ret = false ; // there's already a lock
}
}
2009-10-13 23:05:09 +02:00
if ( self :: LOCK_DEBUG ) error_log ( __METHOD__ . " ( $path , $token , $timeout , $owner , $scope , $type ,update= $update ,check_writable= $check_writable ) returns " . ( $ret ? 'true' : 'false' ));
2008-05-01 13:44:55 +02:00
return $ret ;
}
/**
* unlock a ressource / path
*
* @ param string $path path to unlock
* @ param string $token locktoken
* @ param boolean $check_writable = true should we check if the ressource is writable , before granting locks , default yes
* @ return boolean true on success
*/
2008-05-08 22:33:09 +02:00
static function unlock ( $path , $token , $check_writable = true )
2008-05-01 13:44:55 +02:00
{
// we require write rights to lock/unlock a resource
if ( $check_writable && ! egw_vfs :: is_writable ( $path ))
{
return false ;
}
if (( $ret = self :: $db -> delete ( self :: LOCK_TABLE , array (
'lock_path' => $path ,
'lock_token' => $token ,
), __LINE__ , __FILE__ ) && self :: $db -> affected_rows ()))
{
// remove the lock from the cache too
unset ( self :: $lock_cache [ $path ]);
}
2009-10-13 23:05:09 +02:00
if ( self :: LOCK_DEBUG ) error_log ( __METHOD__ . " ( $path , $token , $check_writable ) returns " . ( $ret ? 'true' : 'false' ));
2008-05-01 13:44:55 +02:00
return $ret ;
}
/**
* checkLock () helper
*
* @ param string resource path to check for locks
* @ return array | boolean false if there ' s no lock , else array with lock info
*/
2008-05-08 22:33:09 +02:00
static function checkLock ( $path )
2008-05-01 13:44:55 +02:00
{
if ( isset ( self :: $lock_cache [ $path ]))
{
2009-10-13 23:05:09 +02:00
if ( self :: LOCK_DEBUG ) error_log ( __METHOD__ . " ( $path ) returns from CACHE " . str_replace ( array ( " \n " , ' ' ), '' , print_r ( self :: $lock_cache [ $path ], true )));
2008-05-01 13:44:55 +02:00
return self :: $lock_cache [ $path ];
}
$where = 'lock_path=' . self :: $db -> quote ( $path );
// ToDo: additional check parent dirs for locks and children of the requested directory
//$where .= ' OR '.self::$db->quote($path).' LIKE '.self::$db->concat('lock_path',"'%'").' OR lock_path LIKE '.self::$db->quote($path.'%');
// ToDo: shared locks can return multiple rows
if (( $result = self :: $db -> select ( self :: LOCK_TABLE , '*' , $where , __LINE__ , __FILE__ ) -> fetch ()))
{
$result = egw_db :: strip_array_keys ( $result , 'lock_' );
$result [ 'type' ] = egw_db :: from_bool ( $result [ 'write' ]) ? 'write' : 'read' ;
$result [ 'scope' ] = egw_db :: from_bool ( $result [ 'exclusive' ]) ? 'exclusive' : 'shared' ;
$result [ 'depth' ] = egw_db :: from_bool ( $result [ 'recursive' ]) ? 'infinite' : 0 ;
}
if ( $result && $result [ 'expires' ] < time ()) // lock is expired --> remove it
{
self :: $db -> delete ( self :: LOCK_TABLE , array (
'lock_path' => $result [ 'path' ],
'lock_token' => $result [ 'token' ],
), __LINE__ , __FILE__ );
2009-10-13 23:05:09 +02:00
if ( self :: LOCK_DEBUG ) error_log ( __METHOD__ . " ( $path ) lock is expired at " . date ( 'Y-m-d H:i:s' , $result [ 'expires' ]) . " --> removed " );
2008-05-01 13:44:55 +02:00
$result = false ;
}
2009-10-13 23:05:09 +02:00
if ( self :: LOCK_DEBUG ) error_log ( __METHOD__ . " ( $path ) returns " . ( $result ? array2string ( $result ) : 'false' ));
2008-05-01 13:44:55 +02:00
return self :: $lock_cache [ $path ] = $result ;
}
2010-03-23 21:44:17 +01:00
/**
* Get backend specific information ( data and etemplate ), to integrate as tab in filemanagers settings dialog
*
* @ param string $path
2010-04-22 19:38:01 +02:00
* @ param array $content = null
2010-03-23 21:44:17 +01:00
* @ return array | boolean array with values for keys 'data' , 'etemplate' , 'name' , 'label' , 'help' or false if not supported by backend
*/
2010-04-22 19:38:01 +02:00
static function getExtraInfo ( $path , array $content = null )
2010-03-23 21:44:17 +01:00
{
2010-05-11 17:02:30 +02:00
return self :: _call_on_backend ( 'extra_info' , array ( $path , $content ), true ); // true = fail silent if backend does NOT support it
2010-03-23 21:44:17 +01:00
}
2008-05-08 22:33:09 +02:00
/**
* Mapps entries of applications to a path for the locking
*
* @ param string $app
* @ param int | string $id
* @ return string
*/
static function app_entry_lock_path ( $app , $id )
{
return " /apps/ $app /entry/ $id " ;
}
2010-05-11 17:02:30 +02:00
/**
* Encoding of various special characters , which can NOT be unencoded in file - names , as they have special meanings in URL ' s
*
* @ var array
*/
static public $encode = array (
'%' => '%25' ,
'#' => '%23' ,
'?' => '%3F' ,
'/' => '' , // better remove it completly
);
/**
* Encode a path component : replacing certain chars with their urlencoded counterparts
*
* Not all chars get encoded , slashes '/' are silently removed !
*
2011-03-03 16:41:01 +01:00
* To reverse the encoding , eg . to display a filename to the user , you have to use egw_vfs :: decodePath ()
2010-05-11 17:02:30 +02:00
*
* @ param string | array $component
* @ return string | array
*/
static public function encodePathComponent ( $component )
{
return str_replace ( array_keys ( self :: $encode ), array_values ( self :: $encode ), $component );
}
/**
* Encode a path : replacing certain chars with their urlencoded counterparts
*
2011-03-03 16:41:01 +01:00
* To reverse the encoding , eg . to display a filename to the user , you have to use egw_vfs :: decodePath ()
2010-05-11 17:02:30 +02:00
*
* @ param string $path
* @ return string
*/
static public function encodePath ( $path )
{
return implode ( '/' , self :: encodePathComponent ( explode ( '/' , $path )));
}
2011-03-03 16:41:01 +01:00
/**
* Decode a path : rawurldecode () : mostly urldecode (), but do NOT decode '+' , as we ' re NOT encoding it !
*
* Used eg . to translate a path for displaying to the User .
*
* @ param string $path
* @ return string
*/
static public function decodePath ( $path )
{
return rawurldecode ( $path );
}
2008-04-14 07:52:24 +02:00
/**
* Initialise our static vars
*/
static function init_static ()
{
self :: $user = ( int ) $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ];
self :: $is_admin = isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ 'admin' ]);
2008-05-01 13:44:55 +02:00
self :: $db = isset ( $GLOBALS [ 'egw_setup' ] -> db ) ? $GLOBALS [ 'egw_setup' ] -> db : $GLOBALS [ 'egw' ] -> db ;
self :: $lock_cache = array ();
2008-04-14 07:52:24 +02:00
}
2011-03-15 18:52:08 +01:00
/**
* Returns the URL to the thumbnail of the given file . The thumbnail may simply
* be the mime - type icon , or - if activated - the preview with the given thsize .
*
* @ param string $file name of the file
* @ param int $thsize the size of the preview - false if the default should be used .
* @ param string $mime if you already know the mime type of the file , you can supply
* it here . Otherwise supply " false " .
*/
public static function thumbnail_url ( $file , $thsize = false , $mime = false )
{
// Retrive the mime-type of the file
if ( ! $mime )
{
$mime = egw_vfs :: mime_content_type ( $file );
}
$image = " " ;
// Seperate the mime type into the primary and the secondary part
list ( $mime_main , $mime_sub ) = explode ( '/' , $mime );
if ( $mime_main == 'egw' )
{
$image = $GLOBALS [ 'egw' ] -> common -> image ( $mime_sub , 'navbar' );
}
else if ( $file && $mime_main == 'image' && in_array ( $mime_sub , array ( 'png' , 'jpeg' , 'jpg' , 'gif' , 'bmp' )) &&
( string ) $GLOBALS [ 'egw_info' ][ 'server' ][ 'link_list_thumbnail' ] != '0' &&
( string ) $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'link_list_thumbnail' ] != '0' &&
( ! is_array ( $value ) && ( $stat = egw_vfs :: stat ( $file )) ? $stat [ 'size' ] : $value [ 'size' ]) < 1500000 )
{
if ( substr ( $file , 0 , 6 ) == '/apps/' )
{
$file = parse_url ( egw_vfs :: resolve_url_symlinks ( $path ), PHP_URL_PATH );
}
//Assemble the thumbnail parameters
$thparams = array ();
$thparams [ 'path' ] = $file ;
if ( $thsize )
{
$thparams [ 'thsize' ] = $thsize ;
}
$image = $GLOBALS [ 'egw' ] -> link ( '/etemplate/thumbnail.php' , $thparams );
}
else
{
list ( $app , $name ) = explode ( " / " , egw_vfs :: mime_icon ( $mime ), 2 );
$image = $GLOBALS [ 'egw' ] -> common -> image ( $app , $name );
}
return $image ;
}
2011-03-16 18:51:33 +01:00
/**
* Get the configured start directory for the current user
*
* @ return string
*/
2011-03-21 17:12:28 +01:00
static public function get_home_dir ()
2011-03-16 18:51:33 +01:00
{
$start = '/home/' . $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_lid' ];
// check if user specified a valid startpath in his prefs --> use it
if (( $path = $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'filemanager' ][ 'startfolder' ]) &&
$path [ 0 ] == '/' && egw_vfs :: is_dir ( $path ) && egw_vfs :: check_access ( $path , egw_vfs :: READABLE ))
{
$start = $path ;
}
return $start ;
}
2011-03-21 17:12:28 +01:00
/**
* Copies the files given in $src to $dst .
*
* @ param array $src contains the source file
* @ param string $dst is the destination directory
*/
static public function copy_files ( array $src , $dst , & $errs , array & $copied )
{
if ( self :: is_dir ( $dst ))
{
foreach ( $src as $file )
{
// Check whether the file has already been copied - prevents from
// recursion
if ( ! in_array ( $file , $copied ))
{
// Calculate the target filename
$target = egw_vfs :: concat ( $dst , egw_vfs :: basename ( $file ));
if ( self :: is_dir ( $file ))
{
if ( $file !== $target )
{
// Create the target directory
egw_vfs :: mkdir ( $target , null , STREAM_MKDIR_RECURSIVE );
$files = egw_vfs :: find ( $file , array (
" hidden " => true
));
$copied [] = $file ;
$copied [] = $target ; // < newly created folder must not be copied again!
if ( egw_vfs :: copy_files ( egw_vfs :: find ( $file ), $target ,
$errs , $copied ))
{
continue ;
}
}
$errs ++ ;
}
else
{
// Copy a single file - check whether the file should be
// copied onto itself.
// TODO: Check whether target file already exists and give
// return those files so that a dialog might be displayed
// on the client side which lets the user decide.
if ( $target !== $file && egw_vfs :: copy ( $file , $target ))
{
$copied [] = $file ;
}
else
{
$errs ++ ;
}
}
}
}
}
return $errs == 0 ;
}
/**
* Moves the files given in src to dst
*/
static public function move_files ( array $src , $dst , & $errs , array & $moved )
{
if ( egw_vfs :: is_dir ( $dst ))
{
foreach ( $src as $file )
{
$target = egw_vfs :: concat ( $dst , egw_vfs :: basename ( $file ));
if ( $file != $target && egw_vfs :: rename ( $file , $target ))
{
$moved [] = $file ;
}
else
{
++ $errs ;
}
}
}
}
2008-02-07 07:37:45 +01:00
}
More improvments of the sqlfs code and the command line interface:
- read rights are not checks in each traversed directory (via sql in a single query to locate the path)
- diropen additionally checks for execute rights
- fopen checks for read or write depending on the mode
- chmod, chgrp, chown methods in sqlfs and egw_vfs/vfs plus an egw_vfs::$is_root var used to grant root rights (no access controll and chown or chgrp without being the owner of a file)
- find method (some more params to come) to recursivly search and optionaly execute some callback
- egw_vfs::remove doing a "rm -r" / recursive remove or dirs and files
- new files or dirs inherit the perms and ownership from the parent directory (no umask)
- files/dirs the user has no read rights, in a directory where he has no write rights, get hidden (eg. not showing all the other users / groups home dirs
- many new cli commands (chmod, chgrp, chown, find), recursive option for most commands and the ability to use it with root rights, see the usage message if called without options
- "cp -r -p" to copy a whole tree incl. ownership and perms, eg. backing up /home to /backup
2008-02-26 09:51:42 +01:00
2008-04-14 07:52:24 +02:00
egw_vfs :: init_static ();