pleroma/lib/pleroma/search/search_backend.ex

25 lines
870 B
Elixir
Raw Normal View History

2021-12-20 20:38:50 +01:00
defmodule Pleroma.Search.SearchBackend do
2022-08-26 23:19:08 +02:00
@doc """
Search statuses with a query, restricting to only those the user should have access to.
"""
@callback search(user :: Pleroma.User.t(), query :: String.t(), options :: [any()]) :: [
Pleroma.Activity.t()
]
2021-12-20 20:38:50 +01:00
@doc """
Add the object associated with the activity to the search index.
The whole activity is passed, to allow filtering on things such as scope.
"""
2022-08-26 23:19:08 +02:00
@callback add_to_index(activity :: Pleroma.Activity.t()) :: :ok | {:error, any()}
2021-12-20 20:38:50 +01:00
@doc """
Remove the object from the index.
Just the object, as opposed to the whole activity, is passed, since the object
is what contains the actual content and there is no need for filtering when removing
2021-12-20 20:38:50 +01:00
from index.
"""
2022-08-26 23:19:08 +02:00
@callback remove_from_index(object :: Pleroma.Object.t()) :: {:ok, any()} | {:error, any()}
2021-12-20 20:38:50 +01:00
end