You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
5.2 KiB

  1. # frozen_string_literal: true
  2. Paperclip::DataUriAdapter.register
  3. Paperclip::ResponseWithLimitAdapter.register
  4. Paperclip.interpolates :filename do |attachment, style|
  5. if style == :original
  6. attachment.original_filename
  7. else
  8. [basename(attachment, style), extension(attachment, style)].delete_if(&:blank?).join('.')
  9. end
  10. end
  11. Paperclip.interpolates :prefix_path do |attachment, style|
  12. if attachment.storage_schema_version >= 1 && attachment.instance.respond_to?(:local?) && !attachment.instance.local?
  13. 'cache' + File::SEPARATOR
  14. else
  15. ''
  16. end
  17. end
  18. Paperclip.interpolates :prefix_url do |attachment, style|
  19. if attachment.storage_schema_version >= 1 && attachment.instance.respond_to?(:local?) && !attachment.instance.local?
  20. 'cache/'
  21. else
  22. ''
  23. end
  24. end
  25. Paperclip::Attachment.default_options.merge!(
  26. use_timestamp: false,
  27. path: ':prefix_url:class/:attachment/:id_partition/:style/:filename',
  28. storage: :fog
  29. )
  30. if ENV['S3_ENABLED'] == 'true'
  31. require 'aws-sdk-s3'
  32. s3_region = ENV.fetch('S3_REGION') { 'us-east-1' }
  33. s3_protocol = ENV.fetch('S3_PROTOCOL') { 'https' }
  34. s3_hostname = ENV.fetch('S3_HOSTNAME') { "s3-#{s3_region}.amazonaws.com" }
  35. Paperclip::Attachment.default_options.merge!(
  36. storage: :s3,
  37. s3_protocol: s3_protocol,
  38. s3_host_name: s3_hostname,
  39. s3_headers: {
  40. 'X-Amz-Multipart-Threshold' => ENV.fetch('S3_MULTIPART_THRESHOLD') { 15.megabytes }.to_i,
  41. 'Cache-Control' => 'public, max-age=315576000, immutable',
  42. },
  43. s3_permissions: ENV.fetch('S3_PERMISSION') { 'public-read' },
  44. s3_region: s3_region,
  45. s3_credentials: {
  46. bucket: ENV['S3_BUCKET'],
  47. access_key_id: ENV['AWS_ACCESS_KEY_ID'],
  48. secret_access_key: ENV['AWS_SECRET_ACCESS_KEY'],
  49. },
  50. s3_options: {
  51. signature_version: ENV.fetch('S3_SIGNATURE_VERSION') { 'v4' },
  52. http_open_timeout: ENV.fetch('S3_OPEN_TIMEOUT'){ '5' }.to_i,
  53. http_read_timeout: ENV.fetch('S3_READ_TIMEOUT'){ '5' }.to_i,
  54. http_idle_timeout: 5,
  55. retry_limit: 0,
  56. }
  57. )
  58. if ENV['S3_PERMISSION'] == ''
  59. Paperclip::Attachment.default_options.merge!(
  60. s3_permissions: ->(*) { nil }
  61. )
  62. end
  63. if ENV.has_key?('S3_ENDPOINT')
  64. Paperclip::Attachment.default_options[:s3_options].merge!(
  65. endpoint: ENV['S3_ENDPOINT'],
  66. force_path_style: ENV['S3_OVERRIDE_PATH_STYLE'] != 'true',
  67. )
  68. Paperclip::Attachment.default_options[:url] = ':s3_path_url'
  69. end
  70. if ENV.has_key?('S3_ALIAS_HOST') || ENV.has_key?('S3_CLOUDFRONT_HOST')
  71. Paperclip::Attachment.default_options.merge!(
  72. url: ':s3_alias_url',
  73. s3_host_alias: ENV['S3_ALIAS_HOST'] || ENV['S3_CLOUDFRONT_HOST']
  74. )
  75. end
  76. if ENV.has_key?('S3_STORAGE_CLASS')
  77. Paperclip::Attachment.default_options[:s3_headers].merge!(
  78. 'X-Amz-Storage-Class' => ENV['S3_STORAGE_CLASS']
  79. )
  80. end
  81. # Some S3-compatible providers might not actually be compatible with some APIs
  82. # used by kt-paperclip, see https://github.com/mastodon/mastodon/issues/16822
  83. if ENV['S3_FORCE_SINGLE_REQUEST'] == 'true'
  84. module Paperclip
  85. module Storage
  86. module S3Extensions
  87. def copy_to_local_file(style, local_dest_path)
  88. log("copying #{path(style)} to local file #{local_dest_path}")
  89. s3_object(style).download_file(local_dest_path, { mode: 'single_request' })
  90. rescue Aws::Errors::ServiceError => e
  91. warn("#{e} - cannot copy #{path(style)} to local file #{local_dest_path}")
  92. false
  93. end
  94. end
  95. end
  96. end
  97. Paperclip::Storage::S3.prepend(Paperclip::Storage::S3Extensions)
  98. end
  99. elsif ENV['SWIFT_ENABLED'] == 'true'
  100. require 'fog/openstack'
  101. Paperclip::Attachment.default_options.merge!(
  102. fog_credentials: {
  103. provider: 'OpenStack',
  104. openstack_username: ENV['SWIFT_USERNAME'],
  105. openstack_project_id: ENV['SWIFT_PROJECT_ID'],
  106. openstack_project_name: ENV['SWIFT_TENANT'],
  107. openstack_tenant: ENV['SWIFT_TENANT'], # Some OpenStack-v2 ignores project_name but needs tenant
  108. openstack_api_key: ENV['SWIFT_PASSWORD'],
  109. openstack_auth_url: ENV['SWIFT_AUTH_URL'],
  110. openstack_domain_name: ENV.fetch('SWIFT_DOMAIN_NAME') { 'default' },
  111. openstack_region: ENV['SWIFT_REGION'],
  112. openstack_cache_ttl: ENV.fetch('SWIFT_CACHE_TTL') { 60 },
  113. },
  114. fog_file: { 'Cache-Control' => 'public, max-age=315576000, immutable' },
  115. fog_directory: ENV['SWIFT_CONTAINER'],
  116. fog_host: ENV['SWIFT_OBJECT_URL'],
  117. fog_public: true
  118. )
  119. else
  120. Paperclip::Attachment.default_options.merge!(
  121. storage: :filesystem,
  122. path: File.join(ENV.fetch('PAPERCLIP_ROOT_PATH', File.join(':rails_root', 'public', 'system')), ':prefix_path:class', ':attachment', ':id_partition', ':style', ':filename'),
  123. url: ENV.fetch('PAPERCLIP_ROOT_URL', '/system') + '/:prefix_url:class/:attachment/:id_partition/:style/:filename',
  124. )
  125. end
  126. Rails.application.reloader.to_prepare do
  127. Paperclip.options[:content_type_mappings] = { csv: Import::FILE_TYPES }
  128. end
  129. # In some places in the code, we rescue this exception, but we don't always
  130. # load the S3 library, so it may be an undefined constant:
  131. unless defined?(Seahorse)
  132. module Seahorse
  133. module Client
  134. class NetworkingError < StandardError; end
  135. end
  136. end
  137. end