pleroma/lib/pleroma/uploaders/mdii.ex

25 lines
758 B
Elixir
Raw Normal View History

2018-11-15 05:19:10 +00:00
defmodule Pleroma.Uploaders.Mdii do
@behaviour Pleroma.Uploaders.Uploader
2018-11-15 05:38:45 +00:00
@httpoison Application.get_env(:pleroma, :httpoison)
2018-11-15 05:19:10 +00:00
def put_file(name, uuid, path, content_type, _should_dedupe) do
settings = Application.get_env(:pleroma, Pleroma.Uploaders.Mdii)
2018-11-16 11:41:12 +00:00
cgi = Keyword.fetch!(settings, :cgi)
files = Keyword.fetch!(settings, :files)
2018-11-15 05:19:10 +00:00
{:ok, file_data} = File.read(path)
File.rm!(path)
2018-11-15 06:11:59 +00:00
2018-11-16 11:22:36 +00:00
extension = String.split(name, ".") |> List.last()
2018-11-16 11:41:12 +00:00
query = "#{cgi}?#{extension}"
2018-11-15 05:19:10 +00:00
2018-11-15 06:11:59 +00:00
with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do
2018-11-16 11:22:36 +00:00
remote_file_name = String.split(body) |> List.first()
2018-11-16 11:41:12 +00:00
public_url = "#{files}/#{remote_file_name}.#{extension}"
2018-11-15 05:38:45 +00:00
{:ok, public_url}
end
2018-11-15 05:19:10 +00:00
end
end