mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
3018043fc2
Keystone V2 is deprecated in favour of V3. This adds the necessary connection parameters for establishing a V3 connection. Connections to V2 endpoints are still possible and the configuration should remain compatible. This also introduces a SWIFT_REGION variable for multi-region OpenStack environments and a SWIFT_CACHE_TTL that controls how long tokens and other meta-data is cached for. Caching tokens avoids rate-limiting errors that would result in media uploads becoming unavailable during high load or when using tasks like media:remove_remote. fog-openstack only supports token caching for V3 endpoints, so a recommendation for using V3 was added.
65 lines
2.9 KiB
Ruby
65 lines
2.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
Paperclip.options[:read_timeout] = 60
|
|
|
|
Paperclip.interpolates :filename do |attachment, style|
|
|
return attachment.original_filename if style == :original
|
|
[basename(attachment, style), extension(attachment, style)].delete_if(&:blank?).join('.')
|
|
end
|
|
|
|
if ENV['S3_ENABLED'] == 'true'
|
|
Aws.eager_autoload!(services: %w(S3))
|
|
|
|
Paperclip::Attachment.default_options[:storage] = :s3
|
|
Paperclip::Attachment.default_options[:s3_protocol] = ENV.fetch('S3_PROTOCOL') { 'https' }
|
|
Paperclip::Attachment.default_options[:url] = ':s3_domain_url'
|
|
Paperclip::Attachment.default_options[:s3_host_name] = ENV.fetch('S3_HOSTNAME') { "s3-#{ENV.fetch('S3_REGION')}.amazonaws.com" }
|
|
Paperclip::Attachment.default_options[:path] = '/:class/:attachment/:id_partition/:style/:filename'
|
|
Paperclip::Attachment.default_options[:s3_headers] = { 'Cache-Control' => 'max-age=315576000' }
|
|
Paperclip::Attachment.default_options[:s3_permissions] = ENV.fetch('S3_PERMISSION') { 'public-read' }
|
|
Paperclip::Attachment.default_options[:s3_region] = ENV.fetch('S3_REGION') { 'us-east-1' }
|
|
Paperclip::Attachment.default_options[:use_timestamp] = false
|
|
|
|
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'),
|
|
}
|
|
|
|
unless ENV['S3_ENDPOINT'].blank?
|
|
Paperclip::Attachment.default_options[:s3_options] = {
|
|
endpoint: ENV['S3_ENDPOINT'],
|
|
signature_version: ENV['S3_SIGNATURE_VERSION'] || 'v4',
|
|
force_path_style: true,
|
|
}
|
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_path_url'
|
|
end
|
|
|
|
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
|
|
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_project_name: ENV.fetch('SWIFT_TENANT'),
|
|
openstack_api_key: ENV.fetch('SWIFT_PASSWORD'),
|
|
openstack_auth_url: ENV.fetch('SWIFT_AUTH_URL'),
|
|
openstack_domain_name: ENV['SWIFT_DOMAIN_NAME'] || 'default',
|
|
openstack_region: ENV['SWIFT_REGION'],
|
|
openstack_cache_ttl: ENV['SWIFT_CACHE_TTL'] || 60,
|
|
},
|
|
fog_directory: ENV.fetch('SWIFT_CONTAINER'),
|
|
fog_host: ENV.fetch('SWIFT_OBJECT_URL'),
|
|
fog_public: true
|
|
)
|
|
else
|
|
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'
|
|
end
|