Class: Aliyun::OSS::Bucket

Inherits:
Base show all
Includes:
Enumerable
Defined in:
lib/aliyun/oss/bucket.rb,
lib/aliyun/oss/response.rb

Overview

Buckets are containers for objects (the files you store on OSS). To create a new bucket you just specify its name.

# Pick a unique name, or else you'll get an error 
# if the name is already taken.
Bucket.create('jukebox')

Bucket names must be unique across the entire OSS system, sort of like domain names across the internet. If you try to create a bucket with a name that is already taken, you will get an error.

Assuming the name you chose isn’t already taken, your new bucket will now appear in the bucket list:

Service.buckets
# => [#<Aliyun::OSS::Bucket @attributes={"name"=>"jukebox"}>]

Once you have succesfully created a bucket you can you can fetch it by name using Bucket.find.

music_bucket = Bucket.find('jukebox')

The bucket that is returned will contain a listing of all the objects in the bucket.

music_bucket.objects.size
# => 0

If all you are interested in is the objects of the bucket, you can get to them directly using Bucket.objects.

Bucket.objects('jukebox').size
# => 0

By default all objects will be returned, though there are several options you can use to limit what is returned, such as specifying that only objects whose name is after a certain place in the alphabet be returned, and etc. Details about these options can be found in the documentation for Bucket.find.

To add an object to a bucket you specify the name of the object, its value, and the bucket to put it in.

file = 'black-flowers.mp3'
OSSObject.store(file, open(file), 'jukebox')

You’ll see your file has been added to it:

music_bucket.objects
# => [#<Aliyun::OSS::OSSObject '/jukebox/black-flowers.mp3'>]

You can treat your bucket like a hash and access objects by name:

jukebox['black-flowers.mp3']
# => #<Aliyun::OSS::OSSObject '/jukebox/black-flowers.mp3'>

In the event that you want to delete a bucket, you can use Bucket.delete.

Bucket.delete('jukebox')

Keep in mind, like unix directories, you can not delete a bucket unless it is empty. Trying to delete a bucket that contains objects will raise a BucketNotEmpty exception.

Passing the :force => true option to delete will take care of deleting all the bucket’s objects for you.

Bucket.delete('photos', :force => true)
# => true

Defined Under Namespace

Classes: Response

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

current_bucket, request, set_current_bucket_to

Constructor Details

#initialize(attributes = {}) ⇒ Bucket

:nodoc:



190
191
192
193
194
# File 'lib/aliyun/oss/bucket.rb', line 190

def initialize(attributes = {}) #:nodoc:
  super
  @object_cache = []
  build_contents!
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Aliyun::OSS::Base

Instance Attribute Details

#object_cacheObject (readonly)

:nodoc:



186
187
188
# File 'lib/aliyun/oss/bucket.rb', line 186

def object_cache
  @object_cache
end

Class Method Details

.create(name, options = {}) ⇒ Object

Creates a bucket named name.

Bucket.create('jukebox')

Your bucket name must be unique across all of OSS. If the name you request has already been taken, you will get a 409 Conflict response, and a BucketAlreadyExists exception will be raised.

By default new buckets have their access level set to private. You can override this using the :access option.

Bucket.create('internet_drop_box', :access => :public_read_write)

The full list of access levels that you can set on Bucket and OSSObject creation are listed in the README in the section called ‘Setting access levels’.



78
79
80
81
# File 'lib/aliyun/oss/bucket.rb', line 78

def create(name, options = {})
  validate_name!(name)
  put("/#{name}", options).success?
end

.delete(name = nil, options = {}) ⇒ Object

Deletes the bucket named name.

All objects in the bucket must be deleted before the bucket can be deleted. If the bucket is not empty, BucketNotEmpty will be raised.

You can side step this issue by passing the :force => true option to delete which will take care of emptying the bucket before deleting it.

Bucket.delete('photos', :force => true)

Only the owner of a bucket can delete a bucket, regardless of the bucket’s access control policy.



160
161
162
163
164
165
# File 'lib/aliyun/oss/bucket.rb', line 160

def delete(name = nil, options = {})
  find(name).delete_all if options[:force]
  
  name = path(name)
  Base.delete(name).success?
end

.find(name = nil, options = {}) ⇒ Object

Fetches the bucket named name.

Bucket.find('jukebox')

If a default bucket is inferable from the current connection’s subdomain, or if set explicitly with Base.set_current_bucket, it will be used if no bucket is specified.

MusicBucket.current_bucket
=> 'jukebox'
MusicBucket.find.name
=> 'jukebox'

By default all objects contained in the bucket will be returned (sans their data) along with the bucket. You can access your objects using the Bucket#objects method.

Bucket.find('jukebox').objects

There are several options which allow you to limit which objects are retrieved. The list of object filtering options are listed in the documentation for Bucket.objects.



102
103
104
# File 'lib/aliyun/oss/bucket.rb', line 102

def find(name = nil, options = {})
  new(get(path(name, options)).bucket)
end

.list(reload = false) ⇒ Object

List all your buckets. This is a convenient wrapper around Aliyun::OSS::Service.buckets.



168
169
170
# File 'lib/aliyun/oss/bucket.rb', line 168

def list(reload = false)
  Service.buckets(reload)
end

.objects(name = nil, options = {}) ⇒ Object

Return just the objects in the bucket named name.

By default all objects of the named bucket will be returned. There are options, though, for filtering which objects are returned.

