Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dima Krasner
Sharkey
Commits
d692bb3c
Commit
d692bb3c
authored
6 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
Improve user search
parent
44cd1e92
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/server/api/endpoints/users/search.ts
+1
-0
1 addition, 0 deletions
src/server/api/endpoints/users/search.ts
src/server/api/endpoints/users/search_by_username.ts
+15
-3
15 additions, 3 deletions
src/server/api/endpoints/users/search_by_username.ts
with
16 additions
and
3 deletions
src/server/api/endpoints/users/search.ts
+
1
−
0
View file @
d692bb3c
...
...
@@ -40,6 +40,7 @@ async function byNative(res, rej, me, query, offset, max) {
// Search users
const
users
=
await
User
.
find
({
host
:
null
,
$or
:
[{
usernameLower
:
new
RegExp
(
escapedQuery
.
replace
(
'
@
'
,
''
).
toLowerCase
())
},
{
...
...
This diff is collapsed.
Click to expand it.
src/server/api/endpoints/users/search_by_username.ts
+
15
−
3
View file @
d692bb3c
...
...
@@ -20,15 +20,27 @@ module.exports = (params, me) => new Promise(async (res, rej) => {
const
[
limit
=
10
,
limitErr
]
=
$
.
num
.
optional
().
range
(
1
,
100
).
get
(
params
.
limit
);
if
(
limitErr
)
return
rej
(
'
invalid limit param
'
);
cons
t
users
=
await
User
le
t
users
=
await
User
.
find
({
host
:
null
,
usernameLower
:
new
RegExp
(
query
.
toLowerCase
())
},
{
limit
:
limit
,
skip
:
offset
});
if
(
users
.
length
<
limit
)
{
const
remoteUsers
=
await
User
.
find
({
host
:
{
$ne
:
null
},
usernameLower
:
new
RegExp
(
query
.
toLowerCase
())
},
{
limit
:
limit
-
users
.
length
});
users
=
users
.
concat
(
remoteUsers
);
}
// Serialize
res
(
await
Promise
.
all
(
users
.
map
(
async
user
=>
await
pack
(
user
,
me
,
{
detail
:
true
}))));
res
(
await
Promise
.
all
(
users
.
map
(
user
=>
pack
(
user
,
me
,
{
detail
:
true
}))));
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment