Improve 賢さ

This commit is contained in:
syuilo 2018-07-20 04:59:04 +09:00
parent 83f2926f0c
commit 9536d76b61
1 changed files with 25 additions and 1 deletions

View File

@ -21,12 +21,36 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) =>
let users = await User
.find({
host: null,
usernameLower: new RegExp(escapeRegexp(query.toLowerCase()))
usernameLower: new RegExp('^' + escapeRegexp(query.toLowerCase()))
}, {
limit: limit,
skip: offset
});
if (users.length < limit) {
const remoteUsers = await User
.find({
host: { $ne: null },
usernameLower: new RegExp('^' + escapeRegexp(query.toLowerCase()))
}, {
limit: limit - users.length
});
users = users.concat(remoteUsers);
}
if (users.length < limit) {
const remoteUsers = await User
.find({
host: null,
usernameLower: new RegExp(escapeRegexp(query.toLowerCase()))
}, {
limit: limit - users.length
});
users = users.concat(remoteUsers);
}
if (users.length < limit) {
const remoteUsers = await User
.find({