pleroma/lib/pleroma/uploaders/mdii.ex

36 lines
1.1 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 09:41:47 -06:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
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
2018-11-29 14:11:45 -06:00
def put_file(upload) do
2018-12-09 03:12:48 -06:00
cgi = Config.get([Pleroma.Uploaders.MDII, :cgi])
files = Config.get([Pleroma.Uploaders.MDII, :files])
2018-11-14 23:19:10 -06:00
2018-11-29 14:11:45 -06:00
{:ok, file_data} = File.read(upload.tempfile)
2018-11-14 23:19:10 -06:00
2018-11-29 14:11:45 -06:00
extension = String.split(upload.name, ".") |> List.last()
2018-11-16 05:41:12 -06:00
query = "#{cgi}?#{extension}"
2018-11-14 23:19:10 -06:00
2018-12-02 08:08:36 -06:00
with {:ok, %{status: 200, body: body}} <- @httpoison.post(query, file_data) do
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-29 14:11:45 -06:00
_ -> Pleroma.Uploaders.Local.put_file(upload)
2018-11-14 23:38:45 -06:00
end
2018-11-14 23:19:10 -06:00
end
end