pleroma/lib/pleroma/uploaders/mdii.ex

25 lines
758 B
Elixir

defmodule Pleroma.Uploaders.Mdii do
@behaviour Pleroma.Uploaders.Uploader
@httpoison Application.get_env(:pleroma, :httpoison)
def put_file(name, uuid, path, content_type, _should_dedupe) do
settings = Application.get_env(:pleroma, Pleroma.Uploaders.Mdii)
cgi = Keyword.fetch!(settings, :cgi)
files = Keyword.fetch!(settings, :files)
{:ok, file_data} = File.read(path)
File.rm!(path)
extension = String.split(name, ".") |> List.last()
query = "#{cgi}?#{extension}"
with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do
remote_file_name = String.split(body) |> List.first()
public_url = "#{files}/#{remote_file_name}.#{extension}"
{:ok, public_url}
end
end
end