2019-10-01 07:45:04 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-10-01 07:45:04 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.SuggestionController do
|
|
|
|
use Pleroma.Web, :controller
|
2021-11-26 20:33:27 +00:00
|
|
|
alias Pleroma.User
|
2019-10-01 07:45:04 +00:00
|
|
|
|
|
|
|
require Logger
|
|
|
|
|
2020-05-13 10:15:24 +00:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2021-11-25 20:57:36 +00:00
|
|
|
plug(Pleroma.Web.Plugs.OAuthScopesPlug, %{scopes: ["read"]} when action in [:index, :index2])
|
2020-05-13 10:15:24 +00:00
|
|
|
|
|
|
|
def open_api_operation(action) do
|
|
|
|
operation = String.to_existing_atom("#{action}_operation")
|
|
|
|
apply(__MODULE__, operation, [])
|
|
|
|
end
|
|
|
|
|
|
|
|
def index_operation do
|
|
|
|
%OpenApiSpex.Operation{
|
|
|
|
tags: ["Suggestions"],
|
|
|
|
summary: "Follow suggestions (Not implemented)",
|
|
|
|
operationId: "SuggestionController.index",
|
|
|
|
responses: %{
|
|
|
|
200 => Pleroma.Web.ApiSpec.Helpers.empty_array_response()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2020-04-06 07:20:44 +00:00
|
|
|
|
2021-11-25 20:57:36 +00:00
|
|
|
def index2_operation do
|
|
|
|
%OpenApiSpex.Operation{
|
|
|
|
tags: ["Suggestions"],
|
2021-11-26 20:33:27 +00:00
|
|
|
summary: "Follow suggestions",
|
2021-11-25 20:57:36 +00:00
|
|
|
operationId: "SuggestionController.index2",
|
|
|
|
responses: %{
|
|
|
|
200 => Pleroma.Web.ApiSpec.Helpers.empty_array_response()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-10-01 07:45:04 +00:00
|
|
|
@doc "GET /api/v1/suggestions"
|
2020-04-06 07:20:44 +00:00
|
|
|
def index(conn, params),
|
|
|
|
do: Pleroma.Web.MastodonAPI.MastodonAPIController.empty_array(conn, params)
|
2021-11-25 20:57:36 +00:00
|
|
|
|
|
|
|
@doc "GET /api/v2/suggestions"
|
2021-11-26 20:46:29 +00:00
|
|
|
def index2(%{assigns: %{user: user}} = conn, params) do
|
2021-11-26 20:33:27 +00:00
|
|
|
limit = Map.get(params, :limit, 40) |> min(80)
|
|
|
|
|
|
|
|
users =
|
|
|
|
%{is_suggested: true, limit: limit}
|
|
|
|
|> User.Query.build()
|
|
|
|
|> Pleroma.Repo.all()
|
|
|
|
|
2021-11-26 20:46:29 +00:00
|
|
|
render(conn, "index.json", %{users: users, source: :staff, for: user})
|
2021-11-26 20:33:27 +00:00
|
|
|
end
|
2019-10-01 07:45:04 +00:00
|
|
|
end
|