2016-12-04 18:07:02 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-01-04 00:54:07 +00:00
|
|
|
Paperclip::DataUriAdapter.register
|
2020-06-30 21:58:02 +00:00
|
|
|
Paperclip::ResponseWithLimitAdapter.register
|
2020-01-04 00:54:07 +00:00
|
|
|
|
2017-03-05 22:03:49 +00:00
|
|
|
Paperclip.interpolates :filename do |attachment, style|
|
2019-10-09 05:10:46 +00:00
|
|
|
if style == :original
|
|
|
|
attachment.original_filename
|
|
|
|
else
|
2023-04-30 12:07:21 +00:00
|
|
|
[basename(attachment, style), extension(attachment, style)].compact_blank!.join('.')
|
2019-10-09 05:10:46 +00:00
|
|
|
end
|
2017-03-05 22:03:49 +00:00
|
|
|
end
|
|
|
|
|
2020-04-27 08:32:05 +00:00
|
|
|
Paperclip.interpolates :prefix_path do |attachment, style|
|
2020-04-26 21:29:08 +00:00
|
|
|
if attachment.storage_schema_version >= 1 && attachment.instance.respond_to?(:local?) && !attachment.instance.local?
|
|
|
|
'cache' + File::SEPARATOR
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-27 08:32:05 +00:00
|
|
|
Paperclip.interpolates :prefix_url do |attachment, style|
|
2020-04-26 21:29:08 +00:00
|
|
|
if attachment.storage_schema_version >= 1 && attachment.instance.respond_to?(:local?) && !attachment.instance.local?
|
|
|
|
'cache/'
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-07 13:30:31 +00:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
|
|
|
use_timestamp: false,
|
2020-04-27 08:32:05 +00:00
|
|
|
path: ':prefix_url:class/:attachment/:id_partition/:style/:filename',
|
2017-11-07 13:30:31 +00:00
|
|
|
storage: :fog
|
|
|
|
)
|
2017-10-09 15:52:02 +00:00
|
|
|
|
2016-11-06 17:35:46 +00:00
|
|
|
if ENV['S3_ENABLED'] == 'true'
|
2018-03-24 11:52:45 +00:00
|
|
|
require 'aws-sdk-s3'
|
2016-11-29 13:20:15 +00:00
|
|
|
|
2017-12-08 23:47:52 +00:00
|
|
|
s3_region = ENV.fetch('S3_REGION') { 'us-east-1' }
|
|
|
|
s3_protocol = ENV.fetch('S3_PROTOCOL') { 'https' }
|
2017-12-09 04:59:59 +00:00
|
|
|
s3_hostname = ENV.fetch('S3_HOSTNAME') { "s3-#{s3_region}.amazonaws.com" }
|
2016-11-06 17:35:46 +00:00
|
|
|
|
2017-11-07 13:30:31 +00:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
2017-12-08 23:47:52 +00:00
|
|
|
storage: :s3,
|
|
|
|
s3_protocol: s3_protocol,
|
|
|
|
s3_host_name: s3_hostname,
|
2019-10-09 05:10:46 +00:00
|
|
|
|
2017-12-08 23:47:52 +00:00
|
|
|
s3_headers: {
|
2019-09-24 15:32:12 +00:00
|
|
|
'X-Amz-Multipart-Threshold' => ENV.fetch('S3_MULTIPART_THRESHOLD') { 15.megabytes }.to_i,
|
2019-01-05 17:29:53 +00:00
|
|
|
'Cache-Control' => 'public, max-age=315576000, immutable',
|
2017-11-07 13:30:31 +00:00
|
|
|
},
|
2019-10-09 05:10:46 +00:00
|
|
|
|
2017-12-08 23:47:52 +00:00
|
|
|
s3_permissions: ENV.fetch('S3_PERMISSION') { 'public-read' },
|
|
|
|
s3_region: s3_region,
|
2019-10-09 05:10:46 +00:00
|
|
|
|
2017-12-08 23:47:52 +00: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 05:10:46 +00:00
|
|
|
|
2017-12-08 23:47:52 +00:00
|
|
|
s3_options: {
|
|
|
|
signature_version: ENV.fetch('S3_SIGNATURE_VERSION') { 'v4' },
|
2019-12-02 20:05:27 +00:00
|
|
|
http_open_timeout: ENV.fetch('S3_OPEN_TIMEOUT'){ '5' }.to_i,
|
2020-10-06 19:29:22 +00:00
|
|
|
http_read_timeout: ENV.fetch('S3_READ_TIMEOUT'){ '5' }.to_i,
|
2019-01-18 00:36:59 +00:00
|
|
|
http_idle_timeout: 5,
|
2019-10-06 04:20:57 +00:00
|
|
|
retry_limit: 0,
|
2016-12-07 15:59:18 +00:00
|
|
|
}
|
2017-11-07 13:30:31 +00:00
|
|
|
)
|
2022-11-13 05:57:10 +00:00
|
|
|
|
2023-05-04 03:25:43 +00:00
|
|
|
Paperclip::Attachment.default_options[:s3_permissions] = ->(*) { nil } if ENV['S3_PERMISSION'] == ''
|
2016-12-07 15:59:18 +00:00
|
|
|
|
2017-11-07 13:30:31 +00:00
|
|
|
if ENV.has_key?('S3_ENDPOINT')
|
2017-12-08 23:47:52 +00:00
|
|
|
Paperclip::Attachment.default_options[:s3_options].merge!(
|
2017-11-07 13:30:31 +00:00
|
|
|
endpoint: ENV['S3_ENDPOINT'],
|
2019-12-10 06:40:01 +00:00
|
|
|
force_path_style: ENV['S3_OVERRIDE_PATH_STYLE'] != 'true',
|
2017-11-07 13:30:31 +00:00
|
|
|
)
|
2019-10-09 05:10:46 +00:00
|
|
|
|
2017-12-08 23:47:52 +00:00
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_path_url'
|
2016-12-07 15:59:18 +00:00
|
|
|
end
|
2016-12-07 16:19:29 +00:00
|
|
|
|
2018-08-25 11:27:08 +00:00
|
|
|
if ENV.has_key?('S3_ALIAS_HOST') || ENV.has_key?('S3_CLOUDFRONT_HOST')
|
2017-12-08 23:47:52 +00:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
|
|
|
url: ':s3_alias_url',
|
2018-08-25 11:27:08 +00:00
|
|
|
s3_host_alias: ENV['S3_ALIAS_HOST'] || ENV['S3_CLOUDFRONT_HOST']
|
2017-12-08 23:47:52 +00:00
|
|
|
)
|
2016-12-07 16:19:29 +00:00
|
|
|
end
|
2022-04-01 21:56:23 +00:00
|
|
|
|
2023-05-04 03:25:43 +00:00
|
|
|
Paperclip::Attachment.default_options[:s3_headers]['X-Amz-Storage-Class'] = ENV['S3_STORAGE_CLASS'] if ENV.has_key?('S3_STORAGE_CLASS')
|
2023-03-03 19:53:37 +00:00
|
|
|
|
2022-04-01 21:56:23 +00:00
|
|
|
# Some S3-compatible providers might not actually be compatible with some APIs
|
|
|
|
# used by kt-paperclip, see https://github.com/mastodon/mastodon/issues/16822
|
|
|
|
if ENV['S3_FORCE_SINGLE_REQUEST'] == 'true'
|
|
|
|
module Paperclip
|
|
|
|
module Storage
|
|
|
|
module S3Extensions
|
|
|
|
def copy_to_local_file(style, local_dest_path)
|
|
|
|
log("copying #{path(style)} to local file #{local_dest_path}")
|
|
|
|
s3_object(style).download_file(local_dest_path, { mode: 'single_request' })
|
|
|
|
rescue Aws::Errors::ServiceError => e
|
|
|
|
warn("#{e} - cannot copy #{path(style)} to local file #{local_dest_path}")
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Paperclip::Storage::S3.prepend(Paperclip::Storage::S3Extensions)
|
|
|
|
end
|
2017-09-05 21:17:06 +00:00
|
|
|
elsif ENV['SWIFT_ENABLED'] == 'true'
|
2017-11-07 13:30:31 +00:00
|
|
|
require 'fog/openstack'
|
|
|
|
|
2017-09-05 21:17:06 +00:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
|
|
|
fog_credentials: {
|
|
|
|
provider: 'OpenStack',
|
2017-11-07 13:30:31 +00:00
|
|
|
openstack_username: ENV['SWIFT_USERNAME'],
|
2018-05-07 00:28:28 +00:00
|
|
|
openstack_project_id: ENV['SWIFT_PROJECT_ID'],
|
2017-11-07 13:30:31 +00: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 13:11:13 +00:00
|
|
|
openstack_region: ENV['SWIFT_REGION'],
|
2017-11-07 13:30:31 +00:00
|
|
|
openstack_cache_ttl: ENV.fetch('SWIFT_CACHE_TTL') { 60 },
|
2023-03-27 15:07:37 +00:00
|
|
|
openstack_temp_url_key: ENV['SWIFT_TEMP_URL_KEY'],
|
2017-09-05 21:17:06 +00:00
|
|
|
},
|
2022-11-14 04:26:49 +00:00
|
|
|
|
|
|
|
fog_file: { 'Cache-Control' => 'public, max-age=315576000, immutable' },
|
2019-10-09 05:10:46 +00:00
|
|
|
|
2017-11-07 13:30:31 +00:00
|
|
|
fog_directory: ENV['SWIFT_CONTAINER'],
|
2017-11-07 18:06:30 +00:00
|
|
|
fog_host: ENV['SWIFT_OBJECT_URL'],
|
2017-09-05 21:17:06 +00:00
|
|
|
fog_public: true
|
|
|
|
)
|
2017-04-15 00:07:21 +00:00
|
|
|
else
|
2017-11-07 13:30:31 +00:00
|
|
|
Paperclip::Attachment.default_options.merge!(
|
2018-08-21 15:53:01 +00:00
|
|
|
storage: :filesystem,
|
2020-04-27 08:32:05 +00: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 13:30:31 +00:00
|
|
|
)
|
2016-11-06 17:35:46 +00:00
|
|
|
end
|
2020-05-24 07:15:23 +00:00
|
|
|
|
2021-04-09 00:31:20 +00:00
|
|
|
Rails.application.reloader.to_prepare do
|
|
|
|
Paperclip.options[:content_type_mappings] = { csv: Import::FILE_TYPES }
|
|
|
|
end
|
2020-12-15 11:55:29 +00:00
|
|
|
|
|
|
|
# In some places in the code, we rescue this exception, but we don't always
|
|
|
|
# load the S3 library, so it may be an undefined constant:
|
|
|
|
|
|
|
|
unless defined?(Seahorse)
|
|
|
|
module Seahorse
|
|
|
|
module Client
|
|
|
|
class NetworkingError < StandardError; end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|