Module: Paperclip::Storage::S3
- Defined in:
- lib/paperclip/storage/s3.rb
Overview
Amazon’s S3 file hosting service is a scalable, easy place to store files for distribution. You can find out more about it at aws.amazon.com/s3
To use Paperclip with S3, include the aws-sdk gem in your Gemfile:
gem 'aws-sdk'
There are a few S3-specific options for has_attached_file:
-
s3_credentials: Takes a path, a File, or a Hash. The path (or File) must point to a YAML file containing theaccess_key_idandsecret_access_keythat Amazon gives you. You can ‘environment-space’ this just like you do to your database.yml file, so different environments can use different accounts:development: access_key_id: 123... secret_access_key: 123... test: access_key_id: abc... secret_access_key: abc... production: access_key_id: 456... secret_access_key: 456...This is not required, however, and the file may simply look like this:
access_key_id: 456... secret_access_key: 456...In which case, those access keys will be used in all environments. You can also put your bucket name in this file, instead of adding it to the code directly. This is useful when you want the same account but a different bucket for development versus production.
-
s3_permissions: This is a String that should be one of the “canned” access policies that S3 provides (more information can be found here: docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?RESTAccessPolicy.html) The default for Paperclip is :public_read.You can set permission on a per style bases by doing the following:
:s3_permissions => { :original => :private }Or globaly:
:s3_permissions => :private -
s3_protocol: The protocol for the URLs generated to your S3 assets. Can be either ‘http’ or ‘https’. Defaults to ‘http’ when your :s3_permissions are :public_read (the default), and ‘https’ when your :s3_permissions are anything else. -
s3_headers: A hash of headers or a Proc. You may specify a hash such as => 1.year.from_now.httpdate. If you use a Proc, headers are determined at runtime. Paperclip will call that Proc with attachment as the only argument. -
bucket: This is the name of the S3 bucket that will store your files. Remember that the bucket must be unique across all of Amazon S3. If the bucket does not exist Paperclip will attempt to create it. The bucket name will not be interpolated. You can define the bucket as a Proc if you want to determine it’s name at runtime. Paperclip will call that Proc with attachment as the only argument. -
s3_host_alias: The fully-qualified domain name (FQDN) that is the alias to the S3 domain of your bucket. Used with the :s3_alias_url url interpolation. See the link in theurlentry for more information about S3 domains and buckets. -
url: There are four options for the S3 url. You can choose to have the bucket’s name placed domain-style (bucket.s3.amazonaws.com) or path-style (s3.amazonaws.com/bucket). You can also specify a CNAME (which requires the CNAME to be specified as :s3_alias_url. You can read more about CNAMEs and S3 at docs.amazonwebservices.com/AmazonS3/latest/index.html?VirtualHosting.html Normally, this won’t matter in the slightest and you can leave the default (which is path-style, or :s3_path_url). But in some cases paths don’t work and you need to use the domain-style (:s3_domain_url). Anything else here will be treated like path-style. NOTE: If you use a CNAME for use with CloudFront, you can NOT specify https as your :s3_protocol; This is *not supported* by S3/CloudFront. Finally, when using the host alias, the :bucket parameter is ignored, as the hostname is used as the bucket name by S3. The fourth option for the S3 url is :asset_host, which uses Rails’ built-in asset_host settings. NOTE: To get the full url from a paperclip’d object, use the image_path helper; this is what image_tag uses to generate the url for an img tag. -
path: This is the key under the bucket in which the file will be stored. The URL will be constructed from the bucket and the path. This is what you will want to interpolate. Keys should be unique, like filenames, and despite the fact that S3 (strictly speaking) does not support directories, you can still use a / to separate parts of your file name. -
s3_host_name: If you are using your bucket in Tokyo region etc, write host_name. -
s3_metadata: These key/value pairs will be stored with the object. This option works by prefixing each key with “x-amz-meta-” before sending it as a header on the object upload request. -
s3_storage_class: If this option is set to:reduced_redundancy, the object will be stored using Reduced Redundancy Storage. RRS enables customers to reduce their costs by storing non-critical, reproducible data at lower levels of redundancy than Amazon S3’s standard storage.
Class Method Summary collapse
Instance Method Summary collapse
- #bucket_name ⇒ Object
- #create_bucket ⇒ Object
- #exists?(style = default_style) ⇒ Boolean
- #expiring_url(time = 3600, style_name = default_style) ⇒ Object
-
#flush_deletes ⇒ Object
:nodoc:.
-
#flush_writes ⇒ Object
:nodoc:.
- #http_proxy_host ⇒ Object
- #http_proxy_password ⇒ Object
- #http_proxy_port ⇒ Object
- #http_proxy_user ⇒ Object
- #parse_credentials(creds) ⇒ Object
- #s3_bucket ⇒ Object
- #s3_credentials ⇒ Object
- #s3_host_alias ⇒ Object
- #s3_host_name ⇒ Object
- #s3_interface ⇒ Object
- #s3_object(style_name = default_style) ⇒ Object
- #s3_permissions(style = default_style) ⇒ Object
- #s3_protocol(style = default_style) ⇒ Object
- #set_permissions(permissions) ⇒ Object
-
#to_file(style = default_style) ⇒ Object
Returns representation of the data of the file assigned to the given style, in the format most representative of the current storage.
- #using_http_proxy? ⇒ Boolean
Class Method Details
.extended(base) ⇒ Object
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/paperclip/storage/s3.rb', line 85 def self.extended base begin require 'aws-sdk' rescue LoadError => e e. << " (You may need to install the aws-sdk gem)" raise e end unless defined?(AWS::Core) base.instance_eval do = [:s3_options] || {} = ([:s3_permissions]) @s3_protocol = [:s3_protocol] || Proc.new do |style, | = ([style.to_sym] || [:default]) = .call(, style) if .is_a?(Proc) ( == :public_read) ? 'http' : 'https' end = [:s3_metadata] || {} @s3_headers = [:s3_headers] || {} @s3_headers = @s3_headers.call(instance) if @s3_headers.is_a?(Proc) @s3_headers = (@s3_headers).inject({}) do |headers,(name,value)| case name.to_s when /^x-amz-meta-(.*)/i [$1.downcase] = value else name = name.to_s.downcase.sub(/^x-amz-/,'').tr("-","_").to_sym headers[name] = value end headers end @s3_headers[:storage_class] = [:s3_storage_class] if [:s3_storage_class] @s3_server_side_encryption = [:s3_server_side_encryption] unless [:url].to_s.match(/^:s3.*url$/) || [:url] == ":asset_host" [:path] = [:path].gsub(/:url/, [:url]).gsub(/^:rails_root\/public\/system/, '') [:url] = ":s3_path_url" end [:url] = [:url].inspect if [:url].is_a?(Symbol) @http_proxy = [:http_proxy] || nil end Paperclip.interpolates(:s3_alias_url) do |, style| "#{attachment.s3_protocol(style)}://#{attachment.s3_host_alias}/#{attachment.path(style).gsub(%r{^/}, "")}" end unless Paperclip::Interpolations.respond_to? :s3_alias_url Paperclip.interpolates(:s3_path_url) do |, style| "#{attachment.s3_protocol(style)}://#{attachment.s3_host_name}/#{attachment.bucket_name}/#{attachment.path(style).gsub(%r{^/}, "")}" end unless Paperclip::Interpolations.respond_to? :s3_path_url Paperclip.interpolates(:s3_domain_url) do |, style| "#{attachment.s3_protocol(style)}://#{attachment.bucket_name}.#{attachment.s3_host_name}/#{attachment.path(style).gsub(%r{^/}, "")}" end unless Paperclip::Interpolations.respond_to? :s3_domain_url Paperclip.interpolates(:asset_host) do |, style| "#{attachment.path(style).gsub(%r{^/}, "")}" end unless Paperclip::Interpolations.respond_to? :asset_host end |
Instance Method Details
#bucket_name ⇒ Object
162 163 164 165 166 |
# File 'lib/paperclip/storage/s3.rb', line 162 def bucket_name @bucket = [:bucket] || s3_credentials[:bucket] @bucket = @bucket.call(self) if @bucket.is_a?(Proc) @bucket or raise ArgumentError, "missing required :bucket option" end |
#create_bucket ⇒ Object
274 275 276 |
# File 'lib/paperclip/storage/s3.rb', line 274 def create_bucket s3_interface.buckets.create(bucket_name) end |
#exists?(style = default_style) ⇒ Boolean
235 236 237 238 239 240 241 |
# File 'lib/paperclip/storage/s3.rb', line 235 def exists?(style = default_style) if original_filename s3_object(style).exists? else false end end |
#expiring_url(time = 3600, style_name = default_style) ⇒ Object
142 143 144 145 146 |
# File 'lib/paperclip/storage/s3.rb', line 142 def expiring_url(time = 3600, style_name = default_style) if path s3_object(style_name).url_for(:read, :expires => time, :secure => use_secure_protocol?(style_name)).to_s end end |
#flush_deletes ⇒ Object
:nodoc:
305 306 307 308 309 310 311 312 313 314 315 |
# File 'lib/paperclip/storage/s3.rb', line 305 def flush_deletes #:nodoc: @queued_for_delete.each do |path| begin log("deleting #{path}") s3_bucket.objects[path.sub(%r{^/},'')].delete rescue AWS::Errors::Base => e # Ignore this. end end @queued_for_delete = [] end |
#flush_writes ⇒ Object
:nodoc:
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'lib/paperclip/storage/s3.rb', line 278 def flush_writes #:nodoc: @queued_for_write.each do |style, file| begin log("saving #{path(style)}") acl = [style] || [:default] acl = acl.call(self, style) if acl.respond_to?(:call) = { :content_type => file.content_type.to_s.strip, :acl => acl } [:metadata] = unless .empty? unless @s3_server_side_encryption.blank? [:server_side_encryption] = @s3_server_side_encryption end .merge!(@s3_headers) s3_object(style).write(file, ) rescue AWS::S3::Errors::NoSuchBucket => e create_bucket retry end end after_flush_writes # allows attachment to clean up temp files @queued_for_write = {} end |
#http_proxy_host ⇒ Object
204 205 206 |
# File 'lib/paperclip/storage/s3.rb', line 204 def http_proxy_host using_http_proxy? ? @http_proxy[:host] : nil end |
#http_proxy_password ⇒ Object
216 217 218 |
# File 'lib/paperclip/storage/s3.rb', line 216 def http_proxy_password using_http_proxy? ? @http_proxy[:password] : nil end |
#http_proxy_port ⇒ Object
208 209 210 |
# File 'lib/paperclip/storage/s3.rb', line 208 def http_proxy_port using_http_proxy? ? @http_proxy[:port] : nil end |
#http_proxy_user ⇒ Object
212 213 214 |
# File 'lib/paperclip/storage/s3.rb', line 212 def http_proxy_user using_http_proxy? ? @http_proxy[:user] : nil end |
#parse_credentials(creds) ⇒ Object
229 230 231 232 233 |
# File 'lib/paperclip/storage/s3.rb', line 229 def parse_credentials creds creds = find_credentials(creds).stringify_keys env = Object.const_defined?(:Rails) ? Rails.env : nil (creds[env] || creds).symbolize_keys end |
#s3_bucket ⇒ Object
192 193 194 |
# File 'lib/paperclip/storage/s3.rb', line 192 def s3_bucket @s3_bucket ||= s3_interface.buckets[bucket_name] end |
#s3_credentials ⇒ Object
148 149 150 |
# File 'lib/paperclip/storage/s3.rb', line 148 def s3_credentials @s3_credentials ||= parse_credentials([:s3_credentials]) end |
#s3_host_alias ⇒ Object
156 157 158 159 160 |
# File 'lib/paperclip/storage/s3.rb', line 156 def s3_host_alias @s3_host_alias = [:s3_host_alias] @s3_host_alias = @s3_host_alias.call(self) if @s3_host_alias.is_a?(Proc) @s3_host_alias end |
#s3_host_name ⇒ Object
152 153 154 |
# File 'lib/paperclip/storage/s3.rb', line 152 def s3_host_name [:s3_host_name] || s3_credentials[:s3_host_name] || "s3.amazonaws.com" end |
#s3_interface ⇒ Object
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/paperclip/storage/s3.rb', line 168 def s3_interface @s3_interface ||= begin config = { :s3_endpoint => s3_host_name } if using_http_proxy? proxy_opts = { :host => http_proxy_host } proxy_opts[:port] = http_proxy_port if http_proxy_port if http_proxy_user userinfo = http_proxy_user.to_s userinfo += ":#{http_proxy_password}" if http_proxy_password proxy_opts[:userinfo] = userinfo end config[:proxy_uri] = URI::HTTP.build(proxy_opts) end [:access_key_id, :secret_access_key].each do |opt| config[opt] = s3_credentials[opt] if s3_credentials[opt] end AWS::S3.new(config.merge()) end end |
#s3_object(style_name = default_style) ⇒ Object
196 197 198 |
# File 'lib/paperclip/storage/s3.rb', line 196 def s3_object style_name = default_style s3_bucket.objects[path(style_name).sub(%r{^/},'')] end |
#s3_permissions(style = default_style) ⇒ Object
243 244 245 246 247 |
# File 'lib/paperclip/storage/s3.rb', line 243 def (style = default_style) = [style] || [:default] = .call(self, style) if .is_a?(Proc) end |
#s3_protocol(style = default_style) ⇒ Object
249 250 251 252 253 254 255 |
# File 'lib/paperclip/storage/s3.rb', line 249 def s3_protocol(style = default_style) if @s3_protocol.is_a?(Proc) @s3_protocol.call(style, self) else @s3_protocol end end |
#set_permissions(permissions) ⇒ Object
220 221 222 223 224 225 226 227 |
# File 'lib/paperclip/storage/s3.rb', line 220 def if .is_a?(Hash) [:default] = [:default] || :public_read else = { :default => || :public_read } end end |
#to_file(style = default_style) ⇒ Object
Returns representation of the data of the file assigned to the given style, in the format most representative of the current storage.
259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/paperclip/storage/s3.rb', line 259 def to_file style = default_style if @queued_for_write[style] @queued_for_write[style].rewind return @queued_for_write[style] end filename = path(style) extname = File.extname(filename) basename = File.basename(filename, extname) file = Tempfile.new([basename, extname]) file.binmode file.write(s3_object(style).read) file.rewind return file end |
#using_http_proxy? ⇒ Boolean
200 201 202 |
# File 'lib/paperclip/storage/s3.rb', line 200 def using_http_proxy? !!@http_proxy end |