2008-02-20 01:12:48 +01:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* WordPress Direct Filesystem.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Filesystem
|
|
|
|
*/
|
2008-02-20 01:12:48 +01:00
|
|
|
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* WordPress Filesystem Class for direct PHP file and folder manipulation.
|
|
|
|
*
|
2013-12-25 03:00:11 +01:00
|
|
|
* @since 2.5.0
|
2008-08-14 08:30:38 +02:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Filesystem
|
|
|
|
* @uses WP_Filesystem_Base Extends class
|
|
|
|
*/
|
2009-04-13 18:11:02 +02:00
|
|
|
class WP_Filesystem_Direct extends WP_Filesystem_Base {
|
2013-09-22 06:44:10 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* constructor
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2011-05-14 11:56:59 +02:00
|
|
|
* @param mixed $arg ignored argument
|
2009-08-16 10:34:53 +02:00
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function __construct($arg) {
|
2008-05-30 18:14:05 +02:00
|
|
|
$this->method = 'direct';
|
2008-02-20 01:15:55 +01:00
|
|
|
$this->errors = new WP_Error();
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Reads entire file into a string
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2010-09-07 13:21:11 +02:00
|
|
|
* @param string $file Name of the file to read.
|
2009-09-14 16:03:32 +02:00
|
|
|
* @return string|bool The function returns the read data or false on failure.
|
2009-08-16 10:34:53 +02:00
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function get_contents($file) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @file_get_contents($file);
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Reads entire file into an array
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2010-09-07 13:21:11 +02:00
|
|
|
* @param string $file Path to the file.
|
2009-09-14 16:03:32 +02:00
|
|
|
* @return array|bool the file contents in an array or false on failure.
|
2009-08-16 10:34:53 +02:00
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function get_contents_array($file) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @file($file);
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Write a string to a file
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-06 22:24:45 +01:00
|
|
|
* @param string $file Remote path to the file where to write the data.
|
2010-09-07 13:21:11 +02:00
|
|
|
* @param string $contents The data to write.
|
2014-12-06 22:24:45 +01:00
|
|
|
* @param int $mode Optional. The file permissions as octal number, usually 0644.
|
|
|
|
* Default false.
|
|
|
|
* @return bool False upon failure, true otherwise.
|
2009-08-16 10:34:53 +02:00
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function put_contents( $file, $contents, $mode = false ) {
|
2013-09-09 04:43:08 +02:00
|
|
|
$fp = @fopen( $file, 'wb' );
|
|
|
|
if ( ! $fp )
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2013-09-09 04:43:08 +02:00
|
|
|
|
2013-09-11 10:27:10 +02:00
|
|
|
mbstring_binary_safe_encoding();
|
|
|
|
|
|
|
|
$data_length = strlen( $contents );
|
|
|
|
|
2013-09-09 04:43:08 +02:00
|
|
|
$bytes_written = fwrite( $fp, $contents );
|
|
|
|
|
2013-09-11 10:27:10 +02:00
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
2013-09-09 04:43:08 +02:00
|
|
|
fclose( $fp );
|
|
|
|
|
2013-09-11 10:27:10 +02:00
|
|
|
if ( $data_length !== $bytes_written )
|
2013-09-09 04:43:08 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
$this->chmod( $file, $mode );
|
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Gets the current working directory
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2009-09-14 16:03:32 +02:00
|
|
|
* @return string|bool the current working directory on success, or false on failure.
|
2009-08-16 10:34:53 +02:00
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function cwd() {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @getcwd();
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Change directory
|
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2010-09-07 13:21:11 +02:00
|
|
|
* @param string $dir The new current directory.
|
2009-08-16 10:34:53 +02:00
|
|
|
* @return bool Returns true on success or false on failure.
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function chdir($dir) {
|
2008-04-13 06:04:57 +02:00
|
|
|
return @chdir($dir);
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Changes file group
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-06 22:24:45 +01:00
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @param mixed $group A group name or number.
|
|
|
|
* @param bool $recursive Optional. If set True changes file group recursively. Default false.
|
2009-08-16 10:34:53 +02:00
|
|
|
* @return bool Returns true on success or false on failure.
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function chgrp($file, $group, $recursive = false) {
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $this->exists($file) )
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $recursive )
|
2008-05-29 19:29:32 +02:00
|
|
|
return @chgrp($file, $group);
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $this->is_dir($file) )
|
2008-05-29 19:29:32 +02:00
|
|
|
return @chgrp($file, $group);
|
2013-09-09 04:55:09 +02:00
|
|
|
// Is a directory, and we want recursive
|
2008-04-23 03:14:26 +02:00
|
|
|
$file = trailingslashit($file);
|
2008-02-20 01:12:48 +01:00
|
|
|
$filelist = $this->dirlist($file);
|
2009-04-13 18:11:02 +02:00
|
|
|
foreach ($filelist as $filename)
|
2008-04-13 06:04:57 +02:00
|
|
|
$this->chgrp($file . $filename, $group, $recursive);
|
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Changes filesystem permissions
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-06 22:24:45 +01:00
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @param int $mode Optional. The permissions as octal number, usually 0644 for files,
|
|
|
|
* 0755 for dirs. Default false.
|
|
|
|
* @param bool $recursive Optional. If set True changes file group recursively. Default false.
|
2009-08-16 10:34:53 +02:00
|
|
|
* @return bool Returns true on success or false on failure.
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function chmod($file, $mode = false, $recursive = false) {
|
2009-06-29 22:23:04 +02:00
|
|
|
if ( ! $mode ) {
|
2009-08-16 10:34:53 +02:00
|
|
|
if ( $this->is_file($file) )
|
2009-06-29 22:23:04 +02:00
|
|
|
$mode = FS_CHMOD_FILE;
|
|
|
|
elseif ( $this->is_dir($file) )
|
|
|
|
$mode = FS_CHMOD_DIR;
|
|
|
|
else
|
2009-09-14 16:03:32 +02:00
|
|
|
return false;
|
2009-06-29 22:23:04 +02:00
|
|
|
}
|
|
|
|
|
2010-02-07 02:31:40 +01:00
|
|
|
if ( ! $recursive || ! $this->is_dir($file) )
|
2008-05-29 19:29:32 +02:00
|
|
|
return @chmod($file, $mode);
|
2013-09-09 04:55:09 +02:00
|
|
|
// Is a directory, and we want recursive
|
2008-04-23 03:14:26 +02:00
|
|
|
$file = trailingslashit($file);
|
2008-02-20 01:12:48 +01:00
|
|
|
$filelist = $this->dirlist($file);
|
2010-02-07 02:12:29 +01:00
|
|
|
foreach ( (array)$filelist as $filename => $filemeta)
|
2008-04-13 06:04:57 +02:00
|
|
|
$this->chmod($file . $filename, $mode, $recursive);
|
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Changes file owner
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-06 22:24:45 +01:00
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @param mixed $owner A user name or number.
|
|
|
|
* @param bool $recursive Optional. If set True changes file owner recursively.
|
|
|
|
* Default false.
|
2009-08-16 10:34:53 +02:00
|
|
|
* @return bool Returns true on success or false on failure.
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function chown($file, $owner, $recursive = false) {
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $this->exists($file) )
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $recursive )
|
2008-05-29 19:29:32 +02:00
|
|
|
return @chown($file, $owner);
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $this->is_dir($file) )
|
2008-05-29 19:29:32 +02:00
|
|
|
return @chown($file, $owner);
|
2013-09-09 04:55:09 +02:00
|
|
|
// Is a directory, and we want recursive
|
2008-02-20 01:12:48 +01:00
|
|
|
$filelist = $this->dirlist($file);
|
2009-08-16 10:34:53 +02:00
|
|
|
foreach ($filelist as $filename) {
|
2008-05-29 19:29:32 +02:00
|
|
|
$this->chown($file . '/' . $filename, $owner, $recursive);
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Gets file owner
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2010-09-07 13:21:11 +02:00
|
|
|
* @param string $file Path to the file.
|
2013-09-22 06:44:10 +02:00
|
|
|
* @return string|bool Username of the user or false on error.
|
2009-08-16 10:34:53 +02:00
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function owner($file) {
|
2008-04-13 06:04:57 +02:00
|
|
|
$owneruid = @fileowner($file);
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $owneruid )
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! function_exists('posix_getpwuid') )
|
2008-02-20 01:12:48 +01:00
|
|
|
return $owneruid;
|
2008-04-13 06:04:57 +02:00
|
|
|
$ownerarray = posix_getpwuid($owneruid);
|
2008-02-20 01:12:48 +01:00
|
|
|
return $ownerarray['name'];
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
/**
|
|
|
|
* Gets file permissions
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2009-08-16 10:34:53 +02:00
|
|
|
* FIXME does not handle errors in fileperms()
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2010-09-07 13:21:11 +02:00
|
|
|
* @param string $file Path to the file.
|
2014-03-17 21:17:15 +01:00
|
|
|
* @return string Mode of the file (last 3 digits).
|
2009-08-16 10:34:53 +02:00
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function getchmod($file) {
|
2014-03-17 21:17:15 +01:00
|
|
|
return substr( decoct( @fileperms( $file ) ), -3 );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
2014-12-01 03:17:21 +01:00
|
|
|
* @return string|false
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function group($file) {
|
2008-04-13 06:04:57 +02:00
|
|
|
$gid = @filegroup($file);
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $gid )
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! function_exists('posix_getgrgid') )
|
2008-02-20 01:12:48 +01:00
|
|
|
return $gid;
|
2008-04-13 06:04:57 +02:00
|
|
|
$grouparray = posix_getgrgid($gid);
|
2008-02-20 01:12:48 +01:00
|
|
|
return $grouparray['name'];
|
|
|
|
}
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $source
|
|
|
|
* @param string $destination
|
|
|
|
* @param bool $overwrite
|
|
|
|
* @param int $mode
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function copy($source, $destination, $overwrite = false, $mode = false) {
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $overwrite && $this->exists($destination) )
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2010-02-07 03:15:27 +01:00
|
|
|
|
2011-03-22 01:04:15 +01:00
|
|
|
$rtval = copy($source, $destination);
|
|
|
|
if ( $mode )
|
|
|
|
$this->chmod($destination, $mode);
|
|
|
|
return $rtval;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $source
|
|
|
|
* @param string $destination
|
|
|
|
* @param bool $overwrite
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function move($source, $destination, $overwrite = false) {
|
2010-02-07 03:15:27 +01:00
|
|
|
if ( ! $overwrite && $this->exists($destination) )
|
|
|
|
return false;
|
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
// Try using rename first. if that fails (for example, source is read only) try copy.
|
2010-02-07 03:15:27 +01:00
|
|
|
if ( @rename($source, $destination) )
|
|
|
|
return true;
|
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
if ( $this->copy($source, $destination, $overwrite) && $this->exists($destination) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
$this->delete($source);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
|
|
|
* @param bool $recursive
|
|
|
|
* @param string $type
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function delete($file, $recursive = false, $type = false) {
|
2013-09-09 04:55:09 +02:00
|
|
|
if ( empty( $file ) ) // Some filesystems report this as /, which can cause non-expected recursive deletion of all files in the filesystem.
|
2009-04-13 18:11:02 +02:00
|
|
|
return false;
|
2013-09-09 04:55:09 +02:00
|
|
|
$file = str_replace( '\\', '/', $file ); // for win32, occasional problems deleting files otherwise
|
2008-02-20 01:15:55 +01:00
|
|
|
|
2011-03-22 01:04:15 +01:00
|
|
|
if ( 'f' == $type || $this->is_file($file) )
|
2008-02-20 01:12:48 +01:00
|
|
|
return @unlink($file);
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $recursive && $this->is_dir($file) )
|
2008-02-20 01:12:48 +01:00
|
|
|
return @rmdir($file);
|
2008-02-20 01:15:55 +01:00
|
|
|
|
2013-09-09 04:55:09 +02:00
|
|
|
// At this point it's a folder, and we're in recursive mode
|
2008-04-13 06:04:57 +02:00
|
|
|
$file = trailingslashit($file);
|
|
|
|
$filelist = $this->dirlist($file, true);
|
2008-02-20 01:12:48 +01:00
|
|
|
|
|
|
|
$retval = true;
|
2013-09-09 04:55:09 +02:00
|
|
|
if ( is_array( $filelist ) ) {
|
|
|
|
foreach ( $filelist as $filename => $fileinfo ) {
|
2011-03-22 01:04:15 +01:00
|
|
|
if ( ! $this->delete($file . $filename, $recursive, $fileinfo['type']) )
|
2008-04-13 06:04:57 +02:00
|
|
|
$retval = false;
|
2013-09-09 04:55:09 +02:00
|
|
|
}
|
|
|
|
}
|
2008-04-13 06:04:57 +02:00
|
|
|
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( file_exists($file) && ! @rmdir($file) )
|
|
|
|
$retval = false;
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
return $retval;
|
|
|
|
}
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function exists($file) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @file_exists($file);
|
|
|
|
}
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function is_file($file) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @is_file($file);
|
|
|
|
}
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $path
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function is_dir($path) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @is_dir($path);
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function is_readable($file) {
|
2008-04-13 06:04:57 +02:00
|
|
|
return @is_readable($file);
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function is_writable($file) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @is_writable($file);
|
|
|
|
}
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
|
|
|
* @return int
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function atime($file) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @fileatime($file);
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
|
|
|
* @return int
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function mtime($file) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @filemtime($file);
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
|
|
|
* @return int
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function size($file) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return @filesize($file);
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $file
|
|
|
|
* @param int $time
|
|
|
|
* @param int $atime
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function touch($file, $time = 0, $atime = 0) {
|
2009-04-13 18:11:02 +02:00
|
|
|
if ($time == 0)
|
2008-02-20 01:12:48 +01:00
|
|
|
$time = time();
|
2009-04-13 18:11:02 +02:00
|
|
|
if ($atime == 0)
|
2008-02-20 01:12:48 +01:00
|
|
|
$atime = time();
|
2008-05-29 19:29:32 +02:00
|
|
|
return @touch($file, $time, $atime);
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $path
|
|
|
|
* @param mixed $chmod
|
|
|
|
* @param mixed $chown
|
|
|
|
* @param mixed $chgrp
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function mkdir($path, $chmod = false, $chown = false, $chgrp = false) {
|
2014-07-17 11:14:16 +02:00
|
|
|
// Safe mode fails with a trailing slash under certain PHP versions.
|
2010-01-17 03:57:59 +01:00
|
|
|
$path = untrailingslashit($path);
|
|
|
|
if ( empty($path) )
|
2011-10-13 12:43:38 +02:00
|
|
|
return false;
|
2010-01-17 03:57:59 +01:00
|
|
|
|
2009-08-16 10:34:53 +02:00
|
|
|
if ( ! $chmod )
|
|
|
|
$chmod = FS_CHMOD_DIR;
|
|
|
|
|
2009-06-29 22:23:04 +02:00
|
|
|
if ( ! @mkdir($path) )
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2009-06-29 22:23:04 +02:00
|
|
|
$this->chmod($path, $chmod);
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( $chown )
|
2008-05-29 19:29:32 +02:00
|
|
|
$this->chown($path, $chown);
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( $chgrp )
|
2008-05-29 19:29:32 +02:00
|
|
|
$this->chgrp($path, $chgrp);
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $path
|
|
|
|
* @param bool $recursive
|
2014-12-20 21:40:23 +01:00
|
|
|
* @return bool
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function rmdir($path, $recursive = false) {
|
2010-02-07 02:31:40 +01:00
|
|
|
return $this->delete($path, $recursive);
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-10 03:21:24 +02:00
|
|
|
* @access public
|
|
|
|
*
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $path
|
|
|
|
* @param bool $include_hidden
|
|
|
|
* @param bool $recursive
|
|
|
|
* @return bool|array
|
|
|
|
*/
|
2014-05-19 02:09:14 +02:00
|
|
|
public function dirlist($path, $include_hidden = true, $recursive = false) {
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( $this->is_file($path) ) {
|
2009-09-15 04:21:00 +02:00
|
|
|
$limit_file = basename($path);
|
2008-02-20 01:12:48 +01:00
|
|
|
$path = dirname($path);
|
|
|
|
} else {
|
2009-09-15 04:21:00 +02:00
|
|
|
$limit_file = false;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2009-09-15 04:21:00 +02:00
|
|
|
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( ! $this->is_dir($path) )
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
|
|
|
|
2008-12-04 23:07:57 +01:00
|
|
|
$dir = @dir($path);
|
|
|
|
if ( ! $dir )
|
|
|
|
return false;
|
2009-09-15 04:21:00 +02:00
|
|
|
|
|
|
|
$ret = array();
|
|
|
|
|
2008-05-29 19:29:32 +02:00
|
|
|
while (false !== ($entry = $dir->read()) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
$struc = array();
|
2008-05-29 19:29:32 +02:00
|
|
|
$struc['name'] = $entry;
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( '.' == $struc['name'] || '..' == $struc['name'] )
|
2008-02-20 01:12:48 +01:00
|
|
|
continue;
|
2009-09-15 04:21:00 +02:00
|
|
|
|
|
|
|
if ( ! $include_hidden && '.' == $struc['name'][0] )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( $limit_file && $struc['name'] != $limit_file)
|
2008-02-20 01:12:48 +01:00
|
|
|
continue;
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
$struc['perms'] = $this->gethchmod($path.'/'.$entry);
|
|
|
|
$struc['permsn'] = $this->getnumchmodfromh($struc['perms']);
|
|
|
|
$struc['number'] = false;
|
|
|
|
$struc['owner'] = $this->owner($path.'/'.$entry);
|
|
|
|
$struc['group'] = $this->group($path.'/'.$entry);
|
|
|
|
$struc['size'] = $this->size($path.'/'.$entry);
|
|
|
|
$struc['lastmodunix']= $this->mtime($path.'/'.$entry);
|
|
|
|
$struc['lastmod'] = date('M j',$struc['lastmodunix']);
|
|
|
|
$struc['time'] = date('h:i:s',$struc['lastmodunix']);
|
2008-03-02 00:29:19 +01:00
|
|
|
$struc['type'] = $this->is_dir($path.'/'.$entry) ? 'd' : 'f';
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2008-05-29 19:29:32 +02:00
|
|
|
if ( 'd' == $struc['type'] ) {
|
2009-04-13 18:11:02 +02:00
|
|
|
if ( $recursive )
|
2009-09-15 04:21:00 +02:00
|
|
|
$struc['files'] = $this->dirlist($path . '/' . $struc['name'], $include_hidden, $recursive);
|
2008-04-13 06:04:57 +02:00
|
|
|
else
|
|
|
|
$struc['files'] = array();
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-04-13 06:04:57 +02:00
|
|
|
|
|
|
|
$ret[ $struc['name'] ] = $struc;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
$dir->close();
|
|
|
|
unset($dir);
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
}
|