pleroma/lib/pleroma/uploaders/mdii.ex

38 lines
1.2 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 16:41:47 +01:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-11-17 10:14:42 +01:00
defmodule Pleroma.Uploaders.MDII do
2019-08-10 20:46:26 +02:00
@moduledoc "Represents uploader for https://github.com/hakaba-hitoyo/minimal-digital-image-infrastructure"
2018-11-17 10:14:42 +01:00
alias Pleroma.Config
2019-05-25 06:24:21 +02:00
alias Pleroma.HTTP
2018-11-17 10:14:42 +01:00
2018-11-15 06:19:10 +01:00
@behaviour Pleroma.Uploaders.Uploader
2018-11-23 17:40:45 +01: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 21:11:45 +01:00
def put_file(upload) do
2018-12-09 10:12:48 +01:00
cgi = Config.get([Pleroma.Uploaders.MDII, :cgi])
files = Config.get([Pleroma.Uploaders.MDII, :files])
2018-11-15 06:19:10 +01:00
2018-11-29 21:11:45 +01:00
{:ok, file_data} = File.read(upload.tempfile)
2018-11-15 06:19:10 +01:00
2018-11-29 21:11:45 +01:00
extension = String.split(upload.name, ".") |> List.last()
2018-11-16 12:41:12 +01:00
query = "#{cgi}?#{extension}"
2018-11-15 06:19:10 +01:00
with {:ok, %{status: 200, body: body}} <-
2019-05-25 06:24:21 +02:00
HTTP.post(query, file_data, [], adapter: [pool: :default]) do
2018-11-16 12:22:36 +01:00
remote_file_name = String.split(body) |> List.first()
2018-11-16 12:41:12 +01:00
public_url = "#{files}/#{remote_file_name}.#{extension}"
2018-11-23 17:40:45 +01:00
{:ok, {:url, public_url}}
2018-11-17 12:16:25 +01:00
else
2018-11-29 21:11:45 +01:00
_ -> Pleroma.Uploaders.Local.put_file(upload)
2018-11-15 06:38:45 +01:00
end
2018-11-15 06:19:10 +01:00
end
end