2019-06-27 03:06:58 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# 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
|
2019-08-13 17:20:26 +00:00
|
|
|
alias Pleroma.Repo
|
2019-06-27 03:06:58 +00:00
|
|
|
alias Pleroma.Web.MediaProxy
|
2019-08-13 17:20:26 +00:00
|
|
|
alias Pleroma.Workers.BackgroundWorker
|
2019-06-27 03:06:58 +00:00
|
|
|
|
|
|
|
require Logger
|
|
|
|
|
|
|
|
@hackney_options [
|
|
|
|
pool: :media,
|
|
|
|
recv_timeout: 10_000
|
|
|
|
]
|
|
|
|
|
2019-08-31 16:08:56 +00:00
|
|
|
import Pleroma.Workers.WorkerHelper, only: [worker_args: 1]
|
2019-08-13 17:20:26 +00:00
|
|
|
|
2019-06-27 03:06:58 +00:00
|
|
|
def perform(:prefetch, url) do
|
|
|
|
Logger.info("Prefetching #{inspect(url)}")
|
|
|
|
|
|
|
|
url
|
|
|
|
|> MediaProxy.url()
|
|
|
|
|> HTTP.get([], adapter: @hackney_options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def perform(:preload, %{"object" => %{"attachment" => attachments}} = _message) do
|
|
|
|
Enum.each(attachments, fn
|
|
|
|
%{"url" => url} when is_list(url) ->
|
|
|
|
url
|
|
|
|
|> Enum.each(fn
|
|
|
|
%{"href" => href} ->
|
2019-08-13 17:20:26 +00:00
|
|
|
%{"op" => "media_proxy_prefetch", "url" => href}
|
|
|
|
|> BackgroundWorker.new(worker_args(:background))
|
|
|
|
|> Repo.insert()
|
2019-06-27 03:06:58 +00: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
|
2019-08-13 17:20:26 +00:00
|
|
|
%{"op" => "media_proxy_preload", "message" => message}
|
|
|
|
|> BackgroundWorker.new(worker_args(:background))
|
|
|
|
|> Repo.insert()
|
2019-06-27 03:06:58 +00:00
|
|
|
|
|
|
|
{:ok, message}
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def filter(message), do: {:ok, message}
|
2019-08-13 21:52:54 +00:00
|
|
|
|
|
|
|
@impl true
|
2019-08-13 22:36:24 +00:00
|
|
|
def describe, do: {:ok, %{}}
|
2019-06-27 03:06:58 +00:00
|
|
|
end
|