2020-01-26 21:11:16 +01:00
|
|
|
defmodule Mobilizon.GraphQL.API.Search do
|
2019-02-22 14:18:52 +01:00
|
|
|
@moduledoc """
|
2019-09-09 00:52:49 +02:00
|
|
|
API for search.
|
2019-02-22 14:18:52 +01:00
|
|
|
"""
|
2019-09-09 00:52:49 +02:00
|
|
|
|
2019-02-21 18:11:49 +01:00
|
|
|
alias Mobilizon.Actors
|
2020-10-02 16:18:11 +02:00
|
|
|
alias Mobilizon.Actors.{Actor, ActorType}
|
2019-02-21 18:11:49 +01:00
|
|
|
alias Mobilizon.Events
|
2020-10-02 16:18:11 +02:00
|
|
|
alias Mobilizon.Events.Event
|
2019-09-09 00:52:49 +02:00
|
|
|
alias Mobilizon.Storage.Page
|
2019-02-21 18:11:49 +01:00
|
|
|
|
2020-01-22 02:14:42 +01:00
|
|
|
alias Mobilizon.Federation.ActivityPub
|
2021-04-22 12:17:56 +02:00
|
|
|
alias Mobilizon.Federation.ActivityPub.Actor, as: ActivityPubActor
|
2021-11-08 18:46:04 +01:00
|
|
|
import Mobilizon.GraphQL.Resolvers.Event.Utils
|
2020-01-22 02:14:42 +01:00
|
|
|
|
2019-02-21 18:11:49 +01:00
|
|
|
require Logger
|
|
|
|
|
|
|
|
@doc """
|
2019-09-09 00:52:49 +02:00
|
|
|
Searches actors.
|
2019-02-21 18:11:49 +01:00
|
|
|
"""
|
2020-08-05 16:44:08 +02:00
|
|
|
@spec search_actors(map(), integer | nil, integer | nil, ActorType.t()) ::
|
2019-09-09 00:52:49 +02:00
|
|
|
{:ok, Page.t()} | {:error, String.t()}
|
2020-08-05 16:44:08 +02:00
|
|
|
def search_actors(%{term: term} = args, page \\ 1, limit \\ 10, result_type) do
|
|
|
|
term = String.trim(term)
|
2019-02-21 18:11:49 +01:00
|
|
|
|
2019-04-12 15:04:32 +02:00
|
|
|
cond do
|
2019-09-09 00:52:49 +02:00
|
|
|
# Some URLs could be domain.tld/@username, so keep this condition above
|
|
|
|
# the `is_handle` function
|
2020-08-05 16:44:08 +02:00
|
|
|
is_url(term) ->
|
2019-09-09 00:52:49 +02:00
|
|
|
# skip, if it's not an actor
|
2020-08-05 16:44:08 +02:00
|
|
|
case process_from_url(term) do
|
2020-10-02 16:18:11 +02:00
|
|
|
%Page{total: _total, elements: [%Actor{} = _actor]} = page ->
|
2019-09-09 00:52:49 +02:00
|
|
|
{:ok, page}
|
2019-07-23 18:06:22 +02:00
|
|
|
|
2019-04-12 15:04:32 +02:00
|
|
|
_ ->
|
|
|
|
{:ok, %{total: 0, elements: []}}
|
|
|
|
end
|
|
|
|
|
2020-08-05 16:44:08 +02:00
|
|
|
is_handle(term) ->
|
|
|
|
{:ok, process_from_username(term)}
|
2019-04-12 15:04:32 +02:00
|
|
|
|
|
|
|
true ->
|
2020-08-05 16:44:08 +02:00
|
|
|
page =
|
2021-11-06 10:09:54 +01:00
|
|
|
Actors.search_actors(
|
2020-12-17 15:25:58 +01:00
|
|
|
term,
|
|
|
|
[
|
2021-11-06 10:09:54 +01:00
|
|
|
actor_type: result_type,
|
2020-12-17 15:25:58 +01:00
|
|
|
radius: Map.get(args, :radius),
|
|
|
|
location: Map.get(args, :location),
|
2021-11-06 10:09:54 +01:00
|
|
|
minimum_visibility: Map.get(args, :minimum_visibility, :public),
|
|
|
|
current_actor_id: Map.get(args, :current_actor_id),
|
|
|
|
exclude_my_groups: Map.get(args, :exclude_my_groups, false)
|
2020-12-17 15:25:58 +01:00
|
|
|
],
|
2020-08-05 16:44:08 +02:00
|
|
|
page,
|
|
|
|
limit
|
|
|
|
)
|
2019-09-09 00:52:49 +02:00
|
|
|
|
|
|
|
{:ok, page}
|
2019-04-12 15:04:32 +02:00
|
|
|
end
|
2019-02-21 18:11:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
2019-04-12 15:04:32 +02:00
|
|
|
Search events
|
2019-02-21 18:11:49 +01:00
|
|
|
"""
|
2021-09-24 16:46:42 +02:00
|
|
|
@spec search_events(map(), integer | nil, integer | nil) ::
|
|
|
|
{:ok, Page.t()}
|
2020-07-31 17:52:26 +02:00
|
|
|
def search_events(%{term: term} = args, page \\ 1, limit \\ 10) do
|
|
|
|
term = String.trim(term)
|
|
|
|
|
|
|
|
if is_url(term) do
|
2021-11-08 18:46:04 +01:00
|
|
|
# skip, if it's not an event
|
2020-07-31 17:52:26 +02:00
|
|
|
case process_from_url(term) do
|
2021-11-08 18:46:04 +01:00
|
|
|
%Page{total: _total, elements: [%Event{} = event]} = page ->
|
|
|
|
if Map.get(args, :current_user) != nil || check_event_access?(event) do
|
|
|
|
{:ok, page}
|
|
|
|
else
|
|
|
|
{:ok, %{total: 0, elements: []}}
|
|
|
|
end
|
2020-07-31 17:52:26 +02:00
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:ok, %{total: 0, elements: []}}
|
|
|
|
end
|
|
|
|
else
|
|
|
|
{:ok, Events.build_events_for_search(Map.put(args, :term, term), page, limit)}
|
2019-02-21 18:11:49 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-24 16:46:42 +02:00
|
|
|
@spec interact(String.t()) :: {:ok, struct()} | {:error, :not_found}
|
2020-11-06 11:34:32 +01:00
|
|
|
def interact(uri) do
|
|
|
|
case ActivityPub.fetch_object_from_url(uri) do
|
|
|
|
{:ok, object} ->
|
|
|
|
{:ok, object}
|
|
|
|
|
|
|
|
{:error, _err} ->
|
|
|
|
Logger.debug(fn -> "Unable to find or make object from URI '#{uri}'" end)
|
|
|
|
|
|
|
|
{:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-21 18:11:49 +01:00
|
|
|
# If the search string is an username
|
2019-09-09 00:52:49 +02:00
|
|
|
@spec process_from_username(String.t()) :: Page.t()
|
2019-02-21 18:11:49 +01:00
|
|
|
defp process_from_username(search) do
|
2021-04-22 12:17:56 +02:00
|
|
|
case ActivityPubActor.find_or_make_actor_from_nickname(search) do
|
2021-08-23 10:34:33 +02:00
|
|
|
{:ok, %Actor{type: :Group} = actor} ->
|
2019-09-09 00:52:49 +02:00
|
|
|
%Page{total: 1, elements: [actor]}
|
2019-07-23 18:06:22 +02:00
|
|
|
|
2021-08-23 10:34:33 +02:00
|
|
|
# Don't return anything else than groups
|
|
|
|
{:ok, %Actor{}} ->
|
|
|
|
%Page{total: 0, elements: []}
|
|
|
|
|
2019-02-21 18:11:49 +01:00
|
|
|
{:error, _err} ->
|
2019-02-22 14:18:52 +01:00
|
|
|
Logger.debug(fn -> "Unable to find or make actor '#{search}'" end)
|
2019-09-09 00:52:49 +02:00
|
|
|
|
|
|
|
%Page{total: 0, elements: []}
|
2019-02-21 18:11:49 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# If the search string is an URL
|
2019-09-09 00:52:49 +02:00
|
|
|
@spec process_from_url(String.t()) :: Page.t()
|
2019-02-21 18:11:49 +01:00
|
|
|
defp process_from_url(search) do
|
2019-07-23 18:06:22 +02:00
|
|
|
case ActivityPub.fetch_object_from_url(search) do
|
|
|
|
{:ok, object} ->
|
2019-09-09 00:52:49 +02:00
|
|
|
%Page{total: 1, elements: [object]}
|
2019-07-23 18:06:22 +02:00
|
|
|
|
2019-02-21 18:11:49 +01:00
|
|
|
{:error, _err} ->
|
2019-02-22 14:18:52 +01:00
|
|
|
Logger.debug(fn -> "Unable to find or make object from URL '#{search}'" end)
|
2019-09-09 00:52:49 +02:00
|
|
|
|
|
|
|
%Page{total: 0, elements: []}
|
2019-02-21 18:11:49 +01:00
|
|
|
end
|
|
|
|
end
|
2019-04-12 15:04:32 +02:00
|
|
|
|
2019-09-09 00:52:49 +02:00
|
|
|
@spec is_url(String.t()) :: boolean
|
|
|
|
defp is_url(search), do: String.starts_with?(search, ["http://", "https://"])
|
2019-04-12 15:04:32 +02:00
|
|
|
|
2019-09-09 00:52:49 +02:00
|
|
|
@spec is_handle(String.t()) :: boolean
|
|
|
|
defp is_handle(search), do: String.match?(search, ~r/@/)
|
2019-02-21 18:11:49 +01:00
|
|
|
end
|