moserp-s3sync 1.2.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,143 @@
1
+ # This software code is made available "AS IS" without warranties of any
2
+ # kind. You may copy, display, modify and redistribute the software
3
+ # code either by itself or as incorporated into your code; provided that
4
+ # you do not remove any proprietary notices. Your use of this software
5
+ # code is at your own risk and you waive any claim against Amazon
6
+ # Digital Services, Inc. or its affiliates with respect to your use of
7
+ # this software code. (c) 2006 Amazon Digital Services, Inc. or its
8
+ # affiliates.
9
+ #
10
+ # This software code is made available "AS IS" without warranties of any
11
+ # kind. You may copy, display, modify and redistribute the software
12
+ # code either by itself or as incorporated into your code; provided that
13
+ # you do not remove any proprietary notices. Your use of this software
14
+ # code is at your own risk and you waive any claim against the author
15
+ # with respect to your use of this software code.
16
+ # (c) 2007 s3sync.net
17
+ #
18
+ require 'S3'
19
+ require 'HTTPStreaming'
20
+
21
+ # The purpose of this file is to overlay the S3 library from AWS
22
+ # to add some functionality
23
+ # (without changing the file itself or requiring a specific version)
24
+ # It still isn't perfectly robust, i.e. if radical changes are made
25
+ # to the underlying lib this stuff will need updating.
26
+
27
+ module S3
28
+ class AWSAuthConnection
29
+
30
+ def make_http(bucket='', host='', proxy_host=nil, proxy_port=nil, proxy_user=nil, proxy_pass=nil)
31
+
32
+ # build the domain based on the calling format
33
+ server = ''
34
+ if host != ''
35
+ server = host
36
+ elsif bucket.empty?
37
+ # for a bucketless request (i.e. list all buckets)
38
+ # revert to regular domain case since this operation
39
+ # does not make sense for vanity domains
40
+ server = @server
41
+ elsif @calling_format == CallingFormat::SUBDOMAIN
42
+ server = "#{bucket}.#{@server}"
43
+ elsif @calling_format == CallingFormat::VANITY
44
+ server = bucket
45
+ else
46
+ server = @server
47
+ end
48
+ # automatically does the right thing when no proxy
49
+ http = Net::HTTP::Proxy(proxy_host, proxy_port, proxy_user, proxy_pass).new(server, @port)
50
+ #http = Net::HTTP.new(server, @port)
51
+ http.use_ssl = @is_secure
52
+ http.verify_mode=@verify_mode
53
+ http.ca_file=@ca_file
54
+ http.ca_path=@ca_path
55
+ http.start
56
+ return http
57
+ end
58
+
59
+ # add support for streaming the response body to an IO stream
60
+ alias __make_request__ make_request
61
+ def make_request(method, bucket='', key='', path_args={}, headers={}, data='', metadata={}, streamOut=nil)
62
+ # build the path based on the calling format
63
+ path = ''
64
+ if (not bucket.empty?) and (@calling_format == CallingFormat::REGULAR)
65
+ path << "/#{bucket}"
66
+ end
67
+ # add the slash after the bucket regardless
68
+ # the key will be appended if it is non-empty
69
+ path << "/#{key}"
70
+
71
+ # build the path_argument string
72
+ # add the ? in all cases since
73
+ # signature and credentials follow path args
74
+ path << '?'
75
+ path << S3.path_args_hash_to_string(path_args)
76
+
77
+ req = method_to_request_class(method).new("#{path}")
78
+
79
+ set_headers(req, headers)
80
+ set_headers(req, metadata, METADATA_PREFIX)
81
+ set_headers(req, {'Connection' => 'keep-alive', 'Keep-Alive' => '300'})
82
+
83
+ set_aws_auth_header(req, @aws_access_key_id, @aws_secret_access_key, bucket, key, path_args)
84
+
85
+ http = $S3syncHttp
86
+
87
+ if req.request_body_permitted?
88
+ return http.request(req, data, streamOut)
89
+ else
90
+ return http.request(req, nil, streamOut)
91
+ end
92
+ end
93
+
94
+ # a "get" operation that sends the body to an IO stream
95
+ def get_stream(bucket, key, headers={}, streamOut=nil)
96
+ return GetResponse.new(make_request('GET', bucket, CGI::escape(key), {}, headers, '', {}, streamOut))
97
+ end
98
+
99
+ # a "get" operation that sends the body to an IO stream
100
+ def get_query_stream(bucket, key, path_args={}, headers={}, streamOut=nil)
101
+ return GetResponse.new(make_request('GET', bucket, CGI::escape(key), path_args, headers, '', {}, streamOut))
102
+ end
103
+
104
+ def head(bucket, key=nil, headers={})
105
+ return GetResponse.new(make_request('HEAD', bucket, CGI::escape(key), {}, headers, '', {}))
106
+ end
107
+ undef create_bucket
108
+ def create_bucket(bucket, object)
109
+ object = S3Object.new(object) if not object.instance_of? S3Object
110
+ return Response.new(
111
+ make_request('PUT', bucket, '', {}, {}, object.data, object.metadata)
112
+ )
113
+ end
114
+ # no, because internally the library does not support the header,wait,body paradigm, so this is useless
115
+ #alias __put__ put
116
+ #def put(bucket, key, object, headers={})
117
+ # headers['Expect'] = "100-continue"
118
+ # __put__(bucket, key, object, headers)
119
+ #end
120
+
121
+
122
+ # allow ssl validation
123
+ attr_accessor :verify_mode
124
+ attr_accessor :ca_path
125
+ attr_accessor :ca_file
126
+
127
+ end
128
+ module CallingFormat
129
+ def CallingFormat.string_to_format(s)
130
+ case s
131
+ when 'REGULAR'
132
+ return CallingFormat::REGULAR
133
+ when 'SUBDOMAIN'
134
+ return CallingFormat::SUBDOMAIN
135
+ when 'VANITY'
136
+ return CallingFormat::VANITY
137
+ else
138
+ raise "Unsupported calling format #{s}"
139
+ end
140
+ end
141
+ end
142
+
143
+ end
data/lib/S3encoder.rb ADDED
@@ -0,0 +1,50 @@
1
+ # This software code is made available "AS IS" without warranties of any
2
+ # kind. You may copy, display, modify and redistribute the software
3
+ # code either by itself or as incorporated into your code; provided that
4
+ # you do not remove any proprietary notices. Your use of this software
5
+ # code is at your own risk and you waive any claim against the author
6
+ # with respect to your use of this software code.
7
+ # (c) 2007 s3sync.net
8
+ #
9
+
10
+ # The purpose of this file is to overlay the cgi class
11
+ # to add some functionality
12
+ # (without changing the file itself or requiring a specific version)
13
+ # It still isn't perfectly robust, i.e. if radical changes are made
14
+ # to the underlying lib this stuff will need updating.
15
+
16
+ require 'cgi'
17
+ require 'iconv' # for UTF-8 conversion
18
+
19
+ # thanks to http://www.redhillconsulting.com.au/blogs/simon/archives/000326.html
20
+ module S3ExtendCGI
21
+ def self.included(base)
22
+ base.extend(ClassMethods)
23
+ base.class_eval do
24
+ class << self
25
+ alias_method :S3Extend_escape_orig, :escape unless method_defined?(:S3Extend_escape_orig)
26
+ alias_method :escape, :S3Extend_escape
27
+ end
28
+ end
29
+ end
30
+ module ClassMethods
31
+ @@exemptSlashesInEscape = false
32
+ attr_writer :exemptSlashesInEscape
33
+ @@usePercent20InEscape = false
34
+ attr_writer :usePercent20InEscape
35
+ @@nativeCharacterEncoding = "ISO-8859-1"
36
+ attr_writer :nativeCharacterEncoding
37
+ @@useUTF8InEscape = false
38
+ attr_writer :useUTF8InEscape
39
+
40
+ def S3Extend_escape(string)
41
+ result = string
42
+ result = Iconv.iconv("UTF-8", @nativeCharacterEncoding, string).join if @useUTF8InEscape
43
+ result = S3Extend_escape_orig(result)
44
+ result.gsub!(/%2f/i, "/") if @exemptSlashesInEscape
45
+ result.gsub!("+", "%20") if @usePercent20InEscape
46
+ result
47
+ end
48
+ end
49
+ end
50
+ CGI.send(:include, S3ExtendCGI)
data/lib/s3config.rb ADDED
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/ruby
2
+ # This software code is made available "AS IS" without warranties of any
3
+ # kind. You may copy, display, modify and redistribute the software
4
+ # code either by itself or as incorporated into your code; provided that
5
+ # you do not remove any proprietary notices. Your use of this software
6
+ # code is at your own risk and you waive any claim against the author
7
+ # with respect to your use of this software code.
8
+ # (c) 2007 alastair brunton
9
+ #
10
+ # modified to search out the yaml in several places, thanks wkharold.
11
+ require 'yaml'
12
+
13
+ module S3Config
14
+
15
+ confpath = ["#{ENV['S3CONF']}", "#{ENV['HOME']}/.s3conf", "/etc/s3conf"]
16
+
17
+ confpath.each do |path|
18
+ if File.exists?(path) and File.directory?(path) and File.exists?("#{path}/s3config.yml")
19
+ config = YAML.load_file("#{path}/s3config.yml")
20
+ config.each_pair do |key, value|
21
+ eval("$#{key.upcase} = '#{value}'")
22
+ end
23
+ break
24
+ end
25
+ end
26
+
27
+ end
data/lib/s3try.rb ADDED
@@ -0,0 +1,177 @@
1
+ #!/usr/bin/env ruby
2
+ # This software code is made available "AS IS" without warranties of any
3
+ # kind. You may copy, display, modify and redistribute the software
4
+ # code either by itself or as incorporated into your code; provided that
5
+ # you do not remove any proprietary notices. Your use of this software
6
+ # code is at your own risk and you waive any claim against the author
7
+ # with respect to your use of this software code.
8
+ # (c) 2007 s3sync.net
9
+ #
10
+ module S3sync
11
+
12
+ $AWS_ACCESS_KEY_ID = ENV["AWS_ACCESS_KEY_ID"]
13
+ $AWS_SECRET_ACCESS_KEY = ENV["AWS_SECRET_ACCESS_KEY"]
14
+ $AWS_S3_HOST = (ENV["AWS_S3_HOST"] or "s3.amazonaws.com")
15
+ $HTTP_PROXY_HOST = ENV["HTTP_PROXY_HOST"]
16
+ $HTTP_PROXY_PORT = ENV["HTTP_PROXY_PORT"]
17
+ $HTTP_PROXY_USER = ENV["HTTP_PROXY_USER"]
18
+ $HTTP_PROXY_PASSWORD = ENV["HTTP_PROXY_PASSWORD"]
19
+ $SSL_CERT_DIR = ENV["SSL_CERT_DIR"]
20
+ $SSL_CERT_FILE = ENV["SSL_CERT_FILE"]
21
+ $S3SYNC_RETRIES = (ENV["S3SYNC_RETRIES"] or 100).to_i # number of errors to tolerate
22
+ $S3SYNC_WAITONERROR = (ENV["S3SYNC_WAITONERROR"] or 30).to_i # seconds
23
+ $S3SYNC_NATIVE_CHARSET = (ENV["S3SYNC_NATIVE_CHARSET"] or "ISO-8859-1")
24
+ $AWS_CALLING_FORMAT = (ENV["AWS_CALLING_FORMAT"] or "REGULAR")
25
+
26
+ require 'S3'
27
+
28
+ require 'HTTPStreaming'
29
+ require 'S3encoder'
30
+ CGI::exemptSlashesInEscape = true
31
+ CGI::usePercent20InEscape = true
32
+ CGI::useUTF8InEscape = true
33
+ CGI::nativeCharacterEncoding = $S3SYNC_NATIVE_CHARSET
34
+ require 'S3_s3sync_mod'
35
+
36
+
37
+ $S3syncRetriesLeft = $S3SYNC_RETRIES.to_i
38
+
39
+ def S3sync.s3trySetup
40
+
41
+ # ---------- CONNECT ---------- #
42
+
43
+ $S3syncConnection = S3::AWSAuthConnection.new($AWS_ACCESS_KEY_ID, $AWS_SECRET_ACCESS_KEY, $S3syncOptions['--ssl'], $AWS_S3_HOST)
44
+ $S3syncConnection.calling_format = S3::CallingFormat::string_to_format($AWS_CALLING_FORMAT)
45
+ if $S3syncOptions['--ssl']
46
+ if $SSL_CERT_DIR
47
+ $S3syncConnection.verify_mode = OpenSSL::SSL::VERIFY_PEER
48
+ $S3syncConnection.ca_path = $SSL_CERT_DIR
49
+ elsif $SSL_CERT_FILE
50
+ $S3syncConnection.verify_mode = OpenSSL::SSL::VERIFY_PEER
51
+ $S3syncConnection.ca_file = $SSL_CERT_FILE
52
+ end
53
+ end
54
+ end
55
+ def S3sync.s3urlSetup
56
+ $S3syncGenerator = S3::QueryStringAuthGenerator.new($AWS_ACCESS_KEY_ID, $AWS_SECRET_ACCESS_KEY, $S3syncOptions['--ssl'], $AWS_S3_HOST)
57
+ $S3syncGenerator.calling_format = S3::CallingFormat::string_to_format($AWS_CALLING_FORMAT)
58
+ $S3syncGenerator.expires_in = $S3syncOptions['--expires-in']
59
+ end
60
+
61
+ def S3sync.S3tryConnect(bucket, host='')
62
+ $S3syncHttp = $S3syncConnection.make_http(bucket, host, $HTTP_PROXY_HOST, $HTTP_PROXY_PORT, $HTTP_PROXY_USER, $HTTP_PROXY_PASSWORD)
63
+ end
64
+
65
+ def S3sync.S3try(command, bucket, *args)
66
+ if(not $S3syncHttp or (bucket != $S3syncLastBucket))
67
+ $stderr.puts "Creating new connection" if $S3syncOptions['--debug']
68
+ $S3syncLastBucket = bucket
69
+ while $S3syncRetriesLeft > 0 do
70
+ begin
71
+ S3sync.S3tryConnect(bucket)
72
+ break
73
+ rescue Errno::ECONNRESET => e
74
+ $stderr.puts "Connection reset: #{e}"
75
+ rescue Errno::ECONNABORTED => e
76
+ $stderr.puts "Connection aborted: #{e}"
77
+ rescue Errno::ETIMEDOUT => e
78
+ $stderr.puts "Connection timed out: #{e}"
79
+ rescue Timeout::Error => e
80
+ $stderr.puts "Connection timed out: #{e}"
81
+ end
82
+ $S3syncRetriesLeft -= 1
83
+ $stderr.puts "#{$S3syncRetriesLeft} retries left, sleeping for #{$S3SYNC_WAITONERROR} seconds"
84
+ Kernel.sleep $S3SYNC_WAITONERROR.to_i
85
+ end
86
+ end
87
+
88
+ result = nil
89
+ delim = $,
90
+ $,=' '
91
+ while $S3syncRetriesLeft > 0 do
92
+ $stderr.puts "Trying command #{command} #{bucket} #{args} with #{$S3syncRetriesLeft} retries left" if $S3syncOptions['--debug']
93
+ forceRetry = false
94
+ now = false
95
+ hush = false
96
+ begin
97
+ result = $S3syncConnection.send(command, bucket, *args)
98
+ rescue Errno::EPIPE => e
99
+ forceRetry = true
100
+ $stderr.puts "Broken pipe: #{e}"
101
+ rescue Errno::ECONNRESET => e
102
+ forceRetry = true
103
+ $stderr.puts "Connection reset: #{e}"
104
+ rescue Errno::ECONNABORTED => e
105
+ forceRetry = true
106
+ $stderr.puts "Connection aborted: #{e}"
107
+ rescue Errno::ETIMEDOUT => e
108
+ forceRetry = true
109
+ $stderr.puts "Connection timed out: #{e}"
110
+ rescue Timeout::Error => e
111
+ forceRetry = true
112
+ $stderr.puts "Connection timed out: #{e}"
113
+ rescue EOFError => e
114
+ # i THINK this is happening like a connection reset
115
+ forceRetry = true
116
+ $stderr.puts "EOF error: #{e}"
117
+ rescue OpenSSL::SSL::SSLError => e
118
+ forceRetry = true
119
+ $stderr.puts "SSL Error: #{e}"
120
+ rescue NoMethodError => e
121
+ # we get this when using --progress, and the local item is something unreadable
122
+ $stderr.puts "Null stream error: #{e}"
123
+ break
124
+ end
125
+ if forceRetry
126
+ # kill and reset connection when we receive a non-50x yet retry-able error
127
+ S3sync.S3tryConnect(bucket)
128
+ end
129
+ begin
130
+ debug("Response code: #{result.http_response.code}")
131
+ break if ((200...300).include? result.http_response.code.to_i) and (not forceRetry)
132
+ if result.http_response.code.to_i == 301
133
+ $stderr.puts "Permanent redirect received. Try setting AWS_CALLING_FORMAT to SUBDOMAIN"
134
+ elsif result.http_response.code.to_i == 307
135
+ # move to the other host
136
+ host = %r{https?://([^/]+)}.match(result.http_response['Location'])[1]
137
+ $stderr.puts("Temporary Redirect to: " + host)
138
+ debug("Host: " + host)
139
+ S3sync.S3tryConnect(bucket, host)
140
+ $S3syncRetriesLeft = $S3syncRetriesLeft+1 # don't use one up below
141
+ forceRetry = true
142
+ now = true
143
+ hush = true
144
+ else
145
+ $stderr.puts "S3 command failed:\n#{command} #{args}"
146
+ $stderr.puts "With result #{result.http_response.code} #{result.http_response.message}\n"
147
+ debug(result.http_response.body)
148
+ end
149
+ # only retry 500's, per amazon
150
+ break unless ((500...600).include? result.http_response.code.to_i) or forceRetry
151
+ rescue NoMethodError
152
+ debug("No result available")
153
+ end
154
+ $S3syncRetriesLeft -= 1
155
+ $stderr.puts "#{$S3syncRetriesLeft} retries left, sleeping for #{$S3SYNC_WAITONERROR} seconds" unless hush
156
+ Kernel.sleep $S3SYNC_WAITONERROR.to_i unless now
157
+ end
158
+ if $S3syncRetriesLeft <= 0
159
+ $stderr.puts "Ran out of retries; operations did not complete!"
160
+ end
161
+ $, = delim
162
+ result
163
+ end
164
+
165
+ def S3sync.S3url(command, bucket, *args)
166
+ S3sync.s3urlSetup() unless $S3syncGenerator
167
+ result = nil
168
+ delim = $,
169
+ $,=' '
170
+ $stderr.puts "Calling command #{command} #{bucket} #{args}" if $S3syncOptions['--debug']
171
+ result = $S3syncGenerator.send(command, bucket, *args)
172
+ $, = delim
173
+ result
174
+ end
175
+
176
+ end #module
177
+