aws-s3-instructure 0.6.2.1319222580

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 (58) hide show
  1. data/COPYING +19 -0
  2. data/INSTALL +55 -0
  3. data/README +545 -0
  4. data/Rakefile +300 -0
  5. data/bin/s3sh +6 -0
  6. data/bin/setup.rb +10 -0
  7. data/lib/aws/s3.rb +60 -0
  8. data/lib/aws/s3/acl.rb +636 -0
  9. data/lib/aws/s3/authentication.rb +266 -0
  10. data/lib/aws/s3/base.rb +240 -0
  11. data/lib/aws/s3/bittorrent.rb +58 -0
  12. data/lib/aws/s3/bucket.rb +319 -0
  13. data/lib/aws/s3/connection.rb +295 -0
  14. data/lib/aws/s3/error.rb +69 -0
  15. data/lib/aws/s3/exceptions.rb +133 -0
  16. data/lib/aws/s3/extensions.rb +356 -0
  17. data/lib/aws/s3/logging.rb +314 -0
  18. data/lib/aws/s3/object.rb +612 -0
  19. data/lib/aws/s3/owner.rb +44 -0
  20. data/lib/aws/s3/parsing.rb +99 -0
  21. data/lib/aws/s3/response.rb +180 -0
  22. data/lib/aws/s3/service.rb +51 -0
  23. data/lib/aws/s3/version.rb +12 -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 +156 -0
  31. data/test/base_test.rb +136 -0
  32. data/test/bucket_test.rb +74 -0
  33. data/test/connection_test.rb +256 -0
  34. data/test/error_test.rb +70 -0
  35. data/test/extensions_test.rb +340 -0
  36. data/test/fixtures.rb +89 -0
  37. data/test/fixtures/buckets.yml +133 -0
  38. data/test/fixtures/errors.yml +34 -0
  39. data/test/fixtures/headers.yml +3 -0
  40. data/test/fixtures/logging.yml +15 -0
  41. data/test/fixtures/loglines.yml +5 -0
  42. data/test/fixtures/logs.yml +7 -0
  43. data/test/fixtures/policies.yml +16 -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_file.data +0 -0
  54. data/test/remote/test_helper.rb +33 -0
  55. data/test/response_test.rb +68 -0
  56. data/test/service_test.rb +23 -0
  57. data/test/test_helper.rb +110 -0
  58. metadata +198 -0
