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
|
2017-07-01 18:58:42 +02:00
|
|
|
*
|
|
|
|
* @see WP_Filesystem_Base
|
2008-08-14 08:30:38 +02:00
|
|
|
*/
|
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
|
|
|
*
|
2011-05-14 11:56:59 +02:00
|
|
|
* @param mixed $arg ignored argument
|
2009-08-16 10:34:53 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01: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
|
|
|
*
|
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
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function get_contents( $file ) {
|
|
|
|
return @file_get_contents( $file );
|
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 an array
|
2009-09-14 16:03:32 +02:00
|
|
|
*
|
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
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function get_contents_array( $file ) {
|
|
|
|
return @file( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
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
|
|
|
*
|
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' );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $fp ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
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 );
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $data_length !== $bytes_written ) {
|
2013-09-09 04:43:08 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-09-09 04:43:08 +02:00
|
|
|
|
|
|
|
$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
|
|
|
*
|
|
|
|
* @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
|
|
|
|
*
|
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.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function chdir( $dir ) {
|
|
|
|
return @chdir( $dir );
|
2008-04-13 06:04:57 +02:00
|
|
|
}
|
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
|
|
|
*
|
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.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function chgrp( $file, $group, $recursive = false ) {
|
|
|
|
if ( ! $this->exists( $file ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
if ( ! $recursive ) {
|
|
|
|
return @chgrp( $file, $group );
|
|
|
|
}
|
|
|
|
if ( ! $this->is_dir( $file ) ) {
|
|
|
|
return @chgrp( $file, $group );
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
// Is a directory, and we want recursive
|
2017-12-01 00:11:00 +01:00
|
|
|
$file = trailingslashit( $file );
|
|
|
|
$filelist = $this->dirlist( $file );
|
|
|
|
foreach ( $filelist as $filename ) {
|
|
|
|
$this->chgrp( $file . $filename, $group, $recursive );
|
|
|
|
}
|
2008-04-13 06:04:57 +02:00
|
|
|
|
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
|
|
|
*
|
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.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function chmod( $file, $mode = false, $recursive = false ) {
|
2009-06-29 22:23:04 +02:00
|
|
|
if ( ! $mode ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->is_file( $file ) ) {
|
2009-06-29 22:23:04 +02:00
|
|
|
$mode = FS_CHMOD_FILE;
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( $this->is_dir( $file ) ) {
|
2009-06-29 22:23:04 +02:00
|
|
|
$mode = FS_CHMOD_DIR;
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2009-09-14 16:03:32 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2009-06-29 22:23:04 +02:00
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $recursive || ! $this->is_dir( $file ) ) {
|
|
|
|
return @chmod( $file, $mode );
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
// Is a directory, and we want recursive
|
2017-12-01 00:11:00 +01:00
|
|
|
$file = trailingslashit( $file );
|
|
|
|
$filelist = $this->dirlist( $file );
|
|
|
|
foreach ( (array) $filelist as $filename => $filemeta ) {
|
|
|
|
$this->chmod( $file . $filename, $mode, $recursive );
|
|
|
|
}
|
2008-04-13 06:04:57 +02:00
|
|
|
|
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
|
|
|
*
|
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.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function chown( $file, $owner, $recursive = false ) {
|
|
|
|
if ( ! $this->exists( $file ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
if ( ! $recursive ) {
|
|
|
|
return @chown( $file, $owner );
|
|
|
|
}
|
|
|
|
if ( ! $this->is_dir( $file ) ) {
|
|
|
|
return @chown( $file, $owner );
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
// Is a directory, and we want recursive
|
2017-12-01 00:11:00 +01:00
|
|
|
$filelist = $this->dirlist( $file );
|
|
|
|
foreach ( $filelist as $filename ) {
|
|
|
|
$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
|
|
|
*
|
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
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function owner( $file ) {
|
|
|
|
$owneruid = @fileowner( $file );
|
|
|
|
if ( ! $owneruid ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
if ( ! function_exists( 'posix_getpwuid' ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return $owneruid;
|
2017-12-01 00:11:00 +01: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
|
|
|
*
|
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
|
|
|
*/
|
2017-12-01 00:11:00 +01: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
|
|
|
/**
|
|
|
|
* @param string $file
|
2014-12-01 03:17:21 +01:00
|
|
|
* @return string|false
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function group( $file ) {
|
|
|
|
$gid = @filegroup( $file );
|
|
|
|
if ( ! $gid ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
if ( ! function_exists( 'posix_getgrgid' ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return $gid;
|
2017-12-01 00:11:00 +01: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
|
|
|
/**
|
|
|
|
* @param string $source
|
|
|
|
* @param string $destination
|
|
|
|
* @param bool $overwrite
|
|
|
|
* @param int $mode
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function copy( $source, $destination, $overwrite = false, $mode = false ) {
|
|
|
|
if ( ! $overwrite && $this->exists( $destination ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-02-07 03:15:27 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$rtval = copy( $source, $destination );
|
|
|
|
if ( $mode ) {
|
|
|
|
$this->chmod( $destination, $mode );
|
|
|
|
}
|
2011-03-22 01:04:15 +01:00
|
|
|
return $rtval;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $source
|
|
|
|
* @param string $destination
|
|
|
|
* @param bool $overwrite
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function move( $source, $destination, $overwrite = false ) {
|
|
|
|
if ( ! $overwrite && $this->exists( $destination ) ) {
|
2010-02-07 03:15:27 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-02-07 03:15:27 +01:00
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
// Try using rename first. if that fails (for example, source is read only) try copy.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( @rename( $source, $destination ) ) {
|
2010-02-07 03:15:27 +01:00
|
|
|
return true;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-02-07 03:15:27 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->copy( $source, $destination, $overwrite ) && $this->exists( $destination ) ) {
|
|
|
|
$this->delete( $source );
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @param bool $recursive
|
|
|
|
* @param string $type
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function delete( $file, $recursive = false, $type = false ) {
|
|
|
|
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;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
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
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( 'f' == $type || $this->is_file( $file ) ) {
|
|
|
|
return @unlink( $file );
|
|
|
|
}
|
|
|
|
if ( ! $recursive && $this->is_dir( $file ) ) {
|
|
|
|
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
|
2017-12-01 00:11:00 +01: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 ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $this->delete( $file . $filename, $recursive, $fileinfo['type'] ) ) {
|
2008-04-13 06:04:57 +02:00
|
|
|
$retval = false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
}
|
|
|
|
}
|
2008-04-13 06:04:57 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( file_exists( $file ) && ! @rmdir( $file ) ) {
|
2009-04-13 18:11:02 +02:00
|
|
|
$retval = false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
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
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function exists( $file ) {
|
|
|
|
return @file_exists( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function is_file( $file ) {
|
|
|
|
return @is_file( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function is_dir( $path ) {
|
|
|
|
return @is_dir( $path );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function is_readable( $file ) {
|
|
|
|
return @is_readable( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function is_writable( $file ) {
|
|
|
|
return @is_writable( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return int
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function atime( $file ) {
|
|
|
|
return @fileatime( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return int
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function mtime( $file ) {
|
|
|
|
return @filemtime( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return int
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function size( $file ) {
|
|
|
|
return @filesize( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @param int $time
|
|
|
|
* @param int $atime
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function touch( $file, $time = 0, $atime = 0 ) {
|
|
|
|
if ( $time == 0 ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
$time = time();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
if ( $atime == 0 ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
$atime = time();
|
2017-12-01 00:11:00 +01: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
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param mixed $chmod
|
|
|
|
* @param mixed $chown
|
|
|
|
* @param mixed $chgrp
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01: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.
|
2017-12-01 00:11:00 +01:00
|
|
|
$path = untrailingslashit( $path );
|
|
|
|
if ( empty( $path ) ) {
|
2011-10-13 12:43:38 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-01-17 03:57:59 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $chmod ) {
|
2009-08-16 10:34:53 +02:00
|
|
|
$chmod = FS_CHMOD_DIR;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2009-08-16 10:34:53 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! @mkdir( $path ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
$this->chmod( $path, $chmod );
|
|
|
|
if ( $chown ) {
|
|
|
|
$this->chown( $path, $chown );
|
|
|
|
}
|
|
|
|
if ( $chgrp ) {
|
|
|
|
$this->chgrp( $path, $chgrp );
|
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function rmdir( $path, $recursive = false ) {
|
|
|
|
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
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param bool $include_hidden
|
|
|
|
* @param bool $recursive
|
|
|
|
* @return bool|array
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function dirlist( $path, $include_hidden = true, $recursive = false ) {
|
|
|
|
if ( $this->is_file( $path ) ) {
|
|
|
|
$limit_file = basename( $path );
|
|
|
|
$path = dirname( $path );
|
2008-02-20 01:12:48 +01:00
|
|
|
} 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
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $this->is_dir( $path ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$dir = @dir( $path );
|
|
|
|
if ( ! $dir ) {
|
2008-12-04 23:07:57 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2009-09-15 04:21:00 +02:00
|
|
|
|
|
|
|
$ret = array();
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
while ( false !== ( $entry = $dir->read() ) ) {
|
|
|
|
$struc = array();
|
2008-05-29 19:29:32 +02:00
|
|
|
$struc['name'] = $entry;
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( '.' == $struc['name'] || '..' == $struc['name'] ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2009-09-15 04:21:00 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $include_hidden && '.' == $struc['name'][0] ) {
|
2009-09-15 04:21:00 +02:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2009-09-15 04:21:00 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $limit_file && $struc['name'] != $limit_file ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2017-12-01 00:11:00 +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'] );
|
|
|
|
$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'] ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $recursive ) {
|
|
|
|
$struc['files'] = $this->dirlist( $path . '/' . $struc['name'], $include_hidden, $recursive );
|
|
|
|
} else {
|
2008-04-13 06:04:57 +02:00
|
|
|
$struc['files'] = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
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();
|
2017-12-01 00:11:00 +01:00
|
|
|
unset( $dir );
|
2008-02-20 01:12:48 +01:00
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
}
|