Skip to content
Snippets Groups Projects
Commit d692bb3c authored by syuilo's avatar syuilo
Browse files

Improve user search

parent 44cd1e92
No related branches found
No related tags found
No related merge requests found
......@@ -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())
}, {
......
......@@ -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');
const users = await User
let 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 }))));
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment