4aff4efa8d
* federation (ap, salmon) * media (rich media, media proxy) * upload (uploader proxy) Each "part" will stop fighting others ones -- a huge federation outbound could before make the media proxy fail to checkout a connection in time. splitted media and uploaded media for the good reason than an upload pool will have all connections to the same host (the uploader upstream). it also has a longer default retention period for connections.
36 lines
1.1 KiB
Elixir
36 lines
1.1 KiB
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Uploaders.MDII do
|
|
alias Pleroma.Config
|
|
|
|
@behaviour Pleroma.Uploaders.Uploader
|
|
|
|
@httpoison Application.get_env(:pleroma, :httpoison)
|
|
|
|
# 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(upload) do
|
|
cgi = Config.get([Pleroma.Uploaders.MDII, :cgi])
|
|
files = Config.get([Pleroma.Uploaders.MDII, :files])
|
|
|
|
{:ok, file_data} = File.read(upload.tempfile)
|
|
|
|
extension = String.split(upload.name, ".") |> List.last()
|
|
query = "#{cgi}?#{extension}"
|
|
|
|
with {:ok, %{status: 200, body: body}} <-
|
|
@httpoison.post(query, file_data, adapter: [pool: :default]) do
|
|
remote_file_name = String.split(body) |> List.first()
|
|
public_url = "#{files}/#{remote_file_name}.#{extension}"
|
|
{:ok, {:url, public_url}}
|
|
else
|
|
_ -> Pleroma.Uploaders.Local.put_file(upload)
|
|
end
|
|
end
|
|
end
|