about summary refs log tree commit diff
path: root/lib/paperclip/storage_extensions.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-10-25 20:28:51 +0200
committerClaire <claire.github-309c@sitedethib.com>2021-10-25 20:28:51 +0200
commite855df149bd2f19729af48cd5f452fa3972273f8 (patch)
tree4d9dab4fd4568f67b07642db61a2f382e8b1dcc0 /lib/paperclip/storage_extensions.rb
parentc647fa99cab9b9db81d36223cf2c2c27e065b648 (diff)
parent5ba46952af87e42a64962a34f7ec43bc710bdcaf (diff)
Merge branch 'main' into glitch-soc/merge-upstream
Conflicts:
- `.env.production.sample`:
  Upstream added new configuration options, uncommented by default.
  Commented them.
- `Gemfile.lock`:
  Upstream updated dependencies textually close to glitch-soc-specific
  dependencies.
  Updated those upstream dependencies.
Diffstat (limited to 'lib/paperclip/storage_extensions.rb')
-rw-r--r--lib/paperclip/storage_extensions.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/paperclip/storage_extensions.rb b/lib/paperclip/storage_extensions.rb
new file mode 100644
index 000000000..95c35641e
--- /dev/null
+++ b/lib/paperclip/storage_extensions.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+# 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_ENABLED'] == 'true' && 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