mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-04 23:53:11 +00:00
25 lines
594 B
Elixir
25 lines
594 B
Elixir
|
defmodule Pleroma.Uploaders.S3 do
|
||
|
|
||
|
def put_file(name, uuid, path, content_type) do
|
||
|
|
||
|
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}"
|
||
|
|
||
|
{:ok, result} =
|
||
|
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
|