2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-12 23:49:20 -07:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-08-27 19:20:54 -06:00
|
|
|
defmodule Pleroma.Uploaders.S3 do
|
2018-08-28 06:57:41 -06:00
|
|
|
@behaviour Pleroma.Uploaders.Uploader
|
2018-11-23 09:40:45 -07:00
|
|
|
require Logger
|
|
|
|
|
2019-08-10 05:27:59 -06:00
|
|
|
alias Pleroma.Config
|
|
|
|
|
2019-03-04 21:37:33 -07:00
|
|
|
# The file name is re-encoded with S3's constraints here to comply with previous
|
|
|
|
# links with less strict filenames
|
2020-01-12 11:48:58 -07:00
|
|
|
@impl true
|
2018-11-23 09:40:45 -07:00
|
|
|
def get_file(file) do
|
|
|
|
{:ok,
|
|
|
|
{:url,
|
|
|
|
Path.join([
|
2021-01-08 09:49:12 -07:00
|
|
|
Pleroma.Upload.base_url(),
|
2018-11-23 09:40:45 -07:00
|
|
|
strict_encode(URI.decode(file))
|
|
|
|
])}}
|
|
|
|
end
|
2018-08-27 19:20:54 -06:00
|
|
|
|
2020-01-12 11:48:58 -07:00
|
|
|
@impl true
|
2019-02-06 12:19:39 -07:00
|
|
|
def put_file(%Pleroma.Upload{} = upload) do
|
2019-08-10 05:27:59 -06:00
|
|
|
config = Config.get([__MODULE__])
|
2018-11-23 09:40:45 -07:00
|
|
|
bucket = Keyword.get(config, :bucket)
|
2019-09-23 14:38:53 -06:00
|
|
|
streaming = Keyword.get(config, :streaming_enabled)
|
2018-08-27 19:20:54 -06:00
|
|
|
|
2018-11-29 13:11:45 -07:00
|
|
|
s3_name = strict_encode(upload.path)
|
2018-08-27 19:20:54 -06:00
|
|
|
|
2018-11-23 09:40:45 -07:00
|
|
|
op =
|
2019-09-23 14:38:53 -06:00
|
|
|
if streaming do
|
2022-07-04 10:30:38 -06:00
|
|
|
upload.tempfile
|
|
|
|
|> ExAws.S3.Upload.stream_file()
|
|
|
|
|> ExAws.S3.upload(bucket, s3_name, [
|
|
|
|
{:acl, :public_read},
|
|
|
|
{:content_type, upload.content_type}
|
|
|
|
])
|
2019-09-23 14:38:53 -06:00
|
|
|
else
|
|
|
|
{:ok, file_data} = File.read(upload.tempfile)
|
|
|
|
|
|
|
|
ExAws.S3.put_object(bucket, s3_name, file_data, [
|
|
|
|
{:acl, :public_read},
|
|
|
|
{:content_type, upload.content_type}
|
|
|
|
])
|
|
|
|
end
|
2018-10-29 12:00:59 -06:00
|
|
|
|
2018-11-23 09:40:45 -07:00
|
|
|
case ExAws.request(op) do
|
|
|
|
{:ok, _} ->
|
|
|
|
{:ok, {:file, s3_name}}
|
2018-10-29 12:00:59 -06:00
|
|
|
|
2018-11-23 09:40:45 -07:00
|
|
|
error ->
|
|
|
|
Logger.error("#{__MODULE__}: #{inspect(error)}")
|
|
|
|
{:error, "S3 Upload failed"}
|
|
|
|
end
|
2018-08-27 19:20:54 -06:00
|
|
|
end
|
2018-09-24 07:38:32 -06:00
|
|
|
|
2020-01-12 11:48:58 -07:00
|
|
|
@impl true
|
|
|
|
def delete_file(file) do
|
|
|
|
[__MODULE__, :bucket]
|
|
|
|
|> Config.get()
|
|
|
|
|> ExAws.S3.delete_object(file)
|
|
|
|
|> ExAws.request()
|
|
|
|
|> case do
|
|
|
|
{:ok, %{status_code: 204}} -> :ok
|
|
|
|
error -> {:error, inspect(error)}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-23 09:40:45 -07:00
|
|
|
@regex Regex.compile!("[^0-9a-zA-Z!.*/'()_-]")
|
|
|
|
def strict_encode(name) do
|
|
|
|
String.replace(name, @regex, "-")
|
2018-09-24 07:38:32 -06:00
|
|
|
end
|
2018-08-27 19:20:54 -06:00
|
|
|
end
|