croaker-aws-s3 0.5.2.20090127001

Sign up to get free protection for your applications and to get access to all the features.
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,222 @@
1
+ module AWS
2
+ module S3
3
+ # All authentication is taken care of for you by the AWS::S3 library. None the less, some details of the two types
4
+ # of authentication and when they are used may be of interest to some.
5
+ #
6
+ # === Header based authentication
7
+ #
8
+ # Header based authentication is achieved by setting a special <tt>Authorization</tt> header whose value
9
+ # is formatted like so:
10
+ #
11
+ # "AWS #{access_key_id}:#{encoded_canonical}"
12
+ #
13
+ # The <tt>access_key_id</tt> is the public key that is assigned by Amazon for a given account which you use when
14
+ # establishing your initial connection. The <tt>encoded_canonical</tt> is computed according to rules layed out
15
+ # by Amazon which we will describe presently.
16
+ #
17
+ # ==== Generating the encoded canonical string
18
+ #
19
+ # The "canonical string", generated by the CanonicalString class, is computed by collecting the current request method,
20
+ # a set of significant headers of the current request, and the current request path into a string.
21
+ # That canonical string is then encrypted with the <tt>secret_access_key</tt> assigned by Amazon. The resulting encrypted canonical
22
+ # string is then base 64 encoded.
23
+ #
24
+ # === Query string based authentication
25
+ #
26
+ # When accessing a restricted object from the browser, you can authenticate via the query string, by setting the following parameters:
27
+ #
28
+ # "AWSAccessKeyId=#{access_key_id}&Expires=#{expires}&Signature=#{encoded_canonical}"
29
+ #
30
+ # The QueryString class is responsible for generating the appropriate parameters for authentication via the
31
+ # query string.
32
+ #
33
+ # The <tt>access_key_id</tt> and <tt>encoded_canonical</tt> are the same as described in the Header based authentication section.
34
+ # The <tt>expires</tt> value dictates for how long the current url is valid (by default, it will expire in 5 minutes). Expiration can be specified
35
+ # either by an absolute time (expressed in seconds since the epoch), or in relative time (in number of seconds from now).
36
+ # Details of how to customize the expiration of the url are provided in the documentation for the QueryString class.
37
+ #
38
+ # All requests made by this library use header authentication. When a query string authenticated url is needed,
39
+ # the S3Object#url method will include the appropriate query string parameters.
40
+ #
41
+ # === Full authentication specification
42
+ #
43
+ # The full specification of the authentication protocol can be found at
44
+ # http://docs.amazonwebservices.com/AmazonS3/2006-03-01/RESTAuthentication.html
45
+ class Authentication
46
+ constant :AMAZON_HEADER_PREFIX, 'x-amz-'
47
+
48
+ # Signature is the abstract super class for the Header and QueryString authentication methods. It does the job
49
+ # of computing the canonical_string using the CanonicalString class as well as encoding the canonical string. The subclasses
50
+ # parameterize these computations and arrange them in a string form appropriate to how they are used, in one case a http request
51
+ # header value, and in the other case key/value query string parameter pairs.
52
+ class Signature < String #:nodoc:
53
+ attr_reader :request, :access_key_id, :secret_access_key, :options
54
+
55
+ def initialize(request, access_key_id, secret_access_key, options = {})
56
+ super()
57
+ @request, @access_key_id, @secret_access_key = request, access_key_id, secret_access_key
58
+ @options = options
59
+ end
60
+
61
+ private
62
+
63
+ def canonical_string
64
+ options = {}
65
+ options[:expires] = expires if expires?
66
+ options[:bucket_address] = @options[:bucket_address] if @options[:bucket_address]
67
+ CanonicalString.new(request, options)
68
+ end
69
+ memoized :canonical_string
70
+
71
+ def encoded_canonical
72
+ digest = OpenSSL::Digest::Digest.new('sha1')
73
+ b64_hmac = Base64.encode64(OpenSSL::HMAC.digest(digest, secret_access_key, canonical_string)).strip
74
+ url_encode? ? CGI.escape(b64_hmac) : b64_hmac
75
+ end
76
+
77
+ def url_encode?
78
+ !@options[:url_encode].nil?
79
+ end
80
+
81
+ def expires?
82
+ is_a? QueryString
83
+ end
84
+
85
+ def date
86
+ request['date'].to_s.strip.empty? ? Time.now : Time.parse(request['date'])
87
+ end
88
+ end
89
+
90
+ # Provides header authentication by computing the value of the Authorization header. More details about the
91
+ # various authentication schemes can be found in the docs for its containing module, Authentication.
92
+ class Header < Signature #:nodoc:
93
+ def initialize(*args)
94
+ super
95
+ self << "AWS #{access_key_id}:#{encoded_canonical}"
96
+ end
97
+ end
98
+
99
+ # Provides query string authentication by computing the three authorization parameters: AWSAccessKeyId, Expires and Signature.
100
+ # More details about the various authentication schemes can be found in the docs for its containing module, Authentication.
101
+ class QueryString < Signature #:nodoc:
102
+ constant :DEFAULT_EXPIRY, 300 # 5 minutes
103
+ def initialize(*args)
104
+ super
105
+ options[:url_encode] = true
106
+ self << build
107
+ end
108
+
109
+ private
110
+
111
+ # Will return one of three values, in the following order of precedence:
112
+ #
113
+ # 1) Seconds since the epoch explicitly passed in the +:expires+ option
114
+ # 2) The current time in seconds since the epoch plus the number of seconds passed in
115
+ # the +:expires_in+ option
116
+ # 3) The current time in seconds since the epoch plus the default number of seconds (60 seconds)
117
+ def expires
118
+ return options[:expires] if options[:expires]
119
+ date.to_i + expires_in
120
+ end
121
+
122
+ def expires_in
123
+ options.has_key?(:expires_in) ? Integer(options[:expires_in]) : DEFAULT_EXPIRY
124
+ end
125
+
126
+ # Keep in alphabetical order
127
+ def build
128
+ "AWSAccessKeyId=#{access_key_id}&Expires=#{expires}&Signature=#{encoded_canonical}"
129
+ end
130
+ end
131
+
132
+ # The CanonicalString is used to generate an encrypted signature, signed with your secrect access key. It is composed of
133
+ # data related to the given request for which it provides authentication. This data includes the request method, request headers,
134
+ # and the request path. Both Header and QueryString use it to generate their signature.
135
+ class CanonicalString < String #:nodoc:
136
+ class << self
137
+ def default_headers
138
+ %w(content-type content-md5)
139
+ end
140
+
141
+ def interesting_headers
142
+ ['content-md5', 'content-type', 'date', amazon_header_prefix]
143
+ end
144
+
145
+ def amazon_header_prefix
146
+ /^#{AMAZON_HEADER_PREFIX}/io
147
+ end
148
+ end
149
+
150
+ attr_reader :request, :headers
151
+
152
+ def initialize(request, options = {})
153
+ super()
154
+ @request = request
155
+ @headers = {}
156
+ @options = options
157
+
158
+ # CHANGED: Reflect the bucket adressing changes
159
+ request['Host'] = options[:bucket_address] ? "#{options[:bucket_address]}.#{DEFAULT_HOST}" : DEFAULT_HOST
160
+ build
161
+ end
162
+
163
+ private
164
+ def build
165
+ self << "#{request.method}\n"
166
+ ensure_date_is_valid
167
+
168
+ initialize_headers
169
+ set_expiry!
170
+
171
+ headers.sort_by {|k, _| k}.each do |key, value|
172
+ value = value.to_s.strip
173
+ self << (key =~ self.class.amazon_header_prefix ? "#{key}:#{value}" : value)
174
+ self << "\n"
175
+ end
176
+ self << path
177
+ end
178
+
179
+ def initialize_headers
180
+ identify_interesting_headers
181
+ set_default_headers
182
+ end
183
+
184
+ def set_expiry!
185
+ self.headers['date'] = @options[:expires] if @options[:expires]
186
+ end
187
+
188
+ def ensure_date_is_valid
189
+ request['Date'] ||= Time.now.httpdate
190
+ end
191
+
192
+ def identify_interesting_headers
193
+ request.each do |key, value|
194
+ key = key.downcase # Can't modify frozen string so no bang
195
+ if self.class.interesting_headers.any? {|header| header === key}
196
+ self.headers[key] = value.to_s.strip
197
+ end
198
+ end
199
+ end
200
+
201
+ def set_default_headers
202
+ self.class.default_headers.each do |header|
203
+ self.headers[header] ||= ''
204
+ end
205
+ end
206
+
207
+ def path
208
+ path_with_bucket = "/#{@options[:bucket_address]}#{only_path}" if @options[:bucket_address]
209
+ [path_with_bucket || only_path, extract_significant_parameter].compact.join('?')
210
+ end
211
+
212
+ def extract_significant_parameter
213
+ request.path[/[&?](acl|torrent|logging)(?:&|=|$)/, 1]
214
+ end
215
+
216
+ def only_path
217
+ request.path[/^[^?]*/]
218
+ end
219
+ end
220
+ end
221
+ end
222
+ end
@@ -0,0 +1,257 @@
1
+ module AWS #:nodoc:
2
+ # AWS::S3 is a Ruby library for Amazon's Simple Storage Service's REST API (http://aws.amazon.com/s3).
3
+ # Full documentation of the currently supported API can be found at http://docs.amazonwebservices.com/AmazonS3/2006-03-01.
4
+ #
5
+ # == Getting started
6
+ #
7
+ # To get started you need to require 'aws/s3':
8
+ #
9
+ # % irb -rubygems
10
+ # irb(main):001:0> require 'aws/s3'
11
+ # # => true
12
+ #
13
+ # The AWS::S3 library ships with an interactive shell called <tt>s3sh</tt>. From within it, you have access to all the operations the library exposes from the command line.
14
+ #
15
+ # % s3sh
16
+ # >> Version
17
+ #
18
+ # Before you can do anything, you must establish a connection using Base.establish_connection!. A basic connection would look something like this:
19
+ #
20
+ # AWS::S3::Base.establish_connection!(
21
+ # :access_key_id => 'abc',
22
+ # :secret_access_key => '123'
23
+ # )
24
+ #
25
+ # The minimum connection options that you must specify are your access key id and your secret access key.
26
+ #
27
+ # (If you don't already have your access keys, all you need to sign up for the S3 service is an account at Amazon. You can sign up for S3 and get access keys by visiting http://aws.amazon.com/s3.)
28
+ #
29
+ # For convenience, if you set two special environment variables with the value of your access keys, the console will automatically create a default connection for you. For example:
30
+ #
31
+ # % cat .amazon_keys
32
+ # export AMAZON_ACCESS_KEY_ID='abcdefghijklmnop'
33
+ # export AMAZON_SECRET_ACCESS_KEY='1234567891012345'
34
+ #
35
+ # Then load it in your shell's rc file.
36
+ #
37
+ # % cat .zshrc
38
+ # if [[ -f "$HOME/.amazon_keys" ]]; then
39
+ # source "$HOME/.amazon_keys";
40
+ # fi
41
+ #
42
+ # See more connection details at AWS::S3::Connection::Management::ClassMethods.
43
+ module S3
44
+ constant :DEFAULT_HOST, 's3.amazonaws.com'
45
+
46
+ # AWS::S3::Base is the abstract super class of all classes who make requests against S3, such as the built in
47
+ # Service, Bucket and S3Object classes. It provides methods for making requests, inferring or setting response classes,
48
+ # processing request options, and accessing attributes from S3's response data.
49
+ #
50
+ # Establishing a connection with the Base class is the entry point to using the library:
51
+ #
52
+ # AWS::S3::Base.establish_connection!(:access_key_id => '...', :secret_access_key => '...')
53
+ #
54
+ # The <tt>:access_key_id</tt> and <tt>:secret_access_key</tt> are the two required connection options. More
55
+ # details can be found in the docs for Connection::Management::ClassMethods.
56
+ #
57
+ # Extensive examples can be found in the README[link:files/README.html].
58
+ class Base
59
+ class << self
60
+
61
+ # Wraps the current connection's request method and picks the appropriate response class to wrap the response in.
62
+ # If the response is an error, it will raise that error as an exception. All such exceptions can be caught by rescuing
63
+ # their superclass, the ResponseError exception class.
64
+ #
65
+ # It is unlikely that you would call this method directly. Subclasses of Base have convenience methods for each http request verb
66
+ # that wrap calls to request.
67
+ def request(verb, path, options = {}, body = nil, attempts = 0, &block)
68
+ Service.response = nil
69
+ process_options!(options, verb)
70
+
71
+ # This has been changed so that buckets are addressed via the subdomain rather than the path. It is now possible to connect to european buckets as well.
72
+ # One drawback is that there are no persistent connections anymore since we have to reconnect everytime a new bucket is adressed.
73
+ bucket_name = AWS::S3.remove_or_extract_bucket_from_path(path, true)
74
+
75
+ if bucket_name
76
+ establish_connection!(:server => "#{bucket_name}.#{DEFAULT_HOST}") unless connection.is_for_bucket?(bucket_name)
77
+ path = AWS::S3.remove_or_extract_bucket_from_path(path)
78
+ else
79
+ establish_connection!(:server => DEFAULT_HOST) if connection.has_subdomain?
80
+ end
81
+
82
+ response = response_class.new(connection.request(verb, path, options, body, attempts, &block))
83
+ Service.response = response
84
+
85
+ Error::Response.new(response.response).error.raise if response.error?
86
+ response
87
+ # Once in a while, a request to S3 returns an internal error. A glitch in the matrix I presume. Since these
88
+ # errors are few and far between the request method will rescue InternalErrors the first three times they encouter them
89
+ # and will retry the request again. Most of the time the second attempt will work.
90
+ rescue *retry_exceptions
91
+ attempts == 3 ? raise : (attempts += 1; retry)
92
+ end
93
+
94
+ [:get, :post, :put, :delete, :head].each do |verb|
95
+ class_eval(<<-EVAL, __FILE__, __LINE__)
96
+ def #{verb}(path, headers = {}, body = nil, &block)
97
+ request(:#{verb}, path, headers, body, &block)
98
+ end
99
+ EVAL
100
+ end
101
+
102
+ # Called when a method which requires a bucket name is called without that bucket name specified. It will try to
103
+ # infer the current bucket by looking for it as the subdomain of the current connection's address. If no subdomain
104
+ # is found, CurrentBucketNotSpecified will be raised.
105
+ #
106
+ # MusicBucket.establish_connection! :server => 'jukeboxzero.s3.amazonaws.com'
107
+ # MusicBucket.connection.server
108
+ # => 'jukeboxzero.s3.amazonaws.com'
109
+ # MusicBucket.current_bucket
110
+ # => 'jukeboxzero'
111
+ #
112
+ # Rather than infering the current bucket from the subdomain, the current class' bucket can be explicitly set with
113
+ # set_current_bucket_to.
114
+ def current_bucket
115
+ connection.subdomain or raise CurrentBucketNotSpecified.new(connection.http.address)
116
+ end
117
+
118
+ # If you plan on always using a specific bucket for certain files, you can skip always having to specify the bucket by creating
119
+ # a subclass of Bucket or S3Object and telling it what bucket to use:
120
+ #
121
+ # class JukeBoxSong < AWS::S3::S3Object
122
+ # set_current_bucket_to 'jukebox'
123
+ # end
124
+ #
125
+ # For all methods that take a bucket name as an argument, the current bucket will be used if the bucket name argument is omitted.
126
+ #
127
+ # other_song = 'baby-please-come-home.mp3'
128
+ # JukeBoxSong.store(other_song, open(other_song))
129
+ #
130
+ # This time we didn't have to explicitly pass in the bucket name, as the JukeBoxSong class knows that it will
131
+ # always use the 'jukebox' bucket.
132
+ #
133
+ # "Astute readers", as they say, may have noticed that we used the third parameter to pass in the content type,
134
+ # rather than the fourth parameter as we had the last time we created an object. If the bucket can be inferred, or
135
+ # is explicitly set, as we've done in the JukeBoxSong class, then the third argument can be used to pass in
136
+ # options.
137
+ #
138
+ # Now all operations that would have required a bucket name no longer do.
139
+ #
140
+ # other_song = JukeBoxSong.find('baby-please-come-home.mp3')
141
+ def set_current_bucket_to(name)
142
+ raise ArgumentError, "`#{__method__}' must be called on a subclass of #{self.name}" if self == AWS::S3::Base
143
+ instance_eval(<<-EVAL)
144
+ def current_bucket
145
+ '#{name}'
146
+ end
147
+ EVAL
148
+ end
149
+ alias_method :current_bucket=, :set_current_bucket_to
150
+
151
+ private
152
+
153
+ def response_class
154
+ FindResponseClass.for(self)
155
+ end
156
+
157
+ def process_options!(options, verb)
158
+ options.replace(RequestOptions.process(options, verb))
159
+ end
160
+
161
+ # Using the conventions layed out in the <tt>response_class</tt> works for more than 80% of the time.
162
+ # There are a few edge cases though where we want a given class to wrap its responses in different
163
+ # response classes depending on which method is being called.
164
+ def respond_with(klass)
165
+ eval(<<-EVAL, binding, __FILE__, __LINE__)
166
+ def new_response_class
167
+ #{klass}
168
+ end
169
+
170
+ class << self
171
+ alias_method :old_response_class, :response_class
172
+ alias_method :response_class, :new_response_class
173
+ end
174
+ EVAL
175
+
176
+ yield
177
+ ensure
178
+ # Restore the original version
179
+ eval(<<-EVAL, binding, __FILE__, __LINE__)
180
+ class << self
181
+ alias_method :response_class, :old_response_class
182
+ end
183
+ EVAL
184
+ end
185
+
186
+ def bucket_name(name)
187
+ name || current_bucket
188
+ end
189
+
190
+ def retry_exceptions
191
+ [InternalError, RequestTimeout]
192
+ end
193
+
194
+ class RequestOptions < Hash #:nodoc:
195
+ attr_reader :options, :verb
196
+
197
+ class << self
198
+ def process(*args, &block)
199
+ new(*args, &block).process!
200
+ end
201
+ end
202
+
203
+ def initialize(options, verb = :get)
204
+ @options = options.to_normalized_options
205
+ @verb = verb
206
+ super()
207
+ end
208
+
209
+ def process!
210
+ set_access_controls! if verb == :put
211
+ replace(options)
212
+ end
213
+
214
+ private
215
+ def set_access_controls!
216
+ ACL::OptionProcessor.process!(options)
217
+ end
218
+ end
219
+ end
220
+
221
+ def initialize(attributes = {}) #:nodoc:
222
+ @attributes = attributes
223
+ end
224
+
225
+ private
226
+ attr_reader :attributes
227
+
228
+ def connection
229
+ self.class.connection
230
+ end
231
+
232
+ def http
233
+ connection.http
234
+ end
235
+
236
+ def request(*args, &block)
237
+ self.class.request(*args, &block)
238
+ end
239
+
240
+ def method_missing(method, *args, &block)
241
+ case
242
+ when attributes.has_key?(method.to_s): attributes[method.to_s]
243
+ when attributes.has_key?(method): attributes[method]
244
+ else super
245
+ end
246
+ end
247
+ end
248
+
249
+ protected
250
+
251
+ def self.remove_or_extract_bucket_from_path(path, extract=false)
252
+ path.match(/^\/([a-z0-9_-]+)[\/]{0,1}(.*)$/)
253
+
254
+ return extract ? $1 : "/#{$2}"
255
+ end
256
+ end
257
+ end
@@ -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