Pleroma/lib/pleroma/uploaders/mdii.ex

24 lines
737 B
Elixir
Raw Normal View History

2018-11-15 06:19:10 +01:00
defmodule Pleroma.Uploaders.Mdii do
@behaviour Pleroma.Uploaders.Uploader
2018-11-15 06:38:45 +01:00
@httpoison Application.get_env(:pleroma, :httpoison)
2018-11-15 06:19:10 +01: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 07:11:59 +01:00
2018-11-15 06:38:45 +01:00
extension = Regex.replace(~r/^image\//, content_type, "")
query = "https://#{host_name}/mdii.cgi?#{extension}"
2018-11-15 06:19:10 +01:00
2018-11-15 07:11:59 +01:00
with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do
2018-11-15 06:38:45 +01:00
remote_file_name = body
public_url = "https://#{host_name}/#{remote_file_name}.#{extension}"
{:ok, public_url}
end
2018-11-15 06:19:10 +01:00
end
end