mobilizon.chapril.org-mobil.../lib/web/cache/cache.ex

25 lines
737 B
Elixir
Raw Normal View History

2020-01-26 21:36:50 +01:00
defmodule Mobilizon.Web.Cache do
2019-09-17 23:39:26 +02:00
@moduledoc """
Facade module which provides access to all cached data.
"""
alias Mobilizon.Actors.Actor
2020-01-26 21:36:50 +01:00
alias Mobilizon.Web.Cache.ActivityPub
2019-09-17 23:39:26 +02:00
@caches [:activity_pub, :feed, :ics]
@doc """
Clears all caches for an actor.
"""
@spec clear_cache(Actor.t()) :: {:ok, true}
def clear_cache(%Actor{preferred_username: preferred_username, domain: nil}) do
Enum.each(@caches, &Cachex.del(&1, "actor_" <> preferred_username))
end
defdelegate get_local_actor_by_name(name), to: ActivityPub
defdelegate get_public_event_by_uuid_with_preload(uuid), to: ActivityPub
defdelegate get_comment_by_uuid_with_preload(uuid), to: ActivityPub
defdelegate get_relay, to: ActivityPub
end