2019-06-14 11:39:57 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.SearchController do
|
|
|
|
use Pleroma.Web, :controller
|
2019-07-10 08:28:03 +00:00
|
|
|
|
2019-06-14 11:39:57 +00:00
|
|
|
alias Pleroma.Activity
|
2019-09-15 15:22:08 +00:00
|
|
|
alias Pleroma.Plugs.OAuthScopesPlug
|
2019-07-10 08:28:03 +00:00
|
|
|
alias Pleroma.Plugs.RateLimiter
|
2019-07-11 13:55:31 +00:00
|
|
|
alias Pleroma.Repo
|
2019-06-14 11:39:57 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web
|
2019-07-10 08:28:03 +00:00
|
|
|
alias Pleroma.Web.ControllerHelper
|
2019-06-14 11:39:57 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
|
|
|
|
|
|
|
require Logger
|
2019-09-15 15:22:08 +00:00
|
|
|
|
|
|
|
# Note: Mastodon doesn't allow unauthenticated access (requires read:accounts / read:search)
|
|
|
|
plug(OAuthScopesPlug, %{scopes: ["read:search"], fallback: :proceed_unauthenticated})
|
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
plug(Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug)
|
|
|
|
|
2019-11-11 12:13:06 +00:00
|
|
|
plug(RateLimiter, [name: :search] when action in [:search, :search2, :account_search])
|
2019-06-14 11:39:57 +00:00
|
|
|
|
|
|
|
def account_search(%{assigns: %{user: user}} = conn, %{"q" => query} = params) do
|
|
|
|
accounts = User.search(query, search_options(params, user))
|
|
|
|
|
2019-09-23 22:33:59 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
2019-09-30 12:10:54 +00:00
|
|
|
|> render("index.json", users: accounts, for: user, as: :user)
|
2019-06-14 11:39:57 +00:00
|
|
|
end
|
|
|
|
|
2019-07-11 13:55:31 +00:00
|
|
|
def search2(conn, params), do: do_search(:v2, conn, params)
|
|
|
|
def search(conn, params), do: do_search(:v1, conn, params)
|
|
|
|
|
|
|
|
defp do_search(version, %{assigns: %{user: user}} = conn, %{"q" => query} = params) do
|
|
|
|
options = search_options(params, user)
|
|
|
|
timeout = Keyword.get(Repo.config(), :timeout, 15_000)
|
|
|
|
default_values = %{"statuses" => [], "accounts" => [], "hashtags" => []}
|
|
|
|
|
|
|
|
result =
|
|
|
|
default_values
|
|
|
|
|> Enum.map(fn {resource, default_value} ->
|
|
|
|
if params["type"] == nil or params["type"] == resource do
|
|
|
|
{resource, fn -> resource_search(version, resource, query, options) end}
|
|
|
|
else
|
|
|
|
{resource, fn -> default_value end}
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|> Task.async_stream(fn {resource, f} -> {resource, with_fallback(f)} end,
|
|
|
|
timeout: timeout,
|
|
|
|
on_timeout: :kill_task
|
|
|
|
)
|
|
|
|
|> Enum.reduce(default_values, fn
|
|
|
|
{:ok, {resource, result}}, acc ->
|
|
|
|
Map.put(acc, resource, result)
|
|
|
|
|
|
|
|
_error, acc ->
|
|
|
|
acc
|
|
|
|
end)
|
|
|
|
|
|
|
|
json(conn, result)
|
2019-07-10 08:28:03 +00:00
|
|
|
end
|
|
|
|
|
2019-06-14 11:39:57 +00:00
|
|
|
defp search_options(params, user) do
|
|
|
|
[
|
|
|
|
resolve: params["resolve"] == "true",
|
|
|
|
following: params["following"] == "true",
|
|
|
|
limit: ControllerHelper.fetch_integer_param(params, "limit"),
|
|
|
|
offset: ControllerHelper.fetch_integer_param(params, "offset"),
|
2019-07-11 13:55:31 +00:00
|
|
|
type: params["type"],
|
|
|
|
author: get_author(params),
|
2019-06-14 11:39:57 +00:00
|
|
|
for_user: user
|
|
|
|
]
|
2019-07-11 13:55:31 +00:00
|
|
|
|> Enum.filter(&elem(&1, 1))
|
|
|
|
end
|
|
|
|
|
|
|
|
defp resource_search(_, "accounts", query, options) do
|
|
|
|
accounts = with_fallback(fn -> User.search(query, options) end)
|
2019-09-30 12:10:54 +00:00
|
|
|
AccountView.render("index.json", users: accounts, for: options[:for_user], as: :user)
|
2019-07-11 13:55:31 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp resource_search(_, "statuses", query, options) do
|
|
|
|
statuses = with_fallback(fn -> Activity.search(options[:for_user], query, options) end)
|
|
|
|
StatusView.render("index.json", activities: statuses, for: options[:for_user], as: :activity)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp resource_search(:v2, "hashtags", query, _options) do
|
|
|
|
tags_path = Web.base_url() <> "/tag/"
|
|
|
|
|
|
|
|
query
|
|
|
|
|> prepare_tags()
|
|
|
|
|> Enum.map(fn tag ->
|
|
|
|
tag = String.trim_leading(tag, "#")
|
|
|
|
%{name: tag, url: tags_path <> tag}
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp resource_search(:v1, "hashtags", query, _options) do
|
|
|
|
query
|
|
|
|
|> prepare_tags()
|
|
|
|
|> Enum.map(fn tag -> String.trim_leading(tag, "#") end)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp prepare_tags(query) do
|
|
|
|
query
|
|
|
|
|> String.split()
|
|
|
|
|> Enum.uniq()
|
|
|
|
|> Enum.filter(fn tag -> String.starts_with?(tag, "#") end)
|
2019-06-14 11:39:57 +00:00
|
|
|
end
|
2019-07-03 10:19:51 +00:00
|
|
|
|
2019-07-10 08:28:03 +00:00
|
|
|
defp with_fallback(f, fallback \\ []) do
|
2019-07-03 10:19:51 +00:00
|
|
|
try do
|
|
|
|
f.()
|
|
|
|
rescue
|
|
|
|
error ->
|
|
|
|
Logger.error("#{__MODULE__} search error: #{inspect(error)}")
|
|
|
|
fallback
|
|
|
|
end
|
|
|
|
end
|
2019-07-11 13:55:31 +00:00
|
|
|
|
|
|
|
defp get_author(%{"account_id" => account_id}) when is_binary(account_id),
|
|
|
|
do: User.get_cached_by_id(account_id)
|
|
|
|
|
|
|
|
defp get_author(_params), do: nil
|
2019-06-14 11:39:57 +00:00
|
|
|
end
|