2008-05-30 18:14:05 +02:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
2013-09-22 06:44:10 +02:00
|
|
|
* Base WordPress Filesystem
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Filesystem
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Base WordPress Filesystem class which Filesystem implementations extend.
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.5.0
|
2008-08-14 08:30:38 +02:00
|
|
|
*/
|
|
|
|
class WP_Filesystem_Base {
|
2019-04-17 06:13:51 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2010-02-24 21:13:23 +01:00
|
|
|
* Whether to display debug data for the connection.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.5.0
|
2008-10-10 12:02:46 +02:00
|
|
|
* @var bool
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public $verbose = false;
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2011-05-14 11:56:59 +02:00
|
|
|
* Cached list of local filepaths to mapped remote filepaths.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.7.0
|
2008-10-10 12:02:46 +02:00
|
|
|
* @var array
|
|
|
|
*/
|
2015-01-11 23:04:22 +01:00
|
|
|
public $cache = array();
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
|
|
|
* The Access method of the current connection, Set automatically.
|
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.5.0
|
2008-10-10 12:02:46 +02:00
|
|
|
* @var string
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public $method = '';
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2015-09-10 03:21:24 +02:00
|
|
|
/**
|
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
|
|
|
* @var WP_Error
|
2015-09-10 03:21:24 +02:00
|
|
|
*/
|
2015-01-16 18:10:43 +01:00
|
|
|
public $errors = null;
|
|
|
|
|
2015-09-10 03:21:24 +02:00
|
|
|
/**
|
|
|
|
*/
|
2015-01-16 18:10:43 +01:00
|
|
|
public $options = array();
|
|
|
|
|
2013-09-22 06:44:10 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Returns the path on the remote filesystem of ABSPATH.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.7.0
|
|
|
|
*
|
2008-10-10 12:02:46 +02:00
|
|
|
* @return string The location of the remote path.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function abspath() {
|
2017-12-01 00:11:00 +01:00
|
|
|
$folder = $this->find_folder( ABSPATH );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Perhaps the FTP folder is rooted at the WordPress install.
|
|
|
|
// Check for wp-includes folder in root. Could have some false positives, but rare.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $folder && $this->is_dir( '/' . WPINC ) ) {
|
2008-10-10 12:40:04 +02:00
|
|
|
$folder = '/';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2008-10-10 12:40:04 +02:00
|
|
|
return $folder;
|
2008-05-30 18:14:05 +02:00
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Returns the path on the remote filesystem of WP_CONTENT_DIR.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.7.0
|
|
|
|
*
|
2008-10-10 12:02:46 +02:00
|
|
|
* @return string The location of the remote path.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function wp_content_dir() {
|
2017-12-01 00:11:00 +01:00
|
|
|
return $this->find_folder( WP_CONTENT_DIR );
|
2008-05-30 18:14:05 +02:00
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Returns the path on the remote filesystem of WP_PLUGIN_DIR.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.7.0
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
|
|
|
* @return string The location of the remote path.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function wp_plugins_dir() {
|
2017-12-01 00:11:00 +01:00
|
|
|
return $this->find_folder( WP_PLUGIN_DIR );
|
2008-05-30 18:14:05 +02:00
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Returns the path on the remote filesystem of the Themes Directory.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.7.0
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @param string|false $theme Optional. The theme stylesheet or template for the directory.
|
|
|
|
* Default false.
|
2008-10-10 12:02:46 +02:00
|
|
|
* @return string The location of the remote path.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function wp_themes_dir( $theme = false ) {
|
2013-08-22 06:50:09 +02:00
|
|
|
$theme_root = get_theme_root( $theme );
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Account for relative theme roots.
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( '/themes' === $theme_root || ! is_dir( $theme_root ) ) {
|
2013-08-22 06:50:09 +02:00
|
|
|
$theme_root = WP_CONTENT_DIR . $theme_root;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-08-22 06:50:09 +02:00
|
|
|
|
|
|
|
return $this->find_folder( $theme_root );
|
2011-03-31 15:28:36 +02:00
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2011-03-31 15:28:36 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Returns the path on the remote filesystem of WP_LANG_DIR.
|
2011-03-31 15:28:36 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 3.2.0
|
2011-03-31 15:28:36 +02:00
|
|
|
*
|
|
|
|
* @return string The location of the remote path.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function wp_lang_dir() {
|
2017-12-01 00:11:00 +01:00
|
|
|
return $this->find_folder( WP_LANG_DIR );
|
2008-05-30 18:14:05 +02:00
|
|
|
}
|
2008-12-09 19:03:31 +01:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Locates a folder on the remote filesystem.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.5.0
|
2020-08-21 02:43:05 +02:00
|
|
|
* @deprecated 2.7.0 use WP_Filesystem_Base::abspath() or WP_Filesystem_Base::wp_*_dir() instead.
|
|
|
|
* @see WP_Filesystem_Base::abspath()
|
|
|
|
* @see WP_Filesystem_Base::wp_content_dir()
|
|
|
|
* @see WP_Filesystem_Base::wp_plugins_dir()
|
|
|
|
* @see WP_Filesystem_Base::wp_themes_dir()
|
|
|
|
* @see WP_Filesystem_Base::wp_lang_dir()
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/class-wp-filesystem-base.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$echo` parameter to `$verbose` in `WP_Filesystem_Base::find_base_dir()` and `::get_base_dir()`, and updates the documentation accordingly. This matches the class property of the same name.
Follow-up to [52946], [52996], [52997], [52998], [53003].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53014
git-svn-id: http://core.svn.wordpress.org/trunk@52603 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 15:21:08 +02:00
|
|
|
* @param string $base Optional. The folder to start searching from. Default '.'.
|
|
|
|
* @param bool $verbose Optional. True to display debug information. Default false.
|
2008-10-10 12:02:46 +02:00
|
|
|
* @return string The location of the remote path.
|
|
|
|
*/
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/class-wp-filesystem-base.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$echo` parameter to `$verbose` in `WP_Filesystem_Base::find_base_dir()` and `::get_base_dir()`, and updates the documentation accordingly. This matches the class property of the same name.
Follow-up to [52946], [52996], [52997], [52998], [53003].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53014
git-svn-id: http://core.svn.wordpress.org/trunk@52603 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 15:21:08 +02:00
|
|
|
public function find_base_dir( $base = '.', $verbose = false ) {
|
2020-08-21 02:43:05 +02:00
|
|
|
_deprecated_function( __FUNCTION__, '2.7.0', 'WP_Filesystem_Base::abspath() or WP_Filesystem_Base::wp_*_dir()' );
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/class-wp-filesystem-base.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$echo` parameter to `$verbose` in `WP_Filesystem_Base::find_base_dir()` and `::get_base_dir()`, and updates the documentation accordingly. This matches the class property of the same name.
Follow-up to [52946], [52996], [52997], [52998], [53003].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53014
git-svn-id: http://core.svn.wordpress.org/trunk@52603 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 15:21:08 +02:00
|
|
|
$this->verbose = $verbose;
|
2008-05-30 18:14:05 +02:00
|
|
|
return $this->abspath();
|
|
|
|
}
|
2013-09-09 04:55:09 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Locates a folder on the remote filesystem.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.5.0
|
2020-08-21 02:43:05 +02:00
|
|
|
* @deprecated 2.7.0 use WP_Filesystem_Base::abspath() or WP_Filesystem_Base::wp_*_dir() methods instead.
|
|
|
|
* @see WP_Filesystem_Base::abspath()
|
|
|
|
* @see WP_Filesystem_Base::wp_content_dir()
|
|
|
|
* @see WP_Filesystem_Base::wp_plugins_dir()
|
|
|
|
* @see WP_Filesystem_Base::wp_themes_dir()
|
|
|
|
* @see WP_Filesystem_Base::wp_lang_dir()
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/class-wp-filesystem-base.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$echo` parameter to `$verbose` in `WP_Filesystem_Base::find_base_dir()` and `::get_base_dir()`, and updates the documentation accordingly. This matches the class property of the same name.
Follow-up to [52946], [52996], [52997], [52998], [53003].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53014
git-svn-id: http://core.svn.wordpress.org/trunk@52603 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 15:21:08 +02:00
|
|
|
* @param string $base Optional. The folder to start searching from. Default '.'.
|
|
|
|
* @param bool $verbose Optional. True to display debug information. Default false.
|
2008-10-10 12:02:46 +02:00
|
|
|
* @return string The location of the remote path.
|
|
|
|
*/
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/class-wp-filesystem-base.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$echo` parameter to `$verbose` in `WP_Filesystem_Base::find_base_dir()` and `::get_base_dir()`, and updates the documentation accordingly. This matches the class property of the same name.
Follow-up to [52946], [52996], [52997], [52998], [53003].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53014
git-svn-id: http://core.svn.wordpress.org/trunk@52603 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 15:21:08 +02:00
|
|
|
public function get_base_dir( $base = '.', $verbose = false ) {
|
2020-08-21 02:43:05 +02:00
|
|
|
_deprecated_function( __FUNCTION__, '2.7.0', 'WP_Filesystem_Base::abspath() or WP_Filesystem_Base::wp_*_dir()' );
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/class-wp-filesystem-base.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$echo` parameter to `$verbose` in `WP_Filesystem_Base::find_base_dir()` and `::get_base_dir()`, and updates the documentation accordingly. This matches the class property of the same name.
Follow-up to [52946], [52996], [52997], [52998], [53003].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53014
git-svn-id: http://core.svn.wordpress.org/trunk@52603 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 15:21:08 +02:00
|
|
|
$this->verbose = $verbose;
|
2008-05-30 18:14:05 +02:00
|
|
|
return $this->abspath();
|
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Locates a folder on the remote filesystem.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* Assumes that on Windows systems, Stripping off the Drive
|
2019-04-17 06:13:51 +02:00
|
|
|
* letter is OK Sanitizes \\ to / in Windows filepaths.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.7.0
|
2008-12-09 19:03:31 +01:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $folder the folder to locate.
|
2015-01-16 20:03:23 +01:00
|
|
|
* @return string|false The location of the remote path, false on failure.
|
2008-10-10 12:02:46 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function find_folder( $folder ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $this->cache[ $folder ] ) ) {
|
2013-08-20 08:47:08 +02:00
|
|
|
return $this->cache[ $folder ];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-08-20 08:47:08 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( stripos( $this->method, 'ftp' ) !== false ) {
|
2013-08-20 08:47:08 +02:00
|
|
|
$constant_overrides = array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'FTP_BASE' => ABSPATH,
|
2013-08-20 08:47:08 +02:00
|
|
|
'FTP_CONTENT_DIR' => WP_CONTENT_DIR,
|
2017-12-01 00:11:00 +01:00
|
|
|
'FTP_PLUGIN_DIR' => WP_PLUGIN_DIR,
|
|
|
|
'FTP_LANG_DIR' => WP_LANG_DIR,
|
2013-08-20 08:47:08 +02:00
|
|
|
);
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Direct matches ( folder = CONSTANT/ ).
|
2013-08-20 08:47:08 +02:00
|
|
|
foreach ( $constant_overrides as $constant => $dir ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! defined( $constant ) ) {
|
2013-08-20 08:47:08 +02:00
|
|
|
continue;
|
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 ( $folder === $dir ) {
|
2013-08-20 08:47:08 +02:00
|
|
|
return trailingslashit( constant( $constant ) );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-08-20 08:47:08 +02:00
|
|
|
}
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Prefix matches ( folder = CONSTANT/subdir ),
|
2013-08-20 08:47:08 +02:00
|
|
|
foreach ( $constant_overrides as $constant => $dir ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! defined( $constant ) ) {
|
2013-08-20 08:47:08 +02:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
if ( 0 === stripos( $folder, $dir ) ) { // $folder starts with $dir.
|
2013-08-20 08:47:08 +02:00
|
|
|
$potential_folder = preg_replace( '#^' . preg_quote( $dir, '#' ) . '/#i', trailingslashit( constant( $constant ) ), $folder );
|
|
|
|
$potential_folder = trailingslashit( $potential_folder );
|
|
|
|
|
|
|
|
if ( $this->is_dir( $potential_folder ) ) {
|
|
|
|
$this->cache[ $folder ] = $potential_folder;
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2013-08-20 08:47:08 +02:00
|
|
|
return $potential_folder;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-16 20:42:12 +02:00
|
|
|
} elseif ( 'direct' === $this->method ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
$folder = str_replace( '\\', '/', $folder ); // Windows path sanitisation.
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return trailingslashit( $folder );
|
2009-04-13 18:11:02 +02:00
|
|
|
}
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
$folder = preg_replace( '|^([a-z]{1}):|i', '', $folder ); // Strip out Windows drive letter if it's there.
|
|
|
|
$folder = str_replace( '\\', '/', $folder ); // Windows path sanitisation.
|
2008-10-10 12:02:46 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $this->cache[ $folder ] ) ) {
|
2008-05-30 18:14:05 +02:00
|
|
|
return $this->cache[ $folder ];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-05-30 18:14:05 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $this->exists( $folder ) ) { // Folder exists at that absolute path.
|
|
|
|
$folder = trailingslashit( $folder );
|
2008-05-30 18:14:05 +02:00
|
|
|
$this->cache[ $folder ] = $folder;
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2008-05-30 18:14:05 +02:00
|
|
|
return $folder;
|
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2019-07-01 14:52:01 +02:00
|
|
|
$return = $this->search_for_folder( $folder );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2019-07-01 14:52:01 +02:00
|
|
|
if ( $return ) {
|
2008-05-30 18:14:05 +02:00
|
|
|
$this->cache[ $folder ] = $return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2008-05-30 18:14:05 +02:00
|
|
|
return $return;
|
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Locates a folder on the remote filesystem.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* Expects Windows sanitized path.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.7.0
|
2008-12-09 19:03:31 +01:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $folder The folder to locate.
|
|
|
|
* @param string $base The folder to start searching from.
|
2020-01-29 01:45:18 +01:00
|
|
|
* @param bool $loop If the function has recursed. Internal use only.
|
2015-01-16 20:03:23 +01:00
|
|
|
* @return string|false The location of the remote path, false to cease looping.
|
2008-10-10 12:02:46 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function search_for_folder( $folder, $base = '.', $loop = false ) {
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( empty( $base ) || '.' === $base ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$base = trailingslashit( $this->cwd() );
|
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$folder = untrailingslashit( $folder );
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2015-11-18 18:21:26 +01:00
|
|
|
if ( $this->verbose ) {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: 1: Folder to locate, 2: Folder to start searching from. */
|
2015-11-18 18:21:26 +01:00
|
|
|
printf( "\n" . __( 'Looking for %1$s in %2$s' ) . "<br/>\n", $folder, $base );
|
|
|
|
}
|
2013-08-15 18:25:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$folder_parts = explode( '/', $folder );
|
2013-08-15 18:25:12 +02:00
|
|
|
$folder_part_keys = array_keys( $folder_parts );
|
2017-12-01 00:11:00 +01:00
|
|
|
$last_index = array_pop( $folder_part_keys );
|
|
|
|
$last_path = $folder_parts[ $last_index ];
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2008-05-30 18:14:05 +02:00
|
|
|
$files = $this->dirlist( $base );
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2012-07-06 12:41:32 +02:00
|
|
|
foreach ( $folder_parts as $index => $key ) {
|
2021-04-05 12:38:07 +02:00
|
|
|
if ( $index === $last_index ) {
|
2013-09-09 04:55:09 +02:00
|
|
|
continue; // We want this to be caught by the next code block.
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-05-30 18:14:05 +02:00
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
/*
|
|
|
|
* Working from /home/ to /user/ to /wordpress/ see if that file exists within
|
|
|
|
* the current folder, If it's found, change into it and follow through looking
|
2019-04-17 06:13:51 +02:00
|
|
|
* for it. If it can't find WordPress down that route, it'll continue onto the next
|
2014-07-17 11:14:16 +02:00
|
|
|
* folder level, and see if that matches, and so on. If it reaches the end, and still
|
2019-04-17 06:13:51 +02:00
|
|
|
* can't find it, it'll return false for the entire function.
|
2014-07-17 11:14:16 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $files[ $key ] ) ) {
|
2014-07-17 11:14:16 +02:00
|
|
|
|
2014-12-02 05:43:22 +01:00
|
|
|
// Let's try that folder:
|
2017-12-01 00:11:00 +01:00
|
|
|
$newdir = trailingslashit( path_join( $base, $key ) );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2015-11-18 18:21:26 +01:00
|
|
|
if ( $this->verbose ) {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Directory name. */
|
2015-11-18 18:21:26 +01:00
|
|
|
printf( "\n" . __( 'Changing to %s' ) . "<br/>\n", $newdir );
|
|
|
|
}
|
2014-07-17 11:14:16 +02:00
|
|
|
|
|
|
|
// Only search for the remaining path tokens in the directory, not the full path again.
|
2012-07-06 13:19:46 +02:00
|
|
|
$newfolder = implode( '/', array_slice( $folder_parts, $index + 1 ) );
|
2019-07-01 14:52:01 +02:00
|
|
|
$ret = $this->search_for_folder( $newfolder, $newdir, $loop );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2019-07-01 14:52:01 +02:00
|
|
|
if ( $ret ) {
|
2008-05-30 18:14:05 +02:00
|
|
|
return $ret;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-05-30 18:14:05 +02:00
|
|
|
}
|
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2015-11-18 18:21:26 +01:00
|
|
|
// Only check this as a last resort, to prevent locating the incorrect install.
|
|
|
|
// All above procedures will fail quickly if this is the right branch to take.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $files[ $last_path ] ) ) {
|
2015-11-18 18:21:26 +01:00
|
|
|
if ( $this->verbose ) {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Directory name. */
|
2017-12-01 00:11:00 +01:00
|
|
|
printf( "\n" . __( 'Found %s' ) . "<br/>\n", $base . $last_path );
|
2015-11-18 18:21:26 +01:00
|
|
|
}
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return trailingslashit( $base . $last_path );
|
2008-05-30 18:14:05 +02:00
|
|
|
}
|
2013-08-15 18:25:12 +02:00
|
|
|
|
|
|
|
// Prevent this function from looping again.
|
2020-01-29 01:45:18 +01:00
|
|
|
// No need to proceed if we've just searched in `/`.
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( $loop || '/' === $base ) {
|
2013-08-15 18:25:12 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-08-15 18:25:12 +02:00
|
|
|
|
|
|
|
// As an extra last resort, Change back to / if the folder wasn't found.
|
|
|
|
// This comes into effect when the CWD is /home/user/ but WP is at /var/www/....
|
|
|
|
return $this->search_for_folder( $folder, '/', true );
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2008-05-30 18:14:05 +02:00
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Returns the *nix-style file permissions for a file.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* From the PHP documentation page for fileperms().
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2020-01-20 04:14:06 +01:00
|
|
|
* @link https://www.php.net/manual/en/function.fileperms.php
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file String filename.
|
|
|
|
* @return string The *nix-style representation of permissions.
|
2008-10-10 12:02:46 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function gethchmod( $file ) {
|
2015-06-24 06:49:25 +02:00
|
|
|
$perms = intval( $this->getchmod( $file ), 8 );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2021-04-05 12:38:07 +02:00
|
|
|
if ( ( $perms & 0xC000 ) === 0xC000 ) { // Socket.
|
2008-05-30 18:14:05 +02:00
|
|
|
$info = 's';
|
2021-04-05 12:38:07 +02:00
|
|
|
} elseif ( ( $perms & 0xA000 ) === 0xA000 ) { // Symbolic Link.
|
2008-05-30 18:14:05 +02:00
|
|
|
$info = 'l';
|
2021-04-05 12:38:07 +02:00
|
|
|
} elseif ( ( $perms & 0x8000 ) === 0x8000 ) { // Regular.
|
2008-05-30 18:14:05 +02:00
|
|
|
$info = '-';
|
2021-04-05 12:38:07 +02:00
|
|
|
} elseif ( ( $perms & 0x6000 ) === 0x6000 ) { // Block special.
|
2008-05-30 18:14:05 +02:00
|
|
|
$info = 'b';
|
2021-04-05 12:38:07 +02:00
|
|
|
} elseif ( ( $perms & 0x4000 ) === 0x4000 ) { // Directory.
|
2008-05-30 18:14:05 +02:00
|
|
|
$info = 'd';
|
2021-04-05 12:38:07 +02:00
|
|
|
} elseif ( ( $perms & 0x2000 ) === 0x2000 ) { // Character special.
|
2008-05-30 18:14:05 +02:00
|
|
|
$info = 'c';
|
2021-04-05 12:38:07 +02:00
|
|
|
} elseif ( ( $perms & 0x1000 ) === 0x1000 ) { // FIFO pipe.
|
2008-05-30 18:14:05 +02:00
|
|
|
$info = 'p';
|
2020-01-29 01:45:18 +01:00
|
|
|
} else { // Unknown.
|
2008-05-30 18:14:05 +02:00
|
|
|
$info = 'u';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2008-05-30 18:14:05 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Owner.
|
2017-12-01 00:11:00 +01:00
|
|
|
$info .= ( ( $perms & 0x0100 ) ? 'r' : '-' );
|
|
|
|
$info .= ( ( $perms & 0x0080 ) ? 'w' : '-' );
|
|
|
|
$info .= ( ( $perms & 0x0040 ) ?
|
|
|
|
( ( $perms & 0x0800 ) ? 's' : 'x' ) :
|
|
|
|
( ( $perms & 0x0800 ) ? 'S' : '-' ) );
|
2008-05-30 18:14:05 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Group.
|
2017-12-01 00:11:00 +01:00
|
|
|
$info .= ( ( $perms & 0x0020 ) ? 'r' : '-' );
|
|
|
|
$info .= ( ( $perms & 0x0010 ) ? 'w' : '-' );
|
|
|
|
$info .= ( ( $perms & 0x0008 ) ?
|
|
|
|
( ( $perms & 0x0400 ) ? 's' : 'x' ) :
|
|
|
|
( ( $perms & 0x0400 ) ? 'S' : '-' ) );
|
2008-05-30 18:14:05 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// World.
|
2017-12-01 00:11:00 +01:00
|
|
|
$info .= ( ( $perms & 0x0004 ) ? 'r' : '-' );
|
|
|
|
$info .= ( ( $perms & 0x0002 ) ? 'w' : '-' );
|
|
|
|
$info .= ( ( $perms & 0x0001 ) ?
|
|
|
|
( ( $perms & 0x0200 ) ? 't' : 'x' ) :
|
|
|
|
( ( $perms & 0x0200 ) ? 'T' : '-' ) );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2008-05-30 18:14:05 +02:00
|
|
|
return $info;
|
|
|
|
}
|
2008-10-10 12:02:46 +02:00
|
|
|
|
2015-06-24 06:49:25 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the permissions of the specified file or filepath in their octal format.
|
2015-06-24 06:49:25 +02:00
|
|
|
*
|
2015-06-24 06:52:25 +02:00
|
|
|
* @since 2.5.0
|
2019-04-17 06:13:51 +02:00
|
|
|
*
|
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @return string Mode of the file (the last 3 digits).
|
2015-06-24 06:49:25 +02:00
|
|
|
*/
|
|
|
|
public function getchmod( $file ) {
|
|
|
|
return '777';
|
|
|
|
}
|
|
|
|
|
2008-10-10 12:02:46 +02:00
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Converts *nix-style file permissions to a octal number.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
|
|
|
* Converts '-rw-r--r--' to 0644
|
|
|
|
* From "info at rvgate dot nl"'s comment on the PHP documentation for chmod()
|
2017-12-01 00:11:00 +01:00
|
|
|
*
|
2020-01-20 04:14:06 +01:00
|
|
|
* @link https://www.php.net/manual/en/function.chmod.php#49614
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2021-07-27 13:01:57 +02:00
|
|
|
* @param string $mode string The *nix-style file permissions.
|
|
|
|
* @return string Octal representation of permissions.
|
2008-10-10 12:02:46 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function getnumchmodfromh( $mode ) {
|
2008-10-10 12:02:46 +02:00
|
|
|
$realmode = '';
|
2017-12-01 00:11:00 +01:00
|
|
|
$legal = array( '', 'w', 'r', 'x', '-' );
|
|
|
|
$attarray = preg_split( '//', $mode );
|
2008-05-30 18:14:05 +02:00
|
|
|
|
2015-02-26 06:48:24 +01:00
|
|
|
for ( $i = 0, $c = count( $attarray ); $i < $c; $i++ ) {
|
2020-04-09 17:43:10 +02:00
|
|
|
$key = array_search( $attarray[ $i ], $legal, true );
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2019-07-01 14:52:01 +02:00
|
|
|
if ( $key ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$realmode .= $legal[ $key ];
|
2017-11-27 00:57:55 +01:00
|
|
|
}
|
2015-02-26 06:48:24 +01:00
|
|
|
}
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$mode = str_pad( $realmode, 10, '-', STR_PAD_LEFT );
|
|
|
|
$trans = array(
|
|
|
|
'-' => '0',
|
|
|
|
'r' => '4',
|
|
|
|
'w' => '2',
|
|
|
|
'x' => '1',
|
|
|
|
);
|
|
|
|
$mode = strtr( $mode, $trans );
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$newmode = $mode[0];
|
2012-09-29 03:33:15 +02:00
|
|
|
$newmode .= $mode[1] + $mode[2] + $mode[3];
|
|
|
|
$newmode .= $mode[4] + $mode[5] + $mode[6];
|
|
|
|
$newmode .= $mode[7] + $mode[8] + $mode[9];
|
2020-06-19 12:36:12 +02:00
|
|
|
|
2008-05-30 18:14:05 +02:00
|
|
|
return $newmode;
|
|
|
|
}
|
2008-09-26 08:53:57 +02:00
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Determines if the string provided contains binary characters.
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @since 2.7.0
|
2008-10-10 12:02:46 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $text String to test against.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return bool True if string is binary, false otherwise.
|
2008-10-10 12:02:46 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function is_binary( $text ) {
|
2013-09-09 04:55:09 +02:00
|
|
|
return (bool) preg_match( '|[^\x20-\x7E]|', $text ); // chr(32)..chr(127)
|
2008-09-26 08:53:57 +02:00
|
|
|
}
|
2013-09-22 06:44:10 +02:00
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Changes the owner of a file or directory.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* Default behavior is to do nothing, override this in your subclass, if desired.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @param string $file Path to the file or directory.
|
|
|
|
* @param string|int $owner A user name or number.
|
|
|
|
* @param bool $recursive Optional. If set to true, changes file owner recursively.
|
|
|
|
* Default false.
|
|
|
|
* @return bool True on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function chown( $file, $owner, $recursive = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Connects filesystem.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return bool True on success, false on failure (always true for WP_Filesystem_Direct).
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function connect() {
|
2013-09-22 06:44:10 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Reads entire file into a string.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file Name of the file to read.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return string|false Read data on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function get_contents( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Reads entire file into an array.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file Path to the file.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return array|false File contents in an array on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function get_contents_array( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Writes a string to a file.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @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.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function put_contents( $file, $contents, $mode = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the current working directory.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return string|false The current working directory on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function cwd() {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Changes current directory.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $dir The new current directory.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return bool True on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function chdir( $dir ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Changes the file group.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @param string $file Path to the file.
|
|
|
|
* @param string|int $group A group name or number.
|
|
|
|
* @param bool $recursive Optional. If set to true, changes file group recursively.
|
|
|
|
* Default false.
|
|
|
|
* @return bool True on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function chgrp( $file, $group, $recursive = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Changes filesystem permissions.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @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.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function chmod( $file, $mode = false, $recursive = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the file owner.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2017-12-01 00:11:00 +01:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file Path to the file.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return string|false Username of the owner on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function owner( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets the file's group.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file Path to the file.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return string|false The group on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function group( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Copies a file.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @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.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function copy( $source, $destination, $overwrite = false, $mode = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Moves a file.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @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.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return bool True on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function move( $source, $destination, $overwrite = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Deletes a file or directory.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @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.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function delete( $file, $recursive = false, $type = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if a file or directory exists.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @param string $file Path to file or directory.
|
2013-09-22 06:44:10 +02:00
|
|
|
* @return bool Whether $file exists or not.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function exists( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if resource is a file.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file File path.
|
|
|
|
* @return bool Whether $file is a file.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function is_file( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if resource is a directory.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $path Directory path.
|
|
|
|
* @return bool Whether $path is a directory.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function is_dir( $path ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if a file is readable.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file Path to file.
|
|
|
|
* @return bool Whether $file is readable.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function is_readable( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Checks if a file or directory is writable.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @param string $file Path to file or directory.
|
2013-09-22 06:44:10 +02:00
|
|
|
* @return bool Whether $file is writable.
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function is_writable( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the file's last access time.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file Path to file.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return int|false Unix timestamp representing last access time, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function atime( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the file modification time.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file Path to file.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return int|false Unix timestamp representing modification time, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function mtime( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the file size (in bytes).
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $file Path to file.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return int|false Size of the file in bytes on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function size( $file ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Sets the access and modification times of a file.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* Note: If $file doesn't exist, it will be created.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @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.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return bool True on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function touch( $file, $time = 0, $atime = 0 ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Creates a directory.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
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.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function mkdir( $path, $chmod = false, $chown = false, $chgrp = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Deletes a directory.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2015-09-10 03:21:24 +02:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @param string $path Path to directory.
|
|
|
|
* @param bool $recursive Optional. Whether to recursively remove files/directories.
|
|
|
|
* Default false.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return bool True on success, false on failure.
|
2013-09-22 06:44:10 +02:00
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function rmdir( $path, $recursive = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-17 06:13:51 +02:00
|
|
|
* Gets details for files in a directory or a specific file.
|
2013-09-22 06:44:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2014-12-01 01:13:22 +01:00
|
|
|
* @abstract
|
2014-12-03 11:11:22 +01:00
|
|
|
*
|
2013-09-22 06:44:10 +02:00
|
|
|
* @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.
|
2019-04-17 06:13:51 +02:00
|
|
|
* @return array|false {
|
2013-09-22 06:44:10 +02:00
|
|
|
* Array of files. False if unable to list directory contents.
|
|
|
|
*
|
2019-04-17 06:13:51 +02:00
|
|
|
* @type string $name Name of the file or directory.
|
2014-12-03 11:11:22 +01:00
|
|
|
* @type string $perms *nix representation of permissions.
|
2021-07-27 11:29:01 +02:00
|
|
|
* @type string $permsn Octal representation of permissions.
|
2014-12-03 11:11:22 +01:00
|
|
|
* @type string $owner Owner name or ID.
|
|
|
|
* @type int $size Size of file in bytes.
|
|
|
|
* @type int $lastmodunix Last modified unix timestamp.
|
|
|
|
* @type mixed $lastmod Last modified month (3 letter) and day (without leading 0).
|
|
|
|
* @type int $time Last modified time.
|
|
|
|
* @type string $type Type of resource. 'f' for file, 'd' for directory.
|
2021-12-07 13:20:02 +01:00
|
|
|
* @type mixed $files If a directory and `$recursive` is true, contains another array of files.
|
2013-09-22 06:44:10 +02:00
|
|
|
* }
|
|
|
|
*/
|
2014-05-19 02:06:14 +02:00
|
|
|
public function dirlist( $path, $include_hidden = true, $recursive = false ) {
|
2013-09-22 06:44:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
}
|