-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathftp.php
376 lines (329 loc) · 6.77 KB
/
ftp.php
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<?php namespace Hybrid;
/**
* FTP Class based from Simple FTP Class
*
* @package FTP
* @author Shay Anderson 05.11
* @link http://www.shayandeerson.com/php/simple-ftp-class-for-php.htm
* @license GPL License <http://www.gnu.org/licenses/gpl.html>
*
*/
use \Log;
class FTP {
/**
* FTP Host.
*
* @var string
*/
protected $host = null;
/**
* FTP Port.
*
* @var int
*/
protected $port = 21;
/**
* FTP User.
*
* @var string
*/
protected $user = null;
/**
* FTP Password.
*
* @var string
*/
protected $password = null;
/**
* FTP Stream
*
* @var resource_id
*/
protected $stream = null;
/**
* FTP timeout.
*
* @var int
*/
protected $timeout = 90;
/**
* FTP passive mode flag
*
* @var bool
*/
protected $passive = false;
/**
* SSL-FTP connection flag.
*
* @var bool
*/
protected $ssl = false;
/**
* System type of FTP server.
*
* @var string
*/
protected $system_type;
/**
* Make a new FTP instance
*
* @static
* @access public
* @param array $config
* @return FTP
*/
public static function make($config = array())
{
return new static($config);
}
/**
* Initialize connection params
*
* @access public
* @param array $config
* @return void
*/
public function __construct($config = array())
{
if ( ! empty($config)) $this->setup($config);
}
/**
* Configure FTP.
*
* @access public
* @return void
*/
public function setup($config = array())
{
$host = isset($config['host']) ? $config['host'] : null;
if (preg_match('/^(ftp|sftp):\/\/([a-zA-Z0-9\.\-_]*):?(\d{1,4})$/', $host, $matches))
{
$config['host'] = $matches[2];
$config['ssl'] = ($matches[1] === 'sftp' ? true : false);
if (isset($matches[3])) $config['port'] = $matches[3];
}
foreach ($config as $key => $value)
{
if ( ! property_exists($this, $key)) continue;
$this->{$key} = $value;
}
}
/**
* Change current directory on FTP server.
*
* @access public
* @param string $directory
* @return bool
*/
public function cd($directory)
{
if ( ! @ftp_chdir($this->stream, $directory))
{
throw new FTP\RuntimeException("Failed cd to [{$directory}].");
}
return true;
}
/**
* Get current directory path.
*
* @access public
* @return string
*/
public function pwd()
{
return @ftp_pwd($this->stream);
}
/**
* Download file from FTP server.
*
* @access public
* @param string $remote_file
* @param string $local_file
* @param int $mode
* @return bool
*/
public function get($remote_file, $local_file, $mode = FTP_ASCII)
{
if ( ! @ftp_get($this->stream, $local_file, $remote_file, $mode))
{
throw new FTP\RuntimeException("Failed to download file [{$remote_file}].");
}
return true;
}
/**
* Upload file to FTP server.
*
* @access public
* @param string $local_file
* @param string $remote_file
* @param int $mode
* @return bool
*/
public function put($local_file, $remote_file, $mode = FTP_ASCII)
{
if ( ! @ftp_put($this->stream, $remote_file, $local_file, $mode))
{
throw new FTP\RuntimeException("Failed to upload file [{$local_file}].");
}
return true;
}
/**
* Rename file on FTP server.
*
* @access public
* @param string $old_name
* @param string $new_name
* @return bool
*/
public function rename($old_name, $new_name)
{
if ( ! @ftp_rename($this->stream, $old_name, $new_name))
{
throw new FTP\RuntimeException("Failed to rename file [{$old_name}].");
}
return true;
}
/**
* Delete file on FTP server.
*
* @access public
* @param string $remote_file
* @return bool
*/
public function delete($remote_file)
{
if ( ! @ftp_delete($this->stream, $remote_file))
{
throw new FTP\RuntimeException("Failed to delete file [{$remote_file}].");
}
return true;
}
/**
* Set file permissions.
*
* @access public
* @param string $remote_file
* @param int $permissions For example: 0644
* @return bool
* @throws RuntimeException If unable to chmod $remote_file
*/
public function chmod($remote_file, $permission = 0644)
{
if ( ! @ftp_chmod($this->stream, $permission, $remote_file))
{
throw new FTP\RuntimeException("Failed chmod for [{$remote_file}].");
}
return true;
}
/**
* Get list of files/directories on FTP server.
*
* @access public
* @param string $directory
* @return array
*/
public function ls($directory)
{
if ( ! ($list = @ftp_nlist($this->stream, $directory)))
{
throw new FTP\RuntimeException("Failed to get directory list for [{$directory}].");
}
return is_array($list) ? $list : array();
}
/**
* Create directory on FTP server.
*
* @access public
* @param string $directory
* @return bool
*/
public function mkdir($directory)
{
if ( ! @ftp_mkdir($this->stream, $directory))
{
throw new FTP\RuntimeException("Failed to create directory [{$directory}].");
}
return true;
}
/**
* Remove directory on FTP server.
*
* @access public
* @param string $directory
* @return bool
*/
public function rmdir($directory)
{
if ( ! @ftp_rmdir($this->stream, $directory))
{
throw new FTP\RuntimeException("Failed to remove directory [{$directory}].");
}
return true;
}
/**
* Connect to FTP server.
*
* @access public
* @return bool
* @throws RuntimeException If unable to connect to FTP server.
*/
public function connect()
{
if (is_null($this->host)) return ;
if ($this->ssl and function_exists('ftp_ssl_connect'))
{
if ( ! ($this->stream = @ftp_ssl_connect($this->host, $this->port, $this->timeout)))
{
throw new FTP\ServerException(
"Failed to connect to [{$this->host}] (SSL Connection)."
);
}
}
elseif ( ! ($this->stream = @ftp_connect($this->host, $this->port, $this->timeout)))
{
throw new FTP\ServerException("Failed to connect to [{$this->host}].");
}
return $this->login();
}
/**
* Login to FTP server.
*
* @access protected
* @return bool
* @throws RuntimeException If failed to login to FTP server.
*/
public function login()
{
if ( ! (@ftp_login($this->stream, $this->user, $this->password)))
{
throw new FTP\ServerException("Failed FTP login to [{$this->host}].");
}
// Set passive mode.
ftp_pasv($this->stream, (bool) $this->passive);
// set system type
$this->system_type = ftp_systype($this->stream);
return true;
}
/**
* Close FTP connection.
*
* @access public
* @return void
* @throws RuntimeException If unable to close connection.
*/
public function close()
{
if ($this->stream) ftp_close($this->stream);
$this->stream = false;
}
/**
* Check FTP connection status.
*
* @access public
* @return bool
*/
public function connected()
{
return ( ! is_null($this->stream));
}
}