2008-02-20 01:12:48 +01:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* WordPress FTP Filesystem.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Filesystem
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WordPress Filesystem Class for implementing FTP.
|
|
|
|
*
|
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
|
|
|
*/
|
|
|
|
class WP_Filesystem_FTPext extends WP_Filesystem_Base {
|
2014-05-19 02:12:15 +02:00
|
|
|
public $link;
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @param array $opt
|
|
|
|
*/
|
|
|
|
public function __construct( $opt = '' ) {
|
2008-05-29 19:29:32 +02:00
|
|
|
$this->method = 'ftpext';
|
2008-02-11 06:45:54 +01:00
|
|
|
$this->errors = new WP_Error();
|
2008-02-20 01:12:48 +01:00
|
|
|
|
2013-09-09 04:55:09 +02:00
|
|
|
// Check if possible to use ftp functions.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! extension_loaded( 'ftp' ) ) {
|
|
|
|
$this->errors->add( 'no_ftp_ext', __( 'The ftp PHP extension is not available' ) );
|
2015-01-10 07:13:22 +01:00
|
|
|
return;
|
2008-02-11 06:45:54 +01:00
|
|
|
}
|
|
|
|
|
2013-09-09 04:55:09 +02:00
|
|
|
// This Class uses the timeout on a per-connection basis, Others use it on a per-action basis.
|
2009-08-15 14:01:04 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! defined( 'FS_TIMEOUT' ) ) {
|
|
|
|
define( 'FS_TIMEOUT', 240 );
|
|
|
|
}
|
2009-08-15 14:01:04 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $opt['port'] ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
$this->options['port'] = 21;
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2008-02-20 01:12:48 +01:00
|
|
|
$this->options['port'] = $opt['port'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +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-20 01:12:48 +01:00
|
|
|
$this->options['hostname'] = $opt['hostname'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +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-20 01:12:48 +01:00
|
|
|
$this->options['username'] = $opt['username'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +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-20 01:12:48 +01:00
|
|
|
$this->options['password'] = $opt['password'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2008-09-05 07:35:58 +02:00
|
|
|
$this->options['ssl'] = false;
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $opt['connection_type'] ) && 'ftps' == $opt['connection_type'] ) {
|
2009-05-30 19:14:07 +02:00
|
|
|
$this->options['ssl'] = true;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-19 02:12:15 +02:00
|
|
|
public function connect() {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $this->options['ssl'] ) && $this->options['ssl'] && function_exists( 'ftp_ssl_connect' ) ) {
|
|
|
|
$this->link = @ftp_ssl_connect( $this->options['hostname'], $this->options['port'], FS_CONNECT_TIMEOUT );
|
|
|
|
} else {
|
|
|
|
$this->link = @ftp_connect( $this->options['hostname'], $this->options['port'], FS_CONNECT_TIMEOUT );
|
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
|
2008-02-11 06:45:54 +01:00
|
|
|
if ( ! $this->link ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->errors->add(
|
|
|
|
'connect',
|
2015-11-18 18:22:27 +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:22:27 +01:00
|
|
|
$this->options['hostname'] . ':' . $this->options['port']
|
|
|
|
)
|
|
|
|
);
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2008-02-11 06:45:54 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! @ftp_login( $this->link, $this->options['username'], $this->options['password'] ) ) {
|
|
|
|
$this->errors->add(
|
|
|
|
'auth',
|
2015-11-18 18:22:27 +01:00
|
|
|
/* translators: %s: username */
|
2017-12-01 00:11:00 +01:00
|
|
|
sprintf(
|
|
|
|
__( 'Username/Password incorrect for %s' ),
|
2015-11-18 18:22:27 +01:00
|
|
|
$this->options['username']
|
|
|
|
)
|
|
|
|
);
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
|
|
|
}
|
2008-12-09 19:03:31 +01:00
|
|
|
|
2013-09-09 04:55:09 +02:00
|
|
|
// Set the Connection to use Passive FTP
|
2008-12-09 19:03:31 +01:00
|
|
|
@ftp_pasv( $this->link, true );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( @ftp_get_option( $this->link, FTP_TIMEOUT_SEC ) < FS_TIMEOUT ) {
|
|
|
|
@ftp_set_option( $this->link, FTP_TIMEOUT_SEC, FS_TIMEOUT );
|
|
|
|
}
|
2008-12-09 19:03:31 +01:00
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2015-09-24 16:11:26 +02:00
|
|
|
* Retrieves the file contents.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2015-09-24 16:11:26 +02:00
|
|
|
* @param string $file Filename.
|
|
|
|
* @return string|false File contents on success, false if no temp file could be opened,
|
|
|
|
* or if the file couldn't be retrieved.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2014-05-19 02:12:15 +02:00
|
|
|
public function get_contents( $file ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$tempfile = wp_tempnam( $file );
|
|
|
|
$temp = fopen( $tempfile, 'w+' );
|
2010-04-06 13:20:51 +02:00
|
|
|
|
2015-12-06 18:07:25 +01:00
|
|
|
if ( ! $temp ) {
|
|
|
|
unlink( $tempfile );
|
2008-03-19 21:36:23 +01:00
|
|
|
return false;
|
2015-12-06 18:07:25 +01:00
|
|
|
}
|
2016-07-18 21:43:30 +02:00
|
|
|
|
2015-12-06 18:07:25 +01:00
|
|
|
if ( ! @ftp_fget( $this->link, $temp, $file, FTP_BINARY ) ) {
|
|
|
|
fclose( $temp );
|
|
|
|
unlink( $tempfile );
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2015-12-06 18:07:25 +01:00
|
|
|
}
|
2016-07-18 21:43:30 +02:00
|
|
|
|
2013-09-09 04:55:09 +02:00
|
|
|
fseek( $temp, 0 ); // Skip back to the start of the file being written to
|
2008-02-20 01:12:48 +01:00
|
|
|
$contents = '';
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
while ( ! feof( $temp ) ) {
|
|
|
|
$contents .= fread( $temp, 8192 );
|
|
|
|
}
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
fclose( $temp );
|
|
|
|
unlink( $tempfile );
|
2008-02-20 01:12:48 +01:00
|
|
|
return $contents;
|
|
|
|
}
|
2013-09-09 04:55:09 +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
|
|
|
}
|
2010-01-15 23:11:12 +01:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @param string $contents
|
2014-12-01 03:17:21 +01:00
|
|
|
* @param bool|int $mode
|
2014-12-01 01:13:22 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function put_contents( $file, $contents, $mode = false ) {
|
|
|
|
$tempfile = wp_tempnam( $file );
|
|
|
|
$temp = fopen( $tempfile, 'wb+' );
|
2016-07-18 21:43:30 +02:00
|
|
|
|
|
|
|
if ( ! $temp ) {
|
|
|
|
unlink( $tempfile );
|
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
|
|
|
$data_length = strlen( $contents );
|
2013-09-09 04:43:08 +02:00
|
|
|
$bytes_written = fwrite( $temp, $contents );
|
2013-09-11 10:27:10 +02:00
|
|
|
|
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
|
|
|
if ( $data_length !== $bytes_written ) {
|
2013-09-09 04:43:08 +02:00
|
|
|
fclose( $temp );
|
|
|
|
unlink( $tempfile );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
fseek( $temp, 0 ); // Skip back to the start of the file being written to
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2013-09-09 04:43:08 +02:00
|
|
|
$ret = @ftp_fput( $this->link, $file, $temp, FTP_BINARY );
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
fclose( $temp );
|
|
|
|
unlink( $tempfile );
|
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;
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-05-19 02:12:15 +02:00
|
|
|
public function cwd() {
|
2017-12-01 00:11:00 +01:00
|
|
|
$cwd = @ftp_pwd( $this->link );
|
|
|
|
if ( $cwd ) {
|
|
|
|
$cwd = trailingslashit( $cwd );
|
|
|
|
}
|
2008-03-16 10:49:10 +01:00
|
|
|
return $cwd;
|
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 $dir
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function chdir( $dir ) {
|
|
|
|
return @ftp_chdir( $this->link, $dir );
|
2008-03-06 07:06:13 +01:00
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
* @param int $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-11 06:45:54 +01:00
|
|
|
}
|
2010-02-07 02:12:29 +01:00
|
|
|
|
|
|
|
// chmod the file or directory
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! function_exists( 'ftp_chmod' ) ) {
|
|
|
|
return (bool) @ftp_site( $this->link, sprintf( 'CHMOD %o %s', $mode, $file ) );
|
|
|
|
}
|
|
|
|
return (bool) @ftp_chmod( $this->link, $mode, $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 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
|
|
|
}
|
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
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $source
|
|
|
|
* @param string $destination
|
|
|
|
* @param bool $overwrite
|
|
|
|
* @param string|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
|
|
|
}
|
|
|
|
$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
|
|
|
}
|
|
|
|
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
|
|
|
|
* @param bool $overwrite
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function move( $source, $destination, $overwrite = false ) {
|
|
|
|
return ftp_rename( $this->link, $source, $destination );
|
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 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 ) ) {
|
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 @ftp_delete( $this->link, $file );
|
|
|
|
}
|
|
|
|
if ( ! $recursive ) {
|
|
|
|
return @ftp_rmdir( $this->link, $file );
|
|
|
|
}
|
|
|
|
|
|
|
|
$filelist = $this->dirlist( trailingslashit( $file ) );
|
|
|
|
if ( ! empty( $filelist ) ) {
|
|
|
|
foreach ( $filelist as $delete_file ) {
|
|
|
|
$this->delete( trailingslashit( $file ) . $delete_file['name'], $recursive, $delete_file['type'] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return @ftp_rmdir( $this->link, $file );
|
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
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function exists( $file ) {
|
|
|
|
$list = @ftp_nlist( $this->link, $file );
|
2015-03-18 20:22:27 +01:00
|
|
|
|
2015-12-15 03:36:28 +01:00
|
|
|
if ( empty( $list ) && $this->is_dir( $file ) ) {
|
|
|
|
return true; // File is an empty directory.
|
2015-03-18 20:22:27 +01:00
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return ! empty( $list ); //empty list = no file, so invert.
|
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 bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function is_file( $file ) {
|
|
|
|
return $this->exists( $file ) && ! $this->is_dir( $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 $path
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function is_dir( $path ) {
|
|
|
|
$cwd = $this->cwd();
|
|
|
|
$result = @ftp_chdir( $this->link, trailingslashit( $path ) );
|
2009-08-16 10:34:53 +02:00
|
|
|
if ( $result && $path == $this->cwd() || $this->cwd() != $cwd ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
@ftp_chdir( $this->link, $cwd );
|
2008-02-11 06:45:54 +01:00
|
|
|
return true;
|
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
|
|
|
}
|
2013-09-09 04:55:09 +02: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;
|
|
|
|
}
|
2015-09-10 03:21:24 +02: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;
|
|
|
|
}
|
2015-09-10 03:21:24 +02: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;
|
|
|
|
}
|
2015-09-10 03:21:24 +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 mtime( $file ) {
|
|
|
|
return ftp_mdtm( $this->link, $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
|
|
|
|
* @return int
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function size( $file ) {
|
|
|
|
return ftp_size( $this->link, $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
|
|
|
|
* @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;
|
|
|
|
}
|
2013-09-09 04:55:09 +02: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 ) {
|
|
|
|
$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 ( ! @ftp_mkdir( $this->link, $path ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
$this->chmod( $path, $chmod );
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param bool $recursive
|
|
|
|
* @return bool
|
|
|
|
*/
|
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
|
|
|
/**
|
|
|
|
* @staticvar bool $is_windows
|
|
|
|
* @param string $line
|
2015-06-24 06:49:25 +02:00
|
|
|
* @return array
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function parselisting( $line ) {
|
2015-05-29 17:43:29 +02:00
|
|
|
static $is_windows = null;
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_null( $is_windows ) ) {
|
|
|
|
$is_windows = stripos( ftp_systype( $this->link ), 'win' ) !== false;
|
|
|
|
}
|
2009-04-19 21:36:28 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $is_windows && preg_match( '/([0-9]{2})-([0-9]{2})-([0-9]{2}) +([0-9]{2}):([0-9]{2})(AM|PM) +([0-9]+|<DIR>) +(.+)/', $line, $lucifer ) ) {
|
2008-03-01 22:20:23 +01:00
|
|
|
$b = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $lucifer[3] < 70 ) {
|
|
|
|
$lucifer[3] += 2000;
|
|
|
|
} else {
|
2010-02-07 02:31:40 +01:00
|
|
|
$lucifer[3] += 1900; // 4digit year fix
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
$b['isdir'] = ( $lucifer[7] == '<DIR>' );
|
|
|
|
if ( $b['isdir'] ) {
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['type'] = 'd';
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['type'] = 'f';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
$b['size'] = $lucifer[7];
|
|
|
|
$b['month'] = $lucifer[1];
|
|
|
|
$b['day'] = $lucifer[2];
|
|
|
|
$b['year'] = $lucifer[3];
|
|
|
|
$b['hour'] = $lucifer[4];
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['minute'] = $lucifer[5];
|
2017-12-01 00:11:00 +01:00
|
|
|
$b['time'] = @mktime( $lucifer[4] + ( strcasecmp( $lucifer[6], 'PM' ) == 0 ? 12 : 0 ), $lucifer[5], 0, $lucifer[1], $lucifer[2], $lucifer[3] );
|
|
|
|
$b['am/pm'] = $lucifer[6];
|
|
|
|
$b['name'] = $lucifer[8];
|
|
|
|
} elseif ( ! $is_windows && $lucifer = preg_split( '/[ ]/', $line, 9, PREG_SPLIT_NO_EMPTY ) ) {
|
2008-03-01 22:20:23 +01:00
|
|
|
//echo $line."\n";
|
2017-12-01 00:11:00 +01:00
|
|
|
$lcount = count( $lucifer );
|
|
|
|
if ( $lcount < 8 ) {
|
2010-02-07 02:31:40 +01:00
|
|
|
return '';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
$b = array();
|
|
|
|
$b['isdir'] = $lucifer[0]{0} === 'd';
|
2010-02-07 02:59:30 +01:00
|
|
|
$b['islink'] = $lucifer[0]{0} === 'l';
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $b['isdir'] ) {
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['type'] = 'd';
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( $b['islink'] ) {
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['type'] = 'l';
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['type'] = 'f';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
$b['perms'] = $lucifer[0];
|
2015-06-24 06:49:25 +02:00
|
|
|
$b['permsn'] = $this->getnumchmodfromh( $b['perms'] );
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['number'] = $lucifer[1];
|
2017-12-01 00:11:00 +01:00
|
|
|
$b['owner'] = $lucifer[2];
|
|
|
|
$b['group'] = $lucifer[3];
|
|
|
|
$b['size'] = $lucifer[4];
|
2010-02-07 02:31:40 +01:00
|
|
|
if ( $lcount == 8 ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
sscanf( $lucifer[5], '%d-%d-%d', $b['year'], $b['month'], $b['day'] );
|
|
|
|
sscanf( $lucifer[6], '%d:%d', $b['hour'], $b['minute'] );
|
|
|
|
$b['time'] = @mktime( $b['hour'], $b['minute'], 0, $b['month'], $b['day'], $b['year'] );
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['name'] = $lucifer[7];
|
|
|
|
} else {
|
|
|
|
$b['month'] = $lucifer[5];
|
2017-12-01 00:11:00 +01:00
|
|
|
$b['day'] = $lucifer[6];
|
|
|
|
if ( preg_match( '/([0-9]{2}):([0-9]{2})/', $lucifer[7], $l2 ) ) {
|
|
|
|
$b['year'] = date( 'Y' );
|
|
|
|
$b['hour'] = $l2[1];
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['minute'] = $l2[2];
|
|
|
|
} else {
|
2017-12-01 00:11:00 +01:00
|
|
|
$b['year'] = $lucifer[7];
|
|
|
|
$b['hour'] = 0;
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['minute'] = 0;
|
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
$b['time'] = strtotime( sprintf( '%d %s %d %02d:%02d', $b['day'], $b['month'], $b['year'], $b['hour'], $b['minute'] ) );
|
2008-03-01 22:20:23 +01:00
|
|
|
$b['name'] = $lucifer[8];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-06 13:39:39 +02:00
|
|
|
// Replace symlinks formatted as "source -> target" with just the source name
|
2015-10-31 21:17:24 +01:00
|
|
|
if ( isset( $b['islink'] ) && $b['islink'] ) {
|
2012-07-06 13:39:39 +02:00
|
|
|
$b['name'] = preg_replace( '/(\s*->\s*.*)$/', '', $b['name'] );
|
2015-10-31 21:17:24 +01:00
|
|
|
}
|
2012-07-06 13:39:39 +02:00
|
|
|
|
2008-03-01 22:20:23 +01:00
|
|
|
return $b;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2008-03-16 10:49:10 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$pwd = @ftp_pwd( $this->link );
|
|
|
|
if ( ! @ftp_chdir( $this->link, $path ) ) { // Cant change to folder = folder doesn't exist
|
2010-04-17 06:00:59 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
$list = @ftp_rawlist( $this->link, '-a', false );
|
|
|
|
@ftp_chdir( $this->link, $pwd );
|
2008-03-16 10:49:10 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $list ) ) { // Empty array = non-existent folder (real folder will show . at least)
|
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
|
|
|
|
2008-03-01 22:20:23 +01:00
|
|
|
$dirlist = array();
|
|
|
|
foreach ( $list as $k => $v ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$entry = $this->parselisting( $v );
|
|
|
|
if ( empty( $entry ) ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( '.' == $entry['name'] || '..' == $entry['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 && '.' == $entry['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 && $entry['name'] != $limit_file ) {
|
2008-02-20 01:12:48 +01:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
|
2008-05-29 19:29:32 +02:00
|
|
|
$dirlist[ $entry['name'] ] = $entry;
|
2008-03-01 22:20:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$ret = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( (array) $dirlist as $struc ) {
|
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
|
|
|
|
|
|
|
$ret[ $struc['name'] ] = $struc;
|
2008-02-11 06:45:54 +01:00
|
|
|
}
|
2008-02-19 09:22:42 +01:00
|
|
|
return $ret;
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2015-05-29 23:32:24 +02:00
|
|
|
/**
|
|
|
|
*/
|
2014-05-19 02:12:15 +02:00
|
|
|
public function __destruct() {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->link ) {
|
|
|
|
ftp_close( $this->link );
|
|
|
|
}
|
2008-02-20 01:12:48 +01:00
|
|
|
}
|
2008-02-11 06:45:54 +01:00
|
|
|
}
|