akkoma/lib/pleroma/web/media_proxy/invalidation/http.ex

41 lines
1.1 KiB
Elixir
Raw Normal View History

2020-05-18 06:22:26 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# 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}
{:error, error} = error ->
error
_ ->
{:ok, "success"}
end
end
2020-05-16 12:16:33 +00:00
end