2016-12-04 18:07:02 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-08 18:12:54 +00:00
|
|
|
Paperclip.options[:read_timeout] = 60
|
2017-01-07 14:43:56 +00:00
|
|
|
|
2016-11-06 17:35:46 +00:00
|
|
|
if ENV['S3_ENABLED'] == 'true'
|
2016-11-29 13:20:15 +00:00
|
|
|
Aws.eager_autoload!(services: %w(S3))
|
|
|
|
|
2016-12-04 11:26:12 +00:00
|
|
|
Paperclip::Attachment.default_options[:storage] = :s3
|
2016-12-07 16:19:29 +00:00
|
|
|
Paperclip::Attachment.default_options[:s3_protocol] = 'https'
|
2016-12-04 11:26:12 +00:00
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_domain_url'
|
2016-12-07 15:59:18 +00:00
|
|
|
Paperclip::Attachment.default_options[:s3_host_name] = ENV.fetch('S3_HOSTNAME') { "s3-#{ENV.fetch('S3_REGION')}.amazonaws.com" }
|
2016-12-04 11:26:12 +00:00
|
|
|
Paperclip::Attachment.default_options[:path] = '/:class/:attachment/:id_partition/:style/:filename'
|
|
|
|
Paperclip::Attachment.default_options[:s3_headers] = { 'Cache-Control' => 'max-age=315576000', 'Expires' => 10.years.from_now.httpdate }
|
2017-01-15 09:58:46 +00:00
|
|
|
Paperclip::Attachment.default_options[:s3_permissions] = 'public-read'
|
2016-12-07 15:59:18 +00:00
|
|
|
Paperclip::Attachment.default_options[:s3_region] = ENV.fetch('S3_REGION') { 'us-east-1' }
|
2016-11-06 17:35:46 +00:00
|
|
|
|
|
|
|
Paperclip::Attachment.default_options[:s3_credentials] = {
|
|
|
|
bucket: ENV.fetch('S3_BUCKET'),
|
|
|
|
access_key_id: ENV.fetch('AWS_ACCESS_KEY_ID'),
|
|
|
|
secret_access_key: ENV.fetch('AWS_SECRET_ACCESS_KEY'),
|
|
|
|
}
|
2016-12-07 15:59:18 +00:00
|
|
|
|
|
|
|
unless ENV['S3_ENDPOINT'].blank?
|
|
|
|
Paperclip::Attachment.default_options[:s3_options] = {
|
|
|
|
endpoint: ENV['S3_ENDPOINT'],
|
|
|
|
force_path_style: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_path_url'
|
|
|
|
end
|
2016-12-07 16:19:29 +00:00
|
|
|
|
|
|
|
unless ENV['S3_CLOUDFRONT_HOST'].blank?
|
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_alias_url'
|
|
|
|
Paperclip::Attachment.default_options[:s3_host_alias] = ENV['S3_CLOUDFRONT_HOST']
|
|
|
|
end
|
2016-11-06 17:35:46 +00:00
|
|
|
end
|