croaker-aws-s3 0.5.2.20090127001

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. data/COPYING +19 -0
  2. data/INSTALL +55 -0
  3. data/README +545 -0
  4. data/Rakefile +334 -0
  5. data/bin/s3sh +6 -0
  6. data/bin/setup.rb +10 -0
  7. data/lib/aws/s3/acl.rb +636 -0
  8. data/lib/aws/s3/authentication.rb +222 -0
  9. data/lib/aws/s3/base.rb +257 -0
  10. data/lib/aws/s3/bittorrent.rb +58 -0
  11. data/lib/aws/s3/bucket.rb +329 -0
  12. data/lib/aws/s3/connection.rb +349 -0
  13. data/lib/aws/s3/error.rb +69 -0
  14. data/lib/aws/s3/exceptions.rb +133 -0
  15. data/lib/aws/s3/extensions.rb +324 -0
  16. data/lib/aws/s3/logging.rb +311 -0
  17. data/lib/aws/s3/object.rb +613 -0
  18. data/lib/aws/s3/owner.rb +44 -0
  19. data/lib/aws/s3/parsing.rb +99 -0
  20. data/lib/aws/s3/response.rb +180 -0
  21. data/lib/aws/s3/service.rb +51 -0
  22. data/lib/aws/s3/version.rb +12 -0
  23. data/lib/aws/s3.rb +61 -0
  24. data/support/faster-xml-simple/lib/faster_xml_simple.rb +187 -0
  25. data/support/faster-xml-simple/test/regression_test.rb +47 -0
  26. data/support/faster-xml-simple/test/test_helper.rb +17 -0
  27. data/support/faster-xml-simple/test/xml_simple_comparison_test.rb +46 -0
  28. data/support/rdoc/code_info.rb +211 -0
  29. data/test/acl_test.rb +254 -0
  30. data/test/authentication_test.rb +114 -0
  31. data/test/base_test.rb +136 -0
  32. data/test/bucket_test.rb +74 -0
  33. data/test/connection_test.rb +217 -0
  34. data/test/error_test.rb +70 -0
  35. data/test/extensions_test.rb +331 -0
  36. data/test/fixtures/buckets.yml +133 -0
  37. data/test/fixtures/errors.yml +34 -0
  38. data/test/fixtures/headers.yml +3 -0
  39. data/test/fixtures/logging.yml +15 -0
  40. data/test/fixtures/loglines.yml +5 -0
  41. data/test/fixtures/logs.yml +7 -0
  42. data/test/fixtures/policies.yml +16 -0
  43. data/test/fixtures.rb +89 -0
  44. data/test/logging_test.rb +89 -0
  45. data/test/mocks/fake_response.rb +26 -0
  46. data/test/object_test.rb +205 -0
  47. data/test/parsing_test.rb +66 -0
  48. data/test/remote/acl_test.rb +117 -0
  49. data/test/remote/bittorrent_test.rb +45 -0
  50. data/test/remote/bucket_test.rb +146 -0
  51. data/test/remote/logging_test.rb +82 -0
  52. data/test/remote/object_test.rb +371 -0
  53. data/test/remote/test_helper.rb +30 -0
  54. data/test/response_test.rb +68 -0
  55. data/test/service_test.rb +23 -0
  56. data/test/test_helper.rb +111 -0
  57. metadata +143 -0
