This is the first release and supports all the basic operations. Advanced support for ACLs etc.. coming soon
sudo gem install gstore
Visit The Google Storage Key Manager to get your access and secret keys.
In your code just: require 'gstore'
Create an instance of the client with your credentials:
client = GStore::Client.new(
:access_key => 'YOUR_ACCESS_KEY',
:secret_key => 'YOUR_SECRET_KEY'
)
# List all of your existing Buckets
client.list_buckets
Here are some example bucket operations:
# Create a Bucket
client.create_bucket('my_unique_bucket')
# Retrieve a Bucket
client.get_bucket('my_unique_bucket')
# Delete a [empty] Bucket
client.delete_bucket('my_unique_bucket')
Once you have a bucket you can manipulate objects in the following way:
# Store a file in a bucket
client.put_object('my_unique_bucket', 'my_first_object', :data => File.read('mytext.txt'))
# Retrieve the contents of the object in the specified bucket
puts client.get_object('my_unique_bucket', 'my_first_object')
# Alternatively specify an outfile and the contents will be saved to there
client.get_object('my_unique_bucket', 'my_first_object', :outfile => 'retrieved_mytext.txt')
# Delete an object from the bucket
client.delete_object('my_unique_bucket', 'my_first_object')
For certain requests like get_bucket('my_unique_bucket')
you can specify query parameters like max-keys
, prefix
, delimiter
and marker
(see The Google Developer Guide) for more information.
Here’s an example with gstore:
client.get_bucket('my_unique_bucket', :params => {:max_keys => 2, :prefix => 'backup'})
max_keys
is converted tomax-keys
so you can use the ruby symbol without quotes.:"max-keys"
and"max-keys"
also work
Here is how you retrieve the ACL for a bucket or object:
client.get_bucket('my_unique_bucket', :params => {:acl => ''})
client.get_bucket('my_unique_bucket', 'my_first_object', :params => {:acl => ''})
To create a bucket or object with one of the pre-defined ACL’s:
client.create_bucket('my_public_bucket', :headers => {:x_goog_acl => 'public-read'})
client.create_object('my_public_bucket', 'my_public_object', :headers => {:x_goog_acl => 'public-read-write'})
x_goog_acl
is converted tox-goog-acl
so you can use the ruby symbol without quotes.:"x-goog-acl"
and"x-goog-acl"
also work