Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions samples/ObjectStore/update-object-content-type.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<?php
/**
* Copyright 2012-2014 Rackspace US, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

//
// Pre-requisites:
// * Prior to running this script, you must setup the following environment variables:
// * RAX_USERNAME: Your Rackspace Cloud Account Username, and
// * RAX_API_KEY: Your Rackspace Cloud Account API Key
// * There exists a container named 'logos' in your Object Store. Run
// create-container.php if you need to create one first.
// * The 'logos' container contains an object named 'php-elephant.jpg'. Run
// upload-object.php if you need to create it first.
//

require __DIR__ . '/../../vendor/autoload.php';
use OpenCloud\Rackspace;

// 1. Instantiate a Rackspace client.
$client = new Rackspace(Rackspace::US_IDENTITY_ENDPOINT, array(
'username' => getenv('RAX_USERNAME'),
'apiKey' => getenv('RAX_API_KEY')
));

// 2. Obtain an Object Store service object from the client.
$region = 'DFW';
$objectStoreService = $client->objectStoreService(null, $region);

// 3. Get container.
$container = $objectStoreService->getContainer('logos');

// 4. Get object.
$objectName = 'php-elephant.jpg';
$object = $container->getPartialObject($objectName);

// 5. Update object content type.
$object->saveMetadata(array('Content-Type' => 'image/jpeg'), false);
61 changes: 61 additions & 0 deletions samples/ObjectStore/upload-object-with-content-type.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<?php
/**
* Copyright 2012-2014 Rackspace US, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

//
// Pre-requisites:
// * Prior to running this script, you must setup the following environment variables:
// * RAX_USERNAME: Your Rackspace Cloud Account Username, and
// * RAX_API_KEY: Your Rackspace Cloud Account API Key
// * There exists a container named 'logos' in your Object Store. Run
// create-container.php if you need to create one first.
//

require __DIR__ . '/../../vendor/autoload.php';
use OpenCloud\Rackspace;

// 1. Instantiate a Rackspace client.
$client = new Rackspace(Rackspace::US_IDENTITY_ENDPOINT, array(
'username' => getenv('RAX_USERNAME'),
'apiKey' => getenv('RAX_API_KEY')
));

// 2. Obtain an Object Store service object from the client.
$region = 'DFW';
$objectStoreService = $client->objectStoreService(null, $region);

// 3. Get container.
$container = $objectStoreService->getContainer('logos');

// 4. Setup headers with custom content type.
// NOTE: Normally you do NOT need to specify the content type. The
// service will automatically guess it for you. If, however, you
// are using an obscure type of content or want to be explicit about
// the content type rather than letting the service guess at it,
// you may specify it as shown below.
$customHeaders = array(
'Content-Type' => 'image/gif'
);

// 5. Upload an object to the container.
$localFileName = __DIR__ . '/php-elephant.jpg';
$remoteFileName = 'php-elephant.jpg';

$fileData = fopen($localFileName, 'r');
$container->uploadObject($remoteFileName, $fileData, $customHeaders);

// Note that while we call fopen to open the file resource, we do not call fclose at the end.
// The file resource is automatically closed inside the uploadObject call.