2017-03-08 12:50:09 -06:00
|
|
|
import $ from 'cafy';
|
2018-11-01 23:47:44 -05:00
|
|
|
import define from '../../define';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { Users } from '../../../../models';
|
|
|
|
import { User } from '../../../../models/entities/user';
|
2018-08-06 04:28:27 -05:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 16:59:43 -05:00
|
|
|
'ja-JP': 'ユーザーを検索します。'
|
2018-08-06 04:28:27 -05:00
|
|
|
},
|
|
|
|
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['users'],
|
|
|
|
|
2020-02-15 06:33:32 -06:00
|
|
|
requireCredential: false as const,
|
2018-08-06 04:28:27 -05:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 13:32:24 -05:00
|
|
|
query: {
|
|
|
|
validator: $.str,
|
2018-08-06 04:28:27 -05:00
|
|
|
desc: {
|
2018-08-28 16:59:43 -05:00
|
|
|
'ja-JP': 'クエリ'
|
2018-08-06 04:28:27 -05:00
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-08-06 04:28:27 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
offset: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.num.min(0),
|
2018-08-06 04:28:27 -05:00
|
|
|
default: 0,
|
|
|
|
desc: {
|
2018-08-28 16:59:43 -05:00
|
|
|
'ja-JP': 'オフセット'
|
2018-08-06 04:28:27 -05:00
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-08-06 04:28:27 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
limit: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-08-06 04:28:27 -05:00
|
|
|
default: 10,
|
|
|
|
desc: {
|
2018-08-28 16:59:43 -05:00
|
|
|
'ja-JP': '取得する数'
|
2018-08-06 04:28:27 -05:00
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-08-06 04:28:27 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
localOnly: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-08-06 04:28:27 -05:00
|
|
|
default: false,
|
|
|
|
desc: {
|
2018-08-28 16:59:43 -05:00
|
|
|
'ja-JP': 'ローカルユーザーのみ検索対象にするか否か'
|
2018-08-06 04:28:27 -05:00
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-12-01 15:44:18 -06:00
|
|
|
|
|
|
|
detail: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-12-01 15:44:18 -06:00
|
|
|
default: true,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '詳細なユーザー情報を含めるか否か'
|
|
|
|
}
|
|
|
|
},
|
2018-08-06 04:28:27 -05:00
|
|
|
},
|
2019-02-24 04:42:26 -06:00
|
|
|
|
|
|
|
res: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-24 04:42:26 -06:00
|
|
|
items: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
ref: 'User',
|
2019-02-24 04:42:26 -06:00
|
|
|
}
|
|
|
|
},
|
2018-08-06 04:28:27 -05:00
|
|
|
};
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-06-14 10:07:41 -05:00
|
|
|
const isUsername = ps.localOnly ? Users.validateLocalUsername.ok(ps.query.replace('@', '')) : Users.validateRemoteUsername.ok(ps.query.replace('@', ''));
|
2018-08-06 04:28:27 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
let users: User[] = [];
|
2018-08-06 04:28:27 -05:00
|
|
|
|
|
|
|
if (isUsername) {
|
2019-04-07 07:50:36 -05:00
|
|
|
users = await Users.createQueryBuilder('user')
|
|
|
|
.where('user.host IS NULL')
|
2019-04-08 02:39:02 -05:00
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
.andWhere('user.usernameLower like :username', { username: ps.query.replace('@', '').toLowerCase() + '%' })
|
2019-04-12 11:43:22 -05:00
|
|
|
.take(ps.limit!)
|
2019-04-07 07:50:36 -05:00
|
|
|
.skip(ps.offset)
|
|
|
|
.getMany();
|
2018-08-06 04:28:27 -05:00
|
|
|
|
2019-04-12 11:43:22 -05:00
|
|
|
if (users.length < ps.limit! && !ps.localOnly) {
|
2019-04-07 07:50:36 -05:00
|
|
|
const otherUsers = await Users.createQueryBuilder('user')
|
|
|
|
.where('user.host IS NOT NULL')
|
2019-04-08 02:39:02 -05:00
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
.andWhere('user.usernameLower like :username', { username: ps.query.replace('@', '').toLowerCase() + '%' })
|
2019-04-12 11:43:22 -05:00
|
|
|
.take(ps.limit! - users.length)
|
2019-04-07 07:50:36 -05:00
|
|
|
.getMany();
|
2018-08-06 04:28:27 -05:00
|
|
|
|
|
|
|
users = users.concat(otherUsers);
|
|
|
|
}
|
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
return await Users.packMany(users, me, { detail: ps.detail });
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|