paperclip.rb 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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.has_key?('S3_ENDPOINT')
  59. Paperclip::Attachment.default_options[:s3_options].merge!(
  60. endpoint: ENV['S3_ENDPOINT'],
  61. force_path_style: ENV['S3_OVERRIDE_PATH_STYLE'] != 'true',
  62. )
  63. Paperclip::Attachment.default_options[:url] = ':s3_path_url'
  64. end
  65. if ENV.has_key?('S3_ALIAS_HOST') || ENV.has_key?('S3_CLOUDFRONT_HOST')
  66. Paperclip::Attachment.default_options.merge!(
  67. url: ':s3_alias_url',
  68. s3_host_alias: ENV['S3_ALIAS_HOST'] || ENV['S3_CLOUDFRONT_HOST']
  69. )
  70. end
  71. # Some S3-compatible providers might not actually be compatible with some APIs
  72. # used by kt-paperclip, see https://github.com/mastodon/mastodon/issues/16822
  73. if ENV['S3_FORCE_SINGLE_REQUEST'] == 'true'
  74. module Paperclip
  75. module Storage
  76. module S3Extensions
  77. def copy_to_local_file(style, local_dest_path)
  78. log("copying #{path(style)} to local file #{local_dest_path}")
  79. s3_object(style).download_file(local_dest_path, { mode: 'single_request' })
  80. rescue Aws::Errors::ServiceError => e
  81. warn("#{e} - cannot copy #{path(style)} to local file #{local_dest_path}")
  82. false
  83. end
  84. end
  85. end
  86. end
  87. Paperclip::Storage::S3.prepend(Paperclip::Storage::S3Extensions)
  88. end
  89. elsif ENV['SWIFT_ENABLED'] == 'true'
  90. require 'fog/openstack'
  91. Paperclip::Attachment.default_options.merge!(
  92. fog_credentials: {
  93. provider: 'OpenStack',
  94. openstack_username: ENV['SWIFT_USERNAME'],
  95. openstack_project_id: ENV['SWIFT_PROJECT_ID'],
  96. openstack_project_name: ENV['SWIFT_TENANT'],
  97. openstack_tenant: ENV['SWIFT_TENANT'], # Some OpenStack-v2 ignores project_name but needs tenant
  98. openstack_api_key: ENV['SWIFT_PASSWORD'],
  99. openstack_auth_url: ENV['SWIFT_AUTH_URL'],
  100. openstack_domain_name: ENV.fetch('SWIFT_DOMAIN_NAME') { 'default' },
  101. openstack_region: ENV['SWIFT_REGION'],
  102. openstack_cache_ttl: ENV.fetch('SWIFT_CACHE_TTL') { 60 },
  103. openstack_temp_url_key: ENV['SWIFT_TEMP_URL_KEY'],
  104. },
  105. fog_directory: ENV['SWIFT_CONTAINER'],
  106. fog_host: ENV['SWIFT_OBJECT_URL'],
  107. fog_public: true
  108. )
  109. else
  110. Paperclip::Attachment.default_options.merge!(
  111. storage: :filesystem,
  112. path: File.join(ENV.fetch('PAPERCLIP_ROOT_PATH', File.join(':rails_root', 'public', 'system')), ':prefix_path:class', ':attachment', ':id_partition', ':style', ':filename'),
  113. url: ENV.fetch('PAPERCLIP_ROOT_URL', '/system') + '/:prefix_url:class/:attachment/:id_partition/:style/:filename',
  114. )
  115. end
  116. Rails.application.reloader.to_prepare do
  117. Paperclip.options[:content_type_mappings] = { csv: Import::FILE_TYPES }
  118. end
  119. # In some places in the code, we rescue this exception, but we don't always
  120. # load the S3 library, so it may be an undefined constant:
  121. unless defined?(Seahorse)
  122. module Seahorse
  123. module Client
  124. class NetworkingError < StandardError; end
  125. end
  126. end
  127. end
  128. # Set our ImageMagick security policy, but allow admins to override it
  129. ENV['MAGICK_CONFIGURE_PATH'] = begin
  130. imagemagick_config_paths = ENV.fetch('MAGICK_CONFIGURE_PATH', '').split(File::PATH_SEPARATOR)
  131. imagemagick_config_paths << Rails.root.join('config', 'imagemagick').expand_path.to_s
  132. imagemagick_config_paths.join(File::PATH_SEPARATOR)
  133. end