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 {
|
2019-04-17 06:13:51 +02:00
|
|
|
|
2015-01-16 23:44:25 +01:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* @since 2.5.0
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Constructor.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
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.
|
Coding Standards: Replace `include_once` with `require_once` for required files.
Per [https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#writing-include-require-statements WordPress PHP coding standards], it is ''strongly recommended'' to use `require[_once]` for unconditional includes. When using `include[_once]`, PHP will throw a warning when the file is not found but will continue execution, which will almost certainly lead to other errors/warnings/notices being thrown if your application depends on the file loaded, potentially leading to security leaks. For that reason, `require[_once]` is generally the better choice as it will throw a `Fatal Error` if the file cannot be found.
Follow-up to [1674], [1812], [1964], [6779], [8540], [10521], [11005], [11911], [16065], [16149], [25421], [25466], [25823], [37714], [42981], [45448], [47198], [54276], [55633].
Props kausaralm, SergeyBiryukov.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@55641
git-svn-id: http://core.svn.wordpress.org/trunk@55153 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-09 13:57:22 +02:00
|
|
|
if ( ! require_once ABSPATH . 'wp-admin/includes/class-ftp.php' ) {
|
2016-08-31 18:31:29 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Connects filesystem.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @return bool True on success, false on failure.
|
2015-05-29 22:17:26 +02:00
|
|
|
*/
|
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',
|
|
|
|
sprintf(
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
/* translators: %s: hostname:port */
|
2017-12-01 00:11:00 +01:00
|
|
|
__( 'Failed to connect to FTP Server %s' ),
|
2015-11-18 18:23:29 +01:00
|
|
|
$this->options['hostname'] . ':' . $this->options['port']
|
|
|
|
)
|
|
|
|
);
|
2020-06-19 12:36:12 +02:00
|
|
|
|
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',
|
|
|
|
sprintf(
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
/* translators: %s: hostname:port */
|
2017-12-01 00:11:00 +01:00
|
|
|
__( 'Failed to connect to FTP Server %s' ),
|
2015-11-18 18:23:29 +01:00
|
|
|
$this->options['hostname'] . ':' . $this->options['port']
|
|
|
|
)
|
|
|
|
);
|
2020-06-19 12:36:12 +02:00
|
|
|
|
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',
|
|
|
|
sprintf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Username. */
|
2017-12-01 00:11:00 +01:00
|
|
|
__( 'Username/Password incorrect for %s' ),
|
2015-11-18 18:23:29 +01:00
|
|
|
$this->options['username']
|
|
|
|
)
|
|
|
|
);
|
2020-06-19 12:36:12 +02:00
|
|
|
|
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 );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2008-02-20 01:12:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Reads entire file into a string.
|
2015-09-24 16:22:24 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @param string $file Name of the file to read.
|
|
|
|
* @return string|false Read data on success, false if no temporary file could be opened,
|
|
|
|
* or if the file couldn't be retrieved.
|
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
|
|
|
|
2020-06-19 12:36:12 +02:00
|
|
|
$tempfile = wp_tempnam( $file );
|
|
|
|
$temphandle = fopen( $tempfile, 'w+' );
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2019-07-01 14:52:01 +02:00
|
|
|
if ( ! $temphandle ) {
|
2020-06-19 12:36:12 +02:00
|
|
|
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
|
|
|
if ( ! $this->ftp->fget( $temphandle, $file ) ) {
|
|
|
|
fclose( $temphandle );
|
2020-06-19 12:36:12 +02:00
|
|
|
unlink( $tempfile );
|
2013-09-11 10:27:10 +02:00
|
|
|
|
|
|
|
reset_mbstring_encoding();
|
|
|
|
|
2020-01-29 01:45:18 +01: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();
|
|
|
|
|
2020-01-29 01:45:18 +01: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 ) ) {
|
2019-04-17 06:13:51 +02:00
|
|
|
$contents .= fread( $temphandle, 8 * KB_IN_BYTES );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-09-26 08:53:57 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
fclose( $temphandle );
|
2020-06-19 12:36:12 +02:00
|
|
|
unlink( $tempfile );
|
|
|
|
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Reads entire file into an array.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @return array|false File contents in an array on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Writes a string to a file.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Remote path to the file where to write the data.
|
|
|
|
* @param string $contents The data to write.
|
|
|
|
* @param int|false $mode Optional. The file permissions as octal number, usually 0644.
|
|
|
|
* Default false.
|
|
|
|
* @return bool True on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function put_contents( $file, $contents, $mode = false ) {
|
2020-06-19 12:36:12 +02:00
|
|
|
$tempfile = wp_tempnam( $file );
|
|
|
|
$temphandle = @fopen( $tempfile, 'w+' );
|
|
|
|
|
2019-07-01 14:52:01 +02:00
|
|
|
if ( ! $temphandle ) {
|
2020-06-19 12:36:12 +02:00
|
|
|
unlink( $tempfile );
|
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
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// The FTP class uses string functions internally during file download/upload.
|
2013-09-11 10:27:10 +02:00
|
|
|
mbstring_binary_safe_encoding();
|
|
|
|
|
2013-09-09 04:43:08 +02:00
|
|
|
$bytes_written = fwrite( $temphandle, $contents );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2021-04-05 12:38:07 +02:00
|
|
|
if ( false === $bytes_written || strlen( $contents ) !== $bytes_written ) {
|
2013-09-09 04:43:08 +02:00
|
|
|
fclose( $temphandle );
|
2020-06-19 12:36:12 +02:00
|
|
|
unlink( $tempfile );
|
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
|
|
|
|
2020-01-29 01:45:18 +01: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 );
|
2020-06-19 12:36:12 +02:00
|
|
|
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;
|
|
|
|
}
|
2008-03-01 22:20:23 +01:00
|
|
|
|
2015-05-29 23:32:24 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the current working directory.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @return string|false The current working directory on success, false on failure.
|
2015-05-29 23:32:24 +02:00
|
|
|
*/
|
2014-05-19 02:14:14 +02:00
|
|
|
public function cwd() {
|
2008-03-16 10:49:10 +01:00
|
|
|
$cwd = $this->ftp->pwd();
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $cwd ) {
|
|
|
|
$cwd = trailingslashit( $cwd );
|
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Changes current directory.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $dir The new current directory.
|
|
|
|
* @return bool True on success, false on failure.
|
2015-05-29 23:32:24 +02:00
|
|
|
*/
|
2019-04-17 06:13:51 +02:00
|
|
|
public function chdir( $dir ) {
|
|
|
|
return $this->ftp->chdir( $dir );
|
2008-03-06 19:14:58 +01:00
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2014-12-01 01:13:22 +01:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Changes filesystem permissions.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @param int|false $mode Optional. The permissions as octal number, usually 0644 for files,
|
|
|
|
* 0755 for directories. Default false.
|
2019-11-08 23:56:02 +01:00
|
|
|
* @param bool $recursive Optional. If set to true, changes file permissions recursively.
|
2019-04-17 06:13:51 +02:00
|
|
|
* Default false.
|
|
|
|
* @return bool True on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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 );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
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
|
|
|
|
2020-01-29 01:45:18 +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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the file owner.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @return string|false Username of the owner on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function owner( $file ) {
|
|
|
|
$dir = $this->dirlist( $file );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the permissions of the specified file or filepath in their octal format.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @return string Mode of the file (the last 3 digits).
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function getchmod( $file ) {
|
|
|
|
$dir = $this->dirlist( $file );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the file's group.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @return string|false The group on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function group( $file ) {
|
|
|
|
$dir = $this->dirlist( $file );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Copies a file.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $source Path to the source file.
|
|
|
|
* @param string $destination Path to the destination file.
|
|
|
|
* @param bool $overwrite Optional. Whether to overwrite the destination file if it exists.
|
|
|
|
* Default false.
|
|
|
|
* @param int|false $mode Optional. The permissions as octal number, usually 0644 for files,
|
|
|
|
* 0755 for dirs. Default false.
|
|
|
|
* @return bool True on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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 );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
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
|
|
|
/**
|
2023-02-03 02:59:15 +01:00
|
|
|
* Moves a file or directory.
|
|
|
|
*
|
|
|
|
* After moving files or directories, OPcache will need to be invalidated.
|
|
|
|
*
|
|
|
|
* If moving a directory fails, `copy_dir()` can be used for a recursive copy.
|
|
|
|
*
|
|
|
|
* Use `move_dir()` for moving directories with OPcache invalidation and a
|
|
|
|
* fallback to `copy_dir()`.
|
2019-04-17 06:13:51 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2023-02-03 02:59:15 +01:00
|
|
|
* @param string $source Path to the source file or directory.
|
|
|
|
* @param string $destination Path to the destination file or directory.
|
|
|
|
* @param bool $overwrite Optional. Whether to overwrite the destination if it exists.
|
2019-04-17 06:13:51 +02:00
|
|
|
* Default false.
|
|
|
|
* @return bool True on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Deletes a file or directory.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to the file or directory.
|
2019-11-08 23:56:02 +01:00
|
|
|
* @param bool $recursive Optional. If set to true, deletes files and folders recursively.
|
2019-04-17 06:13:51 +02:00
|
|
|
* Default false.
|
|
|
|
* @param string|false $type Type of resource. 'f' for file, 'd' for directory.
|
|
|
|
* Default false.
|
|
|
|
* @return bool True on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'f' === $type || $this->is_file( $file ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
return $this->ftp->delete( $file );
|
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if a file or directory exists.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
Filesystem API: Return `false` for empty paths in FTP `::exists()` methods.
When `ftp_nlist()` receives an empty path, it checks the current working directory and may return `true`.
This affects:
* `WP_Filesystem_FTPext::exists()`
* `WP_Filesystem_ftpsockets::exists()`
As the purpose of the API is to provide a consistent interface for various filesystem implementations, this commit updates the affected methods to returns `false` when an empty path is provided, bringing consistency with the other filesystem abstraction classes, specifically `WP_Filesystem_Direct` and `WP_Filesystem_SSH2`.
Follow-up to [6779], [11821], [25274], [31815].
Props mkox, costdev, Zdrobau, dd32, pbiron, azaozz, mukesh27, SergeyBiryukov.
Fixes #33058.
Built from https://develop.svn.wordpress.org/trunk@55556
git-svn-id: http://core.svn.wordpress.org/trunk@55068 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-03-16 17:14:22 +01:00
|
|
|
* @since 6.3.0 Returns false for an empty path.
|
2019-04-17 06:13:51 +02:00
|
|
|
*
|
2022-08-09 13:33:10 +02:00
|
|
|
* @param string $path Path to file or directory.
|
|
|
|
* @return bool Whether $path exists or not.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2022-08-09 13:33:10 +02:00
|
|
|
public function exists( $path ) {
|
Filesystem API: Return `false` for empty paths in FTP `::exists()` methods.
When `ftp_nlist()` receives an empty path, it checks the current working directory and may return `true`.
This affects:
* `WP_Filesystem_FTPext::exists()`
* `WP_Filesystem_ftpsockets::exists()`
As the purpose of the API is to provide a consistent interface for various filesystem implementations, this commit updates the affected methods to returns `false` when an empty path is provided, bringing consistency with the other filesystem abstraction classes, specifically `WP_Filesystem_Direct` and `WP_Filesystem_SSH2`.
Follow-up to [6779], [11821], [25274], [31815].
Props mkox, costdev, Zdrobau, dd32, pbiron, azaozz, mukesh27, SergeyBiryukov.
Fixes #33058.
Built from https://develop.svn.wordpress.org/trunk@55556
git-svn-id: http://core.svn.wordpress.org/trunk@55068 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-03-16 17:14:22 +01:00
|
|
|
/*
|
|
|
|
* Check for empty path. If ftp::nlist() receives an empty path,
|
|
|
|
* it checks the current working directory and may return true.
|
|
|
|
*
|
|
|
|
* See https://core.trac.wordpress.org/ticket/33058.
|
|
|
|
*/
|
|
|
|
if ( '' === $path ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
Filesystem: Return FTP/FTP Sockets `exists()` methods to a previous state.
This partially reverts [53860] and [53862], which refactored the `exists()` method to rely on `ftp_rawlist()` instead of `ftp_nlist()`.
[53860] makes a similar attempt to the ones made in [33648] and [34733] (which were also reverted in [35944]). Being compliant with the specifications while continuing to work without issue for all FTP servers continues seem impossible. These little ghosts are the ones we’re scared of the most.
Props jsh4, afragen, costdev, pkolenbr, SergeyBiryukov, dd32, peterwilsoncc, gamecreature, desrosj.
Fixes #56966.
See #51170, #28013.
Built from https://develop.svn.wordpress.org/trunk@54815
git-svn-id: http://core.svn.wordpress.org/trunk@54367 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-11-11 16:55:13 +01:00
|
|
|
$list = $this->ftp->nlist( $path );
|
|
|
|
|
|
|
|
if ( empty( $list ) && $this->is_dir( $path ) ) {
|
|
|
|
return true; // File is an empty directory.
|
2015-03-18 20:22:27 +01:00
|
|
|
}
|
|
|
|
|
Filesystem: Return FTP/FTP Sockets `exists()` methods to a previous state.
This partially reverts [53860] and [53862], which refactored the `exists()` method to rely on `ftp_rawlist()` instead of `ftp_nlist()`.
[53860] makes a similar attempt to the ones made in [33648] and [34733] (which were also reverted in [35944]). Being compliant with the specifications while continuing to work without issue for all FTP servers continues seem impossible. These little ghosts are the ones we’re scared of the most.
Props jsh4, afragen, costdev, pkolenbr, SergeyBiryukov, dd32, peterwilsoncc, gamecreature, desrosj.
Fixes #56966.
See #51170, #28013.
Built from https://develop.svn.wordpress.org/trunk@54815
git-svn-id: http://core.svn.wordpress.org/trunk@54367 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-11-11 16:55:13 +01:00
|
|
|
return ! empty( $list ); // Empty list = no file, so invert.
|
|
|
|
// 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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if resource is a file.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file File path.
|
|
|
|
* @return bool Whether $file is a file.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
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
|
|
|
}
|
2020-06-19 12:36:12 +02: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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if resource is a directory.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $path Directory path.
|
|
|
|
* @return bool Whether $path is a directory.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function is_dir( $path ) {
|
2008-03-01 22:20:23 +01:00
|
|
|
$cwd = $this->cwd();
|
2020-06-19 12:36:12 +02:00
|
|
|
|
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;
|
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2008-03-01 22:20:23 +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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if a file is readable.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to file.
|
|
|
|
* @return bool Whether $file is readable.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if a file or directory is writable.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2022-08-09 13:33:10 +02:00
|
|
|
* @param string $path Path to file or directory.
|
|
|
|
* @return bool Whether $path is writable.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2022-08-09 13:33:10 +02:00
|
|
|
public function is_writable( $path ) {
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the file's last access time.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to file.
|
|
|
|
* @return int|false Unix timestamp representing last access time, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the file modification time.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to file.
|
|
|
|
* @return int|false Unix timestamp representing modification time, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the file size (in bytes).
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to file.
|
|
|
|
* @return int|false Size of the file in bytes on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Sets the access and modification times of a file.
|
|
|
|
*
|
|
|
|
* Note: If $file doesn't exist, it will be created.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $file Path to file.
|
|
|
|
* @param int $time Optional. Modified time to set for file.
|
|
|
|
* Default 0.
|
|
|
|
* @param int $atime Optional. Access time to set for file.
|
|
|
|
* Default 0.
|
|
|
|
* @return bool True on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Creates a directory.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2021-01-05 18:16:11 +01:00
|
|
|
* @param string $path Path for new directory.
|
|
|
|
* @param int|false $chmod Optional. The permissions as octal number (or false to skip chmod).
|
|
|
|
* Default false.
|
|
|
|
* @param string|int|false $chown Optional. A user name or number (or false to skip chown).
|
|
|
|
* Default false.
|
|
|
|
* @param string|int|false $chgrp Optional. A group name or number (or false to skip chgrp).
|
|
|
|
* Default false.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return bool True on success, false on failure.
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function mkdir( $path, $chmod = false, $chown = false, $chgrp = false ) {
|
|
|
|
$path = untrailingslashit( $path );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
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
|
|
|
}
|
2020-06-19 12:36:12 +02: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
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->chmod( $path, $chmod );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Deletes a directory.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $path Path to directory.
|
|
|
|
* @param bool $recursive Optional. Whether to recursively remove files/directories.
|
|
|
|
* Default false.
|
|
|
|
* @return bool True on success, false on failure.
|
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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets details for files in a directory or a specific file.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
|
|
|
* @param string $path Path to directory or file.
|
|
|
|
* @param bool $include_hidden Optional. Whether to include details of hidden ("." prefixed) files.
|
|
|
|
* Default true.
|
|
|
|
* @param bool $recursive Optional. Whether to recursively include file details in nested directories.
|
|
|
|
* Default false.
|
|
|
|
* @return array|false {
|
2023-05-03 23:30:19 +02:00
|
|
|
* Array of arrays containing file information. False if unable to list directory contents.
|
|
|
|
*
|
2024-02-16 22:47:12 +01:00
|
|
|
* @type array ...$0 {
|
2023-05-03 23:30:19 +02:00
|
|
|
* Array of file information. Note that some elements may not be available on all filesystems.
|
|
|
|
*
|
|
|
|
* @type string $name Name of the file or directory.
|
|
|
|
* @type string $perms *nix representation of permissions.
|
|
|
|
* @type string $permsn Octal representation of permissions.
|
|
|
|
* @type int|string|false $number File number. May be a numeric string. False if not available.
|
|
|
|
* @type string|false $owner Owner name or ID, or false if not available.
|
|
|
|
* @type string|false $group File permissions group, or false if not available.
|
|
|
|
* @type int|string|false $size Size of file in bytes. May be a numeric string.
|
|
|
|
* False if not available.
|
|
|
|
* @type int|string|false $lastmodunix Last modified unix timestamp. May be a numeric string.
|
|
|
|
* False if not available.
|
|
|
|
* @type string|false $lastmod Last modified month (3 letters) and day (without leading 0), or
|
|
|
|
* false if not available.
|
|
|
|
* @type string|false $time Last modified time, or false if not available.
|
|
|
|
* @type string $type Type of resource. 'f' for file, 'd' for directory, 'l' for link.
|
|
|
|
* @type array|false $files If a directory and `$recursive` is true, contains another array of
|
|
|
|
* files. False if unable to list directory contents.
|
|
|
|
* }
|
2019-04-17 06:13:51 +02:00
|
|
|
* }
|
2014-12-01 01:13:22 +01:00
|
|
|
*/
|
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 );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
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
|
|
|
|
2023-02-16 23:13:28 +01:00
|
|
|
$path = trailingslashit( $path );
|
|
|
|
$ret = array();
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2008-03-01 22:20:23 +01:00
|
|
|
foreach ( $list as $struc ) {
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2020-05-16 20:42:12 +02: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
|
|
|
|
2020-05-16 20:42:12 +02: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
|
|
|
|
2021-04-05 12:38:07 +02: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
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'd' === $struc['type'] ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $recursive ) {
|
2023-02-16 23:13:28 +01:00
|
|
|
$struc['files'] = $this->dirlist( $path . $struc['name'], $include_hidden, $recursive );
|
2017-12-01 00:11:00 +01:00
|
|
|
} 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
|
|
|
|
2020-01-29 01:45:18 +01: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
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Add the octal representation of the file permissions.
|
2015-06-24 06:49:25 +02:00
|
|
|
$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
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Destructor.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
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();
|
|
|
|
}
|
|
|
|
}
|