1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy do
6 @moduledoc "Preloads any attachments in the MediaProxy cache by prefetching them"
7 @behaviour Pleroma.Web.ActivityPub.MRF
10 alias Pleroma.Web.MediaProxy
11 alias Pleroma.Workers.BackgroundWorker
19 def perform(:prefetch, url) do
20 Logger.debug("Prefetching #{inspect(url)}")
23 if Application.get_env(:tesla, :adapter) == Tesla.Adapter.Hackney do
24 Keyword.put(@options, :recv_timeout, 10_000)
31 |> HTTP.get([], adapter: opts)
34 def perform(:preload, %{"object" => %{"attachment" => attachments}} = _message) do
35 Enum.each(attachments, fn
36 %{"url" => url} when is_list(url) ->
40 BackgroundWorker.enqueue("media_proxy_prefetch", %{"url" => href})
43 Logger.debug("Unhandled attachment URL object #{inspect(x)}")
47 Logger.debug("Unhandled attachment #{inspect(x)}")
53 %{"type" => "Create", "object" => %{"attachment" => attachments} = _object} = message
55 when is_list(attachments) and length(attachments) > 0 do
56 BackgroundWorker.enqueue("media_proxy_preload", %{"message" => message})
62 def filter(message), do: {:ok, message}
65 def describe, do: {:ok, %{}}