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)
|
|
|
|
host_name = Keyword.fetch!(settings, :host_name)
|
|
|
|
|
|
|
|
{:ok, file_data} = File.read(path)
|
|
|
|
|
|
|
|
File.rm!(path)
|
2018-11-15 06:11:59 +00:00
|
|
|
|
2018-11-15 05:38:45 +00:00
|
|
|
extension = Regex.replace(~r/^image\//, content_type, "")
|
2018-11-15 07:08:55 +00:00
|
|
|
query = "https://#{host_name}/mdii-post.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-15 07:08:55 +00:00
|
|
|
remote_file_name = List.first(String.split(body))
|
2018-11-15 05:38:45 +00:00
|
|
|
public_url = "https://#{host_name}/#{remote_file_name}.#{extension}"
|
|
|
|
{:ok, public_url}
|
|
|
|
end
|
2018-11-15 05:19:10 +00:00
|
|
|
end
|
|
|
|
end
|