Class: Aliyun::OSS::OSSObject
- Includes:
- SelectiveAttributeProxy
- Defined in:
- lib/aliyun/oss/object.rb,
lib/aliyun/oss/response.rb
Overview
OSSObjects represent the data you store on OSS. They have a key (their name) and a value (their data). All objects belong to a bucket.
You can store an object on OSS by specifying a key, its data and the name of the bucket you want to put it in:
OSSObject.store('me.jpg', open('headshot.jpg'), 'photos')
The content type of the object will be inferred by its extension. If the appropriate content type can not be inferred, OSS defaults to binary/octet-stream
.
If you want to override this, you can explicitly indicate what content type the object should have with the :content_type
option:
file = 'black-flowers.m4a'
OSSObject.store(
file,
open(file),
'jukebox',
:content_type => 'audio/mp4a-latm'
)
You can read more about storing files on OSS in the documentation for OSSObject.store.
If you just want to fetch an object you’ve stored on OSS, you just specify its name and its bucket:
picture = OSSObject.find 'headshot.jpg', 'photos'
N.B. The actual data for the file is not downloaded in both the example where the file appeared in the bucket and when fetched directly. You get the data for the file like this:
picture.value
You can fetch just the object’s data directly:
OSSObject.value 'headshot.jpg', 'photos'
Or stream it by passing a block to stream
:
open('song.mp3', 'w') do |file|
OSSObject.stream('song.mp3', 'jukebox') do |chunk|
file.write chunk
end
end
The data of the file, once download, is cached, so subsequent calls to value
won’t redownload the file unless you tell the object to reload its value
:
# Redownloads the file's data
song.value(:reload)
Other functionality includes:
# Check if an object exists?
OSSObject.exists? 'headshot.jpg', 'photos'
# Copying an object
OSSObject.copy 'headshot.jpg', 'headshot2.jpg', 'photos'
# Renaming an object
OSSObject.rename 'headshot.jpg', 'portrait.jpg', 'photos'
# Deleting an object
OSSObject.delete 'headshot.jpg', 'photos'
More about objects and their metadata
You can find out the content type of your object with the content_type
method:
song.content_type
# => "audio/mpeg"
You can change the content type as well if you like:
song.content_type = 'application/pdf'
song.store
(Keep in mind that due to limitations in OSS’s exposed API, the only way to change things like the content_type is to PUT the object onto OSS again. In the case of large files, this will result in fully re-uploading the file.)
A bevy of information about an object can be had using the about
method:
pp song.about
{"last-modified" => "Sat, 28 Oct 2006 21:29:26 GMT",
"content-type" => "binary/octet-stream",
"etag" => "\"dc629038ffc674bee6f62eb64ff3a\"",
"date" => "Sat, 28 Oct 2006 21:30:41 GMT",
"x-oss-request-id" => "B7BC68F55495B1C8",
"server" => "AliyunOSS",
"content-length" => "3418766"}
You can get and set metadata for an object:
song.
# => {}
song.[:album] = "A River Ain't Too Much To Love"
# => "A River Ain't Too Much To Love"
song.[:released] = 2005
pp song.
{"x-oss-meta-released" => 2005,
"x-oss-meta-album" => "A River Ain't Too Much To Love"}
song.store
That metadata will be saved in OSS and is hence forth available from that object:
song = OSSObject.find('black-flowers.mp3', 'jukebox')
pp song.
{"x-oss-meta-released" => "2005",
"x-oss-meta-album" => "A River Ain't Too Much To Love"}
song.[:released]
# => "2005"
song.[:released] = 2006
pp song.
{"x-oss-meta-released" => 2006,
"x-oss-meta-album" => "A River Ain't Too Much To Love"}
Defined Under Namespace
Classes: About, Metadata, Response, Value
Instance Attribute Summary collapse
-
#value(options = {}, &block) ⇒ Object
Lazily loads object data.
Class Method Summary collapse
-
.about(key, bucket = nil, options = {}) ⇒ Object
Fetch information about the object with
key
frombucket
. -
.copy(key, copy_key, bucket = nil, options = {}) ⇒ Object
Makes a copy of the object with
key
tocopy_key
, preserving the ACL of the existing object if the:copy_acl
option is true (default false). -
.create ⇒ Object
When storing an object on the OSS servers using OSSObject.store, the
data
argument can be a string or an I/O stream. -
.delete(key, bucket = nil, options = {}) ⇒ Object
Delete object with
key
frombucket
. -
.exists?(key, bucket = nil) ⇒ Boolean
Checks if the object with
key
inbucket
exists. -
.find(key, bucket = nil) ⇒ Object
Returns the object whose key is
name
in the specified bucket. -
.path!(bucket, name, options = {}) ⇒ Object
:nodoc:.
-
.rename(from, to, bucket = nil, options = {}) ⇒ Object
Rename the object with key
from
to have key into
. -
.save ⇒ Object
When storing an object on the OSS servers using OSSObject.store, the
data
argument can be a string or an I/O stream. -
.store(key, data, bucket = nil, options = {}) ⇒ Object
When storing an object on the OSS servers using OSSObject.store, the
data
argument can be a string or an I/O stream. - .stream(key, bucket = nil, options = {}, &block) ⇒ Object
-
.url_for(name, bucket = nil, options = {}) ⇒ Object
All private objects are accessible via an authenticated GET request to the OSS servers.
-
.value(key, bucket = nil, options = {}, &block) ⇒ Object
Returns the value of the object with
key
in the specified bucket.
Instance Method Summary collapse
-
#==(ossobject) ⇒ Object
:nodoc:.
-
#about ⇒ Object
Interface to information about the current object.
-
#belongs_to_bucket? ⇒ Boolean
(also: #orphan?)
Returns true if the current object has been assigned to a bucket yet.
-
#bucket ⇒ Object
The current object’s bucket.
-
#bucket=(bucket) ⇒ Object
Sets the bucket that the object belongs to.
-
#copy(copy_name, options = {}) ⇒ Object
Copies the current object, given it the name
copy_name
. -
#delete ⇒ Object
Deletes the current object.
- #etag(reload = false) ⇒ Object
-
#initialize(attributes = {}) {|_self| ... } ⇒ OSSObject
constructor
Initializes a new OSSObject.
-
#inspect ⇒ Object
Don’t dump binary data :).
-
#key ⇒ Object
Returns the key of the object.
-
#key=(value) ⇒ Object
Sets the key for the current object.
-
#key_set? ⇒ Boolean
Returns true if the current object has had its key set yet.
-
#metadata ⇒ Object
Interface to viewing and editing metadata for the current object.
-
#owner ⇒ Object
Returns the owner of the current object.
-
#path ⇒ Object
:nodoc:.
-
#rename(to, options = {}) ⇒ Object
Rename the current object.
-
#store(options = {}) ⇒ Object
(also: #create, #save)
Saves the current object with the specified
options
. -
#stored? ⇒ Boolean
Returns true if the current object has been stored on OSS yet.
-
#url(options = {}) ⇒ Object
Generates an authenticated url for the current object.
Methods included from SelectiveAttributeProxy
Methods inherited from Base
current_bucket, request, set_current_bucket_to
Constructor Details
#initialize(attributes = {}) {|_self| ... } ⇒ OSSObject
Initializes a new OSSObject.
420 421 422 423 424 425 |
# File 'lib/aliyun/oss/object.rb', line 420 def initialize(attributes = {}, &block) super self.value = attributes.delete(:value) self.bucket = attributes.delete(:bucket) yield self if block_given? end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Aliyun::OSS::Base
Instance Attribute Details
#value(options = {}, &block) ⇒ Object
Lazily loads object data.
Force a reload of the data by passing :reload
.
object.value(:reload)
When loading the data for the first time you can optionally yield to a block which will allow you to stream the data in segments.
object.value do |segment|
send_data segment
end
The full list of options are listed in the documentation for its class method counter part, OSSObject::value.
481 482 483 484 485 486 487 488 489 490 491 |
# File 'lib/aliyun/oss/object.rb', line 481 def value( = {}, &block) if .is_a?(Hash) reload = !.empty? else reload = = {} end expirable_memoize(reload) do self.class.stream(key, bucket.name, , &block) end end |
Class Method Details
.about(key, bucket = nil, options = {}) ⇒ Object
Fetch information about the object with key
from bucket
. Information includes content type, content length, last modified time, and others.
If the specified key does not exist, NoSuchKey is raised.
201 202 203 204 205 |
# File 'lib/aliyun/oss/object.rb', line 201 def about(key, bucket = nil, = {}) response = head(path!(bucket, key, ), ) raise NoSuchKey.new("No such key `#{key}'", bucket) if response.code == 404 About.new(response.headers) end |
.copy(key, copy_key, bucket = nil, options = {}) ⇒ Object
Makes a copy of the object with key
to copy_key
, preserving the ACL of the existing object if the :copy_acl
option is true (default false).
183 184 185 186 187 188 189 |
# File 'lib/aliyun/oss/object.rb', line 183 def copy(key, copy_key, bucket = nil, = {}) bucket = bucket_name(bucket) source_key = path!(bucket, key) = {'x-oss-copy-source' => source_key} target_key = path!(bucket, copy_key) put(target_key, .merge()) end |
.create ⇒ Object
When storing an object on the OSS servers using OSSObject.store, the data
argument can be a string or an I/O stream. If data
is an I/O stream it will be read in segments and written to the socket incrementally. This approach may be desirable for very large files so they are not read into memory all at once.
# Non streamed upload
OSSObject.store('greeting.txt', 'hello world!', 'marcel')
# Streamed upload
OSSObject.store('roots.mpeg', open('roots.mpeg'), 'marcel')
242 243 244 245 246 247 248 249 |
# File 'lib/aliyun/oss/object.rb', line 242 def store(key, data, bucket = nil, = {}) validate_key!(key) # Must build path before infering content type in case bucket is being used for options path = path!(bucket, key, ) infer_content_type!(key, ) put(path, , data) # Don't call .success? on response. We want to get the etag. end |
.delete(key, bucket = nil, options = {}) ⇒ Object
Delete object with key
from bucket
.
219 220 221 222 223 |
# File 'lib/aliyun/oss/object.rb', line 219 def delete(key, bucket = nil, = {}) # A bit confusing. Calling super actually makes an HTTP DELETE request. The delete method is # defined in the Base class. It happens to have the same name. super(path!(bucket, key, ), ).success? end |
.exists?(key, bucket = nil) ⇒ Boolean
Checks if the object with key
in bucket
exists.
OSSObject.exists? 'kiss.jpg', 'marcel'
# => true
211 212 213 214 215 216 |
# File 'lib/aliyun/oss/object.rb', line 211 def exists?(key, bucket = nil) about(key, bucket) true rescue NoSuchKey false end |
.find(key, bucket = nil) ⇒ Object
Returns the object whose key is name
in the specified bucket. If the specified key does not exist, a NoSuchKey exception will be raised.
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/aliyun/oss/object.rb', line 146 def find(key, bucket = nil) # N.B. This is arguably a hack. From what the current OSS API exposes, when you retrieve a bucket, it # provides a listing of all the files in that bucket (assuming you haven't limited the scope of what it returns). # Each file in the listing contains information about that file. It is from this information that an OSSObject is built. # # If you know the specific file that you want, OSS allows you to make a get request for that specific file and it returns # the value of that file in its response body. This response body is used to build an OSSObject::Value object. # If you want information about that file, you can make a head request and the headers of the response will contain # information about that file. There is no way, though, to say, give me the representation of just this given file the same # way that it would appear in a bucket listing. # # When fetching a bucket, you can provide options which narrow the scope of what files should be returned in that listing. # Of those options, one is <tt>marker</tt> which is a string and instructs the bucket to return only object's who's key comes after # the specified marker according to alphabetic order. Another option is <tt>max-keys</tt> which defaults to 1000 but allows you # to dictate how many objects should be returned in the listing. With a combination of <tt>marker</tt> and <tt>max-keys</tt> you can # *almost* specify exactly which file you'd like it to return, but <tt>marker</tt> is not inclusive. In other words, if there is a bucket # which contains three objects who's keys are respectively 'a', 'b' and 'c', then fetching a bucket listing with marker set to 'b' will only # return 'c', not 'b'. # # Given all that, my hack to fetch a bucket with only one specific file, is to set the marker to the result of calling String#previous on # the desired object's key, which functionally makes the key ordered one degree higher than the desired object key according to # alphabetic ordering. This is a hack, but it should work around 99% of the time. I can't think of a scenario where it would return # something incorrect. # We need to ensure the key doesn't have extended characters but not uri escape it before doing the lookup and comparing since if the object exists, # the key on OSS will have been normalized key = key.remove_extended unless key.valid_utf8? bucket = Bucket.find(bucket_name(bucket), :marker => key.previous, :max_keys => 1) # If our heuristic failed, trigger a NoSuchKey exception if (object = bucket.objects.first) && object.key == key object else raise NoSuchKey.new("No such key `#{key}'", bucket) end end |
.path!(bucket, name, options = {}) ⇒ Object
:nodoc:
293 294 295 296 297 298 299 300 |
# File 'lib/aliyun/oss/object.rb', line 293 def path!(bucket, name, = {}) #:nodoc: # We're using the second argument for options if bucket.is_a?(Hash) .replace(bucket) bucket = nil end '/' << File.join(bucket_name(bucket), name) end |
.rename(from, to, bucket = nil, options = {}) ⇒ Object
Rename the object with key from
to have key in to
.
192 193 194 195 |
# File 'lib/aliyun/oss/object.rb', line 192 def rename(from, to, bucket = nil, = {}) copy(from, to, bucket, ) delete(from, bucket) end |
.save ⇒ Object
When storing an object on the OSS servers using OSSObject.store, the data
argument can be a string or an I/O stream. If data
is an I/O stream it will be read in segments and written to the socket incrementally. This approach may be desirable for very large files so they are not read into memory all at once.
# Non streamed upload
OSSObject.store('greeting.txt', 'hello world!', 'marcel')
# Streamed upload
OSSObject.store('roots.mpeg', open('roots.mpeg'), 'marcel')
243 244 245 246 247 248 249 250 |
# File 'lib/aliyun/oss/object.rb', line 243 def store(key, data, bucket = nil, = {}) validate_key!(key) # Must build path before infering content type in case bucket is being used for options path = path!(bucket, key, ) infer_content_type!(key, ) put(path, , data) # Don't call .success? on response. We want to get the etag. end |
.store(key, data, bucket = nil, options = {}) ⇒ Object
When storing an object on the OSS servers using OSSObject.store, the data
argument can be a string or an I/O stream. If data
is an I/O stream it will be read in segments and written to the socket incrementally. This approach may be desirable for very large files so they are not read into memory all at once.
# Non streamed upload
OSSObject.store('greeting.txt', 'hello world!', 'marcel')
# Streamed upload
OSSObject.store('roots.mpeg', open('roots.mpeg'), 'marcel')
234 235 236 237 238 239 240 241 |
# File 'lib/aliyun/oss/object.rb', line 234 def store(key, data, bucket = nil, = {}) validate_key!(key) # Must build path before infering content type in case bucket is being used for options path = path!(bucket, key, ) infer_content_type!(key, ) put(path, , data) # Don't call .success? on response. We want to get the etag. end |
.stream(key, bucket = nil, options = {}, &block) ⇒ Object
138 139 140 141 142 |
# File 'lib/aliyun/oss/object.rb', line 138 def stream(key, bucket = nil, = {}, &block) value(key, bucket, ) do |response| response.read_body(&block) end end |
.url_for(name, bucket = nil, options = {}) ⇒ Object
All private objects are accessible via an authenticated GET request to the OSS servers. You can generate an authenticated url for an object like this:
OSSObject.url_for('beluga_baby.jpg', 'marcel_molina')
By default authenticated urls expire 5 minutes after they were generated.
Expiration options can be specified either with an absolute time since the epoch with the :expires
options, or with a number of seconds relative to now with the :expires_in
options:
# Absolute expiration date
# (Expires January 18th, 2038)
doomsday = Time.mktime(2038, 1, 18).to_i
OSSObject.url_for('beluga_baby.jpg',
'marcel',
:expires => doomsday)
# Expiration relative to now specified in seconds
# (Expires in 3 hours)
OSSObject.url_for('beluga_baby.jpg',
'marcel',
:expires_in => 60 * 60 * 3)
You can specify whether the url should go over SSL with the :use_ssl
option:
# Url will use https protocol
OSSObject.url_for('beluga_baby.jpg',
'marcel',
:use_ssl => true)
By default, the ssl settings for the current connection will be used.
If you have an object handy, you can use its url
method with the same objects:
song.url(:expires_in => 30)
To get an unauthenticated url for the object, such as in the case when the object is publicly readable, pass the :authenticated
option with a value of false
.
OSSObject.url_for('beluga_baby.jpg',
'marcel',
:authenticated => false)
# => http://oss.aliyuncs.com/marcel/beluga_baby.jpg
289 290 291 |
# File 'lib/aliyun/oss/object.rb', line 289 def url_for(name, bucket = nil, = {}) connection.url_for(path!(bucket, name, ), ) # Do not normalize options end |
.value(key, bucket = nil, options = {}, &block) ⇒ Object
Returns the value of the object with key
in the specified bucket.
Conditional GET options
-
:if_modified_since
- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified). -
:if_unmodified_since
- Return the object only if it has not been modified since the specified time, otherwise raise PreconditionFailed. -
:if_match
- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise raise PreconditionFailed. -
:if_none_match
- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
Other options
-
:range
- Return only the bytes of the object in the specified range.
134 135 136 |
# File 'lib/aliyun/oss/object.rb', line 134 def value(key, bucket = nil, = {}, &block) Value.new(get(path!(bucket, key, ), , &block)) end |
Instance Method Details
#==(ossobject) ⇒ Object
:nodoc:
586 587 588 |
# File 'lib/aliyun/oss/object.rb', line 586 def ==(ossobject) #:nodoc: path == ossobject.path end |
#about ⇒ Object
Interface to information about the current object. Information is read only, though some of its data can be modified through specific methods, such as content_type and content_type=.
pp some_object.about
{"last-modified" => "Sat, 28 Oct 2006 21:29:26 GMT",
"x-oss-id-2" => "LdcQRk5qLwxJQiZ8OH50HhoyKuqyWoJ67B6i+rOE5MxpjJTWh1kCkL+I0NQzbVQn",
"content-type" => "binary/octet-stream",
"etag" => "\"dc629038ffc674bee6f62eb68454ff3a\"",
"date" => "Sat, 28 Oct 2006 21:30:41 GMT",
"x-oss-request-id" => "B7BC68F55495B1C8",
"server" => "AliyunOSS",
"content-length" => "3418766"}
some_object.content_type
# => "binary/octet-stream"
some_object.content_type = 'audio/mpeg'
some_object.content_type
# => 'audio/mpeg'
some_object.store
512 513 514 |
# File 'lib/aliyun/oss/object.rb', line 512 def about stored? ? self.class.about(key, bucket.name) : About.new end |
#belongs_to_bucket? ⇒ Boolean Also known as: orphan?
Returns true if the current object has been assigned to a bucket yet. Objects must belong to a bucket before they can be saved onto OSS.
441 442 443 |
# File 'lib/aliyun/oss/object.rb', line 441 def belongs_to_bucket? !@bucket.nil? end |
#bucket ⇒ Object
The current object’s bucket. If no bucket has been set, a NoBucketSpecified exception will be raised. For cases where you are not sure if the bucket has been set, you can use the belongs_to_bucket? method.
429 430 431 |
# File 'lib/aliyun/oss/object.rb', line 429 def bucket @bucket or raise NoBucketSpecified end |
#bucket=(bucket) ⇒ Object
Sets the bucket that the object belongs to.
434 435 436 437 |
# File 'lib/aliyun/oss/object.rb', line 434 def bucket=(bucket) @bucket = bucket self end |
#copy(copy_name, options = {}) ⇒ Object
Copies the current object, given it the name copy_name
. Keep in mind that due to limitations in OSS’s API, this operation requires retransmitting the entire object to OSS.
552 553 554 |
# File 'lib/aliyun/oss/object.rb', line 552 def copy(copy_name, = {}) self.class.copy(key, copy_name, bucket.name, ) end |
#delete ⇒ Object
Deletes the current object. Trying to save an object after it has been deleted with raise a DeletedObject exception.
544 545 546 547 548 |
# File 'lib/aliyun/oss/object.rb', line 544 def delete bucket.update(:deleted, self) freeze self.class.delete(key, bucket.name) end |
#etag(reload = false) ⇒ Object
562 563 564 565 566 567 |
# File 'lib/aliyun/oss/object.rb', line 562 def etag(reload = false) return nil unless stored? expirable_memoize(reload) do reload ? about(reload)['etag'][1...-1] : attributes['e_tag'][1...-1] end end |
#inspect ⇒ Object
Don’t dump binary data :)
598 599 600 |
# File 'lib/aliyun/oss/object.rb', line 598 def inspect #:nodoc: "#<%s:0x%s '%s'>" % [self.class, object_id, path] end |
#key ⇒ Object
Returns the key of the object. If the key is not set, a NoKeySpecified exception will be raised. For cases where you are not sure if the key has been set, you can use the key_set? method. Objects must have a key set to be saved onto OSS. Objects which have already been saved onto OSS will always have their key set.
449 450 451 |
# File 'lib/aliyun/oss/object.rb', line 449 def key attributes['key'] or raise NoKeySpecified end |
#key=(value) ⇒ Object
Sets the key for the current object.
454 455 456 |
# File 'lib/aliyun/oss/object.rb', line 454 def key=(value) attributes['key'] = value end |
#key_set? ⇒ Boolean
Returns true if the current object has had its key set yet. Objects which have already been saved will always return true. This method is useful for objects which have not been saved yet so you know if you need to set the object’s key since you can not save an object unless its key has been set.
object.store if object.key_set? && object.belongs_to_bucket?
463 464 465 |
# File 'lib/aliyun/oss/object.rb', line 463 def key_set? !attributes['key'].nil? end |
#metadata ⇒ Object
Interface to viewing and editing metadata for the current object. To be treated like a Hash.
some_object.
# => {}
some_object.[:author] = 'Dave Thomas'
some_object.
# => {"x-oss-meta-author" => "Dave Thomas"}
some_object.[:author]
# => "Dave Thomas"
526 527 528 |
# File 'lib/aliyun/oss/object.rb', line 526 def about. end |
#owner ⇒ Object
Returns the owner of the current object.
570 571 572 |
# File 'lib/aliyun/oss/object.rb', line 570 def owner Owner.new(attributes['owner']) end |
#path ⇒ Object
:nodoc:
590 591 592 593 594 595 |
# File 'lib/aliyun/oss/object.rb', line 590 def path #:nodoc: self.class.path!( belongs_to_bucket? ? bucket.name : '(no bucket)', key_set? ? key : '(no key)' ) end |
#rename(to, options = {}) ⇒ Object
Rename the current object. Keep in mind that due to limitations in OSS’s API, this operation requires retransmitting the entire object to OSS.
558 559 560 |
# File 'lib/aliyun/oss/object.rb', line 558 def rename(to, = {}) self.class.rename(key, to, bucket.name, ) end |
#store(options = {}) ⇒ Object Also known as: create, save
Saves the current object with the specified options
. Valid options are listed in the documentation for OSSObject::store.
532 533 534 535 536 537 538 |
# File 'lib/aliyun/oss/object.rb', line 532 def store( = {}) raise DeletedObject if frozen? = about.to_headers.merge() if stored? response = self.class.store(key, value, bucket.name, ) bucket.update(:stored, self) response.success? end |
#stored? ⇒ Boolean
Returns true if the current object has been stored on OSS yet.
582 583 584 |
# File 'lib/aliyun/oss/object.rb', line 582 def stored? !attributes['e_tag'].nil? end |
#url(options = {}) ⇒ Object
Generates an authenticated url for the current object. Accepts the same options as its class method counter part OSSObject.url_for.
577 578 579 |
# File 'lib/aliyun/oss/object.rb', line 577 def url( = {}) self.class.url_for(key, bucket.name, ) end |