2008-02-20 01:12:48 +01:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* WordPress FTP Sockets Filesystem.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Filesystem
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WordPress Filesystem Class for implementing FTP Sockets.
|
|
|
|
*
|
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
|
|
|
*/
|
2008-05-30 18:14:05 +02:00
|
|
|
class WP_Filesystem_ftpsockets extends WP_Filesystem_Base {
|
2015-01-16 23:44:25 +01:00
|
|
|
/**
|
|
|
|
* @var ftp
|
|
|
|
*/
|
|
|
|
public $ftp;
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @param array $opt
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function __construct( $opt = '' ) {
|
2008-05-29 19:29:32 +02:00
|
|
|
$this->method = 'ftpsockets';
|
2008-02-26 06:23:05 +01:00
|
|
|
$this->errors = new WP_Error();
|
|
|
|
|
2016-08-31 18:31:29 +02:00
|
|
|
// Check if possible to use ftp functions.
|
|
|
|
if ( ! @include_once( ABSPATH . 'wp-admin/includes/class-ftp.php' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
$this->ftp = new ftp();
|
2008-02-11 09:46:11 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $opt['port'] ) ) {
|
2008-02-11 09:46:11 +01:00
|
|
|
$this->options['port'] = 21;
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2015-12-15 01:29:26 +01:00
|
|
|
$this->options['port'] = (int) $opt['port'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-11 09:46:11 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $opt['hostname'] ) ) {
|
|
|
|
$this->errors->add( 'empty_hostname', __( 'FTP hostname is required' ) );
|
|
|
|
} else {
|
2008-02-11 09:46:11 +01:00
|
|
|
$this->options['hostname'] = $opt['hostname'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-11 09:46:11 +01:00
|
|
|
|
|
|
|
// Check if the options provided are OK.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $opt['username'] ) ) {
|
|
|
|
$this->errors->add( 'empty_username', __( 'FTP username is required' ) );
|
|
|
|
} else {
|
2008-02-11 09:46:11 +01:00
|
|
|
$this->options['username'] = $opt['username'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-11 09:46:11 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $opt['password'] ) ) {
|
|
|
|
$this->errors->add( 'empty_password', __( 'FTP password is required' ) );
|
|
|
|
} else {
|
2008-02-11 09:46:11 +01:00
|
|
|
$this->options['password'] = $opt['password'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-02-11 09:46:11 +01:00
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:14:14 +02:00
|
|
|
public function connect() {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $this->ftp ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->ftp->setTimeout( FS_CONNECT_TIMEOUT );
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2015-11-18 18:23:29 +01:00
|
|
|
if ( ! $this->ftp->SetServer( $this->options['hostname'], $this->options['port'] ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->errors->add(
|
|
|
|
'connect',
|
2015-11-18 18:23:29 +01:00
|
|
|
/* translators: %s: hostname:port */
|
2017-12-01 00:11:00 +01:00
|
|
|
sprintf(
|
|
|
|
__( 'Failed to connect to FTP Server %s' ),
|
2015-11-18 18:23:29 +01:00
|
|
|
$this->options['hostname'] . ':' . $this->options['port']
|
|
|
|
)
|
|
|
|
);
|
2008-03-01 22:20:23 +01:00
|
|
|
return false;
|
|
|
|
}
|
2009-08-15 14:01:04 +02:00
|
|
|
|
2008-03-01 22:20:23 +01:00
|
|
|
if ( ! $this->ftp->connect() ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->errors->add(
|
|
|
|
'connect',
|
2015-11-18 18:23:29 +01:00
|
|
|
/* translators: %s: hostname:port */
|
2017-12-01 00:11:00 +01:00
|
|
|
sprintf(
|
|
|
|
__( 'Failed to connect to FTP Server %s' ),
|
2015-11-18 18:23:29 +01:00
|
|
|
$this->options['hostname'] . ':' . $this->options['port']
|
|
|
|
)
|
|
|
|
);
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2008-02-11 09:46:11 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
|
2015-11-18 18:23:29 +01:00
|
|
|
if ( ! $this->ftp->login( $this->options['username'], $this->options['password'] ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->errors->add(
|
|
|
|
'auth',
|
2015-11-18 18:23:29 +01:00
|
|
|
/* translators: %s: username */
|
2017-12-01 00:11:00 +01:00
|
|
|
sprintf(
|
|
|
|
__( 'Username/Password incorrect for %s' ),
|
2015-11-18 18:23:29 +01:00
|
|
|
$this->options['username']
|
|
|
|
)
|
|
|
|
);
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-09 04:43:08 +02:00
|
|
|
$this->ftp->SetType( FTP_BINARY );
|
|
|
|
$this->ftp->Passive( true );
|
|
|
|
$this->ftp->setTimeout( FS_TIMEOUT );
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-24 16:22:24 +02:00
|
|
|
* Retrieves the file contents.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Filename.
|
|
|
|
* @return string|false File contents on success, false if no temp file could be opened,
|
|
|
|
* or if the file doesn't exist.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2014-05-19 02:14:14 +02:00
|
|
|
public function get_contents( $file ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $this->exists( $file ) ) {
|
2008-03-06 07:06:13 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-03-06 07:06:13 +01:00
|
|
|
|
2008-05-30 18:14:05 +02:00
|
|
|
$temp = wp_tempnam( $file );
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2016-07-18 21:43:30 +02:00
|
|
|
if ( ! $temphandle = fopen( $temp, 'w+' ) ) {
|
|
|
|
unlink( $temp );
|
2008-03-19 21:36:23 +01:00
|
|
|
return false;
|
2016-07-18 21:43:30 +02:00
|
|
|
}
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2013-09-11 10:27:10 +02:00
|
|
|
mbstring_binary_safe_encoding();
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $this->ftp->fget( $temphandle, $file ) ) {
|
|
|
|
fclose( $temphandle );
|
|
|
|
unlink( $temp );
|
2013-09-11 10:27:10 +02:00
|
|
|
|
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
2013-09-09 04:55:09 +02:00
|
|
|
return ''; // Blank document, File does exist, It's just blank.
|
2008-03-01 22:20:23 +01:00
|
|
|
}
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2013-09-11 10:27:10 +02:00
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
2013-09-09 04:55:09 +02:00
|
|
|
fseek( $temphandle, 0 ); // Skip back to the start of the file being written to
|
2008-03-01 22:20:23 +01:00
|
|
|
$contents = '';
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
while ( ! feof( $temphandle ) ) {
|
|
|
|
$contents .= fread( $temphandle, 8192 );
|
|
|
|
}
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
fclose( $temphandle );
|
|
|
|
unlink( $temp );
|
2008-03-01 22:20:23 +01:00
|
|
|
return $contents;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2015-09-10 03:21:24 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return array
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function get_contents_array( $file ) {
|
|
|
|
return explode( "\n", $this->get_contents( $file ) );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @param string $contents
|
|
|
|
* @param int|bool $mode
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function put_contents( $file, $contents, $mode = false ) {
|
2008-05-30 18:14:05 +02:00
|
|
|
$temp = wp_tempnam( $file );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $temphandle = @fopen( $temp, 'w+' ) ) {
|
|
|
|
unlink( $temp );
|
2008-03-19 21:36:23 +01:00
|
|
|
return false;
|
2008-05-30 18:14:05 +02:00
|
|
|
}
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2013-09-11 10:27:10 +02:00
|
|
|
// The FTP class uses string functions internally during file download/upload
|
|
|
|
mbstring_binary_safe_encoding();
|
|
|
|
|
2013-09-09 04:43:08 +02:00
|
|
|
$bytes_written = fwrite( $temphandle, $contents );
|
|
|
|
if ( false === $bytes_written || $bytes_written != strlen( $contents ) ) {
|
|
|
|
fclose( $temphandle );
|
|
|
|
unlink( $temp );
|
2013-09-11 10:27:10 +02:00
|
|
|
|
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
2013-09-09 04:43:08 +02:00
|
|
|
return false;
|
|
|
|
}
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2013-09-09 04:43:08 +02:00
|
|
|
fseek( $temphandle, 0 ); // Skip back to the start of the file being written to
|
2010-01-14 10:23:53 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$ret = $this->ftp->fput( $file, $temphandle );
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2013-09-11 10:27:10 +02:00
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
fclose( $temphandle );
|
|
|
|
unlink( $temp );
|
2010-01-14 10:23:53 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->chmod( $file, $mode );
|
2010-01-14 10:23:53 +01:00
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
return $ret;
|
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2015-05-29 23:32:24 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-05-19 02:14:14 +02:00
|
|
|
public function cwd() {
|
2008-03-16 10:49:10 +01:00
|
|
|
$cwd = $this->ftp->pwd();
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $cwd ) {
|
|
|
|
$cwd = trailingslashit( $cwd );
|
|
|
|
}
|
2008-03-16 10:49:10 +01:00
|
|
|
return $cwd;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2015-05-29 23:32:24 +02:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function chdir( $file ) {
|
|
|
|
return $this->ftp->chdir( $file );
|
2008-03-06 19:14:58 +01:00
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @param int|bool $mode
|
|
|
|
* @param bool $recursive
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function chmod( $file, $mode = false, $recursive = false ) {
|
2009-08-16 10:34:53 +02:00
|
|
|
if ( ! $mode ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->is_file( $file ) ) {
|
2009-08-16 10:34:53 +02:00
|
|
|
$mode = FS_CHMOD_FILE;
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( $this->is_dir( $file ) ) {
|
2009-08-16 10:34:53 +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-08-16 10:34:53 +02:00
|
|
|
}
|
|
|
|
|
2010-02-07 02:12:29 +01:00
|
|
|
// chmod any sub-objects if recursive.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $recursive && $this->is_dir( $file ) ) {
|
|
|
|
$filelist = $this->dirlist( $file );
|
|
|
|
foreach ( (array) $filelist as $filename => $filemeta ) {
|
|
|
|
$this->chmod( $file . '/' . $filename, $mode, $recursive );
|
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2009-09-15 04:21:00 +02:00
|
|
|
|
2010-02-07 02:12:29 +01:00
|
|
|
// chmod the file or directory
|
2017-12-01 00:11:00 +01:00
|
|
|
return $this->ftp->chmod( $file, $mode );
|
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 string
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function owner( $file ) {
|
|
|
|
$dir = $this->dirlist( $file );
|
|
|
|
return $dir[ $file ]['owner'];
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2015-09-10 03:21:24 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function getchmod( $file ) {
|
|
|
|
$dir = $this->dirlist( $file );
|
|
|
|
return $dir[ $file ]['permsn'];
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2015-09-10 03:21:24 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function group( $file ) {
|
|
|
|
$dir = $this->dirlist( $file );
|
|
|
|
return $dir[ $file ]['group'];
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2015-09-10 03:21:24 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-05-29 22:17:26 +02:00
|
|
|
* @param string $source
|
|
|
|
* @param string $destination
|
|
|
|
* @param bool $overwrite
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param int|bool $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
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$content = $this->get_contents( $source );
|
|
|
|
if ( false === $content ) {
|
2008-03-01 22:20:23 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return $this->put_contents( $destination, $content, $mode );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2015-09-10 03:21:24 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $source
|
|
|
|
* @param string $destination
|
2015-05-29 22:17:26 +02:00
|
|
|
* @param bool $overwrite
|
2014-12-01 01:13:22 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function move( $source, $destination, $overwrite = false ) {
|
|
|
|
return $this->ftp->rename( $source, $destination );
|
2008-02-11 09:46:11 +01:00
|
|
|
}
|
2015-09-10 03:21:24 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
2015-05-29 22:17:26 +02:00
|
|
|
* @param bool $recursive
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param string $type
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function delete( $file, $recursive = false, $type = false ) {
|
|
|
|
if ( empty( $file ) ) {
|
2009-04-19 21:36:28 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
if ( 'f' == $type || $this->is_file( $file ) ) {
|
|
|
|
return $this->ftp->delete( $file );
|
|
|
|
}
|
|
|
|
if ( ! $recursive ) {
|
|
|
|
return $this->ftp->rmdir( $file );
|
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return $this->ftp->mdel( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:14:14 +02:00
|
|
|
public function exists( $file ) {
|
2015-12-15 03:36:28 +01:00
|
|
|
$list = $this->ftp->nlist( $file );
|
2015-03-18 20:22:27 +01:00
|
|
|
|
|
|
|
if ( empty( $list ) && $this->is_dir( $file ) ) {
|
|
|
|
return true; // File is an empty directory.
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return ! empty( $list ); //empty list = no file, so invert.
|
2014-07-17 11:14:16 +02:00
|
|
|
// Return $this->ftp->is_exists($file); has issues with ABOR+426 responses on the ncFTPd server.
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +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 ) {
|
|
|
|
if ( $this->is_dir( $file ) ) {
|
2010-02-07 02:59:30 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
if ( $this->exists( $file ) ) {
|
2010-02-07 02:59:30 +01:00
|
|
|
return true;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-02-07 02:59:30 +01:00
|
|
|
return false;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +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 ) {
|
2008-03-01 22:20:23 +01:00
|
|
|
$cwd = $this->cwd();
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->chdir( $path ) ) {
|
|
|
|
$this->chdir( $cwd );
|
2008-03-01 22:20:23 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +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 ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
2008-03-01 22:20:23 +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 ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
2008-03-01 22:20:23 +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 atime( $file ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
|
|
|
}
|
2008-03-01 22:20:23 +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 $this->ftp->mdtm( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +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 size( $file ) {
|
|
|
|
return $this->ftp->filesize( $file );
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2015-09-10 03:21:24 +02: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 ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $path
|
2015-05-29 22:17:26 +02:00
|
|
|
* @param mixed $chmod
|
|
|
|
* @param mixed $chown
|
|
|
|
* @param mixed $chgrp
|
2014-12-01 01:13:22 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function mkdir( $path, $chmod = false, $chown = false, $chgrp = false ) {
|
|
|
|
$path = untrailingslashit( $path );
|
|
|
|
if ( empty( $path ) ) {
|
2011-10-13 12:43:38 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-10-13 12:43:38 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $this->ftp->mkdir( $path ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
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
|
|
|
}
|
|
|
|
$this->chmod( $path, $chmod );
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-08-19 01:33:24 +02:00
|
|
|
* @param string $path
|
2014-12-01 01:13:22 +01:00
|
|
|
* @param bool $recursive
|
2016-12-28 04:52:42 +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-01 22:20:23 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $path
|
2015-05-29 22:17:26 +02:00
|
|
|
* @param bool $include_hidden
|
|
|
|
* @param bool $recursive
|
2014-12-01 01:13:22 +01:00
|
|
|
* @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
|
|
|
}
|
2008-03-16 10:49:10 +01:00
|
|
|
|
2013-09-11 10:27:10 +02:00
|
|
|
mbstring_binary_safe_encoding();
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$list = $this->ftp->dirlist( $path );
|
2013-09-11 10:27:10 +02:00
|
|
|
if ( empty( $list ) && ! $this->exists( $path ) ) {
|
|
|
|
|
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2013-09-11 10:27:10 +02:00
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
|
|
|
|
$ret = array();
|
2008-03-01 22:20:23 +01:00
|
|
|
foreach ( $list as $struc ) {
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( '.' == $struc['name'] || '..' == $struc['name'] ) {
|
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 ( ! $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 ) {
|
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
|
|
|
|
2008-03-01 22:20:23 +01: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 {
|
2009-09-15 04:21:00 +02:00
|
|
|
$struc['files'] = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2009-09-15 04:21:00 +02:00
|
|
|
|
2012-07-06 13:39:39 +02:00
|
|
|
// Replace symlinks formatted as "source -> target" with just the source name
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $struc['islink'] ) {
|
2012-07-06 13:39:39 +02:00
|
|
|
$struc['name'] = preg_replace( '/(\s*->\s*.*)$/', '', $struc['name'] );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2012-07-06 13:39:39 +02:00
|
|
|
|
2015-06-24 06:49:25 +02:00
|
|
|
// Add the Octal representation of the file permissions
|
|
|
|
$struc['permsn'] = $this->getnumchmodfromh( $struc['perms'] );
|
|
|
|
|
2009-09-15 04:21:00 +02:00
|
|
|
$ret[ $struc['name'] ] = $struc;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2013-09-11 10:27:10 +02:00
|
|
|
|
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
return $ret;
|
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2015-05-29 23:32:24 +02:00
|
|
|
/**
|
|
|
|
*/
|
2014-05-19 02:14:14 +02:00
|
|
|
public function __destruct() {
|
2008-02-20 01:12:48 +01:00
|
|
|
$this->ftp->quit();
|
|
|
|
}
|
|
|
|
}
|