File "_manage.php"
Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/backupbuddy/destinations/rackspace/_manage.php
File size: 5.57 KB
MIME-type: text/x-php
Charset: utf-8
<?php
if ( isset( $destination['disabled'] ) && ( '1' == $destination['disabled'] ) ) {
die( __( 'This destination is currently disabled based on its settings. Re-enable it under its Advanced Settings.', 'it-l10n-backupbuddy' ) );
}
//pb_backupbuddy::$ui->title( 'Rackspace Cloudfiles' );
//echo '<h3>Viewing `' . $destination['title'] . '` (' . $destination['type'] . ')</h3>';
// Rackspace information
$rs_username = $destination['username'];
$rs_api_key = $destination['api_key'];
$rs_container = $destination['container'];
$rs_server = $destination['server'];
/*
if ( isset( $destination['server'] ) ) {
$rs_server = $destination['server'];
} else {
$rs_server = 'https://auth.api.rackspacecloud.com';
}
$rs_path = ''; //$destination['path'];
*/
require_once( pb_backupbuddy::plugin_path() . '/destinations/rackspace/lib/rackspace/cloudfiles.php');
$auth = new CF_Authentication( $rs_username, $rs_api_key, NULL, $rs_server );
$auth->authenticate();
try {
$conn = new CF_Connection( $auth );
} catch (Exception $e) {
echo 'Error #847834: Exception caught accessing Rackspace. If this persists try deleting (by selecting the configure destination button) & re-creating this destination. Details: `' . $e->getMessage() . '`.';
die();
}
// Set container
$container = @$conn->get_container($rs_container);
// Delete Rackspace backups
if ( !empty( $_POST['delete_file'] ) ) {
pb_backupbuddy::verify_nonce();
$delete_count = 0;
if ( !empty( $_POST['files'] ) && is_array( $_POST['files'] ) ) {
// loop through and delete Rackspace files
foreach ( $_POST['files'] as $rsfile ) {
$delete_count++;
// Delete Rackspace file
$container->delete_object($rsfile);
}
}
if ( $delete_count > 0 ) {
pb_backupbuddy::alert( sprintf( _n('Deleted %d file', 'Deleted %d files', $delete_count, 'it-l10n-backupbuddy' ), $delete_count) );
}
echo '<br>';
}
// Copy Rackspace backup to the local backup files
if ( !empty( $_GET['cpy_file'] ) ) {
pb_backupbuddy::alert( 'The remote file is now being copied to your local backups. If the backup gets marked as bad during copying, please wait a bit then click the `Refresh` icon to rescan after the transfer is complete.' );
echo '<br>';
pb_backupbuddy::status( 'details', 'Scheduling Cron for creating Rackspace copy.' );
backupbuddy_core::schedule_single_event( time(), 'process_rackspace_copy', array( $_GET['cpy_file'], $rs_username, $rs_api_key, $rs_container, $rs_server ) );
if ( '1' != pb_backupbuddy::$options['skip_spawn_cron_call'] ) {
update_option( '_transient_doing_cron', 0 ); // Prevent cron-blocking for next item.
spawn_cron( time() + 150 ); // Adds > 60 seconds to get around once per minute cron running limit.
}
}
// List objects in container
/*
if ( $rs_path != '' ) {
$results = $container->get_objects( 0, NULL, 'backup-', $rs_path );
} else {
*/
$results = $container->get_objects( 0, NULL, 'backup-');
/* } */
$urlPrefix = pb_backupbuddy::ajax_url( 'remoteClient' ) . '&destination_id=' . htmlentities( pb_backupbuddy::_GET( 'destination_id' ) );
?>
<div style="max-width: 950px;">
<form id="posts-filter" enctype="multipart/form-data" method="post" action="<?php echo $urlPrefix; ?>">
<div class="tablenav">
<div class="alignleft actions">
<input type="submit" name="delete_file" value="Delete from Rackspace" class="button-secondary delete" />
</div>
</div>
<table class="widefat">
<thead>
<tr class="thead">
<th scope="col" class="check-column"><input type="checkbox" class="check-all-entries" /></th>
<th>Backup File <img src="<?php echo pb_backupbuddy::plugin_url(); ?>/images/sort_down.png" style="vertical-align: 0px;" title="Sorted by filename" /></th>
<th>Last Modified</th>
<th>File Size</th>
<th>Actions</th>
</tr>
</thead>
<tfoot>
<tr class="thead">
<th scope="col" class="check-column"><input type="checkbox" class="check-all-entries" /></th>
<th>Backup File <img src="<?php echo pb_backupbuddy::plugin_url(); ?>/images/sort_down.png" style="vertical-align: 0px;" title="Sorted by filename" /></th>
<th>Last Modified</th>
<th>File Size</th>
<th>Actions</th>
</tr>
</tfoot>
<tbody>
<?php
if ( empty( $results ) ) {
echo '<tr><td colspan="5" style="text-align: center;"><i>You have not created any Rackspace backups yet.</i></td></tr>';
} else {
$file_count = 0;
foreach ( (array) $results as $backup ) {
$file_count++;
?>
<tr class="entry-row alternate">
<th scope="row" class="check-column"><input type="checkbox" name="files[]" class="entries" value="<?php echo $backup->name; ?>" /></th>
<td><?php echo $backup->name; ?></td>
<td style="white-space: nowrap;">
<?php
echo pb_backupbuddy::$format->date( pb_backupbuddy::$format->localize_time( strtotime($backup->last_modified) ) );
echo '<br /><span class="description">(' . pb_backupbuddy::$format->time_ago( strtotime($backup->last_modified) ) . ' ago)</span>';
?>
</td>
<td style="white-space: nowrap;">
<?php echo pb_backupbuddy::$format->file_size( $backup->content_length ); ?>
</td>
<td>
<?php echo '<a href="' . $urlPrefix . '&cpy_file=' . $backup->name . '">Copy to local</a>'; ?>
</td>
</tr>
<?php
}
}
?>
</tbody>
</table>
<div class="tablenav">
<div class="alignleft actions">
<input type="submit" name="delete_file" value="Delete from Rackspace" class="button-secondary delete" />
</div>
</div>
<?php pb_backupbuddy::nonce(); ?>
</form><br />
</div>