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 10:41:47 -05:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-11-17 04:14:42 -05:00
defmodule Pleroma.Uploaders.MDII do
alias Pleroma.Config
2018-11-15 00:19:10 -05:00
@behaviour Pleroma.Uploaders.Uploader
2018-11-15 00:38:45 -05:00
@httpoison Application.get_env(:pleroma, :httpoison)
2018-11-23 11:40:45 -05: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 15:11:45 -05:00
def put_file(upload) do
2018-12-09 04:12:48 -05:00
cgi = Config.get([Pleroma.Uploaders.MDII, :cgi])
files = Config.get([Pleroma.Uploaders.MDII, :files])
2018-11-15 00:19:10 -05:00
2018-11-29 15:11:45 -05:00
{:ok, file_data} = File.read(upload.tempfile)
2018-11-15 00:19:10 -05:00
2018-11-29 15:11:45 -05:00
extension = String.split(upload.name, ".") |> List.last()
2018-11-16 06:41:12 -05:00
query = "#{cgi}?#{extension}"
2018-11-15 00:19:10 -05:00
2018-12-02 09:08:36 -05:00
with {:ok, %{status: 200, body: body}} <- @httpoison.post(query, file_data) do
2018-11-16 06:22:36 -05:00
remote_file_name = String.split(body) |> List.first()
2018-11-16 06:41:12 -05:00
public_url = "#{files}/#{remote_file_name}.#{extension}"
2018-11-23 11:40:45 -05:00
{:ok, {:url, public_url}}
2018-11-17 06:16:25 -05:00
else
2018-11-29 15:11:45 -05:00
_ -> Pleroma.Uploaders.Local.put_file(upload)
2018-11-15 00:38:45 -05:00
end
2018-11-15 00:19:10 -05:00
end
end