2016-12-04 19:07:02 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-08 19:12:54 +01:00
|
|
|
Paperclip.options[:read_timeout] = 60
|
2017-01-07 15:43:56 +01:00
|
|
|
|
2017-03-05 23:03:49 +01:00
|
|
|
Paperclip.interpolates :filename do |attachment, style|
|
|
|
|
return attachment.original_filename if style == :original
|
2017-05-05 21:32:14 +02:00
|
|
|
[basename(attachment, style), extension(attachment, style)].delete_if(&:blank?).join('.')
|
2017-03-05 23:03:49 +01:00
|
|
|
end
|
|
|
|
|
2016-11-06 18:35:46 +01:00
|
|
|
if ENV['S3_ENABLED'] == 'true'
|
2016-11-29 14:20:15 +01:00
|
|
|
Aws.eager_autoload!(services: %w(S3))
|
|
|
|
|
2016-12-04 12:26:12 +01:00
|
|
|
Paperclip::Attachment.default_options[:storage] = :s3
|
2017-03-23 08:44:55 +01:00
|
|
|
Paperclip::Attachment.default_options[:s3_protocol] = ENV.fetch('S3_PROTOCOL') { 'https' }
|
2016-12-04 12:26:12 +01:00
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_domain_url'
|
2016-12-07 16:59:18 +01:00
|
|
|
Paperclip::Attachment.default_options[:s3_host_name] = ENV.fetch('S3_HOSTNAME') { "s3-#{ENV.fetch('S3_REGION')}.amazonaws.com" }
|
2016-12-04 12:26:12 +01:00
|
|
|
Paperclip::Attachment.default_options[:path] = '/:class/:attachment/:id_partition/:style/:filename'
|
2017-04-16 04:01:58 +02:00
|
|
|
Paperclip::Attachment.default_options[:s3_headers] = { 'Cache-Control' => 'max-age=315576000' }
|
2017-04-19 14:20:36 +02:00
|
|
|
Paperclip::Attachment.default_options[:s3_permissions] = ENV.fetch('S3_PERMISSION') { 'public-read' }
|
2016-12-07 16:59:18 +01:00
|
|
|
Paperclip::Attachment.default_options[:s3_region] = ENV.fetch('S3_REGION') { 'us-east-1' }
|
2017-04-20 03:54:24 +02:00
|
|
|
Paperclip::Attachment.default_options[:use_timestamp] = false
|
2016-11-06 18:35:46 +01: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 16:59:18 +01:00
|
|
|
|
|
|
|
unless ENV['S3_ENDPOINT'].blank?
|
|
|
|
Paperclip::Attachment.default_options[:s3_options] = {
|
|
|
|
endpoint: ENV['S3_ENDPOINT'],
|
2017-04-19 14:18:50 +02:00
|
|
|
signature_version: ENV['S3_SIGNATURE_VERSION'] || 'v4',
|
2016-12-07 16:59:18 +01:00
|
|
|
force_path_style: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_path_url'
|
|
|
|
end
|
2016-12-07 17:19:29 +01: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
|
2017-09-05 23:17:06 +02:00
|
|
|
elsif ENV['SWIFT_ENABLED'] == 'true'
|
|
|
|
Paperclip::Attachment.default_options.merge!(
|
|
|
|
path: ':class/:attachment/:id_partition/:style/:filename',
|
|
|
|
storage: :fog,
|
|
|
|
fog_credentials: {
|
|
|
|
provider: 'OpenStack',
|
|
|
|
openstack_username: ENV.fetch('SWIFT_USERNAME'),
|
|
|
|
openstack_tenant: ENV.fetch('SWIFT_TENANT'),
|
|
|
|
openstack_api_key: ENV.fetch('SWIFT_PASSWORD'),
|
|
|
|
openstack_auth_url: ENV.fetch('SWIFT_AUTH_URL'),
|
|
|
|
},
|
|
|
|
fog_directory: ENV.fetch('SWIFT_CONTAINER'),
|
|
|
|
fog_host: ENV.fetch('SWIFT_OBJECT_URL'),
|
|
|
|
fog_public: true
|
|
|
|
)
|
2017-04-15 02:07:21 +02:00
|
|
|
else
|
2017-04-18 23:15:44 +02:00
|
|
|
Paperclip::Attachment.default_options[:path] = (ENV['PAPERCLIP_ROOT_PATH'] || ':rails_root/public/system') + '/:class/:attachment/:id_partition/:style/:filename'
|
|
|
|
Paperclip::Attachment.default_options[:url] = (ENV['PAPERCLIP_ROOT_URL'] || '/system') + '/:class/:attachment/:id_partition/:style/:filename'
|
2016-11-06 18:35:46 +01:00
|
|
|
end
|