@@ -0,0 +1,613 @@
1
+ module AWS
2
+ module S3
3
+ # S3Objects represent the data you store on S3. They have a key (their name) and a value (their data). All objects belong to a
4
+ # bucket.
5
+ #
6
+ # You can store an object on S3 by specifying a key, its data and the name of the bucket you want to put it in:
7
+ #
8
+ # S3Object.store('me.jpg', open('headshot.jpg'), 'photos')
9
+ #
10
+ # The content type of the object will be inferred by its extension. If the appropriate content type can not be inferred, S3 defaults
11
+ # to <tt>binary/octet-stream</tt>.
12
+ #
13
+ # If you want to override this, you can explicitly indicate what content type the object should have with the <tt>:content_type</tt> option:
14
+ #
15
+ # file = 'black-flowers.m4a'
16
+ # S3Object.store(
17
+ # file,
18
+ # open(file),
19
+ # 'jukebox',
20
+ # :content_type => 'audio/mp4a-latm'
21
+ # )
22
+ #
23
+ # You can read more about storing files on S3 in the documentation for S3Object.store.
24
+ #
25
+ # If you just want to fetch an object you've stored on S3, you just specify its name and its bucket:
26
+ #
27
+ # picture = S3Object.find 'headshot.jpg', 'photos'
28
+ #
29
+ # 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.
30
+ # You get the data for the file like this:
31
+ #
32
+ # picture.value
33
+ #
34
+ # You can fetch just the object's data directly:
35
+ #
36
+ # S3Object.value 'headshot.jpg', 'photos'
37
+ #
38
+ # Or stream it by passing a block to <tt>stream</tt>:
39
+ #
40
+ # open('song.mp3', 'w') do |file|
41
+ # S3Object.stream('song.mp3', 'jukebox') do |chunk|
42
+ # file.write chunk
43
+ # end
44
+ # end
45
+ #
46
+ # The data of the file, once download, is cached, so subsequent calls to <tt>value</tt> won't redownload the file unless you
47
+ # tell the object to reload its <tt>value</tt>:
48
+ #
49
+ # # Redownloads the file's data
50
+ # song.value(:reload)
51
+ #
52
+ # Other functionality includes:
53
+ #
54
+ # # Check if an object exists?
55
+ # S3Object.exists? 'headshot.jpg', 'photos'
56
+ #
57
+ # # Copying an object
58
+ # S3Object.copy 'headshot.jpg', 'headshot2.jpg', 'photos'
59
+ #
60
+ # # Renaming an object
61
+ # S3Object.rename 'headshot.jpg', 'portrait.jpg', 'photos'
62
+ #
63
+ # # Deleting an object
64
+ # S3Object.delete 'headshot.jpg', 'photos'
65
+ #
66
+ # ==== More about objects and their metadata
67
+ #
68
+ # You can find out the content type of your object with the <tt>content_type</tt> method:
69
+ #
70
+ # song.content_type
71
+ # # => "audio/mpeg"
72
+ #
73
+ # You can change the content type as well if you like:
74
+ #
75
+ # song.content_type = 'application/pdf'
76
+ # song.store
77
+ #
78
+ # (Keep in mind that due to limitiations in S3's exposed API, the only way to change things like the content_type
79
+ # is to PUT the object onto S3 again. In the case of large files, this will result in fully re-uploading the file.)
80
+ #
81
+ # A bevie of information about an object can be had using the <tt>about</tt> method:
82
+ #
83
+ # pp song.about
84
+ # {"last-modified" => "Sat, 28 Oct 2006 21:29:26 GMT",
85
+ # "content-type" => "binary/octet-stream",
86
+ # "etag" => "\"dc629038ffc674bee6f62eb64ff3a\"",
87
+ # "date" => "Sat, 28 Oct 2006 21:30:41 GMT",
88
+ # "x-amz-request-id" => "B7BC68F55495B1C8",
89
+ # "server" => "AmazonS3",
90
+ # "content-length" => "3418766"}
91
+ #
92
+ # You can get and set metadata for an object:
93
+ #
94
+ # song.metadata
95
+ # # => {}
96
+ # song.metadata[:album] = "A River Ain't Too Much To Love"
97
+ # # => "A River Ain't Too Much To Love"
98
+ # song.metadata[:released] = 2005
99
+ # pp song.metadata
100
+ # {"x-amz-meta-released" => 2005,
101
+ # "x-amz-meta-album" => "A River Ain't Too Much To Love"}
102
+ # song.store
103
+ #
104
+ # That metadata will be saved in S3 and is hence forth available from that object:
105
+ #
106
+ # song = S3Object.find('black-flowers.mp3', 'jukebox')
107
+ # pp song.metadata
108
+ # {"x-amz-meta-released" => "2005",
109
+ # "x-amz-meta-album" => "A River Ain't Too Much To Love"}
110
+ # song.metadata[:released]
111
+ # # => "2005"
112
+ # song.metadata[:released] = 2006
113
+ # pp song.metadata
114
+ # {"x-amz-meta-released" => 2006,
115
+ # "x-amz-meta-album" => "A River Ain't Too Much To Love"}
116
+ class S3Object < Base
117
+ class << self
118
+ # Returns the value of the object with <tt>key</tt> in the specified bucket.
119
+ #
120
+ # === Conditional GET options
121
+ #
122
+ # * <tt>:if_modified_since</tt> - Return the object only if it has been modified since the specified time,
123
+ # otherwise return a 304 (not modified).
124
+ # * <tt>:if_unmodified_since</tt> - Return the object only if it has not been modified since the specified time,
125
+ # otherwise raise PreconditionFailed.
126
+ # * <tt>:if_match</tt> - Return the object only if its entity tag (ETag) is the same as the one specified,
127
+ # otherwise raise PreconditionFailed.
128
+ # * <tt>:if_none_match</tt> - Return the object only if its entity tag (ETag) is different from the one specified,
129
+ # otherwise return a 304 (not modified).
130
+ #
131
+ # === Other options
132
+ # * <tt>:range</tt> - Return only the bytes of the object in the specified range.
133
+ def value(key, bucket = nil, options = {}, &block)
134
+ Value.new(get(path!(bucket, key, options), options, &block))
135
+ end
136
+
137
+ def stream(key, bucket = nil, options = {}, &block)
138
+ value(key, bucket, options) do |response|
139
+ response.read_body(&block)
140
+ end
141
+ end
142
+
143
+ # Returns the object whose key is <tt>name</tt> in the specified bucket. If the specified key does not
144
+ # exist, a NoSuchKey exception will be raised.
145
+ def find(key, bucket = nil)
146
+ # N.B. This is arguably a hack. From what the current S3 API exposes, when you retrieve a bucket, it
147
+ # provides a listing of all the files in that bucket (assuming you haven't limited the scope of what it returns).
148
+ # Each file in the listing contains information about that file. It is from this information that an S3Object is built.
149
+ #
150
+ # If you know the specific file that you want, S3 allows you to make a get request for that specific file and it returns
151
+ # the value of that file in its response body. This response body is used to build an S3Object::Value object.
152
+ # If you want information about that file, you can make a head request and the headers of the response will contain
153
+ # information about that file. There is no way, though, to say, give me the representation of just this given file the same
154
+ # way that it would appear in a bucket listing.
155
+ #
156
+ # When fetching a bucket, you can provide options which narrow the scope of what files should be returned in that listing.
157
+ # 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
158
+ # the specified marker according to alphabetic order. Another option is <tt>max-keys</tt> which defaults to 1000 but allows you
159
+ # 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
160
+ # *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
161
+ # 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
162
+ # return 'c', not 'b'.
163
+ #
164
+ # 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
165
+ # the desired object's key, which functionally makes the key ordered one degree higher than the desired object key according to
166
+ # 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
167
+ # something incorrect.
168
+
169
+ # 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,
170
+ # the key on S3 will have been normalized
171
+ key = key.remove_extended unless key.utf8?
172
+ bucket = Bucket.find(bucket_name(bucket), :marker => key.previous, :max_keys => 1)
173
+ # If our heuristic failed, trigger a NoSuchKey exception
174
+ if (object = bucket.objects.first) && object.key == key
175
+ object
176
+ else
177
+ raise NoSuchKey.new("No such key `#{key}'", bucket)
178
+ end
179
+ end
180
+
181
+ # Makes a copy of the object with <tt>key</tt> to <tt>copy_key</tt>, preserving the ACL of the existing object if the <tt>:copy_acl</tt> option is true (default false).
182
+ # You can also specify an optional target bucket with the option <tt>target_bucket</tt>.
183
+ def copy(key, copy_key, bucket = nil, options = {})
184
+ bucket = bucket_name(bucket)
185
+ source_key = path!(bucket, key)
186
+ default_options = {'x-amz-copy-source' => source_key}
187
+ target_bucket = options[:target_bucket] ? bucket_name(options[:target_bucket]) : bucket
188
+ target_key = path!(target_bucket, copy_key)
189
+ returning put(target_key, default_options) do
190
+ acl(copy_key, bucket, acl(key, bucket)) if options[:copy_acl]
191
+ end
192
+ end
193
+
194
+ # Rename the object with key <tt>from</tt> to have key in <tt>to</tt>. You can also specify an optional target bucket with the option <tt>target_bucket</tt>.
195
+ def rename(from, to, bucket = nil, options = {})
196
+ copy(from, to, bucket, options)
197
+ delete(from, bucket)
198
+ end
199
+
200
+ # Fetch information about the object with <tt>key</tt> from <tt>bucket</tt>. Information includes content type, content length,
201
+ # last modified time, and others.
202
+ #
203
+ # If the specified key does not exist, NoSuchKey is raised.
204
+ def about(key, bucket = nil, options = {})
205
+ response = head(path!(bucket, key, options), options)
206
+ raise NoSuchKey.new("No such key `#{key}'", bucket) if response.code == 404
207
+ About.new(response.headers)
208
+ end
209
+
210
+ # Checks if the object with <tt>key</tt> in <tt>bucket</tt> exists.
211
+ #
212
+ # S3Object.exists? 'kiss.jpg', 'marcel'
213
+ # # => true
214
+ def exists?(key, bucket = nil)
215
+ about(key, bucket)
216
+ true
217
+ rescue NoSuchKey
218
+ false
219
+ end
220
+
221
+ # Delete object with <tt>key</tt> from <tt>bucket</tt>.
222
+ def delete(key, bucket = nil, options = {})
223
+ # A bit confusing. Calling super actually makes an HTTP DELETE request. The delete method is
224
+ # defined in the Base class. It happens to have the same name.
225
+ super(path!(bucket, key, options), options).success?
226
+ end
227
+
228
+ # When storing an object on the S3 servers using S3Object.store, the <tt>data</tt> argument can be a string or an I/O stream.
229
+ # If <tt>data</tt> is an I/O stream it will be read in segments and written to the socket incrementally. This approach
230
+ # may be desirable for very large files so they are not read into memory all at once.
231
+ #
232
+ # # Non streamed upload
233
+ # S3Object.store('greeting.txt', 'hello world!', 'marcel')
234
+ #
235
+ # # Streamed upload
236
+ # S3Object.store('roots.mpeg', open('roots.mpeg'), 'marcel')
237
+ def store(key, data, bucket = nil, options = {})
238
+ validate_key!(key)
239
+ # Must build path before infering content type in case bucket is being used for options
240
+ path = path!(bucket, key, options)
241
+ infer_content_type!(key, options)
242
+
243
+ put(path, options, data) # Don't call .success? on response. We want to get the etag.
244
+ end
245
+ alias_method :create, :store
246
+ alias_method :save, :store
247
+
248
+ # All private objects are accessible via an authenticated GET request to the S3 servers. You can generate an
249
+ # authenticated url for an object like this:
250
+ #
251
+ # S3Object.url_for('beluga_baby.jpg', 'marcel_molina')
252
+ #
253
+ # By default authenticated urls expire 5 minutes after they were generated.
254
+ #
255
+ # Expiration options can be specified either with an absolute time since the epoch with the <tt>:expires</tt> options,
256
+ # or with a number of seconds relative to now with the <tt>:expires_in</tt> options:
257
+ #
258
+ # # Absolute expiration date
259
+ # # (Expires January 18th, 2038)
260
+ # doomsday = Time.mktime(2038, 1, 18).to_i
261
+ # S3Object.url_for('beluga_baby.jpg',
262
+ # 'marcel',
263
+ # :expires => doomsday)
264
+ #
265
+ # # Expiration relative to now specified in seconds
266
+ # # (Expires in 3 hours)
267
+ # S3Object.url_for('beluga_baby.jpg',
268
+ # 'marcel',
269
+ # :expires_in => 60 * 60 * 3)
270
+ #
271
+ # You can specify whether the url should go over SSL with the <tt>:use_ssl</tt> option:
272
+ #
273
+ # # Url will use https protocol
274
+ # S3Object.url_for('beluga_baby.jpg',
275
+ # 'marcel',
276
+ # :use_ssl => true)
277
+ #
278
+ # By default, the ssl settings for the current connection will be used.
279
+ #
280
+ # If you have an object handy, you can use its <tt>url</tt> method with the same objects:
281
+ #
282
+ # song.url(:expires_in => 30)
283
+ #
284
+ # To get an unauthenticated url for the object, such as in the case
285
+ # when the object is publicly readable, pass the
286
+ # <tt>:authenticated</tt> option with a value of <tt>false</tt>.
287
+ #
288
+ # S3Object.url_for('beluga_baby.jpg',
289
+ # 'marcel',
290
+ # :authenticated => false)
291
+ # # => http://s3.amazonaws.com/marcel/beluga_baby.jpg
292
+ def url_for(name, bucket = nil, options = {})
293
+ connection.url_for(path!(bucket, name, options), options) # Do not normalize options
294
+ end
295
+
296
+ def path!(bucket, name, options = {}) #:nodoc:
297
+ # We're using the second argument for options
298
+ if bucket.is_a?(Hash)
299
+ options.replace(bucket)
300
+ bucket = nil
301
+ end
302
+
303
+ '/' << File.join(bucket_name(bucket), name)
304
+ end
305
+
306
+ private
307
+
308
+ def validate_key!(key)
309
+ raise InvalidKeyName.new(key) unless key && key.size <= 1024
310
+ end
311
+
312
+ def infer_content_type!(key, options)
313
+ return if options.has_key?(:content_type)
314
+ if mime_type = MIME::Types.type_for(key).first
315
+ options[:content_type] = mime_type.content_type
316
+ end
317
+ end
318
+ end
319
+
320
+ class Value < String #:nodoc:
321
+ attr_reader :response
322
+ def initialize(response)
323
+ super(response.body)
324
+ @response = response
325
+ end
326
+ end
327
+
328
+ class About < Hash #:nodoc:
329
+ def initialize(headers)
330
+ super()
331
+ replace(headers)
332
+ metadata
333
+ end
334
+
335
+ def [](header)
336
+ super(header.to_header)
337
+ end
338
+
339
+ def []=(header, value)
340
+ super(header.to_header, value)
341
+ end
342
+
343
+ def to_headers
344
+ self.merge(metadata.to_headers)
345
+ end
346
+
347
+ def metadata
348
+ Metadata.new(self)
349
+ end
350
+ memoized :metadata
351
+ end
352
+
353
+ class Metadata < Hash #:nodoc:
354
+ HEADER_PREFIX = 'x-amz-meta-'
355
+ SIZE_LIMIT = 2048 # 2 kilobytes
356
+
357
+ def initialize(headers)
358
+ @headers = headers
359
+ super()
360
+ extract_metadata!
361
+ end
362
+
363
+ def []=(header, value)
364
+ super(header_name(header.to_header), value)
365
+ end
366
+
367
+ def [](header)
368
+ super(header_name(header.to_header))
369
+ end
370
+
371
+ def to_headers
372
+ validate!
373
+ self
374
+ end
375
+
376
+ private
377
+ attr_reader :headers
378
+
379
+ def extract_metadata!
380
+ headers.keys.grep(Regexp.new(HEADER_PREFIX)).each do |metadata_header|
381
+ self[metadata_header] = headers.delete(metadata_header)
382
+ end
383
+ end
384
+
385
+ def header_name(name)
386
+ name =~ Regexp.new(HEADER_PREFIX) ? name : [HEADER_PREFIX, name].join
387
+ end
388
+
389
+ def validate!
390
+ invalid_headers = inject([]) do |invalid, (name, value)|
391
+ invalid << name unless valid?(value)
392
+ invalid
393
+ end
394
+
395
+ raise InvalidMetadataValue.new(invalid_headers) unless invalid_headers.empty?
396
+ end
397
+
398
+ def valid?(value)
399
+ value && value.size < SIZE_LIMIT
400
+ end
401
+ end
402
+
403
+ attr_writer :value #:nodoc:
404
+
405
+ # Provides readers and writers for all valid header settings listed in <tt>valid_header_settings</tt>.
406
+ # Subsequent saves to the object after setting any of the valid headers settings will be reflected in
407
+ # information about the object.
408
+ #
409
+ # some_s3_object.content_type
410
+ # => nil
411
+ # some_s3_object.content_type = 'text/plain'
412
+ # => "text/plain"
413
+ # some_s3_object.content_type
414
+ # => "text/plain"
415
+ # some_s3_object.store
416
+ # S3Object.about(some_s3_object.key, some_s3_object.bucket.name)['content-type']
417
+ # => "text/plain"
418
+ include SelectiveAttributeProxy #:nodoc
419
+
420
+ proxy_to :about, :exclusively => false
421
+
422
+ # Initializes a new S3Object.
423
+ def initialize(attributes = {}, &block)
424
+ super
425
+ self.value = attributes.delete(:value)
426
+ self.bucket = attributes.delete(:bucket)
427
+ yield self if block_given?
428
+ end
429
+
430
+ # The current object's bucket. If no bucket has been set, a NoBucketSpecified exception will be raised. For
431
+ # cases where you are not sure if the bucket has been set, you can use the belongs_to_bucket? method.
432
+ def bucket
433
+ @bucket or raise NoBucketSpecified
434
+ end
435
+
436
+ # Sets the bucket that the object belongs to.
437
+ def bucket=(bucket)
438
+ @bucket = bucket
439
+ self
440
+ end
441
+
442
+ # Returns true if the current object has been assigned to a bucket yet. Objects must belong to a bucket before they
443
+ # can be saved onto S3.
444
+ def belongs_to_bucket?
445
+ !@bucket.nil?
446
+ end
447
+ alias_method :orphan?, :belongs_to_bucket?
448
+
449
+ # Returns the key of the object. If the key is not set, a NoKeySpecified exception will be raised. For cases
450
+ # where you are not sure if the key has been set, you can use the key_set? method. Objects must have a key
451
+ # set to be saved onto S3. Objects which have already been saved onto S3 will always have their key set.
452
+ def key
453
+ attributes['key'] or raise NoKeySpecified
454
+ end
455
+
456
+ # Sets the key for the current object.
457
+ def key=(value)
458
+ attributes['key'] = value
459
+ end
460
+
461
+ # Returns true if the current object has had its key set yet. Objects which have already been saved will
462
+ # always return true. This method is useful for objects which have not been saved yet so you know if you
463
+ # need to set the object's key since you can not save an object unless its key has been set.
464
+ #
465
+ # object.store if object.key_set? && object.belongs_to_bucket?
466
+ def key_set?
467
+ !attributes['key'].nil?
468
+ end
469
+
470
+ # Lazily loads object data.
471
+ #
472
+ # Force a reload of the data by passing <tt>:reload</tt>.
473
+ #
474
+ # object.value(:reload)
475
+ #
476
+ # When loading the data for the first time you can optionally yield to a block which will
477
+ # allow you to stream the data in segments.
478
+ #
479
+ # object.value do |segment|
480
+ # send_data segment
481
+ # end
482
+ #
483
+ # The full list of options are listed in the documentation for its class method counter part, S3Object::value.
484
+ def value(options = {}, &block)
485
+ if options.is_a?(Hash)
486
+ reload = !options.empty?
487
+ else
488
+ reload = options
489
+ options = {}
490
+ end
491
+ memoize(reload) do
492
+ self.class.stream(key, bucket.name, options, &block)
493
+ end
494
+ end
495
+
496
+ # Interface to information about the current object. Information is read only, though some of its data
497
+ # can be modified through specific methods, such as content_type and content_type=.
498
+ #
499
+ # pp some_object.about
500
+ # {"last-modified" => "Sat, 28 Oct 2006 21:29:26 GMT",
501
+ # "x-amz-id-2" => "LdcQRk5qLwxJQiZ8OH50HhoyKuqyWoJ67B6i+rOE5MxpjJTWh1kCkL+I0NQzbVQn",
502
+ # "content-type" => "binary/octet-stream",
503
+ # "etag" => "\"dc629038ffc674bee6f62eb68454ff3a\"",
504
+ # "date" => "Sat, 28 Oct 2006 21:30:41 GMT",
505
+ # "x-amz-request-id" => "B7BC68F55495B1C8",
506
+ # "server" => "AmazonS3",
507
+ # "content-length" => "3418766"}
508
+ #
509
+ # some_object.content_type
510
+ # # => "binary/octet-stream"
511
+ # some_object.content_type = 'audio/mpeg'
512
+ # some_object.content_type
513
+ # # => 'audio/mpeg'
514
+ # some_object.store
515
+ def about
516
+ stored? ? self.class.about(key, bucket.name) : About.new
517
+ end
518
+ memoized :about
519
+
520
+ # Interface to viewing and editing metadata for the current object. To be treated like a Hash.
521
+ #
522
+ # some_object.metadata
523
+ # # => {}
524
+ # some_object.metadata[:author] = 'Dave Thomas'
525
+ # some_object.metadata
526
+ # # => {"x-amz-meta-author" => "Dave Thomas"}
527
+ # some_object.metadata[:author]
528
+ # # => "Dave Thomas"
529
+ def metadata
530
+ about.metadata
531
+ end
532
+ memoized :metadata
533
+
534
+ # Saves the current object with the specified <tt>options</tt>. Valid options are listed in the documentation for S3Object::store.
535
+ def store(options = {})
536
+ raise DeletedObject if frozen?
537
+ options = about.to_headers.merge(options) if stored?
538
+ response = self.class.store(key, value, bucket.name, options)
539
+ bucket.update(:stored, self)
540
+ response.success?
541
+ end
542
+ alias_method :create, :store
543
+ alias_method :save, :store
544
+
545
+ # Deletes the current object. Trying to save an object after it has been deleted with
546
+ # raise a DeletedObject exception.
547
+ def delete
548
+ bucket.update(:deleted, self)
549
+ freeze
550
+ self.class.delete(key, bucket.name)
551
+ end
552
+
553
+ # Copies the current object, given it the name <tt>copy_name</tt>. You can also specify an optional target bucket with the option <tt>target_bucket</tt>.
554
+ def copy(copy_name, options = {})
555
+ self.class.copy(key, copy_name, bucket.name, options)
556
+ end
557
+
558
+ # Rename the current object. You can also specify an optional target bucket with the option <tt>target_bucket</tt>.
559
+ def rename(to, options = {})
560
+ self.class.rename(key, to, bucket.name, options)
561
+ end
562
+
563
+ def etag(reload = false)
564
+ return nil unless stored?
565
+ memoize(reload) do
566
+ reload ? about(reload)['etag'][1...-1] : attributes['e_tag'][1...-1]
567
+ end
568
+ end
569
+
570
+ # Returns the owner of the current object.
571
+ def owner
572
+ Owner.new(attributes['owner'])
573
+ end
574
+ memoized :owner
575
+
576
+ # Generates an authenticated url for the current object. Accepts the same options as its class method
577
+ # counter part S3Object.url_for.
578
+ def url(options = {})
579
+ self.class.url_for(key, bucket.name, options)
580
+ end
581
+
582
+ # Returns true if the current object has been stored on S3 yet.
583
+ def stored?
584
+ !attributes['e_tag'].nil?
585
+ end
586
+
587
+ def ==(s3object) #:nodoc:
588
+ path == s3object.path
589
+ end
590
+
591
+ def path #:nodoc:
592
+ self.class.path!(
593
+ belongs_to_bucket? ? bucket.name : '(no bucket)',
594
+ key_set? ? key : '(no key)'
595
+ )
596
+ end
597
+
598
+ # Don't dump binary data :)
599
+ def inspect #:nodoc:
600
+ "#<%s:0x%s '%s'>" % [self.class, object_id, path]
601
+ end
602
+
603
+ private
604
+ def proxiable_attribute?(name)
605
+ valid_header_settings.include?(name)
606
+ end
607
+
608
+ def valid_header_settings
609
+ %w(cache_control content_type content_length content_md5 content_disposition content_encoding expires)
610
+ end
611
+ end
612
+ end
613
+ end
@@ -0,0 +1,44 @@
1
+ module AWS
2
+ module S3
3
+ # Entities in S3 have an associated owner (the person who created them). The owner is a canonical representation of an
4
+ # entity in the S3 system. It has an <tt>id</tt> and a <tt>display_name</tt>.
5
+ #
6
+ # These attributes can be used when specifying a ACL::Grantee for an ACL::Grant.
7
+ #
8
+ # You can retrieve the owner of the current account by calling Owner.current.
9
+ class Owner
10
+ undef_method :id if method_defined?(:id) # Get rid of Object#id
11
+ include SelectiveAttributeProxy
12
+
13
+ class << self
14
+ # The owner of the current account.
15
+ def current
16
+ response = Service.get('/')
17
+ new(response.parsed['owner']) if response.parsed['owner']
18
+ end
19
+ memoized :current
20
+ end
21
+
22
+ def initialize(attributes = {}) #:nodoc:
23
+ @attributes = attributes
24
+ end
25
+
26
+ def ==(other_owner) #:nodoc:
27
+ hash == other_owner.hash
28
+ end
29
+
30
+ def hash #:nodoc
31
+ [id, display_name].join.hash
32
+ end
33
+
34
+ private
35
+ def proxiable_attribute?(name)
36
+ valid_attributes.include?(name)
37
+ end
38
+
39
+ def valid_attributes
40
+ %w(id display_name)
41
+ end
42
+ end
43
+ end
44
+ end