mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-10-31 22:04:07 +00:00
bfeb33e951
Merge conflict in lib/pleroma/activity.ex
33 lines
794 B
Elixir
33 lines
794 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.AdminAPI.Search do
|
|
import Ecto.Query
|
|
|
|
alias Pleroma.Repo
|
|
alias Pleroma.User
|
|
|
|
@page_size 50
|
|
|
|
defmacro not_empty_string(string) do
|
|
quote do
|
|
is_binary(unquote(string)) and unquote(string) != ""
|
|
end
|
|
end
|
|
|
|
@spec user(map()) :: {:ok, [User.t()], pos_integer()}
|
|
def user(params \\ %{}) do
|
|
query = User.Query.build(params) |> order_by([u], u.nickname)
|
|
|
|
paginated_query =
|
|
User.Query.paginate(query, params[:page] || 1, params[:page_size] || @page_size)
|
|
|
|
count = Repo.aggregate(query, :count, :id)
|
|
|
|
results = Repo.all(paginated_query)
|
|
|
|
{:ok, results, count}
|
|
end
|
|
end
|