Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F33103763
search.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
758 B
Referenced Files
None
Subscribers
None
search.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 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
@spec
user
(
map
())
::
{
:ok
,
[
User
.
t
()],
pos_integer
()}
def
user
(
params
\\
%{})
do
query
=
params
|>
Map
.
drop
([
:page
,
:page_size
])
|>
Map
.
put
(
:invisible
,
false
)
|>
User.Query
.
build
()
|>
order_by
(
desc
:
:id
)
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
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Tue, Jan 20, 2:02 PM (7 h, 37 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
964068
Default Alt Text
search.ex (758 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment