getBucketLocation() public static method

Get a bucket's location
public static getBucketLocation ( string $bucket ) : string | false
$bucket string Bucket name
return string | false | false
Ejemplo n.º 1
0
 /**
  * Get bucket list with credentials.
  *
  * @param $keyId
  * @param $secret
  *
  * @throws Exception
  * @return array
  */
 public static function getBucketList($keyId, $secret)
 {
     $s3 = new \S3($keyId, $secret);
     $buckets = @$s3->listBuckets();
     if (empty($buckets)) {
         throw new Exception(Craft::t("Credentials rejected by target host."));
     }
     $bucketList = array();
     foreach ($buckets as $bucket) {
         $location = $s3->getBucketLocation($bucket);
         $bucketList[] = array('bucket' => $bucket, 'location' => $location, 'url_prefix' => 'http://' . static::getEndpointByLocation($location) . '/' . $bucket . '/');
     }
     return $bucketList;
 }
Ejemplo n.º 2
0
Archivo: S3.php Proyecto: kingsj/core
 /**
  * Constructor
  *
  * @return void
  */
 protected function __construct()
 {
     require_once LC_DIR_MODULES . 'CDev' . LC_DS . 'AmazonS3Images' . LC_DS . 'lib' . LC_DS . 'S3.php';
     $config = \XLite\Core\Config::getInstance()->CDev->AmazonS3Images;
     if ($config->access_key && $config->secret_key && function_exists('curl_init')) {
         try {
             $this->client = new \S3($config->access_key, $config->secret_key);
             \S3::setExceptions(true);
             if (!$this->client->getBucketLocation($config->bucket)) {
                 $this->client->putBucket($config->bucket);
             }
             $this->valid = true;
         } catch (\S3Exception $e) {
             \XLite\Logger::getInstance()->registerException($e);
         }
     }
 }
Ejemplo n.º 3
0
 /**
  * Retrieves a list of buckets
  *
  * @since	4.0
  * @access	public
  * @param	string
  * @return
  */
 public function getBuckets()
 {
     S3::setAuth($this->key, $this->secret);
     $data = S3::listBuckets();
     if (!$data) {
         return false;
     }
     $buckets = array();
     foreach ($data as $item) {
         $bucket = new stdClass();
         $bucket->title = $item;
         // Get bucket location
         $location = S3::getBucketLocation($item);
         $bucket->locationTitle = $this->getLocationTitle($location);
         $bucket->location = $location;
         $buckets[] = $bucket;
     }
     return $buckets;
 }
 /**
  * Get bucket list with credentials.
  *
  * @param $keyId
  * @param $secret
  *
  * @throws Exception
  * @return array
  */
 public static function getBucketList($keyId, $secret)
 {
     $s3 = new \S3($keyId, $secret);
     $s3->setExceptions(true);
     try {
         $buckets = $s3->listBuckets();
     } catch (\Exception $exception) {
         // Re-throw a proper Craft Exception
         throw new Exception($exception->getMessage());
     }
     $bucketList = array();
     foreach ($buckets as $bucket) {
         try {
             $location = $s3->getBucketLocation($bucket);
             $bucketList[] = array('bucket' => $bucket, 'location' => $location, 'url_prefix' => 'http://' . static::getEndpointByLocation($location) . '/' . $bucket . '/');
         } catch (\Exception $exception) {
             continue;
         }
     }
     return $bucketList;
 }
Ejemplo n.º 5
0
 function test_s3($accesskey, $secretkey, $bucket, $directory = '', $ssl)
 {
     if (empty($accesskey) || empty($secretkey) || empty($bucket)) {
         return 'Missing one or more required fields.';
     }
     require_once dirname(__FILE__) . '/lib/s3/s3.php';
     $s3 = new S3($accesskey, $secretkey);
     if ($ssl != '1') {
         S3::$useSSL = false;
     }
     if ($s3->getBucketLocation($bucket) === false) {
         // Easy way to see if bucket already exists.
         $s3->putBucket($bucket, S3::ACL_PUBLIC_READ);
     }
     if (!empty($directory)) {
         $directory = $directory . '/';
     }
     if ($s3->putObject('Upload test for BackupBuddy for Amazon S3', $bucket, $directory . 'backupbuddy.txt', S3::ACL_PRIVATE)) {
         // Success... just delete temp test file later...
     } else {
         return 'Unable to upload. Verify your keys, bucket name, and account permissions.';
     }
     if (!S3::deleteObject($bucket, $directory . '/backupbuddy.txt')) {
         return 'Partial success. Could not delete temp file.';
     }
     return true;
     // Success!
 }
Ejemplo n.º 6
0
function S3MSAdminContent()
{
    if (isset($_POST['submit'])) {
        $errors = array();
        if (!isset($_POST['s3_bucket']) || trim($_POST['s3_bucket']) == '') {
            $errors[] = "S3 Bucket Name Missing!";
        }
        $bucket = trim($_POST['s3_bucket']);
        $ssl = isset($_POST['s3_ssl']) ? 1 : 0;
        // Test connectivity
        require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'S3.php';
        require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 's3-access.php';
        $s3_settings = new S3Access();
        $s3 = new S3($s3_settings->get_access_key_id(), $s3_settings->get_secret_access_key());
        $s3->setSSL((bool) $ssl);
        $s3->setExceptions(true);
        try {
            $s3->getBucketLocation($bucket);
        } catch (Exception $e) {
            $errors[] = "Could not connect to bucket with the provided credentials!";
            $errors[] = $e->getMessage();
        }
        if (!empty($errors)) {
            $msg = implode('<br/>', $errors);
            ?>
            <div class="error"><p><strong><?php 
            _e($msg, 'S3MS');
            ?>
</strong></p></div>
            <?php 
        } else {
            // No errors!
            $settings = array('s3_bucket' => trim($_POST['s3_bucket']), 's3_bucket_path' => isset($_POST['s3_bucket_path']) ? ltrim(rtrim(trim($_POST['s3_bucket_path']), '/'), '/') : '', 's3_ssl' => isset($_POST['s3_ssl']) ? 1 : 0, 's3_delete_local' => isset($_POST['s3_delete_local']) ? 1 : 0, 's3_delete' => isset($_POST['s3_delete']) ? 1 : 0, 's3_expires' => trim($_POST['s3_expires']), 's3_cloudfront' => trim($_POST['s3_cloudfront']), 's3_rewrite_url' => trim($_POST['s3_rewrite_url']), 's3_protocol' => in_array(trim($_POST['s3_protocol']), array('http', 'https', 'relative')) ? trim($_POST['s3_protocol']) : 'relative', 'tiny_png_key' => trim($_POST['tiny_png_key']), 's3_transfer_method' => in_array(trim($_POST['s3_transfer_method']), array('s3class', 's3cmd', 'awscli', 'background')) ? trim($_POST['s3_transfer_method']) : 's3class', 'valid' => 1);
            $settings = json_encode($settings);
            $ret = update_option('S3MS_settings', $settings);
            ?>
            <div class="updated"><p><strong><?php 
            _e('Settings Saved!', 'S3MS');
            ?>
</strong></p></div>
            <?php 
        }
    }
    if (isset($_POST['move_files']) || isset($_POST['copy_files'])) {
        $move = isset($_POST['move_files']) ? true : false;
        $label = isset($_POST['move_files']) ? 'Moved' : 'Copied';
        if (isset($_POST['selected']) && is_array($_POST['selected'])) {
            $success_count = 0;
            $error_count = 0;
            foreach ($_POST['selected'] as $id) {
                $ret = S3MS::updateAttachmentMetadata(array('S3MS_move' => $move), $id);
                if ($ret) {
                    $success_count++;
                } else {
                    $error_count++;
                }
            }
            ?>
            <div class="updated"><p><strong><?php 
            _e(number_format($success_count) . ' File(s) ' . $label . '!', 'S3MS');
            ?>
</strong></p></div>
            <?php 
            if ($error_count > 0) {
                ?>
                <div class="error"><p><strong><?php 
                _e(number_format($error_count) . ' File(s) Could Not Be ' . $label . '!', 'S3MS');
                ?>
</strong></p></div>
                <?php 
            }
        }
    }
    // Get existing/POST options
    $settings = json_decode(get_option('S3MS_settings'), true);
    $s3_bucket = isset($_POST['s3_bucket']) ? trim($_POST['s3_bucket']) : null;
    if (!$s3_bucket && is_array($settings) && isset($settings['s3_bucket'])) {
        $s3_bucket = $settings['s3_bucket'];
    }
    $s3_bucket_path = isset($_POST['s3_bucket_path']) ? trim($_POST['s3_bucket_path']) : null;
    if (!$s3_bucket_path && is_array($settings) && isset($settings['s3_bucket_path'])) {
        $s3_bucket_path = $settings['s3_bucket_path'];
    }
    $s3_ssl = isset($_POST['s3_ssl']) ? (int) $_POST['s3_ssl'] : null;
    if (!$s3_ssl && is_array($settings) && isset($settings['s3_ssl'])) {
        $s3_ssl = (int) $settings['s3_ssl'];
    }
    $s3_delete_local = isset($_POST['s3_delete_local']) ? (int) $_POST['s3_delete_local'] : null;
    if (!$s3_delete_local && is_array($settings) && isset($settings['s3_delete_local'])) {
        $s3_delete_local = (int) $settings['s3_delete_local'];
    }
    $s3_delete = isset($_POST['s3_delete']) ? (int) $_POST['s3_delete'] : null;
    if (!$s3_delete && is_array($settings) && isset($settings['s3_delete'])) {
        $s3_delete = (int) $settings['s3_delete'];
    }
    $s3_expires = isset($_POST['s3_expires']) ? trim($_POST['s3_expires']) : null;
    if (!$s3_expires && is_array($settings) && isset($settings['s3_expires'])) {
        $s3_expires = $settings['s3_expires'];
    }
    $s3_cloudfront = isset($_POST['s3_cloudfront']) ? trim($_POST['s3_cloudfront']) : null;
    if (!$s3_cloudfront && is_array($settings) && isset($settings['s3_cloudfront'])) {
        $s3_cloudfront = $settings['s3_cloudfront'];
    }
    $s3_rewrite_url = isset($_POST['s3_rewrite_url']) ? trim($_POST['s3_rewrite_url']) : null;
    if (!$s3_rewrite_url && is_array($settings) && isset($settings['s3_rewrite_url'])) {
        $s3_rewrite_url = $settings['s3_rewrite_url'];
    }
    $tiny_png_key = isset($_POST['tiny_png_key']) ? trim($_POST['tiny_png_key']) : null;
    if (!$tiny_png_key && is_array($settings) && isset($settings['tiny_png_key'])) {
        $tiny_png_key = $settings['tiny_png_key'];
    }
    $s3_protocol = isset($_POST['s3_protocol']) ? trim($_POST['s3_protocol']) : null;
    if (!$s3_protocol && is_array($settings) && isset($settings['s3_protocol'])) {
        $s3_protocol = $settings['s3_protocol'];
    }
    $s3_transfer_method = isset($_POST['s3_transfer_method']) ? trim($_POST['s3_transfer_method']) : null;
    if (!$s3_transfer_method && is_array($settings) && isset($settings['s3_transfer_method'])) {
        $s3_transfer_method = $settings['s3_transfer_method'];
    }
    if ($s3_transfer_method == null) {
        $s3_transfer_method = 's3class';
    }
    ?>
<div class="wrap">
	<h2>S3 Media Storage Options</h2>

	<div id="poststuff">
		<div class="postbox">
		<h3><?php 
    _e('Settings');
    ?>
</h3>
            <div class="inside">
            <form id="S3MS-config" method="post" action="" enctype="multipart/form-data">

                <table class="form-table">
                    <tbody>
                        <tr>
                            <th><label for="key"><?php 
    _e("S3 Bucket Name:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input style="width:300px;" type="text" name="s3_bucket" value="<?php 
    echo $s3_bucket;
    ?>
" placeholder="Enter S3 Bucket Name e.g. media.myblog"/>
                            </td>
                        </tr>
                        <tr>
                            <th><label for="key"><?php 
    _e("S3 Bucket Path:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input style="width:300px;" type="text" name="s3_bucket_path" value="<?php 
    echo $s3_bucket_path;
    ?>
" placeholder="Enter Additional S3 Bucket Path e.g. blog or blog/assets"/>
                                <p class="description">If 'blog' is entered, uploads go to https://bucketname.s3.amazonaws.com/blog/YYYY/MM/file.ext </p>
                            </td>
                        </tr>
                        <tr>
                            <th><label for="key"><?php 
    _e("Use SSL:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input type="checkbox" name="s3_ssl" value="1" <?php 
    echo $s3_ssl ? 'checked="checked"' : '';
    ?>
/>
                                <p class="description">Encrypt traffic for data sent to S3?</p>
                            </td>
                        </tr>
                        <tr>
                            <th><label for="key"><?php 
    _e("Delete Local Files:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input type="checkbox" name="s3_delete_local" value="1" <?php 
    echo $s3_delete_local ? 'checked="checked"' : '';
    ?>
/>
                                <p class="description">Whether or not to keep files uploaded locally</p>
                            </td>
                        </tr>
                        <tr>
                            <th><label for="key"><?php 
    _e("Delete from S3:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input type="checkbox" name="s3_delete" value="1" <?php 
    echo $s3_delete ? 'checked="checked"' : '';
    ?>
/>
                                <p class="description">Deleting from Media Library deletes from S3? (May not wish to for cost reasons)</p>
                            </td>
                        </tr>
                        <tr>
                            <th><label for="key"><?php 
    _e("Expires:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input style="width:400px;" type="text" name="s3_expires" value="<?php 
    echo $s3_expires;
    ?>
" placeholder="Enter expires format"/>
                                <p class="description">To set far reaching expires for assets, enter it in a <a href="http://us1.php.net/manual/en/datetime.formats.php" target="_blank">valid strtotime format</a> e.g. +15 years</p>
                            </td>
                        </tr>
                        <tr>
                            <th><label for="key"><?php 
    _e("CloudFront Domain Name:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input style="width:400px;" type="text" name="s3_cloudfront" value="<?php 
    echo $s3_cloudfront;
    ?>
" placeholder="Enter CloudFront Domain Name"/>
                                <p class="description">e.g. abcslfn3kg17h.cloudfront.net</p>
                            </td>
                        </tr>
                        <tr>
                            <th><label for="key"><?php 
    _e("Rewrite URL:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input style="width:400px;" type="text" name="s3_rewrite_url" value="<?php 
    echo $s3_rewrite_url;
    ?>
" placeholder="Enter Rewrite URL"/>
                                <p class="description">e.g. assets.domain.com</p>
                            </td>
                        </tr>            
                        <tr>
                            <th><label for="key"><?php 
    _e("TinyPNG API Key:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input style="width:400px;" type="text" name="tiny_png_key" value="<?php 
    echo $tiny_png_key;
    ?>
" placeholder="Enter TinyPNG API Key"/>
                                <p class="description">e.g. abc12345678</p>
                            </td>
                        </tr>
                        <tr>
                            <th><label for="key"><?php 
    _e("Protocol:", 'S3MS');
    ?>
</label></th>
                            <td>
                                <input type="radio" name="s3_protocol" value="http" <?php 
    echo $s3_protocol == 'http' ? 'checked="checked"' : '';
    ?>
/> Always serve from HTTP.<br/>
                                <input type="radio" name="s3_protocol" value="https" <?php 
    echo $s3_protocol == 'https' ? 'checked="checked"' : '';
    ?>
/> Always serve from HTTPS.<br/>
                                <input type="radio" name="s3_protocol" value="relative" <?php 
    echo $s3_protocol == 'relative' ? 'checked="checked"' : '';
    ?>
/> Serve from same protocol as requested page.<br/>
                            </td>
                        </tr>
                    </tbody>
                </table>

                <p class="submit">
                    <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php 
    _e('Save Changes');
    ?>
">
                </p>
            </form>
            </div>
        </div>
	</div>

    <div id="poststuff">
		<div class="postbox">
		<h3><?php 
    _e('Library Files');
    ?>
</h3>
            <div class="inside">
            <form id="S3MS-transfer" method="post" action="" enctype="multipart/form-data">
                <input type="hidden" name="transfer" value="1"/>
                <?php 
    // While we could use get_posts and get_post_meta instead of a custom query, it would mean more queries/data than necessary
    // So lets just do our own query.
    global $wpdb;
    $page = isset($_GET['s3ms_page']) ? (int) $_GET['s3ms_page'] : 1;
    $limit = 500;
    $offset = $limit * $page - $limit;
    $sql = "SELECT COUNT(1) as count\n                        FROM {$wpdb->posts}\n                        LEFT JOIN {$wpdb->postmeta} ON {$wpdb->postmeta}.post_id = {$wpdb->posts}.ID AND {$wpdb->postmeta}.meta_key = 'S3MS_file'\n                        WHERE 1=1\n                            AND {$wpdb->posts}.post_type = 'attachment'\n                            AND ({$wpdb->posts}.post_status = 'inherit')";
    $r = $wpdb->get_row($sql);
    $total = $r->count;
    $page_action = S3MS::paginationUrl();
    $pages = ceil($total / $limit);
    $sql = "SELECT ID, guid, meta_key, meta_value\n                        FROM {$wpdb->posts}\n                        LEFT JOIN {$wpdb->postmeta} ON {$wpdb->postmeta}.post_id = {$wpdb->posts}.ID AND {$wpdb->postmeta}.meta_key = 'S3MS_file'\n                        WHERE 1=1\n                            AND {$wpdb->posts}.post_type = 'attachment'\n                            AND ({$wpdb->posts}.post_status = 'inherit')\n                        ORDER BY {$wpdb->posts}.post_date DESC\n                        LIMIT {$offset},{$limit}";
    $files = $wpdb->get_results($sql);
    ?>
                <table class="wp-list-table widefat">
                    <thead>
                        <tr>
                            <th scope="col">All<input type="checkbox" id="select-all"/></span></th>
                            <th scope="col">Local File</span></th>
                            <th scope="col">Exists Locally?</th>
                            <th scope="col">S3 File</span></th>
                            <th scope="col">Exists On S3?</span></th>
                        </tr>
                    </thead>
                    <tfoot>
                        <tr>
                            <th colspan="5" scope="row"><p style="float:left"><?php 
    echo S3MS::pagination($total, $limit, $page, $page_action);
    ?>
</p>&nbsp;<p style="float:right">Page <?php 
    echo number_format($page);
    ?>
 of <?php 
    echo number_format($pages);
    ?>
 Total: <?php 
    echo number_format($total);
    ?>
 Files</p></th>
                        </tr>
                    </tfoot>
                    <tbody>
                        <?php 
    $ud = wp_upload_dir();
    ?>
                        <?php 
    foreach ($files as $file) {
        ?>
                        <tr>
                            <td><input type="checkbox" class="files" name="selected[]" value="<?php 
        echo $file->ID;
        ?>
"/></td>
                            <td><?php 
        echo '<a href="' . $file->guid . '" target="_blank">' . $file->guid . '</a>';
        ?>
</td>
                            <td><?php 
        echo file_exists(str_replace($ud['baseurl'], $ud['basedir'], $file->guid)) ? '<span style="color:green;">YES</span>' : '<span style="color:red;">NO</span>';
        ?>
</td>
                            <td><?php 
        $s3_url = S3MS::attachmentUrl($file->guid, $file->ID);
        echo $s3_url == $file->guid ? '' : '<a href="' . $s3_url . '" target="_blank">' . $s3_url . '</a>';
        ?>
</td>
                            <td><?php 
        echo $file->meta_value ? '<span style="color:green;">YES</span>' : '<span style="color:red;">NO</span>';
        ?>
</td>
                        </tr>
                        <?php 
    }
    ?>
                    </tbody>
                </table>

                <p class="submit">
                    <input type="submit" name="copy_files" class="button button-primary" value="<?php 
    _e('Copy Files To S3');
    ?>
"> <input type="submit" name="move_files" class="button button-primary" value="<?php 
    _e('Move Files To S3');
    ?>
">
                </p>
            </form>
            </div>
        </div>
	</div>
</div>
<script>
jQuery('#select-all').click(function(e) {
    if (jQuery(this).attr('checked') == 'checked') {
        jQuery(':input[type=checkbox].files').attr('checked', 'checked');
    } else {
        jQuery(':input[type=checkbox].files').attr('checked', null);
    }
});
</script>
<?php 
}
Ejemplo n.º 7
0
 function test_s3($accesskey, $secretkey, $bucket, $directory = '', $ssl)
 {
     if (empty($accesskey) || empty($secretkey) || empty($bucket)) {
         return __('Missing one or more required fields.', 'it-l10n-backupbuddy');
     }
     $bucket_requirements = __("Your bucket name must meet certain criteria. It must fulfill the following: \n\n Characters may be lowercase letters, numbers, periods (.), and dashes (-). \n Must start with a number or letter. \n Must be between 3 and 63 characters long. \n Must not be formatted as an IP address (e.g., 192.168.5.4). \n Should not contain underscores (_). \n Should be between 3 and 63 characters long. \n Should not end with a dash. \n Cannot contain two, adjacent periods. \n Cannot contain dashes next to periods.", 'it-l10n-backupbuddy');
     if (preg_match("/^[a-z0-9][a-z0-9\\-\\.]*(?<!-)\$/i", $bucket) == 0) {
         // Starts with a-z or 0-9; middle is a-z, 0-9, -, or .; cannot end in a dash.
         return __('Your bucket contains a period next to a dash.', 'it-l10n-backupbuddy') . ' ' . $bucket_requirements;
     }
     if (strlen($bucket) < 3 || strlen($bucket) > 63) {
         // Must be between 3 and 63 characters long
         return __('Your bucket must be between 3 and 63 characters long.', 'it-l10n-backupbuddy') . ' ' . $bucket_requirements;
     }
     if (strstr($bucket, '.-') !== false || strstr($bucket, '-.') !== false || strstr($bucket, '..') !== false) {
         // Bucket names cannot contain dashes next to periods (e.g., "my-.bucket.com" and "my.-bucket" are invalid)
         return __('Your bucket contains a period next to a dash.', 'it-l10n-backupbuddy') . ' ' . $bucket_requirements;
     }
     require_once dirname(__FILE__) . '/lib/s3/s3.php';
     $s3 = new S3($accesskey, $secretkey);
     if ($ssl != '1') {
         S3::$useSSL = false;
     }
     if ($s3->getBucketLocation($bucket) === false) {
         // Easy way to see if bucket already exists.
         $s3->putBucket($bucket, S3::ACL_PRIVATE);
     }
     if (!empty($directory)) {
         $directory = $directory . '/';
     }
     if ($s3->putObject(__('Upload test for BackupBuddy for Amazon S3', 'it-l10n-backupbuddy'), $bucket, $directory . 'backupbuddy.txt', S3::ACL_PRIVATE)) {
         // Success... just delete temp test file later...
     } else {
         return __('Unable to upload. Verify your keys, bucket name, and account permissions.', 'it-l10n-backupbuddy');
     }
     if (!S3::deleteObject($bucket, $directory . 'backupbuddy.txt')) {
         return __('Partial success. Could not delete temp file.', 'it-l10n-backupbuddy');
     }
     return true;
     // Success!
 }