2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2016-12-28 23:49:51 +01:00
|
|
|
const escapeRegexp = require('escape-regexp');
|
2018-11-02 05:47:44 +01:00
|
|
|
import User, { pack, validateUsername, IUser } from '../../../../models/user';
|
|
|
|
import define from '../../define';
|
2018-08-06 11:28:27 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'ユーザーを検索します。'
|
2018-08-06 11:28:27 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
query: {
|
|
|
|
validator: $.str,
|
2018-08-06 11:28:27 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'クエリ'
|
2018-08-06 11:28:27 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-08-06 11:28:27 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
offset: {
|
|
|
|
validator: $.num.optional.min(0),
|
2018-08-06 11:28:27 +02:00
|
|
|
default: 0,
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'オフセット'
|
2018-08-06 11:28:27 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-08-06 11:28:27 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
2018-08-06 11:28:27 +02:00
|
|
|
default: 10,
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '取得する数'
|
2018-08-06 11:28:27 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-08-06 11:28:27 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
localOnly: {
|
|
|
|
validator: $.bool.optional,
|
2018-08-06 11:28:27 +02:00
|
|
|
default: false,
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'ローカルユーザーのみ検索対象にするか否か'
|
2018-08-06 11:28:27 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-08-06 11:28:27 +02:00
|
|
|
},
|
|
|
|
};
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, me) => new Promise(async (res, rej) => {
|
2018-11-30 23:19:17 +01:00
|
|
|
const isUsername = validateUsername(ps.query.replace('@', ''), true);
|
2018-08-06 11:28:27 +02:00
|
|
|
|
|
|
|
let users: IUser[] = [];
|
|
|
|
|
|
|
|
if (isUsername) {
|
|
|
|
users = await User
|
|
|
|
.find({
|
|
|
|
host: null,
|
|
|
|
usernameLower: new RegExp('^' + escapeRegexp(ps.query.replace('@', '').toLowerCase()))
|
2016-12-28 23:49:51 +01:00
|
|
|
}, {
|
2018-08-06 11:28:27 +02:00
|
|
|
limit: ps.limit,
|
|
|
|
skip: ps.offset
|
|
|
|
});
|
|
|
|
|
|
|
|
if (users.length < ps.limit && !ps.localOnly) {
|
|
|
|
const otherUsers = await User
|
|
|
|
.find({
|
|
|
|
host: { $ne: null },
|
|
|
|
usernameLower: new RegExp('^' + escapeRegexp(ps.query.replace('@', '').toLowerCase()))
|
|
|
|
}, {
|
|
|
|
limit: ps.limit - users.length
|
|
|
|
});
|
|
|
|
|
|
|
|
users = users.concat(otherUsers);
|
|
|
|
}
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Serialize
|
2018-06-18 02:54:53 +02:00
|
|
|
res(await Promise.all(users.map(user => pack(user, me, { detail: true }))));
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|