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
|
<?php
// DO NOT CALL THIS CLASS DIRECTLY. CALL VIA: pb_backupbuddy_destination in bootstrap.php.
class pb_backupbuddy_destination_ftp { public static $destination_info = array( 'name' => 'FTP', 'description' => 'File Transport Protocol. This is the most common way of sending larger files between servers. Most web hosting accounts provide FTP access. This common and well-known transfer method is tried and true.', ); // Default settings. Should be public static for auto-merging. public static $default_settings = array( 'type' => 'ftp', // MUST MATCH your destination slug. 'title' => '', // Required destination field. 'address' => '', 'username' => '', 'password' => '', 'path' => '', 'active_mode' => 0, // 1 = active, 0=passive mode (default > v3.1.8). 'ftps' => 0, 'archive_limit' => 0, 'url' => '', // optional url for migration that corresponds to this ftp/path. 'disable_file_management' => '0', // When 1, _manage.php will not load which renders remote file management DISABLED. ); /* send() * * Send one or more files. * * @param array $files Array of one or more files to send. * @return boolean True on success, else false. */ public static function send( $settings = array(), $files = array(), $send_id = '' ) { pb_backupbuddy::status( 'details', 'FTP class send() function started.' ); if ( $settings['active_mode'] == '0' ) { $active_mode = false; } else { $active_mode = true; } $server = $settings['address']; $username = $settings['username']; $password = $settings['password']; $path = $settings['path']; $ftps = $settings['ftps']; $limit = $settings['archive_limit']; $active = $settings['active_mode']; $port = '21'; // Default FTP port. if ( strstr( $server, ':' ) ) { // Handle custom FTP port. $server_params = explode( ':', $server ); $server = $server_params[0]; $port = $server_params[1]; } // Connect to server. if ( $ftps == '1' ) { // Connect with FTPs. if ( function_exists( 'ftp_ssl_connect' ) ) { $conn_id = ftp_ssl_connect( $server, $port ); if ( $conn_id === false ) { pb_backupbuddy::status( 'details', 'Unable to connect to FTPS `' . $server . '` on port `' . $port . '` (check address/FTPS support and that server can connect to this address via this port).', 'error' ); return false; } else { pb_backupbuddy::status( 'details', 'Connected to FTPs.' ); } } else { pb_backupbuddy::status( 'details', 'Your web server doesnt support FTPS in PHP.', 'error' ); return false; } } else { // Connect with FTP (normal). if ( function_exists( 'ftp_connect' ) ) { $conn_id = ftp_connect( $server, $port ); if ( $conn_id === false ) { pb_backupbuddy::status( 'details', 'ERROR: Unable to connect to FTP server `' . $server . '` on port `' . $port . '` (check address and that server can connect to this address via this port).', 'error' ); return false; } else { pb_backupbuddy::status( 'details', 'Connected to FTP.' ); } } else { pb_backupbuddy::status( 'details', 'Your web server doesnt support FTP in PHP.', 'error' ); return false; } } // Log in. $login_result = @ftp_login( $conn_id, $username, $password ); if ( $login_result === false ) { backupbuddy_core::mail_error( 'ERROR #9011 ( http://ithemes.com/codex/page/BackupBuddy:_Error_Codes#9011 ). FTP/FTPs login failed on scheduled FTP.' ); return false; } else { pb_backupbuddy::status( 'details', 'Logged in. Sending backup via FTP/FTPs ...' ); } if ( $active_mode === true ) { // do nothing, active is default. pb_backupbuddy::status( 'details', 'Active FTP mode based on settings.' ); } elseif ( $active_mode === false ) { // Turn passive mode on. pb_backupbuddy::status( 'details', 'Passive FTP mode based on settings.' ); ftp_pasv( $conn_id, true ); } else { pb_backupbuddy::status( 'error', 'Unknown FTP active/passive mode: `' . $active_mode . '`.' ); } // Create directory if it does not exist. @ftp_mkdir( $conn_id, $path ); // Change to directory. pb_backupbuddy::status( 'details', 'Entering FTP directory `' . $path . '`.' ); ftp_chdir( $conn_id, $path ); // Upload files. $total_transfer_size = 0; $total_transfer_time = 0; foreach( $files as $file ) { if ( ! file_exists( $file ) ) { pb_backupbuddy::status( 'error', 'Error #859485495. Could not upload local file `' . $file . '` to send to FTP as it does not exist. Verify the file exists, permissions of file, parent directory, and that ownership is correct. You may need suphp installed on the server.' ); } if ( ! is_readable( $file ) ) { pb_backupbuddy::status( 'error', 'Error #8594846548. Could not read local file `' . $file . '` to sendto FTP as it is not readable. Verify permissions of file, parent directory, and that ownership is correct. You may need suphp installed on the server.' ); } $filesize = filesize( $file ); $total_transfer_size += $filesize; $destination_file = basename( $file ); // Using chdir() so path not needed. $path . '/' . basename( $file ); pb_backupbuddy::status( 'details', 'About to put to FTP local file `' . $file . '` of size `' . pb_backupbuddy::$format->file_size( $filesize ) . '` to remote file `' . $destination_file . '`.' ); $send_time = -microtime( true ); $upload = ftp_put( $conn_id, $destination_file, $file, FTP_BINARY ); $send_time += microtime( true ); $total_transfer_time += $send_time; if ( $upload === false ) { $error_message = 'ERROR #9012 ( http://ithemes.com/codex/page/BackupBuddy:_Error_Codes#9012 ). FTP/FTPs file upload failed. Check file permissions & disk quota.'; pb_backupbuddy::status( 'error', $error_message ); backupbuddy_core::mail_error( $error_message ); return false; } else { pb_backupbuddy::status( 'details', 'Success completely sending `' . basename( $file ) . '` to destination.' ); // Start remote backup limit if ( $limit > 0 ) { pb_backupbuddy::status( 'details', 'Getting contents of backup directory.' ); ftp_chdir( $conn_id, $path ); $contents = ftp_nlist( $conn_id, '' ); // Create array of backups $bkupprefix = backupbuddy_core::backup_prefix(); $backups = array(); foreach ( $contents as $backup ) { // check if file is backup $pos = strpos( $backup, 'backup-' . $bkupprefix . '-' ); if ( $pos !== FALSE ) { array_push( $backups, $backup ); } } arsort( $backups ); // some ftp servers seem to not report in proper order so reversing insufficiently reliable. need to reverse sort by filename. array_reverse( (array)$backups ); if ( ( count( $backups ) ) > $limit ) { $delete_fail_count = 0; $i = 0; foreach( $backups as $backup ) { $i++; if ( $i > $limit ) { if ( !ftp_delete( $conn_id, $backup ) ) { pb_backupbuddy::status( 'details', 'Unable to delete excess FTP file `' . $backup . '` in path `' . $path . '`.' ); $delete_fail_count++; } } } if ( $delete_fail_count !== 0 ) { backupbuddy_core::mail_error( sprintf( __('FTP remote limit could not delete %s backups. Please check and verify file permissions.', 'it-l10n-backupbuddy' ), $delete_fail_count ) ); } } } else { pb_backupbuddy::status( 'details', 'No FTP file limit to enforce.' ); } // End remote backup limit } } // end $files loop. // Load destination fileoptions. pb_backupbuddy::status( 'details', 'About to load fileoptions data.' ); require_once( pb_backupbuddy::plugin_path() . '/classes/fileoptions.php' ); pb_backupbuddy::status( 'details', 'Fileoptions instance #13.' ); $fileoptions_obj = new pb_backupbuddy_fileoptions( backupbuddy_core::getLogDirectory() . 'fileoptions/send-' . $send_id . '.txt', $read_only = false, $ignore_lock = false, $create_file = false ); if ( true !== ( $result = $fileoptions_obj->is_ok() ) ) { pb_backupbuddy::status( 'error', __('Fatal Error #9034.84838. Unable to access fileoptions data.', 'it-l10n-backupbuddy' ) . ' Error: ' . $result ); return false; } pb_backupbuddy::status( 'details', 'Fileoptions data loaded.' ); $fileoptions = &$fileoptions_obj->options; // Save stats. $fileoptions['write_speed'] = $total_transfer_size / $total_transfer_time; //$fileoptions['finish_time'] = time(); //$fileoptions['status'] = 'success'; $fileoptions_obj->save(); unset( $fileoptions_obj ); ftp_close( $conn_id ); return true; } // End send(). /* test() * * function description * * @param array $settings Destination settings. * @return bool|string True on success, string error message on failure. */ public static function test( $settings ) { if ( ( $settings['address'] == '' ) || ( $settings['username'] == '' ) || ( $settings['password'] == '' ) ) { return __('Missing required input.', 'it-l10n-backupbuddy' ); } // Try sending a file. $send_response = pb_backupbuddy_destinations::send( $settings, dirname( dirname( __FILE__ ) ) . '/remote-send-test.php', $send_id = 'TEST-' . pb_backupbuddy::random_string( 12 ) ); // 3rd param true forces clearing of any current uploads. if ( false === $send_response ) { $send_response = 'Error sending test file to FTP.'; } else { $send_response = 'Success.'; } // Now we will need to go and cleanup this potentially uploaded file. $delete_response = 'Error deleting test file from FTP.'; // Default. // Settings. $server = $settings['address']; $username = $settings['username']; $password = $settings['password']; $path = $settings['path']; $ftps = $settings['ftps']; if ( $settings['active_mode'] == '0' ) { $active_mode = false; } else { $active_mode = true; } $url = $settings['url']; // optional url for using with migration. $port = '21'; if ( strstr( $server, ':' ) ) { $server_params = explode( ':', $server ); $server = $server_params[0]; $port = $server_params[1]; } // Connect. if ( $ftps == '0' ) { $conn_id = @ftp_connect( $server, $port, 10 ); // timeout of 10 seconds. if ( $conn_id === false ) { $error = __( 'Unable to connect to FTP address `' . $server . '` on port `' . $port . '`.', 'it-l10n-backupbuddy' ); $error .= "\n" . __( 'Verify the server address and port (default 21). Verify your host allows outgoing FTP connections.', 'it-l10n-backupbuddy' ); return $send_response . ' ' . $error; } } else { if ( function_exists( 'ftp_ssl_connect' ) ) { $conn_id = @ftp_ssl_connect( $server, $port ); if ( $conn_id === false ) { return $send_response . ' ' . __('Destination server does not support FTPS?', 'it-l10n-backupbuddy' ); } } else { return $send_response . ' ' . __('Your web server doesnt support FTPS.', 'it-l10n-backupbuddy' ); } } $login_result = @ftp_login( $conn_id, $username, $password ); if ( ( !$conn_id ) || ( !$login_result ) ) { pb_backupbuddy::status( 'details', 'FTP test: Invalid user/pass.' ); $response = __('Unable to login. Bad user/pass.', 'it-l10n-backupbuddy' ); if ( $ftps != '0' ) { $response .= "\n\nNote: You have FTPs enabled. You may get this error if your host does not support encryption at this address/port."; } return $send_response . ' ' . $response; } pb_backupbuddy::status( 'details', 'FTP test: Success logging in.' ); // Handle active/pasive mode. if ( $active_mode === true ) { // do nothing, active is default. pb_backupbuddy::status( 'details', 'Active FTP mode based on settings.' ); } elseif ( $active_mode === false ) { // Turn passive mode on. pb_backupbuddy::status( 'details', 'Passive FTP mode based on settings.' ); ftp_pasv( $conn_id, true ); } else { pb_backupbuddy::status( 'error', 'Unknown FTP active/passive mode: `' . $active_mode . '`.' ); } // Delete test file. pb_backupbuddy::status( 'details', 'FTP test: Deleting temp test file.' ); if ( true === ftp_delete( $conn_id, $path . '/remote-send-test.php' ) ) { $delete_response = 'Success.'; } // Close FTP connection. pb_backupbuddy::status( 'details', 'FTP test: Closing FTP connection.' ); @ftp_close($conn_id); // Load destination fileoptions. pb_backupbuddy::status( 'details', 'About to load fileoptions data.' ); require_once( pb_backupbuddy::plugin_path() . '/classes/fileoptions.php' ); pb_backupbuddy::status( 'details', 'Fileoptions instance #12.' ); $fileoptions_obj = new pb_backupbuddy_fileoptions( backupbuddy_core::getLogDirectory() . 'fileoptions/send-' . $send_id . '.txt', $read_only = false, $ignore_lock = false, $create_file = false ); if ( true !== ( $result = $fileoptions_obj->is_ok() ) ) { pb_backupbuddy::status( 'error', __('Fatal Error #9034.72373. Unable to access fileoptions data.', 'it-l10n-backupbuddy' ) . ' Error: ' . $result ); return false; } pb_backupbuddy::status( 'details', 'Fileoptions data loaded.' ); $fileoptions = &$fileoptions_obj->options; if ( ( 'Success.' != $send_response ) || ( 'Success.' != $delete_response ) ) { $fileoptions['status'] = 'failure'; $fileoptions_obj->save(); unset( $fileoptions_obj ); return 'Send details: `' . $send_response . '`. Delete details: `' . $delete_response . '`.'; } else { $fileoptions['status'] = 'success'; $fileoptions['finish_time'] = time(); } $fileoptions_obj->save(); unset( $fileoptions_obj ); return true; } // End test(). } // End class.
|