*/
class WP_Filesystem_FTPext extends WP_Filesystem_Base {
public $link;
- public $errors = null;
- public $options = array();
- public function __construct($opt='') {
+ /**
+ *
+ * @param array $opt
+ */
+ public function __construct( $opt = '' ) {
$this->method = 'ftpext';
$this->errors = new WP_Error();
// Check if possible to use ftp functions.
if ( ! extension_loaded('ftp') ) {
$this->errors->add('no_ftp_ext', __('The ftp PHP extension is not available'));
- return false;
+ return;
}
// This Class uses the timeout on a per-connection basis, Others use it on a per-action basis.
else
$this->options['hostname'] = $opt['hostname'];
- if ( ! empty($opt['base']) )
- $this->wp_base = $opt['base'];
-
// Check if the options provided are OK.
if ( empty($opt['username']) )
$this->errors->add('empty_username', __('FTP username is required'));
$this->options['ssl'] = true;
}
+ /**
+ *
+ * @return bool
+ */
public function connect() {
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);
/**
* @param string $file
- * @return bool|string
+ * @return false|string
*/
public function get_contents( $file ) {
$tempfile = wp_tempnam($file);
return @ftp_chdir($this->link, $dir);
}
- /**
- * @param string $file
- * @param bool $group
- * @param bool $recursive
- */
- public function chgrp($file, $group, $recursive = false ) {
- return false;
- }
-
/**
* @param string $file
* @param int $mode
*/
public function exists($file) {
$list = @ftp_nlist($this->link, $file);
+
+ if ( empty( $list ) && $this->is_dir( $file ) ) {
+ return true; // File is an empty directory.
+ }
+
return !empty($list); //empty list = no file, so invert.
}
/**
if ( !@ftp_mkdir($this->link, $path) )
return false;
$this->chmod($path, $chmod);
- if ( $chown )
- $this->chown($path, $chown);
- if ( $chgrp )
- $this->chgrp($path, $chgrp);
return true;
}
/**
* @staticvar bool $is_windows
* @param string $line
- * @return string
+ * @return array
*/
public function parselisting($line) {
- static $is_windows;
+ static $is_windows = null;
if ( is_null($is_windows) )
$is_windows = stripos( ftp_systype($this->link), 'win') !== false;
else
$b['type'] = 'f';
$b['perms'] = $lucifer[0];
+ $b['permsn'] = $this->getnumchmodfromh( $b['perms'] );
$b['number'] = $lucifer[1];
$b['owner'] = $lucifer[2];
$b['group'] = $lucifer[3];
return $ret;
}
+ /**
+ * @access public
+ */
public function __destruct() {
if ( $this->link )
ftp_close($this->link);