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 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
2019-08-10 13:46:26 -05:00
@moduledoc "Represents uploader for https://github.com/hakaba-hitoyo/minimal-digital-image-infrastructure"
2018-11-17 03:14:42 -06:00
alias Pleroma.Config
2019-05-24 23:24:21 -05:00
alias Pleroma.HTTP
2018-11-17 03:14:42 -06:00
2018-11-14 23:19:10 -06:00
@behaviour Pleroma.Uploaders.Uploader
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
with {:ok, %{status: 200, body: body}} <-
2019-05-24 23:24:21 -05:00
HTTP.post(query, file_data, [], adapter: [pool: :default]) 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