2008-02-19 19:12:48 -05:00
|
|
|
<?php
|
2008-08-14 02:30:38 -04:00
|
|
|
/**
|
|
|
|
* WordPress FTP Filesystem.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Filesystem
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WordPress Filesystem Class for implementing FTP.
|
|
|
|
*
|
|
|
|
* @since 2.5
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Filesystem
|
|
|
|
* @uses WP_Filesystem_Base Extends class
|
|
|
|
*/
|
|
|
|
class WP_Filesystem_FTPext extends WP_Filesystem_Base {
|
2008-02-19 19:12:48 -05:00
|
|
|
var $link;
|
2009-04-19 15:36:28 -04:00
|
|
|
var $errors = null;
|
2008-02-19 19:12:48 -05:00
|
|
|
var $options = array();
|
2008-03-02 15:17:30 -05:00
|
|
|
|
2011-04-29 16:05:12 -04:00
|
|
|
function __construct($opt='') {
|
2008-05-29 13:29:32 -04:00
|
|
|
$this->method = 'ftpext';
|
2008-02-11 00:45:54 -05:00
|
|
|
$this->errors = new WP_Error();
|
2008-02-19 19:12:48 -05:00
|
|
|
|
|
|
|
//Check if possible to use ftp functions.
|
2008-02-11 00:45:54 -05:00
|
|
|
if ( ! extension_loaded('ftp') ) {
|
2008-02-19 19:12:48 -05:00
|
|
|
$this->errors->add('no_ftp_ext', __('The ftp PHP extension is not available'));
|
|
|
|
return false;
|
2008-02-11 00:45:54 -05:00
|
|
|
}
|
|
|
|
|
2008-02-19 19:12:48 -05:00
|
|
|
// Set defaults:
|
2009-08-15 08:01:04 -04:00
|
|
|
//This Class uses the timeout on a per-connection basis, Others use it on a per-action basis.
|
|
|
|
|
|
|
|
if ( ! defined('FS_TIMEOUT') )
|
|
|
|
define('FS_TIMEOUT', 240);
|
|
|
|
|
2008-02-19 19:12:48 -05:00
|
|
|
if ( empty($opt['port']) )
|
|
|
|
$this->options['port'] = 21;
|
|
|
|
else
|
|
|
|
$this->options['port'] = $opt['port'];
|
|
|
|
|
2008-02-11 00:45:54 -05:00
|
|
|
if ( empty($opt['hostname']) )
|
2008-02-19 19:12:48 -05:00
|
|
|
$this->errors->add('empty_hostname', __('FTP hostname is required'));
|
|
|
|
else
|
|
|
|
$this->options['hostname'] = $opt['hostname'];
|
|
|
|
|
2010-03-19 17:29:21 -04:00
|
|
|
if ( ! empty($opt['base']) )
|
2008-02-19 19:12:48 -05:00
|
|
|
$this->wp_base = $opt['base'];
|
|
|
|
|
|
|
|
// Check if the options provided are OK.
|
2009-05-30 13:14:07 -04:00
|
|
|
if ( empty($opt['username']) )
|
2008-02-19 19:12:48 -05:00
|
|
|
$this->errors->add('empty_username', __('FTP username is required'));
|
|
|
|
else
|
|
|
|
$this->options['username'] = $opt['username'];
|
|
|
|
|
2009-05-30 13:14:07 -04:00
|
|
|
if ( empty($opt['password']) )
|
2008-03-02 15:17:30 -05:00
|
|
|
$this->errors->add('empty_password', __('FTP password is required'));
|
2008-02-19 19:12:48 -05:00
|
|
|
else
|
|
|
|
$this->options['password'] = $opt['password'];
|
2008-03-02 15:17:30 -05:00
|
|
|
|
2008-09-05 01:35:58 -04:00
|
|
|
$this->options['ssl'] = false;
|
2009-05-30 13:14:07 -04:00
|
|
|
if ( isset($opt['connection_type']) && 'ftps' == $opt['connection_type'] )
|
|
|
|
$this->options['ssl'] = true;
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
|
|
|
|
2008-05-29 13:29:32 -04:00
|
|
|
function connect() {
|
2009-04-19 15:36:28 -04:00
|
|
|
if ( isset($this->options['ssl']) && $this->options['ssl'] && function_exists('ftp_ssl_connect') )
|
2009-08-15 08:01:04 -04:00
|
|
|
$this->link = @ftp_ssl_connect($this->options['hostname'], $this->options['port'], FS_CONNECT_TIMEOUT);
|
2008-05-29 13:29:32 -04:00
|
|
|
else
|
2009-08-15 08:01:04 -04:00
|
|
|
$this->link = @ftp_connect($this->options['hostname'], $this->options['port'], FS_CONNECT_TIMEOUT);
|
2008-02-19 19:12:48 -05:00
|
|
|
|
2008-02-11 00:45:54 -05:00
|
|
|
if ( ! $this->link ) {
|
2008-02-19 19:12:48 -05:00
|
|
|
$this->errors->add('connect', sprintf(__('Failed to connect to FTP Server %1$s:%2$s'), $this->options['hostname'], $this->options['port']));
|
|
|
|
return false;
|
2008-02-11 00:45:54 -05:00
|
|
|
}
|
2008-02-19 19:12:48 -05:00
|
|
|
|
2008-03-04 12:10:17 -05:00
|
|
|
if ( ! @ftp_login($this->link,$this->options['username'], $this->options['password']) ) {
|
2008-02-11 00:45:54 -05:00
|
|
|
$this->errors->add('auth', sprintf(__('Username/Password incorrect for %s'), $this->options['username']));
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
|
|
|
}
|
2008-12-09 13:03:31 -05:00
|
|
|
|
2008-11-21 12:59:15 -05:00
|
|
|
//Set the Connection to use Passive FTP
|
2008-12-09 13:03:31 -05:00
|
|
|
@ftp_pasv( $this->link, true );
|
2009-11-23 16:52:13 -05: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 13:03:31 -05:00
|
|
|
|
2008-02-19 19:12:48 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:34:53 -04:00
|
|
|
function get_contents($file, $type = '', $resumepos = 0 ) {
|
|
|
|
if ( empty($type) )
|
2008-09-26 02:53:57 -04:00
|
|
|
$type = FTP_BINARY;
|
|
|
|
|
2010-04-06 07:20:51 -04:00
|
|
|
$tempfile = wp_tempnam($file);
|
|
|
|
$temp = fopen($tempfile, 'w+');
|
|
|
|
|
2008-03-19 16:36:23 -04:00
|
|
|
if ( ! $temp )
|
|
|
|
return false;
|
2008-09-26 02:53:57 -04:00
|
|
|
|
2009-08-16 04:34:53 -04:00
|
|
|
if ( ! @ftp_fget($this->link, $temp, $file, $type, $resumepos) )
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
2008-09-26 02:53:57 -04:00
|
|
|
|
2008-02-19 19:12:48 -05:00
|
|
|
fseek($temp, 0); //Skip back to the start of the file being written to
|
|
|
|
$contents = '';
|
2008-09-26 02:53:57 -04:00
|
|
|
|
|
|
|
while ( ! feof($temp) )
|
2008-02-19 19:12:48 -05:00
|
|
|
$contents .= fread($temp, 8192);
|
2008-09-26 02:53:57 -04:00
|
|
|
|
2008-02-19 19:12:48 -05:00
|
|
|
fclose($temp);
|
2010-04-06 07:20:51 -04:00
|
|
|
unlink($tempfile);
|
2008-02-19 19:12:48 -05:00
|
|
|
return $contents;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function get_contents_array($file) {
|
|
|
|
return explode("\n", $this->get_contents($file));
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2010-01-15 17:11:12 -05:00
|
|
|
|
2010-01-14 04:23:53 -05:00
|
|
|
function put_contents($file, $contents, $mode = false ) {
|
2010-04-06 07:20:51 -04:00
|
|
|
$tempfile = wp_tempnam($file);
|
|
|
|
$temp = fopen($tempfile, 'w+');
|
2008-03-19 16:36:23 -04:00
|
|
|
if ( ! $temp )
|
|
|
|
return false;
|
2008-09-26 02:53:57 -04:00
|
|
|
|
2008-05-29 13:29:32 -04:00
|
|
|
fwrite($temp, $contents);
|
2008-02-19 19:12:48 -05:00
|
|
|
fseek($temp, 0); //Skip back to the start of the file being written to
|
2008-09-26 02:53:57 -04:00
|
|
|
|
2010-01-14 04:23:53 -05:00
|
|
|
$type = $this->is_binary($contents) ? FTP_BINARY : FTP_ASCII;
|
2008-05-29 13:29:32 -04:00
|
|
|
$ret = @ftp_fput($this->link, $file, $temp, $type);
|
2008-09-26 02:53:57 -04:00
|
|
|
|
2008-02-19 19:12:48 -05:00
|
|
|
fclose($temp);
|
2010-04-06 07:20:51 -04:00
|
|
|
unlink($tempfile);
|
2010-01-14 04:23:53 -05:00
|
|
|
|
|
|
|
$this->chmod($file, $mode);
|
|
|
|
|
2008-02-19 19:12:48 -05:00
|
|
|
return $ret;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function cwd() {
|
2008-08-04 17:01:09 -04:00
|
|
|
$cwd = @ftp_pwd($this->link);
|
2009-08-16 04:34:53 -04:00
|
|
|
if ( $cwd )
|
2008-03-16 05:49:10 -04:00
|
|
|
$cwd = trailingslashit($cwd);
|
|
|
|
return $cwd;
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function chdir($dir) {
|
2009-12-10 18:03:25 -05:00
|
|
|
return @ftp_chdir($this->link, $dir);
|
2008-03-06 01:06:13 -05:00
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function chgrp($file, $group, $recursive = false ) {
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function chmod($file, $mode = false, $recursive = false) {
|
2009-08-16 04:34:53 -04:00
|
|
|
if ( ! $mode ) {
|
|
|
|
if ( $this->is_file($file) )
|
|
|
|
$mode = FS_CHMOD_FILE;
|
|
|
|
elseif ( $this->is_dir($file) )
|
|
|
|
$mode = FS_CHMOD_DIR;
|
|
|
|
else
|
2009-09-14 10:03:32 -04:00
|
|
|
return false;
|
2009-08-16 04:34:53 -04:00
|
|
|
}
|
|
|
|
|
2010-02-06 20:12:29 -05:00
|
|
|
// chmod any sub-objects if recursive.
|
|
|
|
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 00:45:54 -05:00
|
|
|
}
|
2010-02-06 20:12:29 -05:00
|
|
|
|
|
|
|
// chmod the file or directory
|
|
|
|
if ( ! function_exists('ftp_chmod') )
|
2010-02-06 20:59:30 -05:00
|
|
|
return (bool)@ftp_site($this->link, sprintf('CHMOD %o %s', $mode, $file));
|
|
|
|
return (bool)@ftp_chmod($this->link, $mode, $file);
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function chown($file, $owner, $recursive = false ) {
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function owner($file) {
|
2008-02-19 19:12:48 -05:00
|
|
|
$dir = $this->dirlist($file);
|
|
|
|
return $dir[$file]['owner'];
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function getchmod($file) {
|
2008-02-19 19:12:48 -05:00
|
|
|
$dir = $this->dirlist($file);
|
2009-04-14 13:16:44 -04:00
|
|
|
return $dir[$file]['permsn'];
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function group($file) {
|
2008-02-19 19:12:48 -05:00
|
|
|
$dir = $this->dirlist($file);
|
|
|
|
return $dir[$file]['group'];
|
|
|
|
}
|
2011-03-21 20:04:15 -04:00
|
|
|
function copy($source, $destination, $overwrite = false, $mode = false) {
|
2009-08-16 04:34:53 -04:00
|
|
|
if ( ! $overwrite && $this->exists($destination) )
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
2008-03-06 01:06:13 -05:00
|
|
|
$content = $this->get_contents($source);
|
2009-08-16 04:34:53 -04:00
|
|
|
if ( false === $content)
|
2008-03-01 16:20:23 -05:00
|
|
|
return false;
|
2011-03-21 20:04:15 -04:00
|
|
|
return $this->put_contents($destination, $content, $mode);
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function move($source, $destination, $overwrite = false) {
|
|
|
|
return ftp_rename($this->link, $source, $destination);
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-02-11 00:45:54 -05:00
|
|
|
|
2011-03-21 20:04:15 -04:00
|
|
|
function delete($file, $recursive = false, $type = false) {
|
2009-04-19 15:36:28 -04:00
|
|
|
if ( empty($file) )
|
|
|
|
return false;
|
2011-03-21 20:04:15 -04:00
|
|
|
if ( 'f' == $type || $this->is_file($file) )
|
2008-05-29 13:29:32 -04:00
|
|
|
return @ftp_delete($this->link, $file);
|
2008-02-19 19:12:48 -05:00
|
|
|
if ( !$recursive )
|
2008-05-29 13:29:32 -04:00
|
|
|
return @ftp_rmdir($this->link, $file);
|
2009-04-19 15:36:28 -04:00
|
|
|
|
|
|
|
$filelist = $this->dirlist( trailingslashit($file) );
|
|
|
|
if ( !empty($filelist) )
|
|
|
|
foreach ( $filelist as $delete_file )
|
2011-03-21 20:04:15 -04:00
|
|
|
$this->delete( trailingslashit($file) . $delete_file['name'], $recursive, $delete_file['type'] );
|
2008-05-29 13:29:32 -04:00
|
|
|
return @ftp_rmdir($this->link, $file);
|
2008-02-11 03:46:11 -05:00
|
|
|
}
|
2008-02-19 19:12:48 -05:00
|
|
|
|
2008-05-29 13:29:32 -04:00
|
|
|
function exists($file) {
|
2009-08-15 04:31:06 -04:00
|
|
|
$list = @ftp_nlist($this->link, $file);
|
2009-04-19 15:36:28 -04:00
|
|
|
return !empty($list); //empty list = no file, so invert.
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function is_file($file) {
|
2009-04-19 15:36:28 -04:00
|
|
|
return $this->exists($file) && !$this->is_dir($file);
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function is_dir($path) {
|
2008-02-11 00:45:54 -05:00
|
|
|
$cwd = $this->cwd();
|
2009-04-19 15:36:28 -04:00
|
|
|
$result = @ftp_chdir($this->link, trailingslashit($path) );
|
2009-08-16 04:34:53 -04:00
|
|
|
if ( $result && $path == $this->cwd() || $this->cwd() != $cwd ) {
|
2008-02-26 13:35:01 -05:00
|
|
|
@ftp_chdir($this->link, $cwd);
|
2008-02-11 00:45:54 -05:00
|
|
|
return true;
|
|
|
|
}
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function is_readable($file) {
|
2009-04-19 15:36:28 -04:00
|
|
|
//Get dir list, Check if the file is readable by the current user??
|
2008-02-19 19:12:48 -05:00
|
|
|
return true;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function is_writable($file) {
|
2008-02-19 19:12:48 -05:00
|
|
|
//Get dir list, Check if the file is writable by the current user??
|
|
|
|
return true;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function atime($file) {
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function mtime($file) {
|
2008-02-19 19:12:48 -05:00
|
|
|
return ftp_mdtm($this->link, $file);
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function size($file) {
|
2008-02-19 19:12:48 -05:00
|
|
|
return ftp_size($this->link, $file);
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function touch($file, $time = 0, $atime = 0) {
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function mkdir($path, $chmod = false, $chown = false, $chgrp = false) {
|
2011-10-13 06:43:38 -04:00
|
|
|
$path = untrailingslashit($path);
|
|
|
|
if ( empty($path) )
|
|
|
|
return false;
|
|
|
|
|
2010-02-06 20:59:30 -05:00
|
|
|
if ( !@ftp_mkdir($this->link, $path) )
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
2010-06-01 00:11:29 -04:00
|
|
|
$this->chmod($path, $chmod);
|
2009-08-16 04:34:53 -04:00
|
|
|
if ( $chown )
|
2008-03-01 16:20:23 -05:00
|
|
|
$this->chown($path, $chown);
|
2009-08-16 04:34:53 -04:00
|
|
|
if ( $chgrp )
|
2008-03-01 16:20:23 -05:00
|
|
|
$this->chgrp($path, $chgrp);
|
2008-02-19 19:12:48 -05:00
|
|
|
return true;
|
|
|
|
}
|
2008-05-29 13:29:32 -04:00
|
|
|
function rmdir($path, $recursive = false) {
|
2009-04-19 15:36:28 -04:00
|
|
|
return $this->delete($path, $recursive);
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-03-01 16:20:23 -05:00
|
|
|
|
|
|
|
function parselisting($line) {
|
2009-04-19 15:36:28 -04:00
|
|
|
static $is_windows;
|
|
|
|
if ( is_null($is_windows) )
|
2010-02-13 21:27:19 -05:00
|
|
|
$is_windows = stripos( ftp_systype($this->link), 'win') !== false;
|
2009-04-19 15:36:28 -04:00
|
|
|
|
2010-02-06 20:31:40 -05: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 16:20:23 -05:00
|
|
|
$b = array();
|
2010-02-06 20:31:40 -05:00
|
|
|
if ( $lucifer[3] < 70 )
|
|
|
|
$lucifer[3] +=2000;
|
|
|
|
else
|
|
|
|
$lucifer[3] += 1900; // 4digit year fix
|
|
|
|
$b['isdir'] = ( $lucifer[7] == '<DIR>');
|
2008-03-01 16:20:23 -05:00
|
|
|
if ( $b['isdir'] )
|
|
|
|
$b['type'] = 'd';
|
|
|
|
else
|
|
|
|
$b['type'] = 'f';
|
|
|
|
$b['size'] = $lucifer[7];
|
|
|
|
$b['month'] = $lucifer[1];
|
|
|
|
$b['day'] = $lucifer[2];
|
|
|
|
$b['year'] = $lucifer[3];
|
|
|
|
$b['hour'] = $lucifer[4];
|
|
|
|
$b['minute'] = $lucifer[5];
|
2010-02-06 20:31:40 -05:00
|
|
|
$b['time'] = @mktime($lucifer[4] + (strcasecmp($lucifer[6], "PM") == 0 ? 12 : 0), $lucifer[5], 0, $lucifer[1], $lucifer[2], $lucifer[3]);
|
2008-03-01 16:20:23 -05:00
|
|
|
$b['am/pm'] = $lucifer[6];
|
|
|
|
$b['name'] = $lucifer[8];
|
2010-02-06 20:31:40 -05:00
|
|
|
} elseif ( !$is_windows && $lucifer = preg_split('/[ ]/', $line, 9, PREG_SPLIT_NO_EMPTY)) {
|
2008-03-01 16:20:23 -05:00
|
|
|
//echo $line."\n";
|
2010-02-06 20:31:40 -05:00
|
|
|
$lcount = count($lucifer);
|
|
|
|
if ( $lcount < 8 )
|
|
|
|
return '';
|
2008-03-01 16:20:23 -05:00
|
|
|
$b = array();
|
2010-02-06 20:59:30 -05:00
|
|
|
$b['isdir'] = $lucifer[0]{0} === 'd';
|
|
|
|
$b['islink'] = $lucifer[0]{0} === 'l';
|
2008-03-01 16:20:23 -05:00
|
|
|
if ( $b['isdir'] )
|
|
|
|
$b['type'] = 'd';
|
|
|
|
elseif ( $b['islink'] )
|
|
|
|
$b['type'] = 'l';
|
|
|
|
else
|
|
|
|
$b['type'] = 'f';
|
|
|
|
$b['perms'] = $lucifer[0];
|
|
|
|
$b['number'] = $lucifer[1];
|
|
|
|
$b['owner'] = $lucifer[2];
|
|
|
|
$b['group'] = $lucifer[3];
|
|
|
|
$b['size'] = $lucifer[4];
|
2010-02-06 20:31:40 -05:00
|
|
|
if ( $lcount == 8 ) {
|
|
|
|
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 16:20:23 -05:00
|
|
|
$b['name'] = $lucifer[7];
|
|
|
|
} else {
|
|
|
|
$b['month'] = $lucifer[5];
|
|
|
|
$b['day'] = $lucifer[6];
|
2010-02-06 20:31:40 -05:00
|
|
|
if ( preg_match('/([0-9]{2}):([0-9]{2})/', $lucifer[7], $l2) ) {
|
2008-03-01 16:20:23 -05:00
|
|
|
$b['year'] = date("Y");
|
|
|
|
$b['hour'] = $l2[1];
|
|
|
|
$b['minute'] = $l2[2];
|
|
|
|
} else {
|
|
|
|
$b['year'] = $lucifer[7];
|
|
|
|
$b['hour'] = 0;
|
|
|
|
$b['minute'] = 0;
|
|
|
|
}
|
2010-02-06 20:31:40 -05:00
|
|
|
$b['time'] = strtotime( sprintf('%d %s %d %02d:%02d', $b['day'], $b['month'], $b['year'], $b['hour'], $b['minute']) );
|
2008-03-01 16:20:23 -05:00
|
|
|
$b['name'] = $lucifer[8];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-06 07:39:39 -04:00
|
|
|
// Replace symlinks formatted as "source -> target" with just the source name
|
|
|
|
if ( $b['islink'] )
|
|
|
|
$b['name'] = preg_replace( '/(\s*->\s*.*)$/', '', $b['name'] );
|
|
|
|
|
2008-03-01 16:20:23 -05:00
|
|
|
return $b;
|
|
|
|
}
|
|
|
|
|
2009-09-14 22:21:00 -04:00
|
|
|
function dirlist($path = '.', $include_hidden = true, $recursive = false) {
|
2009-08-16 04:34:53 -04:00
|
|
|
if ( $this->is_file($path) ) {
|
2009-09-14 22:21:00 -04:00
|
|
|
$limit_file = basename($path);
|
2009-04-14 13:16:44 -04:00
|
|
|
$path = dirname($path) . '/';
|
2008-02-19 19:12:48 -05:00
|
|
|
} else {
|
2009-09-14 22:21:00 -04:00
|
|
|
$limit_file = false;
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-03-16 05:49:10 -04:00
|
|
|
|
2010-03-28 04:23:46 -04:00
|
|
|
$pwd = @ftp_pwd($this->link);
|
2011-09-03 10:18:10 -04:00
|
|
|
if ( ! @ftp_chdir($this->link, $path) ) // Cant change to folder = folder doesn't exist
|
2010-04-17 00:00:59 -04:00
|
|
|
return false;
|
2010-03-27 21:07:03 -04:00
|
|
|
$list = @ftp_rawlist($this->link, '-a', false);
|
|
|
|
@ftp_chdir($this->link, $pwd);
|
2008-03-16 05:49:10 -04:00
|
|
|
|
2010-02-24 15:01:37 -05:00
|
|
|
if ( empty($list) ) // Empty array = non-existent folder (real folder will show . at least)
|
2008-02-19 19:12:48 -05:00
|
|
|
return false;
|
|
|
|
|
2008-03-01 16:20:23 -05:00
|
|
|
$dirlist = array();
|
|
|
|
foreach ( $list as $k => $v ) {
|
|
|
|
$entry = $this->parselisting($v);
|
|
|
|
if ( empty($entry) )
|
2008-02-19 19:12:48 -05:00
|
|
|
continue;
|
2008-03-01 16:20:23 -05:00
|
|
|
|
2009-09-14 22:21:00 -04:00
|
|
|
if ( '.' == $entry['name'] || '..' == $entry['name'] )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( ! $include_hidden && '.' == $entry['name'][0] )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( $limit_file && $entry['name'] != $limit_file)
|
2008-02-19 19:12:48 -05:00
|
|
|
continue;
|
|
|
|
|
2008-05-29 13:29:32 -04:00
|
|
|
$dirlist[ $entry['name'] ] = $entry;
|
2008-03-01 16:20:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$ret = array();
|
2009-09-14 22:21:00 -04:00
|
|
|
foreach ( (array)$dirlist as $struc ) {
|
2008-03-01 16:20:23 -05:00
|
|
|
if ( 'd' == $struc['type'] ) {
|
2009-09-14 22:21:00 -04:00
|
|
|
if ( $recursive )
|
|
|
|
$struc['files'] = $this->dirlist($path . '/' . $struc['name'], $include_hidden, $recursive);
|
|
|
|
else
|
|
|
|
$struc['files'] = array();
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2009-09-14 22:21:00 -04:00
|
|
|
|
|
|
|
$ret[ $struc['name'] ] = $struc;
|
2008-02-11 00:45:54 -05:00
|
|
|
}
|
2008-02-19 03:22:42 -05:00
|
|
|
return $ret;
|
2008-02-19 19:12:48 -05:00
|
|
|
}
|
2008-03-01 16:20:23 -05:00
|
|
|
|
2009-08-16 04:34:53 -04:00
|
|
|
function __destruct() {
|
|
|
|
if ( $this->link )
|
2008-02-19 19:12:48 -05:00
|
|
|
ftp_close($this->link);
|
|
|
|
}
|
2008-02-11 00:45:54 -05:00
|
|
|
}
|