2016-12-04 13:07:02 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-01-03 19:54:07 -05:00
|
|
|
Paperclip::DataUriAdapter.register
|
2020-06-30 17:58:02 -04:00
|
|
|
Paperclip::ResponseWithLimitAdapter.register
|
2020-01-03 19:54:07 -05:00
|
|
|
|
2017-03-05 17:03:49 -05:00
|
|
|
Paperclip.interpolates :filename do |attachment, style|
|
2019-10-09 01:10:46 -04:00
|
|
|
if style == :original
|
|
|
|
attachment.original_filename
|
|
|
|
else
|
|
|
|
[basename(attachment, style), extension(attachment, style)].delete_if(&:blank?).join('.')
|
|
|
|
end
|
2017-03-05 17:03:49 -05:00
|
|
|
end
|
|
|
|
|
2020-04-27 04:32:05 -04:00
|
|
|
Paperclip.interpolates :prefix_path do |attachment, style|
|
2020-04-26 17:29:08 -04:00
|
|
|
if attachment.storage_schema_version >= 1 && attachment.instance.respond_to?(:local?) && !attachment.instance.local?
|
|
|
|
'cache' + File::SEPARATOR
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-27 04:32:05 -04:00
|
|
|
Paperclip.interpolates :prefix_url do |attachment, style|
|
2020-04-26 17:29:08 -04:00
|
|
|
if attachment.storage_schema_version >= 1 && attachment.instance.respond_to?(:local?) && !attachment.instance.local?
|
|
|
|
'cache/'
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-07 08:30:31 -05:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
|
|
|
use_timestamp: false,
|
2020-04-27 04:32:05 -04:00
|
|
|
path: ':prefix_url:class/:attachment/:id_partition/:style/:filename',
|
2017-11-07 08:30:31 -05:00
|
|
|
storage: :fog
|
|
|
|
)
|
2017-10-09 11:52:02 -04:00
|
|
|
|
2016-11-06 12:35:46 -05:00
|
|
|
if ENV['S3_ENABLED'] == 'true'
|
2018-03-24 07:52:45 -04:00
|
|
|
require 'aws-sdk-s3'
|
2016-11-29 08:20:15 -05:00
|
|
|
|
2017-12-08 18:47:52 -05:00
|
|
|
s3_region = ENV.fetch('S3_REGION') { 'us-east-1' }
|
|
|
|
s3_protocol = ENV.fetch('S3_PROTOCOL') { 'https' }
|
2017-12-08 23:59:59 -05:00
|
|
|
s3_hostname = ENV.fetch('S3_HOSTNAME') { "s3-#{s3_region}.amazonaws.com" }
|
2016-11-06 12:35:46 -05:00
|
|
|
|
2017-11-07 08:30:31 -05:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
2017-12-08 18:47:52 -05:00
|
|
|
storage: :s3,
|
|
|
|
s3_protocol: s3_protocol,
|
|
|
|
s3_host_name: s3_hostname,
|
2019-10-09 01:10:46 -04:00
|
|
|
|
2017-12-08 18:47:52 -05:00
|
|
|
s3_headers: {
|
2019-09-24 11:32:12 -04:00
|
|
|
'X-Amz-Multipart-Threshold' => ENV.fetch('S3_MULTIPART_THRESHOLD') { 15.megabytes }.to_i,
|
2019-01-05 12:29:53 -05:00
|
|
|
'Cache-Control' => 'public, max-age=315576000, immutable',
|
2017-11-07 08:30:31 -05:00
|
|
|
},
|
2019-10-09 01:10:46 -04:00
|
|
|
|
2017-12-08 18:47:52 -05:00
|
|
|
s3_permissions: ENV.fetch('S3_PERMISSION') { 'public-read' },
|
|
|
|
s3_region: s3_region,
|
2019-10-09 01:10:46 -04:00
|
|
|
|
2017-12-08 18:47:52 -05:00
|
|
|
s3_credentials: {
|
|
|
|
bucket: ENV['S3_BUCKET'],
|
|
|
|
access_key_id: ENV['AWS_ACCESS_KEY_ID'],
|
|
|
|
secret_access_key: ENV['AWS_SECRET_ACCESS_KEY'],
|
|
|
|
},
|
2019-10-09 01:10:46 -04:00
|
|
|
|
2017-12-08 18:47:52 -05:00
|
|
|
s3_options: {
|
|
|
|
signature_version: ENV.fetch('S3_SIGNATURE_VERSION') { 'v4' },
|
2019-12-02 15:05:27 -05:00
|
|
|
http_open_timeout: ENV.fetch('S3_OPEN_TIMEOUT'){ '5' }.to_i,
|
2019-01-17 19:36:59 -05:00
|
|
|
http_read_timeout: 5,
|
|
|
|
http_idle_timeout: 5,
|
2019-10-06 00:20:57 -04:00
|
|
|
retry_limit: 0,
|
2016-12-07 10:59:18 -05:00
|
|
|
}
|
2017-11-07 08:30:31 -05:00
|
|
|
)
|
2016-12-07 10:59:18 -05:00
|
|
|
|
2017-11-07 08:30:31 -05:00
|
|
|
if ENV.has_key?('S3_ENDPOINT')
|
2017-12-08 18:47:52 -05:00
|
|
|
Paperclip::Attachment.default_options[:s3_options].merge!(
|
2017-11-07 08:30:31 -05:00
|
|
|
endpoint: ENV['S3_ENDPOINT'],
|
2019-12-10 01:40:01 -05:00
|
|
|
force_path_style: ENV['S3_OVERRIDE_PATH_STYLE'] != 'true',
|
2017-11-07 08:30:31 -05:00
|
|
|
)
|
2019-10-09 01:10:46 -04:00
|
|
|
|
2017-12-08 18:47:52 -05:00
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_path_url'
|
2016-12-07 10:59:18 -05:00
|
|
|
end
|
2016-12-07 11:19:29 -05:00
|
|
|
|
2018-08-25 07:27:08 -04:00
|
|
|
if ENV.has_key?('S3_ALIAS_HOST') || ENV.has_key?('S3_CLOUDFRONT_HOST')
|
2017-12-08 18:47:52 -05:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
|
|
|
url: ':s3_alias_url',
|
2018-08-25 07:27:08 -04:00
|
|
|
s3_host_alias: ENV['S3_ALIAS_HOST'] || ENV['S3_CLOUDFRONT_HOST']
|
2017-12-08 18:47:52 -05:00
|
|
|
)
|
2016-12-07 11:19:29 -05:00
|
|
|
end
|
2017-09-05 17:17:06 -04:00
|
|
|
elsif ENV['SWIFT_ENABLED'] == 'true'
|
2017-11-07 08:30:31 -05:00
|
|
|
require 'fog/openstack'
|
|
|
|
|
2017-09-05 17:17:06 -04:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
|
|
|
fog_credentials: {
|
|
|
|
provider: 'OpenStack',
|
2017-11-07 08:30:31 -05:00
|
|
|
openstack_username: ENV['SWIFT_USERNAME'],
|
2018-05-06 20:28:28 -04:00
|
|
|
openstack_project_id: ENV['SWIFT_PROJECT_ID'],
|
2017-11-07 08:30:31 -05:00
|
|
|
openstack_project_name: ENV['SWIFT_TENANT'],
|
|
|
|
openstack_tenant: ENV['SWIFT_TENANT'], # Some OpenStack-v2 ignores project_name but needs tenant
|
|
|
|
openstack_api_key: ENV['SWIFT_PASSWORD'],
|
|
|
|
openstack_auth_url: ENV['SWIFT_AUTH_URL'],
|
|
|
|
openstack_domain_name: ENV.fetch('SWIFT_DOMAIN_NAME') { 'default' },
|
2017-09-11 09:11:13 -04:00
|
|
|
openstack_region: ENV['SWIFT_REGION'],
|
2017-11-07 08:30:31 -05:00
|
|
|
openstack_cache_ttl: ENV.fetch('SWIFT_CACHE_TTL') { 60 },
|
2017-09-05 17:17:06 -04:00
|
|
|
},
|
2019-10-09 01:10:46 -04:00
|
|
|
|
2017-11-07 08:30:31 -05:00
|
|
|
fog_directory: ENV['SWIFT_CONTAINER'],
|
2017-11-07 13:06:30 -05:00
|
|
|
fog_host: ENV['SWIFT_OBJECT_URL'],
|
2017-09-05 17:17:06 -04:00
|
|
|
fog_public: true
|
|
|
|
)
|
2017-04-14 20:07:21 -04:00
|
|
|
else
|
2017-11-07 08:30:31 -05:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
2018-08-21 11:53:01 -04:00
|
|
|
storage: :filesystem,
|
|
|
|
use_timestamp: true,
|
2020-04-27 04:32:05 -04:00
|
|
|
path: File.join(ENV.fetch('PAPERCLIP_ROOT_PATH', File.join(':rails_root', 'public', 'system')), ':prefix_path:class', ':attachment', ':id_partition', ':style', ':filename'),
|
|
|
|
url: ENV.fetch('PAPERCLIP_ROOT_URL', '/system') + '/:prefix_url:class/:attachment/:id_partition/:style/:filename',
|
2017-11-07 08:30:31 -05:00
|
|
|
)
|
2016-11-06 12:35:46 -05:00
|
|
|
end
|
2020-05-24 03:15:23 -04:00
|
|
|
|
|
|
|
Paperclip.options[:content_type_mappings] = { csv: Import::FILE_TYPES }
|