pleroma/lib/pleroma/uploaders/mdii.ex

24 lines
768 B
Elixir
Raw Normal View History

2018-11-15 00:19:10 -05:00
defmodule Pleroma.Uploaders.Mdii do
@behaviour Pleroma.Uploaders.Uploader
2018-11-15 00:38:45 -05:00
@httpoison Application.get_env(:pleroma, :httpoison)
2018-11-15 00:19:10 -05:00
def put_file(name, uuid, path, content_type, _should_dedupe) do
settings = Application.get_env(:pleroma, Pleroma.Uploaders.Mdii)
host_name = Keyword.fetch!(settings, :host_name)
{:ok, file_data} = File.read(path)
File.rm!(path)
2018-11-15 01:11:59 -05:00
2018-11-15 00:38:45 -05:00
extension = Regex.replace(~r/^image\//, content_type, "")
2018-11-15 02:08:55 -05:00
query = "https://#{host_name}/mdii-post.cgi?#{extension}"
2018-11-15 00:19:10 -05:00
2018-11-15 01:11:59 -05:00
with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do
2018-11-15 02:08:55 -05:00
remote_file_name = List.first(String.split(body))
2018-11-15 00:38:45 -05:00
public_url = "https://#{host_name}/#{remote_file_name}.#{extension}"
{:ok, public_url}
end
2018-11-15 00:19:10 -05:00
end
end