pleroma/lib/pleroma/uploaders/mdii.ex

33 lines
1.0 KiB
Elixir
Raw Normal View History

2018-11-17 03:14:42 -06:00
defmodule Pleroma.Uploaders.MDII do
alias Pleroma.Config
2018-11-14 23:19:10 -06:00
@behaviour Pleroma.Uploaders.Uploader
2018-11-14 23:38:45 -06:00
@httpoison Application.get_env(:pleroma, :httpoison)
2018-11-23 10:40:45 -06:00
# MDII-hosted images are never passed through the MediaPlug; only local media.
# Delegate to Pleroma.Uploaders.Local
def get_file(file) do
Pleroma.Uploaders.Local.get_file(file)
end
def put_file(name, uuid, path, content_type, opts) do
2018-11-17 03:14:42 -06:00
cgi = Pleroma.Config.get([Pleroma.Uploaders.MDII, :cgi])
files = Pleroma.Config.get([Pleroma.Uploaders.MDII, :files])
2018-11-14 23:19:10 -06:00
{:ok, file_data} = File.read(path)
2018-11-16 05:22:36 -06:00
extension = String.split(name, ".") |> List.last()
2018-11-16 05:41:12 -06:00
query = "#{cgi}?#{extension}"
2018-11-14 23:19:10 -06:00
2018-11-15 00:11:59 -06:00
with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do
2018-11-17 05:16:25 -06:00
File.rm!(path)
2018-11-16 05:22:36 -06:00
remote_file_name = String.split(body) |> List.first()
2018-11-16 05:41:12 -06:00
public_url = "#{files}/#{remote_file_name}.#{extension}"
2018-11-23 10:40:45 -06:00
{:ok, {:url, public_url}}
2018-11-17 05:16:25 -06:00
else
2018-11-23 10:40:45 -06:00
_ -> Pleroma.Uploaders.Local.put_file(name, uuid, path, content_type, opts)
2018-11-14 23:38:45 -06:00
end
2018-11-14 23:19:10 -06:00
end
end