1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
<?php
// ensure this file is being included by a parent file
if( ! defined( '_JEXEC' ) && ! defined( '_VALID_MOS' ) )
die( 'Restricted access' ) ;
/**
* @version $Id: init.php 143 2009-04-01 18:48:16Z soeren $
* @package eXtplorer
* @copyright soeren 2009
* @author bas weermann (http://www.php.net/manual/de/function.ssh2-sftp.php#83174)
*
* @license
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
*
* Alternatively, the contents of this file may be used under the terms
* of the GNU General Public License Version 2 or later (the "GPL"), in
* which case the provisions of the GPL are applicable instead of
* those above. If you wish to allow use of your version of this file only
* under the terms of the GPL and not to allow others to use
* your version of this file under the MPL, indicate your decision by
* deleting the provisions above and replace them with the notice and
* other provisions required by the GPL. If you do not delete
* the provisions above, a recipient may use your version of this file
* under either the MPL or the GPL."
*
* This file handles SFTP (ssh2) connections
*/
require_once dirname( __FILE__ ) . '/PEAR.php' ;
class SFTPConnection extends PEAR {
var $connection ;
var $sftp ;
var $pwd = '';
function connect( $host, $port = 22 ) {
$this->connection = @ssh2_connect( $host, $port ) ;
if( ! $this->connection ) {
return $this->raiseError( "Could not connect to $host on port $port." ) ;
}
}
function login( $username, $password ) {
$auth_methods = ssh2_auth_none($this->connection, $username);
if (!in_array('password', $auth_methods)) {
return $this->raiseError( "The SSH Server does not support password based authentication" );
}
if( !@ssh2_auth_password( $this->connection, $username, $password ) ) {
return $this->raiseError( "Could not authenticate with username $username " . "(using a password)." ) ;
}
$this->sftp = @ssh2_sftp( $this->connection ) ;
if( ! $this->sftp ) {
return $this->raiseError( "Could not initialize SFTP subsystem." ) ;
}
}
function put( $local_file, $remote_file ) {
$sftp = $this->sftp ;
$stream = @fopen( "ssh2.sftp://$sftp$remote_file", 'w' ) ;
if( ! $stream ) {
return $this->raiseError( "Could not open file: $remote_file" ) ;
}
$data_to_send = @file_get_contents( $local_file ) ;
if( $data_to_send === false ) {
return $this->raiseError( "Could not open local file: $local_file." ) ;
}
if( @fwrite( $stream, $data_to_send ) === false ) {
return $this->raiseError( "Could not send data from file: $local_file." ) ;
}
@fclose( $stream ) ;
}
/**
* returns the current working dir
*
* @return string
*/
function pwd() {
return $this->pwd;
}
function is_readable($file) {
$sftp = $this->sftp ;
$pwd = $this->pwd();
$file =$file['name'];
return is_readable("ssh2.sftp://$sftp$pwd/$file");
}
/**
* Returns the directory contents of the directory specified by $remote_file
*
* @param string $remote_file
* @return array
*/
function ls( $remote_file ) {
$sftp = $this->sftp ;
if( empty($remote_file) || $remote_file == '.') {
$remote_file = '/';
}
$this->pwd = $remote_file;
$dir = "ssh2.sftp://$sftp$remote_file" ;
$tempArray = array() ;
$handle = @opendir( $dir ) ;
if( !$handle) return $tempArray;
// List all the files
while( false !== ($file = readdir( $handle )) ) {
if( substr( "$file", 0, 1 ) != "." ) {
if( is_dir( $file ) ) {
// $tempArray[$file] = $this->ls("$dir/$file");
} else {
$info = stat($dir.'/'.$file);
$tempArray[] = array_merge( $info,
array('name' => $file,
'is_dir' => (string)is_dir($dir.'/'.$file))
) ;
}
}
}
closedir( $handle ) ;
return $tempArray ;
}
function file_get_contents($remote_file) {
$sftp = $this->sftp ;
return file_get_contents("ssh2.sftp://$sftp".str_replace('\\','/',$remote_file));
}
function file_put_contents($remote_file, $data) {
$sftp = $this->sftp ;
return file_put_contents("ssh2.sftp://$sftp".str_replace('\\','/',$remote_file), $data);
}
function get( $remote_file, $local_file ) {
$sftp = $this->sftp ;
$stream = @fopen( "ssh2.sftp://$sftp$remote_file", 'rb' ) ;
if( !is_resource($stream) ) {
return $this->raiseError( "Could not open file: $remote_file" ) ;
}
stream_set_blocking($stream, FALSE );
stream_set_timeout($stream, 10);
$info = stream_get_meta_data($stream);
while (!feof($stream) && !$info['timed_out'] ) {
$content = fread($stream, 4096);
if( empty( $content )) break;
file_put_contents( $local_file, $content, FILE_APPEND);
$info = stream_get_meta_data($stream);
}
@fclose( $stream ) ;
}
function fget($remote_file, $local_file ) {
return $this->get($remote_file, $local_file) ;
}
function rm( $remote_file ) {
$sftp = $this->sftp ;
unlink( "ssh2.sftp://$sftp$remote_file" ) ;
}
function mkdir($dir, $recursive=false) {
$sftp = $this->sftp ;
mkdir( "ssh2.sftp://$sftp$dir" ) ;
}
function rename( $from_filename, $to_filename ) {
$sftp = $this->sftp ;
rename( "ssh2.sftp://$sftp$from_filename", "ssh2.sftp://$sftp$to_filename" ) ;
}
function size($remote_file) {
$sftp = $this->sftp ;
$info = stat( "ssh2.sftp://$sftp$remote_file" ) ;
if( $info ) {
return $info[7]; // this array index holds the size
}
return 0;
}
function chmod($file, $mode) {
ssh2_exec ( $this->connection, 'chmod '.(int)$mode.' ' . $file );
}
function chmodRecursive($file, $mode) {
ssh2_exec ( $this->connection, 'chmod -R '.(int)$mode.' ' . $file );
}
function cd($dir) { }
function disconnect() {}
}
|