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.Web.MastodonAPI.SearchController do
6 use Pleroma.Web, :controller
9 alias Pleroma.Plugs.OAuthScopesPlug
10 alias Pleroma.Plugs.RateLimiter
14 alias Pleroma.Web.ControllerHelper
15 alias Pleroma.Web.MastodonAPI.AccountView
16 alias Pleroma.Web.MastodonAPI.StatusView
20 # Note: Mastodon doesn't allow unauthenticated access (requires read:accounts / read:search)
21 plug(OAuthScopesPlug, %{scopes: ["read:search"], fallback: :proceed_unauthenticated})
23 plug(Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug)
25 plug(RateLimiter, :search when action in [:search, :search2, :account_search])
27 def account_search(%{assigns: %{user: user}} = conn, %{"q" => query} = params) do
28 accounts = User.search(query, search_options(params, user))
31 |> put_view(AccountView)
32 |> render("index.json", users: accounts, for: user, as: :user)
35 def search2(conn, params), do: do_search(:v2, conn, params)
36 def search(conn, params), do: do_search(:v1, conn, params)
38 defp do_search(version, %{assigns: %{user: user}} = conn, %{"q" => query} = params) do
39 options = search_options(params, user)
40 timeout = Keyword.get(Repo.config(), :timeout, 15_000)
41 default_values = %{"statuses" => [], "accounts" => [], "hashtags" => []}
45 |> Enum.map(fn {resource, default_value} ->
46 if params["type"] == nil or params["type"] == resource do
47 {resource, fn -> resource_search(version, resource, query, options) end}
49 {resource, fn -> default_value end}
52 |> Task.async_stream(fn {resource, f} -> {resource, with_fallback(f)} end,
54 on_timeout: :kill_task
56 |> Enum.reduce(default_values, fn
57 {:ok, {resource, result}}, acc ->
58 Map.put(acc, resource, result)
67 defp search_options(params, user) do
69 resolve: params["resolve"] == "true",
70 following: params["following"] == "true",
71 limit: ControllerHelper.fetch_integer_param(params, "limit"),
72 offset: ControllerHelper.fetch_integer_param(params, "offset"),
74 author: get_author(params),
77 |> Enum.filter(&elem(&1, 1))
80 defp resource_search(_, "accounts", query, options) do
81 accounts = with_fallback(fn -> User.search(query, options) end)
82 AccountView.render("index.json", users: accounts, for: options[:for_user], as: :user)
85 defp resource_search(_, "statuses", query, options) do
86 statuses = with_fallback(fn -> Activity.search(options[:for_user], query, options) end)
87 StatusView.render("index.json", activities: statuses, for: options[:for_user], as: :activity)
90 defp resource_search(:v2, "hashtags", query, _options) do
91 tags_path = Web.base_url() <> "/tag/"
96 tag = String.trim_leading(tag, "#")
97 %{name: tag, url: tags_path <> tag}
101 defp resource_search(:v1, "hashtags", query, _options) do
104 |> Enum.map(fn tag -> String.trim_leading(tag, "#") end)
107 defp prepare_tags(query) do
111 |> Enum.filter(fn tag -> String.starts_with?(tag, "#") end)
114 defp with_fallback(f, fallback \\ []) do
119 Logger.error("#{__MODULE__} search error: #{inspect(error)}")
124 defp get_author(%{"account_id" => account_id}) when is_binary(account_id),
125 do: User.get_cached_by_id(account_id)
127 defp get_author(_params), do: nil