2020-05-18 06:22:26 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-05-18 06:22:26 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-05-16 12:16:33 +00:00
|
|
|
defmodule Pleroma.Web.MediaProxy.Invalidation.Http do
|
2020-05-18 06:22:26 +00:00
|
|
|
@moduledoc false
|
2020-05-16 12:16:33 +00:00
|
|
|
@behaviour Pleroma.Web.MediaProxy.Invalidation
|
|
|
|
|
2020-05-18 06:22:26 +00:00
|
|
|
require Logger
|
|
|
|
|
2020-05-16 12:16:33 +00:00
|
|
|
@impl Pleroma.Web.MediaProxy.Invalidation
|
2020-06-17 17:54:02 +00:00
|
|
|
def purge(urls, opts \\ []) do
|
2020-06-14 18:02:57 +00:00
|
|
|
method = Keyword.get(opts, :method, :purge)
|
|
|
|
headers = Keyword.get(opts, :headers, [])
|
|
|
|
options = Keyword.get(opts, :options, [])
|
2020-05-16 12:16:33 +00:00
|
|
|
|
2020-05-18 06:22:26 +00:00
|
|
|
Logger.debug("Running cache purge: #{inspect(urls)}")
|
|
|
|
|
2020-05-16 12:16:33 +00:00
|
|
|
Enum.each(urls, fn url ->
|
2020-05-18 06:22:26 +00:00
|
|
|
with {:error, error} <- do_purge(method, url, headers, options) do
|
|
|
|
Logger.error("Error while cache purge: url - #{url}, error: #{inspect(error)}")
|
|
|
|
end
|
2020-05-16 12:16:33 +00:00
|
|
|
end)
|
|
|
|
|
2020-06-14 18:02:57 +00:00
|
|
|
{:ok, urls}
|
2020-05-16 12:16:33 +00:00
|
|
|
end
|
2020-05-18 06:22:26 +00:00
|
|
|
|
|
|
|
defp do_purge(method, url, headers, options) do
|
|
|
|
case Pleroma.HTTP.request(method, url, "", headers, options) do
|
|
|
|
{:ok, %{status: status} = env} when 400 <= status and status < 500 ->
|
|
|
|
{:error, env}
|
|
|
|
|
2020-10-07 16:44:52 +00:00
|
|
|
{:error, _} = error ->
|
2020-05-18 06:22:26 +00:00
|
|
|
error
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:ok, "success"}
|
|
|
|
end
|
|
|
|
end
|
2020-05-16 12:16:33 +00:00
|
|
|
end
|