1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Uploaders.S3 do
6 @behaviour Pleroma.Uploaders.Uploader
11 # The file name is re-encoded with S3's constraints here to comply with previous
12 # links with less strict filenames
18 Pleroma.Upload.base_url(),
19 strict_encode(URI.decode(file))
24 def put_file(%Pleroma.Upload{} = upload) do
25 config = Config.get([__MODULE__])
26 bucket = Keyword.get(config, :bucket)
27 streaming = Keyword.get(config, :streaming_enabled)
29 s3_name = strict_encode(upload.path)
34 |> ExAws.S3.Upload.stream_file()
35 |> ExAws.S3.upload(bucket, s3_name, [
37 {:content_type, upload.content_type}
40 {:ok, file_data} = File.read(upload.tempfile)
42 ExAws.S3.put_object(bucket, s3_name, file_data, [
44 {:content_type, upload.content_type}
48 case ExAws.request(op) do
50 {:ok, {:file, s3_name}}
53 Logger.error("#{__MODULE__}: #{inspect(error)}")
54 {:error, "S3 Upload failed"}
59 def delete_file(file) do
62 |> ExAws.S3.delete_object(file)
65 {:ok, %{status_code: 204}} -> :ok
66 error -> {:error, inspect(error)}
70 @regex Regex.compile!("[^0-9a-zA-Z!.*/'()_-]")
71 def strict_encode(name) do
72 String.replace(name, @regex, "-")