2017-03-08 20:50:09 +02:00
|
|
|
import $ from 'cafy';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2020-10-17 14:12:00 +03:00
|
|
|
import { UserProfiles, Users } from '../../../../models';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { User } from '../../../../models/entities/user';
|
2018-08-06 12:28:27 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['users'],
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: false as const,
|
2018-08-06 12:28:27 +03:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
query: {
|
|
|
|
validator: $.str,
|
|
|
|
},
|
2018-08-06 12:28:27 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
offset: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.min(0),
|
2018-08-06 12:28:27 +03:00
|
|
|
default: 0,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-08-06 12:28:27 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
limit: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-08-06 12:28:27 +03:00
|
|
|
default: 10,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-08-06 12:28:27 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
localOnly: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-08-06 12:28:27 +03:00
|
|
|
default: false,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-12-01 23:44:18 +02:00
|
|
|
|
|
|
|
detail: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-12-01 23:44:18 +02:00
|
|
|
default: true,
|
|
|
|
},
|
2018-08-06 12:28:27 +03:00
|
|
|
},
|
2019-02-24 12:42:26 +02:00
|
|
|
|
|
|
|
res: {
|
2019-06-27 12:04:09 +03:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-24 12:42:26 +02:00
|
|
|
items: {
|
2019-06-27 12:04:09 +03:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'User',
|
2019-02-24 12:42:26 +02:00
|
|
|
}
|
|
|
|
},
|
2018-08-06 12:28:27 +03:00
|
|
|
};
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, me) => {
|
2020-10-17 14:12:00 +03:00
|
|
|
const isUsername = ps.query.startsWith('@');
|
2018-08-06 12:28:27 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
let users: User[] = [];
|
2018-08-06 12:28:27 +03:00
|
|
|
|
|
|
|
if (isUsername) {
|
2019-04-07 15:50:36 +03:00
|
|
|
users = await Users.createQueryBuilder('user')
|
|
|
|
.where('user.host IS NULL')
|
2019-04-08 10:39:02 +03:00
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
.andWhere('user.usernameLower like :username', { username: ps.query.replace('@', '').toLowerCase() + '%' })
|
2020-03-21 13:14:26 +02:00
|
|
|
.andWhere('user.updatedAt IS NOT NULL')
|
2020-03-21 05:48:25 +02:00
|
|
|
.orderBy('user.updatedAt', 'DESC')
|
2019-04-12 19:43:22 +03:00
|
|
|
.take(ps.limit!)
|
2019-04-07 15:50:36 +03:00
|
|
|
.skip(ps.offset)
|
|
|
|
.getMany();
|
2018-08-06 12:28:27 +03:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
if (users.length < ps.limit! && !ps.localOnly) {
|
2019-04-07 15:50:36 +03:00
|
|
|
const otherUsers = await Users.createQueryBuilder('user')
|
|
|
|
.where('user.host IS NOT NULL')
|
2019-04-08 10:39:02 +03:00
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
.andWhere('user.usernameLower like :username', { username: ps.query.replace('@', '').toLowerCase() + '%' })
|
2020-03-21 13:14:26 +02:00
|
|
|
.andWhere('user.updatedAt IS NOT NULL')
|
2020-03-21 05:48:25 +02:00
|
|
|
.orderBy('user.updatedAt', 'DESC')
|
2019-04-12 19:43:22 +03:00
|
|
|
.take(ps.limit! - users.length)
|
2019-04-07 15:50:36 +03:00
|
|
|
.getMany();
|
2018-08-06 12:28:27 +03:00
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
users = users.concat(otherUsers);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const profQuery = UserProfiles.createQueryBuilder('prof')
|
|
|
|
.select('prof.userId')
|
|
|
|
.where('prof.userHost IS NULL')
|
|
|
|
.andWhere('prof.description ilike :query', { query: '%' + ps.query + '%' });
|
|
|
|
|
|
|
|
users = await Users.createQueryBuilder('user')
|
|
|
|
.where(`user.id IN (${ profQuery.getQuery() })`)
|
|
|
|
.setParameters(profQuery.getParameters())
|
|
|
|
.andWhere('user.updatedAt IS NOT NULL')
|
|
|
|
.orderBy('user.updatedAt', 'DESC')
|
|
|
|
.take(ps.limit!)
|
|
|
|
.skip(ps.offset)
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
if (users.length < ps.limit! && !ps.localOnly) {
|
|
|
|
const profQuery2 = UserProfiles.createQueryBuilder('prof')
|
|
|
|
.select('prof.userId')
|
|
|
|
.where('prof.userHost IS NOT NULL')
|
|
|
|
.andWhere('prof.description ilike :query', { query: '%' + ps.query + '%' });
|
2020-10-17 19:23:46 +03:00
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
const otherUsers = await Users.createQueryBuilder('user')
|
|
|
|
.where(`user.id IN (${ profQuery2.getQuery() })`)
|
|
|
|
.setParameters(profQuery2.getParameters())
|
|
|
|
.andWhere('user.updatedAt IS NOT NULL')
|
|
|
|
.orderBy('user.updatedAt', 'DESC')
|
|
|
|
.take(ps.limit! - users.length)
|
|
|
|
.getMany();
|
|
|
|
|
2018-08-06 12:28:27 +03:00
|
|
|
users = users.concat(otherUsers);
|
|
|
|
}
|
|
|
|
}
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Users.packMany(users, me, { detail: ps.detail });
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|