Pleroma/lib/pleroma/web/activity_pub/mrf/media_proxy_warming_policy.ex

72 lines
2.0 KiB
Elixir
Raw Normal View History

2019-06-27 05:06:58 +02:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
2019-06-27 05:06:58 +02:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy do
@moduledoc "Preloads any attachments in the MediaProxy cache by prefetching them"
@behaviour Pleroma.Web.ActivityPub.MRF
alias Pleroma.HTTP
alias Pleroma.Web.MediaProxy
alias Pleroma.Workers.BackgroundWorker
2019-06-27 05:06:58 +02:00
require Logger
@adapter_options [
2020-02-11 08:12:57 +01:00
pool: :media
2019-06-27 05:06:58 +02:00
]
2020-09-05 19:23:18 +02:00
defp adapter_options do
if Application.get_env(:tesla, :adapter) == Tesla.Adapter.Hackney do
Keyword.put(@adapter_options, :recv_timeout, 10_000)
else
@adapter_options
end
end
2019-06-27 05:06:58 +02:00
def perform(:prefetch, url) do
# Fetching only proxiable resources
if MediaProxy.enabled?() and MediaProxy.url_proxiable?(url) do
# If preview proxy is enabled, it'll also hit media proxy (so we're caching both requests)
prefetch_url = MediaProxy.preview_url(url)
2019-06-27 05:06:58 +02:00
Logger.debug("Prefetching #{inspect(url)} as #{inspect(prefetch_url)}")
2020-02-11 08:12:57 +01:00
HTTP.get(prefetch_url, [], adapter: adapter_options())
end
end
2019-06-27 05:06:58 +02:00
def perform(:preload, %{"object" => %{"attachment" => attachments}} = _message) do
Enum.each(attachments, fn
%{"url" => url} when is_list(url) ->
url
|> Enum.each(fn
%{"href" => href} ->
BackgroundWorker.enqueue("media_proxy_prefetch", %{"url" => href})
2019-06-27 05:06:58 +02:00
x ->
Logger.debug("Unhandled attachment URL object #{inspect(x)}")
end)
x ->
Logger.debug("Unhandled attachment #{inspect(x)}")
end)
end
@impl true
def filter(
%{"type" => "Create", "object" => %{"attachment" => attachments} = _object} = message
)
when is_list(attachments) and length(attachments) > 0 do
BackgroundWorker.enqueue("media_proxy_preload", %{"message" => message})
2019-06-27 05:06:58 +02:00
{:ok, message}
end
@impl true
def filter(message), do: {:ok, message}
@impl true
2019-08-14 00:36:24 +02:00
def describe, do: {:ok, %{}}
2019-06-27 05:06:58 +02:00
end