Class: Aws::S3Generator::Key
Instance Attribute Summary collapse
-
#bucket ⇒ Object
readonly
Returns the value of attribute bucket.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#delete(expires = nil, headers = {}) ⇒ Object
Generate link to delete key.
-
#full_name(separator = '/') ⇒ Object
Return a full S# name (bucket/key).
-
#get(expires = nil, headers = {}) ⇒ Object
Generate link to GET key data.
-
#head(expires = nil, headers = {}) ⇒ Object
Generate link to head key.
-
#initialize(bucket, name, meta_headers = {}) ⇒ Key
constructor
A new instance of Key.
-
#public_link ⇒ Object
Return a public link to key.
-
#put(expires = nil, headers = {}) ⇒ Object
Generate link to PUT key data.
- #to_s ⇒ Object
Constructor Details
#initialize(bucket, name, meta_headers = {}) ⇒ Key
Returns a new instance of Key.
1060 1061 1062 1063 1064 1065 |
# File 'lib/s3/right_s3.rb', line 1060 def initialize(bucket, name, ={}) @bucket = bucket @name = name.to_s @meta_headers = raise 'Key name can not be empty.' if @name.blank? end |
Instance Attribute Details
#bucket ⇒ Object (readonly)
Returns the value of attribute bucket.
1037 1038 1039 |
# File 'lib/s3/right_s3.rb', line 1037 def bucket @bucket end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
1037 1038 1039 |
# File 'lib/s3/right_s3.rb', line 1037 def name @name end |
Instance Method Details
#delete(expires = nil, headers = {}) ⇒ Object
Generate link to delete key.
bucket.delete(2.hour) #=> https://s3.amazonaws.com:443/my_awesome_bucket/logs%2Ftoday%2F1.log?Signature=4...D&Expires=1180820032&AWSAccessKeyId=1...2
1087 1088 1089 |
# File 'lib/s3/right_s3.rb', line 1087 def delete(expires=nil, headers={}) @bucket.s3.interface.delete_link(@bucket.to_s, @name, expires, headers) end |
#full_name(separator = '/') ⇒ Object
Return a full S# name (bucket/key).
key.full_name #=> 'my_awesome_bucket/cool_key'
1047 1048 1049 |
# File 'lib/s3/right_s3.rb', line 1047 def full_name(separator='/') "#{@bucket.to_s}#{separator}#{@name}" end |
#get(expires = nil, headers = {}) ⇒ Object
Generate link to GET key data.
bucket.get('logs/today/1.log', 1.hour) #=> https://s3.amazonaws.com:443/my_awesome_bucket/logs%2Ftoday%2F1.log?Signature=h...M%3D&Expires=1180820032&AWSAccessKeyId=1...2
1079 1080 1081 |
# File 'lib/s3/right_s3.rb', line 1079 def get(expires=nil, headers={}) @bucket.s3.interface.get_link(@bucket.to_s, @name, expires, headers) end |
#head(expires = nil, headers = {}) ⇒ Object
Generate link to head key.
bucket.head(2.hour) #=> https://s3.amazonaws.com:443/my_awesome_bucket/logs%2Ftoday%2F1.log?Signature=4...D&Expires=1180820032&AWSAccessKeyId=1...2
1095 1096 1097 |
# File 'lib/s3/right_s3.rb', line 1095 def head(expires=nil, headers={}) @bucket.s3.interface.head_link(@bucket.to_s, @name, expires, headers) end |
#public_link ⇒ Object
Return a public link to key.
key.public_link #=> 'https://s3.amazonaws.com:443/my_awesome_bucket/cool_key'
1055 1056 1057 1058 |
# File 'lib/s3/right_s3.rb', line 1055 def public_link params = @bucket.s3.interface.params "#{params[:protocol]}://#{params[:server]}:#{params[:port]}/#{full_name('/')}" end |
#put(expires = nil, headers = {}) ⇒ Object
Generate link to PUT key data.
puts bucket.put('logs/today/1.log', '123', 2.hour) #=> https://s3.amazonaws.com:443/my_awesome_bucket/logs%2Ftoday%2F1.log?Signature=B...D&Expires=1180820032&AWSAccessKeyId=1...2
1071 1072 1073 |
# File 'lib/s3/right_s3.rb', line 1071 def put(expires=nil, headers={}) @bucket.put(@name.to_s, @meta_headers, expires, headers) end |
#to_s ⇒ Object
1039 1040 1041 |
# File 'lib/s3/right_s3.rb', line 1039 def to_s @name end |