1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.User.Search do
6 alias Pleroma.Pagination
12 def search(query_string, opts \\ []) do
13 resolve = Keyword.get(opts, :resolve, false)
14 following = Keyword.get(opts, :following, false)
15 result_limit = Keyword.get(opts, :limit, @limit)
16 offset = Keyword.get(opts, :offset, 0)
18 for_user = Keyword.get(opts, :for_user)
20 query_string = format_query(query_string)
22 maybe_resolve(resolve, for_user, query_string)
26 |> search_query(for_user, following)
27 |> Pagination.fetch_paginated(%{"offset" => offset, "limit" => result_limit}, :offset)
32 defp format_query(query_string) do
33 # Strip the beginning @ off if there is a query
34 query_string = String.trim_leading(query_string, "@")
36 with [name, domain] <- String.split(query_string, "@"),
37 formatted_domain <- String.replace(domain, ~r/[!-\-|@|[-`|{-~|\/|:|\s]+/, "") do
38 name <> "@" <> to_string(:idna.encode(formatted_domain))
44 defp search_query(query_string, for_user, following) do
46 |> base_query(following)
47 |> filter_blocked_user(for_user)
48 |> filter_invisible_users()
49 |> filter_blocked_domains(for_user)
50 |> fts_search(query_string)
51 |> trigram_rank(query_string)
52 |> boost_search_rank(for_user)
54 |> order_by(desc: :search_rank)
55 |> maybe_restrict_local(for_user)
58 defp fts_search(query, query_string) do
59 query_string = to_tsquery(query_string)
66 (to_tsvector('simple', ?) || to_tsvector('simple', ?)) @@ to_tsquery('simple', ?)
75 defp to_tsquery(query_string) do
76 String.trim_trailing(query_string, "@" <> local_domain())
77 |> String.replace(~r/[!-\/|@|[-`|{-~|:-?]+/, " ")
80 |> Enum.map(&(&1 <> ":*"))
84 defp trigram_rank(query, query_string) do
90 "similarity(?, trim(? || ' ' || coalesce(?, '')))",
99 defp base_query(_user, false), do: User
100 defp base_query(user, true), do: User.get_followers_query(user)
102 defp filter_invisible_users(query) do
103 from(q in query, where: q.invisible == false)
106 defp filter_blocked_user(query, %User{} = blocker) do
108 |> join(:left, [u], b in Pleroma.UserRelationship,
110 on: b.relationship_type == ^:block and b.source_id == ^blocker.id and u.id == b.target_id
112 |> where([blocks: b], is_nil(b.target_id))
115 defp filter_blocked_user(query, _), do: query
117 defp filter_blocked_domains(query, %User{domain_blocks: domain_blocks})
118 when length(domain_blocks) > 0 do
119 domains = Enum.join(domain_blocks, ",")
123 where: fragment("substring(ap_id from '.*://([^/]*)') NOT IN (?)", ^domains)
127 defp filter_blocked_domains(query, _), do: query
129 defp maybe_resolve(true, user, query) do
130 case {limit(), user} do
132 {:unauthenticated, %User{}} -> User.get_or_fetch(query)
133 {:unauthenticated, _} -> :noop
134 {false, _} -> User.get_or_fetch(query)
138 defp maybe_resolve(_, _, _), do: :noop
140 defp maybe_restrict_local(q, user) do
141 case {limit(), user} do
142 {:all, _} -> restrict_local(q)
143 {:unauthenticated, %User{}} -> q
144 {:unauthenticated, _} -> restrict_local(q)
149 defp limit, do: Pleroma.Config.get([:instance, :limit_to_local_content], :unauthenticated)
151 defp restrict_local(q), do: where(q, [u], u.local == true)
153 defp local_domain, do: Pleroma.Config.get([Pleroma.Web.Endpoint, :url, :host])
155 defp boost_search_rank(query, %User{} = for_user) do
156 friends_ids = User.get_friends_ids(for_user)
157 followers_ids = User.get_followers_ids(for_user)
159 from(u in subquery(query),
164 CASE WHEN (?) THEN (?) * 1.5
165 WHEN (?) THEN (?) * 1.3
166 WHEN (?) THEN (?) * 1.1
169 u.id in ^friends_ids and u.id in ^followers_ids,
171 u.id in ^friends_ids,
173 u.id in ^followers_ids,
181 defp boost_search_rank(query, _for_user), do: query