@@ -0,0 +1,58 @@
1
+ module AWS
2
+ module S3
3
+ # Objects on S3 can be distributed via the BitTorrent file sharing protocol.
4
+ #
5
+ # You can get a torrent file for an object by calling <tt>torrent_for</tt>:
6
+ #
7
+ # S3Object.torrent_for 'kiss.jpg', 'marcel'
8
+ #
9
+ # Or just call the <tt>torrent</tt> method if you already have the object:
10
+ #
11
+ # song = S3Object.find 'kiss.jpg', 'marcel'
12
+ # song.torrent
13
+ #
14
+ # Calling <tt>grant_torrent_access_to</tt> on a object will allow anyone to anonymously
15
+ # fetch the torrent file for that object:
16
+ #
17
+ # S3Object.grant_torrent_access_to 'kiss.jpg', 'marcel'
18
+ #
19
+ # Anonymous requests to
20
+ #
21
+ # http://s3.amazonaws.com/marcel/kiss.jpg?torrent
22
+ #
23
+ # will serve up the torrent file for that object.
24
+ module BitTorrent
25
+ def self.included(klass) #:nodoc:
26
+ klass.extend ClassMethods
27
+ end
28
+
29
+ # Adds methods to S3Object for accessing the torrent of a given object.
30
+ module ClassMethods
31
+ # Returns the torrent file for the object with the given <tt>key</tt>.
32
+ def torrent_for(key, bucket = nil)
33
+ get(path!(bucket, key) << '?torrent').body
34
+ end
35
+ alias_method :torrent, :torrent_for
36
+
37
+ # Grants access to the object with the given <tt>key</tt> to be accessible as a torrent.
38
+ def grant_torrent_access_to(key, bucket = nil)
39
+ policy = acl(key, bucket)
40
+ return true if policy.grants.include?(:public_read)
41
+ policy.grants << ACL::Grant.grant(:public_read)
42
+ acl(key, bucket, policy)
43
+ end
44
+ alias_method :grant_torrent_access, :grant_torrent_access_to
45
+ end
46
+
47
+ # Returns the torrent file for the object.
48
+ def torrent
49
+ self.class.torrent_for(key, bucket.name)
50
+ end
51
+
52
+ # Grants torrent access publicly to anyone who requests it on this object.
53
+ def grant_torrent_access
54
+ self.class.grant_torrent_access_to(key, bucket.name)
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,319 @@
1
+ module AWS
2
+ module S3
3
+ # Buckets are containers for objects (the files you store on S3). To create a new bucket you just specify its name.
4
+ #
5
+ # # Pick a unique name, or else you'll get an error
6
+ # # if the name is already taken.
7
+ # Bucket.create('jukebox')
8
+ #
9
+ # Bucket names must be unique across the entire S3 system, sort of like domain names across the internet. If you try
10
+ # to create a bucket with a name that is already taken, you will get an error.
11
+ #
12
+ # Assuming the name you chose isn't already taken, your new bucket will now appear in the bucket list:
13
+ #
14
+ # Service.buckets
15
+ # # => [#<AWS::S3::Bucket @attributes={"name"=>"jukebox"}>]
16
+ #
17
+ # Once you have succesfully created a bucket you can you can fetch it by name using Bucket.find.
18
+ #
19
+ # music_bucket = Bucket.find('jukebox')
20
+ #
21
+ # The bucket that is returned will contain a listing of all the objects in the bucket.
22
+ #
23
+ # music_bucket.objects.size
24
+ # # => 0
25
+ #
26
+ # If all you are interested in is the objects of the bucket, you can get to them directly using Bucket.objects.
27
+ #
28
+ # Bucket.objects('jukebox').size
29
+ # # => 0
30
+ #
31
+ # By default all objects will be returned, though there are several options you can use to limit what is returned, such as
32
+ # specifying that only objects whose name is after a certain place in the alphabet be returned, and etc. Details about these options can
33
+ # be found in the documentation for Bucket.find.
34
+ #
35
+ # To add an object to a bucket you specify the name of the object, its value, and the bucket to put it in.
36
+ #
37
+ # file = 'black-flowers.mp3'
38
+ # S3Object.store(file, open(file), 'jukebox')
39
+ #
40
+ # You'll see your file has been added to it:
41
+ #
42
+ # music_bucket.objects
43
+ # # => [#<AWS::S3::S3Object '/jukebox/black-flowers.mp3'>]
44
+ #
45
+ # You can treat your bucket like a hash and access objects by name:
46
+ #
47
+ # jukebox['black-flowers.mp3']
48
+ # # => #<AWS::S3::S3Object '/jukebox/black-flowers.mp3'>
49
+ #
50
+ # In the event that you want to delete a bucket, you can use Bucket.delete.
51
+ #
52
+ # Bucket.delete('jukebox')
53
+ #
54
+ # Keep in mind, like unix directories, you can not delete a bucket unless it is empty. Trying to delete a bucket
55
+ # that contains objects will raise a BucketNotEmpty exception.
56
+ #
57
+ # Passing the :force => true option to delete will take care of deleting all the bucket's objects for you.
58
+ #
59
+ # Bucket.delete('photos', :force => true)
60
+ # # => true
61
+ class Bucket < Base
62
+ class << self
63
+ # Creates a bucket named <tt>name</tt>.
64
+ #
65
+ # Bucket.create('jukebox')
66
+ #
67
+ # Your bucket name must be unique across all of S3. If the name
68
+ # you request has already been taken, you will get a 409 Conflict response, and a BucketAlreadyExists exception
69
+ # will be raised.
70
+ #
71
+ # By default new buckets have their access level set to private. You can override this using the <tt>:access</tt> option.
72
+ #
73
+ # Bucket.create('internet_drop_box', :access => :public_read_write)
74
+ #
75
+ # The full list of access levels that you can set on Bucket and S3Object creation are listed in the README[link:files/README.html]
76
+ # in the section called 'Setting access levels'.
77
+ def create(name, options = {})
78
+ validate_name!(name)
79
+ put("/#{name}", options).success?
80
+ end
81
+
82
+ # Fetches the bucket named <tt>name</tt>.
83
+ #
84
+ # Bucket.find('jukebox')
85
+ #
86
+ # If a default bucket is inferable from the current connection's subdomain, or if set explicitly with Base.set_current_bucket,
87
+ # it will be used if no bucket is specified.
88
+ #
89
+ # MusicBucket.current_bucket
90
+ # => 'jukebox'
91
+ # MusicBucket.find.name
92
+ # => 'jukebox'
93
+ #
94
+ # By default all objects contained in the bucket will be returned (sans their data) along with the bucket.
95
+ # You can access your objects using the Bucket#objects method.
96
+ #
97
+ # Bucket.find('jukebox').objects
98
+ #
99
+ # There are several options which allow you to limit which objects are retrieved. The list of object filtering options
100
+ # are listed in the documentation for Bucket.objects.
101
+ def find(name = nil, options = {})
102
+ new(get(path(name, options)).bucket)
103
+ end
104
+
105
+ # Return just the objects in the bucket named <tt>name</tt>.
106
+ #
107
+ # By default all objects of the named bucket will be returned. There are options, though, for filtering
108
+ # which objects are returned.
109
+ #
110
+ # === Object filtering options
111
+ #
112
+ # * <tt>:max_keys</tt> - The maximum number of keys you'd like to see in the response body.
113
+ # The server may return fewer than this many keys, but will not return more.
114
+ #
115
+ # Bucket.objects('jukebox').size
116
+ # # => 3
117
+ # Bucket.objects('jukebox', :max_keys => 1).size
118
+ # # => 1
119
+ #
120
+ # * <tt>:prefix</tt> - Restricts the response to only contain results that begin with the specified prefix.
121
+ #
122
+ # Bucket.objects('jukebox')
123
+ # # => [<AWS::S3::S3Object '/jazz/miles.mp3'>, <AWS::S3::S3Object '/jazz/dolphy.mp3'>, <AWS::S3::S3Object '/classical/malher.mp3'>]
124
+ # Bucket.objects('jukebox', :prefix => 'classical')
125
+ # # => [<AWS::S3::S3Object '/classical/malher.mp3'>]
126
+ #
127
+ # * <tt>:marker</tt> - Marker specifies where in the result set to resume listing. It restricts the response
128
+ # to only contain results that occur alphabetically _after_ the value of marker. To retrieve the next set of results,
129
+ # use the last key from the current page of results as the marker in your next request.
130
+ #
131
+ # # Skip 'mahler'
132
+ # Bucket.objects('jukebox', :marker => 'mb')
133
+ # # => [<AWS::S3::S3Object '/jazz/miles.mp3'>]
134
+ #
135
+ # === Examples
136
+ #
137
+ # # Return no more than 2 objects whose key's are listed alphabetically after the letter 'm'.
138
+ # Bucket.objects('jukebox', :marker => 'm', :max_keys => 2)
139
+ # # => [<AWS::S3::S3Object '/jazz/miles.mp3'>, <AWS::S3::S3Object '/classical/malher.mp3'>]
140
+ #
141
+ # # Return no more than 2 objects whose key's are listed alphabetically after the letter 'm' and have the 'jazz' prefix.
142
+ # Bucket.objects('jukebox', :marker => 'm', :max_keys => 2, :prefix => 'jazz')
143
+ # # => [<AWS::S3::S3Object '/jazz/miles.mp3'>]
144
+ def objects(name = nil, options = {})
145
+ find(name, options).object_cache
146
+ end
147
+
148
+ # Deletes the bucket named <tt>name</tt>.
149
+ #
150
+ # All objects in the bucket must be deleted before the bucket can be deleted. If the bucket is not empty,
151
+ # BucketNotEmpty will be raised.
152
+ #
153
+ # You can side step this issue by passing the :force => true option to delete which will take care of
154
+ # emptying the bucket before deleting it.
155
+ #
156
+ # Bucket.delete('photos', :force => true)
157
+ #
158
+ # Only the owner of a bucket can delete a bucket, regardless of the bucket's access control policy.
159
+ def delete(name = nil, options = {})
160
+ find(name).delete_all if options[:force]
161
+
162
+ name = path(name)
163
+ Base.delete(name).success?
164
+ end
165
+
166
+ # List all your buckets. This is a convenient wrapper around AWS::S3::Service.buckets.
167
+ def list(reload = false)
168
+ Service.buckets(reload)
169
+ end
170
+
171
+ private
172
+ def validate_name!(name)
173
+ raise InvalidBucketName.new(name) unless name =~ /^[-\w.]{3,255}$/
174
+ end
175
+
176
+ def path(name, options = {})
177
+ if name.is_a?(Hash)
178
+ options = name
179
+ name = nil
180
+ end
181
+ "/#{bucket_name(name)}#{RequestOptions.process(options).to_query_string}"
182
+ end
183
+ end
184
+
185
+ attr_reader :object_cache #:nodoc:
186
+
187
+ include Enumerable
188
+
189
+ def initialize(attributes = {}) #:nodoc:
190
+ super
191
+ @object_cache = []
192
+ build_contents!
193
+ end
194
+
195
+ # Fetches the object named <tt>object_key</tt>, or nil if the bucket does not contain an object with the
196
+ # specified key.
197
+ #
198
+ # bucket.objects
199
+ # => [#<AWS::S3::S3Object '/marcel_molina/beluga_baby.jpg'>,
200
+ # #<AWS::S3::S3Object '/marcel_molina/tongue_overload.jpg'>]
201
+ # bucket['beluga_baby.jpg']
202
+ # => #<AWS::S3::S3Object '/marcel_molina/beluga_baby.jpg'>
203
+ def [](object_key)
204
+ detect {|file| file.key == object_key.to_s}
205
+ end
206
+
207
+ # Initializes a new S3Object belonging to the current bucket.
208
+ #
209
+ # object = bucket.new_object
210
+ # object.value = data
211
+ # object.key = 'classical/mahler.mp3'
212
+ # object.store
213
+ # bucket.objects.include?(object)
214
+ # => true
215
+ def new_object(attributes = {})
216
+ object = S3Object.new(attributes)
217
+ register(object)
218
+ object
219
+ end
220
+
221
+ # List S3Object's of the bucket.
222
+ #
223
+ # Once fetched the objects will be cached. You can reload the objects by passing <tt>:reload</tt>.
224
+ #
225
+ # bucket.objects(:reload)
226
+ #
227
+ # You can also filter the objects using the same options listed in Bucket.objects.
228
+ #
229
+ # bucket.objects(:prefix => 'jazz')
230
+ #
231
+ # Using these filtering options will implictly reload the objects.
232
+ #
233
+ # To reclaim all the objects for the bucket you can pass in :reload again.
234
+ def objects(options = {})
235
+ if options.is_a?(Hash)
236
+ reload = !options.empty?
237
+ else
238
+ reload = options
239
+ options = {}
240
+ end
241
+
242
+ reload!(options) if reload || object_cache.empty?
243
+ object_cache
244
+ end
245
+
246
+ # Iterates over the objects in the bucket.
247
+ #
248
+ # bucket.each do |object|
249
+ # # Do something with the object ...
250
+ # end
251
+ def each(&block)
252
+ # Dup the collection since we might be destructively modifying the object_cache during the iteration.
253
+ objects.dup.each(&block)
254
+ end
255
+
256
+ # Returns true if there are no objects in the bucket.
257
+ def empty?
258
+ objects.empty?
259
+ end
260
+
261
+ # Returns the number of objects in the bucket.
262
+ def size
263
+ objects.size
264
+ end
265
+
266
+ # Deletes the bucket. See its class method counter part Bucket.delete for caveats about bucket deletion and how to ensure
267
+ # a bucket is deleted no matter what.
268
+ def delete(options = {})
269
+ self.class.delete(name, options)
270
+ end
271
+
272
+ # Delete all files in the bucket. Use with caution. Can not be undone.
273
+ def delete_all
274
+ each do |object|
275
+ object.delete
276
+ end
277
+ self
278
+ end
279
+ alias_method :clear, :delete_all
280
+
281
+ # Buckets observe their objects and have this method called when one of their objects
282
+ # is either stored or deleted.
283
+ def update(action, object) #:nodoc:
284
+ case action
285
+ when :stored then add object unless objects.include?(object)
286
+ when :deleted then object_cache.delete(object)
287
+ end
288
+ end
289
+
290
+ private
291
+ def build_contents!
292
+ return unless has_contents?
293
+ attributes.delete('contents').each do |content|
294
+ add new_object(content)
295
+ end
296
+ end
297
+
298
+ def has_contents?
299
+ attributes.has_key?('contents')
300
+ end
301
+
302
+ def add(object)
303
+ register(object)
304
+ object_cache << object
305
+ end
306
+
307
+ def register(object)
308
+ object.bucket = self
309
+ end
310
+
311
+ def reload!(options = {})
312
+ object_cache.clear
313
+ self.class.objects(name, options).each do |object|
314
+ add object
315
+ end
316
+ end
317
+ end
318
+ end
319
+ end
@@ -0,0 +1,295 @@
1
+ module AWS
2
+ module S3
3
+ class Connection #:nodoc:
4
+ class << self
5
+ def connect(options = {})
6
+ new(options)
7
+ end
8
+
9
+ def prepare_path(path)
10
+ path = path.remove_extended unless path.valid_utf8?
11
+ URI.escape(path)
12
+ end
13
+ end
14
+
15
+ attr_reader :access_key_id, :secret_access_key, :http, :options
16
+
17
+ # Creates a new connection. Connections make the actual requests to S3, though these requests are usually
18
+ # called from subclasses of Base.
19
+ #
20
+ # For details on establishing connections, check the Connection::Management::ClassMethods.
21
+ def initialize(options = {})
22
+ @options = Options.new(options)
23
+ connect
24
+ end
25
+
26
+ def request(verb, path, headers = {}, body = nil, attempts = 0, &block)
27
+ body.rewind if body.respond_to?(:rewind) unless attempts.zero?
28
+
29
+ requester = Proc.new do
30
+ path = self.class.prepare_path(path) if attempts.zero? # Only escape the path once
31
+ request = request_method(verb).new(path, headers)
32
+ ensure_content_type!(request)
33
+ add_user_agent!(request)
34
+ authenticate!(request)
35
+ if body
36
+ if body.respond_to?(:read)
37
+ request.body_stream = body
38
+ else
39
+ request.body = body
40
+ end
41
+ request.content_length = body.respond_to?(:lstat) ? body.stat.size : body.size
42
+ else
43
+ request.content_length = 0
44
+ end
45
+ http.request(request, &block)
46
+ end
47
+
48
+ if persistent?
49
+ http.start unless http.started?
50
+ requester.call
51
+ else
52
+ http.start(&requester)
53
+ end
54
+ rescue Errno::EPIPE, Timeout::Error, Errno::EINVAL, EOFError
55
+ @http = create_connection
56
+ attempts == 3 ? raise : (attempts += 1; retry)
57
+ end
58
+
59
+ def url_for(path, options = {})
60
+ authenticate = options.delete(:authenticated)
61
+ # Default to true unless explicitly false
62
+ authenticate = true if authenticate.nil?
63
+ path = self.class.prepare_path(path)
64
+ request = request_method(:get).new(path, {})
65
+ query_segments = permissible_request_parameters(options)
66
+ query_segments << query_string_authentication(request, options) if authenticate
67
+ url = "#{protocol(options)}#{http.address}#{port_string}#{path}"
68
+ url << (url['?'] ? '&' : '?') << query_segments.join('&') unless query_segments.empty?
69
+ url
70
+ end
71
+
72
+ def subdomain
73
+ http.address[/^([^.]+).#{DEFAULT_HOST}$/, 1]
74
+ end
75
+
76
+ def persistent?
77
+ options[:persistent]
78
+ end
79
+
80
+ def protocol(options = {})
81
+ # This always trumps http.use_ssl?
82
+ if options[:use_ssl] == false
83
+ 'http://'
84
+ elsif options[:use_ssl] || http.use_ssl?
85
+ 'https://'
86
+ else
87
+ 'http://'
88
+ end
89
+ end
90
+
91
+ private
92
+ def extract_keys!
93
+ missing_keys = []
94
+ extract_key = Proc.new {|key| options[key] || (missing_keys.push(key); nil)}
95
+ @access_key_id = extract_key[:access_key_id]
96
+ @secret_access_key = extract_key[:secret_access_key]
97
+ raise MissingAccessKey.new(missing_keys) unless missing_keys.empty?
98
+ end
99
+
100
+ def create_connection
101
+ http = http_class.new(options[:server], options[:port])
102
+ http.use_ssl = !options[:use_ssl].nil? || options[:port] == 443
103
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
104
+ http
105
+ end
106
+
107
+ def http_class
108
+ if options.connecting_through_proxy?
109
+ Net::HTTP::Proxy(*options.proxy_settings)
110
+ else
111
+ Net::HTTP
112
+ end
113
+ end
114
+
115
+ def connect
116
+ extract_keys!
117
+ @http = create_connection
118
+ end
119
+
120
+ def port_string
121
+ default_port = options[:use_ssl] ? 443 : 80
122
+ http.port == default_port ? '' : ":#{http.port}"
123
+ end
124
+
125
+ def ensure_content_type!(request)
126
+ request['Content-Type'] ||= 'binary/octet-stream'
127
+ end
128
+
129
+ # Just do Header authentication for now
130
+ def authenticate!(request)
131
+ request['Authorization'] = Authentication::Header.new(request, access_key_id, secret_access_key)
132
+ end
133
+
134
+ def add_user_agent!(request)
135
+ request['User-Agent'] ||= "AWS::S3/#{Version}"
136
+ end
137
+
138
+ def permissible_request_parameters(options = {})
139
+ # fill out parameters given options according to
140
+ # http://docs.amazonwebservices.com/AmazonS3/latest/API/index.html?RESTObjectGET.html
141
+ # section Requests subsection Request Parameters and
142
+ # http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?RESTAuthentication.html#ConstructingTheCanonicalizedResourceElement
143
+ [ 'acl', 'location', 'logging', 'notification', 'partNumber',
144
+ 'policy', 'requestPayment', 'torrent', 'uploadId', 'uploads',
145
+ 'versionId', 'versioning', 'versions', 'website',
146
+ 'response-content-type', 'response-content-language',
147
+ 'response-expires', 'response-cache-control',
148
+ 'response-content-disposition', 'response-content-encoding' ].map do |key|
149
+ key = key.to_sym unless options.has_key?(key)
150
+ options.has_key?(key) ? [key, CGI.escape(options[key])].join('=') : nil
151
+ end.compact
152
+ end
153
+
154
+ def query_string_authentication(request, options = {})
155
+ Authentication::QueryString.new(request, access_key_id, secret_access_key, options)
156
+ end
157
+
158
+ def request_method(verb)
159
+ Net::HTTP.const_get(verb.to_s.capitalize)
160
+ end
161
+
162
+ def method_missing(method, *args, &block)
163
+ options[method] || super
164
+ end
165
+
166
+ module Management #:nodoc:
167
+ def self.included(base)
168
+ base.cattr_accessor :connections
169
+ base.connections = {}
170
+ base.extend ClassMethods
171
+ end
172
+
173
+ # Manage the creation and destruction of connections for AWS::S3::Base and its subclasses. Connections are
174
+ # created with establish_connection!.
175
+ module ClassMethods
176
+ # Creates a new connection with which to make requests to the S3 servers for the calling class.
177
+ #
178
+ # AWS::S3::Base.establish_connection!(:access_key_id => '...', :secret_access_key => '...')
179
+ #
180
+ # You can set connections for every subclass of AWS::S3::Base. Once the initial connection is made on
181
+ # Base, all subsequent connections will inherit whatever values you don't specify explictly. This allows you to
182
+ # customize details of the connection, such as what server the requests are made to, by just specifying one
183
+ # option.
184
+ #
185
+ # AWS::S3::Bucket.established_connection!(:use_ssl => true)
186
+ #
187
+ # The Bucket connection would inherit the <tt>:access_key_id</tt> and the <tt>:secret_access_key</tt> from
188
+ # Base's connection. Unlike the Base connection, all Bucket requests would be made over SSL.
189
+ #
190
+ # == Required arguments
191
+ #
192
+ # * <tt>:access_key_id</tt> - The access key id for your S3 account. Provided by Amazon.
193
+ # * <tt>:secret_access_key</tt> - The secret access key for your S3 account. Provided by Amazon.
194
+ #
195
+ # If any of these required arguments is missing, a MissingAccessKey exception will be raised.
196
+ #
197
+ # == Optional arguments
198
+ #
199
+ # * <tt>:server</tt> - The server to make requests to. You can use this to specify your bucket in the subdomain,
200
+ # or your own domain's cname if you are using virtual hosted buckets. Defaults to <tt>s3.amazonaws.com</tt>.
201
+ # * <tt>:port</tt> - The port to the requests should be made on. Defaults to 80 or 443 if the <tt>:use_ssl</tt>
202
+ # argument is set.
203
+ # * <tt>:use_ssl</tt> - Whether requests should be made over SSL. If set to true, the <tt>:port</tt> argument
204
+ # will be implicitly set to 443, unless specified otherwise. Defaults to false.
205
+ # * <tt>:persistent</tt> - Whether to use a persistent connection to the server. Having this on provides around a two fold
206
+ # performance increase but for long running processes some firewalls may find the long lived connection suspicious and close the connection.
207
+ # If you run into connection errors, try setting <tt>:persistent</tt> to false. Defaults to false.
208
+ # * <tt>:proxy</tt> - If you need to connect through a proxy, you can specify your proxy settings by specifying a <tt>:host</tt>, <tt>:port</tt>, <tt>:user</tt>, and <tt>:password</tt>
209
+ # with the <tt>:proxy</tt> option.
210
+ # The <tt>:host</tt> setting is required if specifying a <tt>:proxy</tt>.
211
+ #
212
+ # AWS::S3::Bucket.established_connection!(:proxy => {
213
+ # :host => '...', :port => 8080, :user => 'marcel', :password => 'secret'
214
+ # })
215
+ def establish_connection!(options = {})
216
+ # After you've already established the default connection, just specify
217
+ # the difference for subsequent connections
218
+ options = default_connection.options.merge(options) if connected?
219
+ connections[connection_name] = Connection.connect(options)
220
+ end
221
+
222
+ # Returns the connection for the current class, or Base's default connection if the current class does not
223
+ # have its own connection.
224
+ #
225
+ # If not connection has been established yet, NoConnectionEstablished will be raised.
226
+ def connection
227
+ if connected?
228
+ connections[connection_name] || default_connection
229
+ else
230
+ raise NoConnectionEstablished
231
+ end
232
+ end
233
+
234
+ # Returns true if a connection has been made yet.
235
+ def connected?
236
+ !connections.empty?
237
+ end
238
+
239
+ # Removes the connection for the current class. If there is no connection for the current class, the default
240
+ # connection will be removed.
241
+ def disconnect(name = connection_name)
242
+ name = default_connection unless connections.has_key?(name)
243
+ connection = connections[name]
244
+ connection.http.finish if connection.persistent?
245
+ connections.delete(name)
246
+ end
247
+
248
+ # Clears *all* connections, from all classes, with prejudice.
249
+ def disconnect!
250
+ connections.each_key {|connection| disconnect(connection)}
251
+ end
252
+
253
+ private
254
+ def connection_name
255
+ name
256
+ end
257
+
258
+ def default_connection_name
259
+ 'AWS::S3::Base'
260
+ end
261
+
262
+ def default_connection
263
+ connections[default_connection_name]
264
+ end
265
+ end
266
+ end
267
+
268
+ class Options < Hash #:nodoc:
269
+ VALID_OPTIONS = [:access_key_id, :secret_access_key, :server, :port, :use_ssl, :persistent, :proxy].freeze
270
+
271
+ def initialize(options = {})
272
+ super()
273
+ validate(options)
274
+ replace(:server => DEFAULT_HOST, :port => (options[:use_ssl] ? 443 : 80))
275
+ merge!(options)
276
+ end
277
+
278
+ def connecting_through_proxy?
279
+ !self[:proxy].nil?
280
+ end
281
+
282
+ def proxy_settings
283
+ self[:proxy].values_at(:host, :port, :user, :password)
284
+ end
285
+
286
+ private
287
+ def validate(options)
288
+ invalid_options = options.keys - VALID_OPTIONS
289
+ raise InvalidConnectionOption.new(invalid_options) unless invalid_options.empty?
290
+ raise ArgumentError, "Missing proxy settings. Must specify at least :host." if options[:proxy] && !options[:proxy][:host]
291
+ end
292
+ end
293
+ end
294
+ end
295
+ end