Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
Rackspace Cloudfiles PHP API Cookbook
Posted on 03/19/2014 at 10:33 pm by Kevin Wentworth
Viewed 10,409 times | 0 comments
I'm working on the latest API of the Rackspace Cloudfiles API (php-opencloud). I've had a bear of a time figuring everything out. I think I was making it too complicated (plus I was starting on an older version of the PHP SDK... but that's another story). Now that I'm figuring out the API, the Rackspace PHP developers have done a really good job of making the functionality work with minimal coding.
Basic Rackspace Cloudfiles Container Operations
Get a reference to a Container
- $Container = $service->getContainer($containerName);
Get metadata (from initial container instantiation; can refresh metadata using retrieveMetadata())
- $metadata = $Container->getMetadata();
- $origin = $metadata->getProperty('Access-Control-Allow-Origin');
Save a meta value (or update the value if it already exists)
Note: you don't have to specify X-Container-Meta-, the system automatically does this for you (using stockHeaders())
- $Container->saveMetadata($meta);
Remove a meta value (or unset a meta value) on a container
- $Container->unsetMetadataItem('any-meta-key-value');
Refresh container meta data (Retrieve a fresh copy of metadata from API)
- $metadata = $Container->retrieveMetadata();
- $value = $metadata->getProperty('any-meta-key-value');
NOTE: don't use appendMetadata() function. This doesn't do anything but update the local metadata store (from what I can tell)
Tags for Rackspace Cloudfiles PHP API Cookbook
Cakephp | Cloudfiles | Web Programming | Usage
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!