2018-08-28 01:20:54 +00:00
|
|
|
defmodule Pleroma.Uploaders.S3 do
|
2018-08-28 12:57:41 +00:00
|
|
|
@behaviour Pleroma.Uploaders.Uploader
|
2018-08-28 01:20:54 +00:00
|
|
|
|
2018-08-28 01:45:53 +00:00
|
|
|
def put_file(name, uuid, path, content_type, _should_dedupe) do
|
2018-08-28 01:20:54 +00:00
|
|
|
settings = Application.get_env(:pleroma, Pleroma.Uploaders.S3)
|
|
|
|
bucket = Keyword.fetch!(settings, :bucket)
|
|
|
|
public_endpoint = Keyword.fetch!(settings, :public_endpoint)
|
|
|
|
|
|
|
|
{:ok, file_data} = File.read(path)
|
|
|
|
|
|
|
|
File.rm!(path)
|
|
|
|
|
|
|
|
s3_name = "#{uuid}/#{name}"
|
|
|
|
|
2018-08-28 01:45:53 +00:00
|
|
|
{:ok, _} =
|
2018-08-28 01:20:54 +00:00
|
|
|
ExAws.S3.put_object(bucket, s3_name, file_data, [
|
|
|
|
{:acl, :public_read},
|
|
|
|
{:content_type, content_type}
|
|
|
|
])
|
|
|
|
|> ExAws.request()
|
|
|
|
|
|
|
|
"#{public_endpoint}/#{bucket}/#{s3_name}"
|
|
|
|
end
|
|
|
|
end
|