C:\xampp\htdocs\landing\wp-content\updraft\plugins-old\updraftplus\methods\cloudfiles.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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
<?php

if (!defined('UPDRAFTPLUS_DIR')) die('No direct access.');

/**
 * Converted to job_options: yes
 * Converted to array options: yes
 * Migration code for "new"-style options removed: Feb 2017 (created: Dec 2013)
 */

if (!class_exists('UpdraftPlus_BackupModule')) require_once(UPDRAFTPLUS_DIR.'/methods/backup-module.php');

/**
 * Old SDK
 */
class UpdraftPlus_BackupModule_cloudfiles_oldsdk extends UpdraftPlus_BackupModule {

    
/**
     * This function does not catch any exceptions - that should be done by the caller
     *
     * @param  string  $user
     * @param  string  $apikey
     * @param  string  $authurl
     * @param  boolean $useservercerts
     * @return array
     */
    
private function getCF($user$apikey$authurl$useservercerts false) {
        
        
$storage $this->get_storage();
        if (!empty(
$storage)) return $storage;
        
        if (!
class_exists('UpdraftPlus_CF_Authentication')) include_once(UPDRAFTPLUS_DIR.'/includes/cloudfiles/cloudfiles.php');

        if (!
defined('UPDRAFTPLUS_SSL_DISABLEVERIFY')) define('UPDRAFTPLUS_SSL_DISABLEVERIFY'UpdraftPlus_Options::get_updraft_option('updraft_ssl_disableverify'));

        
$auth = new UpdraftPlus_CF_Authentication($usertrim($apikey), null$authurl);

        
$this->log("authentication URL: $authurl");

        
$auth->authenticate();

        
$storage = new UpdraftPlus_CF_Connection($auth);

        if (!
$useservercerts$storage->ssl_use_cabundle(UPDRAFTPLUS_DIR.'/includes/cacert.pem');

        
$this->set_storage($storage);
        
        return 
$storage;

    }

    
/**
     * This method overrides the parent method and lists the supported features of this remote storage option.
     *
     * @return Array - an array of supported features (any features not
     * mentioned are assumed to not be supported)
     */
    
public function get_supported_features() {
        
// This options format is handled via only accessing options via $this->get_options()
        
return array('multi_options''config_templates''multi_storage''conditional_logic');
    }

    
/**
     * Retrieve default options for this remote storage module.
     *
     * @return Array - an array of options
     */
    
public function get_default_options() {
        return array(
            
'user' => '',
            
'authurl' => 'https://auth.api.rackspacecloud.com',
            
'apikey' => '',
            
'path' => '',
            
'region' => null
        
);
    }
    
    
/**
     * Check whether options have been set up by the user, or not
     *
     * @param Array $opts - the potential options
     *
     * @return Boolean
     */
    
public function options_exist($opts) {
        if (
is_array($opts) && isset($opts['user']) && '' != $opts['user'] && !empty($opts['apikey'])) return true;
        return 
false;
    }

    public function 
backup($backup_array) {

        global 
$updraftplus;

        
$opts $this->get_options();

        
$updraft_dir $updraftplus->backups_dir_location().'/';

        
$container $opts['path'];

        try {
            
$storage $this->getCF($opts['user'], $opts['apikey'], $opts['authurl'], UpdraftPlus_Options::get_updraft_option('updraft_ssl_useservercerts'));
            
$container_object $storage->create_container($container);
        } catch (
AuthenticationException $e) {
            
$this->log('authentication failed ('.$e->getMessage().')');
            
$this->log(__('authentication failed''updraftplus').' ('.$e->getMessage().')''error');
            return 
false;
        } catch (
NoSuchAccountException $s) {
            
$this->log('authentication failed ('.$e->getMessage().')');
            
$this->log(__('authentication failed''updraftplus').' ('.$e->getMessage().')''error');
            return 
false;
        } catch (
Exception $e) {
            
$this->log('error - failed to create and access the container ('.$e->getMessage().')');
            
$this->log(__('error - failed to create and access the container''updraftplus').' ('.$e->getMessage().')''error');
            return 
false;
        }

        
$chunk_size 5*1024*1024;

        foreach (
$backup_array as $file) {

            
$fullpath $updraft_dir.$file;
            
$orig_file_size filesize($fullpath);

// $cfpath = ($path == '') ? $file : "$path/$file";
// $chunk_path = ($path == '') ? "chunk-do-not-delete-$file" : "$path/chunk-do-not-delete-$file";
            
$cfpath $file;
            
$chunk_path "chunk-do-not-delete-$file";

            try {
                
$object = new UpdraftPlus_CF_Object($container_object$cfpath);
                
$object->content_type "application/zip";

                
$uploaded_size = (isset($object->content_length)) ? $object->content_length 0;

                if (
$uploaded_size <= $orig_file_size) {

                    
$fp = @fopen($fullpath"rb");// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged
                    
if (!$fp) {
                        
$this->log("failed to open file: $fullpath");
                        
$this->log("$file: ".__('Error: Failed to open local file''updraftplus'), 'error');
                        return 
false;
                    }

                    
$chunks floor($orig_file_size $chunk_size);
                    
// There will be a remnant unless the file size was exactly on a 5MB boundary
                    
if ($orig_file_size $chunk_size 0$chunks++;

                    
$this->log("upload: $file (chunks: $chunks) -> cloudfiles://$container/$cfpath ($uploaded_size)");

                    if (
$chunks 2) {
                        try {
                            
$object->load_from_filename($fullpath);
                            
$this->log("regular upload: success");
                            
$updraftplus->uploaded_file($file);
                        } catch (
Exception $e) {
                            
$this->log("regular upload: failed ($file) (".$e->getMessage().")");
                            
$this->log("$file: ".__('Error: Failed to upload''updraftplus'), 'error');
                        }
                    } else {
                        
$errors_so_far 0;
                        for (
$i 1$i <= $chunks$i++) {
                            
$upload_start = ($i-1)*$chunk_size;
                            
// The file size -1 equals the byte offset of the final byte
                            
$upload_end min($i*$chunk_size-1$orig_file_size-1);
                            
$upload_remotepath $chunk_path."_$i";
                            
// Don't forget the +1; otherwise the last byte is omitted
                            
$upload_size $upload_end $upload_start 1;
                            
$chunk_object = new UpdraftPlus_CF_Object($container_object$upload_remotepath);
                            
$chunk_object->content_type "application/zip";
                            
// Without this, some versions of Curl add Expect: 100-continue, which results in Curl then giving this back: curl error: 55) select/poll returned error
                            // Didn't make the difference - instead we just check below for actual success even when Curl reports an error
                            // $chunk_object->headers = array('Expect' => '');

                            
$remote_size = (isset($chunk_object->content_length)) ? $chunk_object->content_length 0;

                            if (
$remote_size >= $upload_size) {
                                
$this->log("Chunk $i ($upload_start - $upload_end): already uploaded");
                            } else {
                                
$this->log("Chunk $i ($upload_start - $upload_end): begin upload");
                                
// Upload the chunk
                                
fseek($fp$upload_start);
                                try {
                                    
$chunk_object->write($fp$upload_sizefalse);
                                    
$updraftplus->record_uploaded_chunk(round(100*$i/$chunks1), $i$fullpath);
                                } catch (
Exception $e) {
                                    
$this->log("chunk upload: error: ($file / $i) (".$e->getMessage().")");
                                    
// Experience shows that Curl sometimes returns a select/poll error (curl error 55) even when everything succeeded. Google seems to indicate that this is a known bug.
                                    
                                    
$chunk_object = new UpdraftPlus_CF_Object($container_object$upload_remotepath);
                                    
$chunk_object->content_type "application/zip";
                                    
$remote_size = (isset($chunk_object->content_length)) ? $chunk_object->content_length 0;
                                    
                                    if (
$remote_size >= $upload_size) {

                                        
$this->log("$file: Chunk now exists; ignoring error (presuming it was an apparently known curl bug)");

                                    } else {

                                        
$this->log("$file: ".__('Error: Failed to upload''updraftplus'), 'error');
                                        
$errors_so_far++;
                                        if (
$errors_so_far >=3) return false;

                                    }

                                }
                            }
                        }
                        if (
$errors_so_far) return false;
                        
// All chunks are uploaded - now upload the manifest
                        
                        
try {
                            
$object->manifest $container."/".$chunk_path."_";
                            
// Put a zero-length file
                            
$object->write(""0false);
                            
$object->sync_manifest();
                            
$this->log("upload: success");
                            
$updraftplus->uploaded_file($file);
// } catch (InvalidResponseException $e) {
                        
} catch (Exception $e) {
                            
$this->log('error - failed to re-assemble chunks ('.$e->getMessage().')');
                            
$this->log(__('error - failed to re-assemble chunks''updraftplus').' ('.$e->getMessage().')''error');
                            return 
false;
                        }
                    }
                }

            } catch (
Exception $e) {
                
$this->log(__('error - failed to upload file''updraftplus').' ('.$e->getMessage().')');
                
$this->log(__('error - failed to upload file''updraftplus').' ('.$e->getMessage().')''error');
                return 
false;
            }

        }

        return array(
'cloudfiles_object' => $container_object'cloudfiles_orig_path' => $opts['path'], 'cloudfiles_container' => $container);

    }

    public function 
listfiles($match 'backup_') {

        
$opts $this->get_options();
        
$container $opts['path'];

        if (empty(
$opts['user']) || empty($opts['apikey'])) new WP_Error('no_settings'__('No settings were found''updraftplus'));

        try {
            
$storage $this->getCF($opts['user'], $opts['apikey'], $opts['authurl'], UpdraftPlus_Options::get_updraft_option('updraft_ssl_useservercerts'));
            
$container_object $storage->create_container($container);
        } catch (
Exception $e) {
            return new 
WP_Error('no_access'sprintf(__('%s authentication failed''updraftplus'), 'Cloud Files').' ('.$e->getMessage().')');
        }

        
$results = array();

        try {
            
$objects $container_object->list_objects(0null$match);
            foreach (
$objects as $name) {
                
$result = array('name' => $name);
                try {
                    
$object = new UpdraftPlus_CF_Object($container_object$nametrue);
                    if (
== $object->content_length) {
                        
$result false;
                    } else {
                        
$result['size'] = $object->content_length;
                    }
                } catch (
Exception $e) {
                    
// Catch
                
}
                if (
is_array($result)) $results[] = $result;
            }
        } catch (
Exception $e) {
            return new 
WP_Error('cf_error''Cloud Files error ('.$e->getMessage().')');
        }

        return 
$results;

    }
    
    
/**
     * Delete a single file from the service using the CloudFiles API
     *
     * @param Array $files         - array of file paths to delete
     * @param Array $cloudfilesarr - CloudFiles container and object details
     * @param Array $sizeinfo      - unused here
     * @return Boolean|String - either a boolean true or an error code string
     */
    
public function delete($files$cloudfilesarr false$sizeinfo = array()) {// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable -- $sizeinfo is unused

        
if (is_string($files)) $files =array($files);

        if (
$cloudfilesarr) {
            
$container_object $cloudfilesarr['cloudfiles_object'];
            
$container $cloudfilesarr['cloudfiles_container'];
        } else {
            try {
                
$opts $this->get_options();
                
$container $opts['path'];
                
$storage $this->getCF($opts['user'], $opts['apikey'], $opts['authurl'], UpdraftPlus_Options::get_updraft_option('updraft_ssl_useservercerts'));
                
$container_object $storage->create_container($container);
            } catch (
Exception $e) {
                
$this->log('authentication failed ('.$e->getMessage().')');
                
$this->log(__('authentication failed''updraftplus').' ('.$e->getMessage().')''error');
                return 
'authentication_fail';
            }
        }

        
$ret true;
        foreach (
$files as $file) {

            
$fpath $file;

            
$this->log("Delete remote: container=$container, path=$fpath");

            
// We need to search for chunks
            
$chunk_path "chunk-do-not-delete-$file";

            try {
                
$objects $container_object->list_objects(0null$chunk_path.'_');
                foreach (
$objects as $chunk) {
                    
$this->log('Chunk to delete: '.$chunk);
                    
$container_object->delete_object($chunk);
                    
$this->log('Chunk deleted: '.$chunk);
                }
            } catch (
Exception $e) {
                
$this->log('chunk delete failed: '.$e->getMessage());
            }

            try {
                
$container_object->delete_object($fpath);
                
$this->log('Deleted: '.$fpath);
            } catch (
Exception $e) {
                
$this->log('delete failed: '.$e->getMessage());
                
$ret 'file_delete_error';
            }
        }
        return 
$ret;
    }

    public function 
download($file) {

        global 
$updraftplus;
        
$updraft_dir $updraftplus->backups_dir_location();

        
$opts $this->get_options();

        try {
            
$storage $this->getCF($opts['user'], $opts['apikey'], $opts['authurl'], UpdraftPlus_Options::get_updraft_option('updraft_ssl_useservercerts'));
        } catch (
AuthenticationException $e) {
            
$this->log('authentication failed ('.$e->getMessage().')');
            
$this->log(__('authentication failed''updraftplus').' ('.$e->getMessage().')''error');
            return 
false;
        } catch (
NoSuchAccountException $s) {
            
$this->log('authentication failed ('.$e->getMessage().')');
            
$this->log(__('authentication failed''updraftplus').' ('.$e->getMessage().')''error');
            return 
false;
        } catch (
Exception $e) {
            
$this->log('error - failed to create and access the container ('.$e->getMessage().')');
            
$this->log(__('error - failed to create and access the container''updraftplus').' ('.$e->getMessage().')''error');
            return 
false;
        }

        
$path untrailingslashit($opts['path']);

        
$container $path;

        try {
            
$container_object $storage->create_container($container);
        } catch (
Exception $e) {
            
$this->log('error - failed to create and access the container ('.$e->getMessage().')');
            
$this->log(__('error - failed to create and access the container''updraftplus').' ('.$e->getMessage().')''error');
            return 
false;
        }

        
$path $file;

        
$this->log("download: cloudfiles://$container/$path");

        try {
            
// The third parameter causes an exception to be thrown if the object does not exist remotely
            
$object = new UpdraftPlus_CF_Object($container_object$pathtrue);
            
            
$fullpath $updraft_dir.'/'.$file;

            
$start_offset = (file_exists($fullpath)) ? filesize($fullpath) : 0;

            
// Get file size from remote - see if we've already finished

            
$remote_size $object->content_length;

            if (
$start_offset >= $remote_size) {
                
$this->log("file is already completely downloaded ($start_offset/$remote_size)");
                return 
true;
            }

            
// Some more remains to download - so let's do it
            
if (!$fh fopen($fullpath'a')) {
                
$this->log("Error opening local file: $fullpath");
                
$this->log("$file: ".__('Error opening local file: Failed to download''updraftplus'), 'error');
                return 
false;
            }

            
$headers = array();
            
// If resuming, then move to the end of the file
            
if ($start_offset) {
                
$this->log("local file is already partially downloaded ($start_offset/$remote_size)");
                
fseek($fh$start_offset);
                
$headers['Range'] = "bytes=$start_offset-";
            }

            
// Now send the request itself
            
try {
                
$object->stream($fh$headers);
            } catch (
Exception $e) {
                
$this->log("Failed to download: $file (".$e->getMessage().")");
                
$this->log("$file: ".__('Error downloading remote file: Failed to download''updraftplus').' ('.$e->getMessage().")"'error');
                return 
false;
            }
            
            
// All-in-one-go method:
            // $object->save_to_filename($fullpath);

        
} catch (NoSuchObjectException $e) {
            
$this->log('error - no such file exists. ('.$e->getMessage().')');
            
$this->log(__('Error - no such file exists.''updraftplus').' ('.$e->getMessage().')''error');
            return 
false;
        } catch (
Exception $e) {
            
$this->log('error - failed to download the file ('.$e->getMessage().')');
            
$this->log(__('Error - failed to download the file''updraftplus').' ('.$e->getMessage().')''error');
            return 
false;
        }

        return 
true;

    }

    
/**
     * Get the pre configuration template
     *
     * @return String - the template
     */
    
public function get_pre_configuration_template() {

        global 
$updraftplus_admin;

        
$classes $this->get_css_classes(false);
        
        
?>
        <tr class="<?php echo $classes ' ' 'cloudfiles_pre_config_container';?>">
            <td colspan="2">
                <img alt="Rackspace Cloud Files" src="<?php echo UPDRAFTPLUS_URL;?>/images/rackspacecloud-logo.png"><br>
            <?php
                
// Check requirements.
                
global $updraftplus_admin;
                if (!
function_exists('mb_substr')) {
                    
$updraftplus_admin->show_double_warning('<strong>'.__('Warning''updraftplus').':</strong> '.sprintf(__('Your web server\'s PHP installation does not included a required module (%s). Please contact your web hosting provider\'s support.''updraftplus'), 'mbstring').' '.sprintf(__("UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."'updraftplus'), 'Cloud Files''mbstring'), 'cloudfiles'false);
                }
                
$updraftplus_admin->curl_check('Rackspace Cloud Files'false'cloudfiles'false);
            
?>

            <?php
                
echo '<p>' __('Get your API key <a href="https://mycloud.rackspace.com/" target="_blank">from your Rackspace Cloud console</a> (<a href="http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key" target="_blank">read instructions here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist.''updraftplus').' <a href="https://updraftplus.com/faqs/there-appear-to-be-lots-of-extra-files-in-my-rackspace-cloud-files-container/" target="_blank">'.__('Also, you should read this important FAQ.''updraftplus').'</a></p>';
            
?>
            </td>
        </tr>

        <?php
    
}

    
/**
     * Get the configuration template
     *
     * @return String - the template, ready for substitutions to be carried out
     */
    
public function get_configuration_template() {
        
$classes $this->get_css_classes();
        
$template_str '
        <tr class="'
.$classes.'">
            <th>'
.__('US or UK Cloud''updraftplus').':</th>
            <td>
                <select data-updraft_settings_test="authurl" '
.$this->output_settings_field_name_and_id('authurl'true).'>
                    <option {{#ifeq "https://auth.api.rackspacecloud.com" authurl}}selected="selected"{{/ifeq}} value="https://auth.api.rackspacecloud.com">'
.__('US (default)''updraftplus').'</option>
                    <option {{#ifeq "https://lon.auth.api.rackspacecloud.com" authurl}}selected="selected"{{/ifeq}} value="https://lon.auth.api.rackspacecloud.com">'
.__('UK''updraftplus').'</option>
                </select>
            </td>
        </tr>
        <input type="hidden" data-updraft_settings_test="region" '
.$this->output_settings_field_name_and_id('region'true).' value="">';
            
            
/*
            // Can put a message here if someone asks why region storage is not available (only available on new SDK)
            <tr class="updraftplusmethod cloudfiles">
                <th><?php _e('Rackspace Storage Region','updraftplus');?>:</th>
                <td>
                </td>
            </tr>
            */
        
$template_str .= '
        <tr class="'
.$classes.'">
            <th>'
.__('Cloud Files username''updraftplus').':</th>
            <td><input data-updraft_settings_test="user" type="text" autocomplete="off" class="updraft_input--wide" '
.$this->output_settings_field_name_and_id('user'true).' value="{{user}}" /></td>
        </tr>
        <tr class="'
.$classes.'">
            <th>'
.__('Cloud Files API Key''updraftplus').':</th>
            <td><input data-updraft_settings_test="apikey" type="'
.apply_filters('updraftplus_admin_secret_field_type''password').'" autocomplete="off" class="updraft_input--wide" '.$this->output_settings_field_name_and_id('apikey'true).' value="{{apikey}}" />
            </td>
        </tr>
        <tr class="'
.$classes.'">
            <th>'
.apply_filters('updraftplus_cloudfiles_location_description'__('Cloud Files Container''updraftplus')).':</th>
            <td><input data-updraft_settings_test="path" type="text" class="updraft_input--wide" '
.$this->output_settings_field_name_and_id('path'true).' value="{{path}}" /></td>
        </tr>'
;
        
$template_str .= $this->get_test_button_html(__('Cloud Files''updraftplus'));
        return 
$template_str;
    }

/**
 * Modifies handerbar template options
 *
 * @param array $opts handerbar template options
 * @return array - Modified handerbar template options
 */
    
public function transform_options_for_template($opts) {
        
$opts['apikey'] = trim($opts['apikey']);
        
$opts['authurl'] = isset($opts['authurl']) ? $opts['authurl'] : '';
        return 
$opts;
    }
    
    
/**
     * Perform a test of user-supplied credentials, and echo the result
     *
     * @param Array $posted_settings - settings to test
     */
    
public function credentials_test($posted_settings) {

        if (empty(
$posted_settings['apikey'])) {
            
printf(__("Failure: No %s was given."'updraftplus'), __('API key''updraftplus'));
            return;
        }

        if (empty(
$posted_settings['user'])) {
            
printf(__("Failure: No %s was given."'updraftplus'), __('Username''updraftplus'));
            return;
        }

        
$key $posted_settings['apikey'];
        
$user $posted_settings['user'];
        
$path $posted_settings['path'];
        
$authurl $posted_settings['authurl'];
        
$useservercerts $posted_settings['useservercerts'];
        
$disableverify $posted_settings['disableverify'];

        if (
preg_match("#^([^/]+)/(.*)$#"$path$bmatches)) {
            
$container $bmatches[1];
            
$path $bmatches[2];
        } else {
            
$container $path;
            
$path "";
        }

        if (empty(
$container)) {
            
_e("Failure: No container details were given."'updraftplus');
            return;
        }

        
define('UPDRAFTPLUS_SSL_DISABLEVERIFY'$disableverify);

        try {
            
$storage $this->getCF($user$key$authurl$useservercerts);
            
$container_object $storage->create_container($container);
        } catch (
AuthenticationException $e) {
            echo 
__('Cloud Files authentication failed''updraftplus').' ('.$e->getMessage().')';
            return;
        } catch (
NoSuchAccountException $s) {
            echo 
__('Cloud Files authentication failed''updraftplus').' ('.$e->getMessage().')';
            return;
        } catch (
Exception $e) {
            echo 
__('Cloud Files authentication failed''updraftplus').' ('.$e->getMessage().')';
            return;
        }

        
$try_file md5(rand()).'.txt';

        try {
            
$object $container_object->create_object($try_file);
            
$object->content_type "text/plain";
            
$object->write('UpdraftPlus test file');
        } catch (
Exception $e) {
            echo 
__('Cloud Files error - we accessed the container, but failed to create a file within it''updraftplus').' ('.$e->getMessage().')';
            return;
        }

        echo 
__('Success''updraftplus').": ".__('We accessed the container, and were able to create files within it.''updraftplus');

        @
$container_object->delete_object($try_file);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged
    
}
}

// Moved to the bottom to fix a bug in some version or install of PHP which required UpdraftPlus_BackupModule_cloudfiles_oldsdk to be defined earlier in the file (despite the conditionality) - see HS#19911
if (version_compare(PHP_VERSION'5.3.3''>=') && (!defined('UPDRAFTPLUS_CLOUDFILES_USEOLDSDK') || UPDRAFTPLUS_CLOUDFILES_USEOLDSDK != true)) {
    include_once(
UPDRAFTPLUS_DIR.'/methods/cloudfiles-new.php');
    class 
UpdraftPlus_BackupModule_cloudfiles extends UpdraftPlus_BackupModule_cloudfiles_opencloudsdk {
    }
} else {
    class 
UpdraftPlus_BackupModule_cloudfiles extends UpdraftPlus_BackupModule_cloudfiles_oldsdk {
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586