Object filtering options

  • :max_keys - The maximum number of keys you’d like to see in the response body. The server may return fewer than this many keys, but will not return more.

    Bucket.objects('jukebox').size
    # => 3
    Bucket.objects('jukebox', :max_keys => 1).size
    # => 1
    
  • :prefix - Restricts the response to only contain results that begin with the specified prefix.

    Bucket.objects('jukebox')
    # => [<Aliyun::OSS::OSSObject '/jazz/miles.mp3'>, <Aliyun::OSS::OSSObject '/jazz/dolphy.mp3'>, <Aliyun::OSS::OSSObject '/classical/malher.mp3'>]
    Bucket.objects('jukebox', :prefix => 'classical')
    # => [<Aliyun::OSS::OSSObject '/classical/malher.mp3'>]
    
  • :marker - Marker specifies where in the result set to resume listing. It restricts the response to only contain results that occur alphabetically after the value of marker. To retrieve the next set of results, use the last key from the current page of results as the marker in your next request.

    # Skip 'mahler'
    Bucket.objects('jukebox', :marker => 'mb')
    # => [<Aliyun::OSS::OSSObject '/jazz/miles.mp3'>]
    

Examples

# Return no more than 2 objects whose key's are listed alphabetically after the letter 'm'.
Bucket.objects('jukebox', :marker => 'm', :max_keys => 2)
# => [<Aliyun::OSS::OSSObject '/jazz/miles.mp3'>, <Aliyun::OSS::OSSObject '/classical/malher.mp3'>]

# Return no more than 2 objects whose key's are listed alphabetically after the letter 'm' and have the 'jazz' prefix.
Bucket.objects('jukebox', :marker => 'm', :max_keys => 2, :prefix => 'jazz')
# => [<Aliyun::OSS::OSSObject '/jazz/miles.mp3'>]


145
146
147
# File 'lib/aliyun/oss/bucket.rb', line 145

def objects(name = nil, options = {})
  find(name, options).object_cache
end

Instance Method Details

#[](object_key) ⇒ Object

Fetches the object named object_key, or nil if the bucket does not contain an object with the specified key.

bucket.objects
=> [#<Aliyun::OSS::OSSObject '/marcel_molina/beluga_baby.jpg'>,
    #<Aliyun::OSS::OSSObject '/marcel_molina/tongue_overload.jpg'>]
bucket['beluga_baby.jpg']
=> #<Aliyun::OSS::OSSObject '/marcel_molina/beluga_baby.jpg'>


204
205
206
# File 'lib/aliyun/oss/bucket.rb', line 204

def [](object_key)
  detect {|file| file.key == object_key.to_s}
end

#delete(options = {}) ⇒ Object

Deletes the bucket. See its class method counter part Bucket.delete for caveats about bucket deletion and how to ensure a bucket is deleted no matter what.



269
270
271
# File 'lib/aliyun/oss/bucket.rb', line 269

def delete(options = {})
  self.class.delete(name, options)
end

#delete_allObject Also known as: clear

Delete all files in the bucket. Use with caution. Can not be undone.



274
275
276
277
278
279
# File 'lib/aliyun/oss/bucket.rb', line 274

def delete_all
  each do |object|
    object.delete
  end
  self
end

#each(&block) ⇒ Object

Iterates over the objects in the bucket.

bucket.each do |object|
  # Do something with the object ...
end


252
253
254
255
# File 'lib/aliyun/oss/bucket.rb', line 252

def each(&block)
  # Dup the collection since we might be destructively modifying the object_cache during the iteration.
  objects.dup.each(&block)
end

#empty?Boolean

Returns true if there are no objects in the bucket.

Returns:

  • (Boolean)


258
259
260
# File 'lib/aliyun/oss/bucket.rb', line 258

def empty?
  objects.empty?
end

#new_object(attributes = {}) ⇒ Object

Initializes a new OSSObject belonging to the current bucket.

object = bucket.new_object
object.value = data
object.key   = 'classical/mahler.mp3'
object.store
bucket.objects.include?(object)
=> true


216
217
218
219
220
# File 'lib/aliyun/oss/bucket.rb', line 216

def new_object(attributes = {})
  object = OSSObject.new(attributes)
  register(object)
  object
end

#objects(options = {}) ⇒ Object

List OSSObject’s of the bucket.

Once fetched the objects will be cached. You can reload the objects by passing :reload.

bucket.objects(:reload)

You can also filter the objects using the same options listed in Bucket.objects.

bucket.objects(:prefix => 'jazz')

Using these filtering options will implictly reload the objects.

To reclaim all the objects for the bucket you can pass in :reload again.



235
236
237
238
239
240
241
242
243
244
245
# File 'lib/aliyun/oss/bucket.rb', line 235

def objects(options = {})
  if options.is_a?(Hash)
    reload = !options.empty?
  else
    reload  = options
    options = {}
  end
  
  reload!(options) if reload || object_cache.empty?
  object_cache
end

#sizeObject

Returns the number of objects in the bucket.



263
264
265
# File 'lib/aliyun/oss/bucket.rb', line 263

def size
  objects.size
end

#update(action, object) ⇒ Object

Buckets observe their objects and have this method called when one of their objects is either stored or deleted.



284
285
286
287
288
289
# File 'lib/aliyun/oss/bucket.rb', line 284

def update(action, object) #:nodoc:        
  case action
  when :stored  then add object unless objects.include?(object)
  when :deleted then object_cache.delete(object)
  end
end