2017-03-08 20:50:09 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import define from '../../define';
|
|
|
|
import { UserProfiles, Users } from '@/models/index';
|
|
|
|
import { User } from '@/models/entities/user';
|
2021-10-17 10:26:35 +03:00
|
|
|
import { Brackets } from 'typeorm';
|
2018-08-06 12:28:27 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
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
|
|
|
|
2021-10-17 12:38:38 +03:00
|
|
|
origin: {
|
|
|
|
validator: $.optional.str.or(['local', 'remote', 'combined']),
|
|
|
|
default: 'combined',
|
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: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 12:42:26 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'User',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-02-24 12:42:26 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, me) => {
|
2021-10-17 12:38:38 +03:00
|
|
|
const activeThreshold = new Date(Date.now() - (1000 * 60 * 60 * 24 * 30)); // 30日
|
|
|
|
|
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) {
|
2021-10-17 10:26:35 +03:00
|
|
|
const usernameQuery = Users.createQueryBuilder('user')
|
2021-10-17 12:38:38 +03:00
|
|
|
.where('user.usernameLower LIKE :username', { username: ps.query.replace('@', '').toLowerCase() + '%' })
|
2021-10-17 10:26:35 +03:00
|
|
|
.andWhere(new Brackets(qb => { qb
|
2021-10-17 12:38:38 +03:00
|
|
|
.where('user.updatedAt IS NULL')
|
|
|
|
.orWhere('user.updatedAt > :activeThreshold', { activeThreshold: activeThreshold });
|
2021-10-17 10:26:35 +03:00
|
|
|
}))
|
|
|
|
.andWhere('user.isSuspended = FALSE');
|
|
|
|
|
2021-10-17 12:38:38 +03:00
|
|
|
if (ps.origin === 'local') {
|
|
|
|
usernameQuery.andWhere('user.host IS NULL');
|
|
|
|
} else if (ps.origin === 'remote') {
|
|
|
|
usernameQuery.andWhere('user.host IS NOT NULL');
|
2021-10-17 10:26:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
users = await usernameQuery
|
2021-10-17 12:38:38 +03:00
|
|
|
.orderBy('user.updatedAt', 'DESC', 'NULLS LAST')
|
2019-04-12 19:43:22 +03:00
|
|
|
.take(ps.limit!)
|
2019-04-07 15:50:36 +03:00
|
|
|
.skip(ps.offset)
|
|
|
|
.getMany();
|
2020-10-17 14:12:00 +03:00
|
|
|
} else {
|
2021-10-17 10:26:35 +03:00
|
|
|
const nameQuery = Users.createQueryBuilder('user')
|
2021-10-17 12:38:38 +03:00
|
|
|
.where('user.name ILIKE :query', { query: '%' + ps.query + '%' })
|
2021-10-17 10:26:35 +03:00
|
|
|
.andWhere(new Brackets(qb => { qb
|
2021-10-17 12:38:38 +03:00
|
|
|
.where('user.updatedAt IS NULL')
|
|
|
|
.orWhere('user.updatedAt > :activeThreshold', { activeThreshold: activeThreshold });
|
2021-10-17 10:26:35 +03:00
|
|
|
}))
|
|
|
|
.andWhere('user.isSuspended = FALSE');
|
|
|
|
|
2021-10-17 12:38:38 +03:00
|
|
|
if (ps.origin === 'local') {
|
|
|
|
nameQuery.andWhere('user.host IS NULL');
|
|
|
|
} else if (ps.origin === 'remote') {
|
|
|
|
nameQuery.andWhere('user.host IS NOT NULL');
|
2021-10-17 10:26:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
users = await nameQuery
|
2021-10-17 12:38:38 +03:00
|
|
|
.orderBy('user.updatedAt', 'DESC', 'NULLS LAST')
|
2020-10-17 14:12:00 +03:00
|
|
|
.take(ps.limit!)
|
|
|
|
.skip(ps.offset)
|
|
|
|
.getMany();
|
|
|
|
|
2021-10-17 10:26:35 +03:00
|
|
|
if (users.length < ps.limit!) {
|
|
|
|
const profQuery = UserProfiles.createQueryBuilder('prof')
|
2020-10-17 14:12:00 +03:00
|
|
|
.select('prof.userId')
|
2021-10-17 12:38:38 +03:00
|
|
|
.where('prof.description ILIKE :query', { query: '%' + ps.query + '%' });
|
2021-10-17 10:26:35 +03:00
|
|
|
|
2021-10-17 12:38:38 +03:00
|
|
|
if (ps.origin === 'local') {
|
2021-10-17 10:26:35 +03:00
|
|
|
profQuery.andWhere('prof.userHost IS NULL');
|
2021-10-17 12:38:38 +03:00
|
|
|
} else if (ps.origin === 'remote') {
|
2021-10-17 10:26:35 +03:00
|
|
|
profQuery.andWhere('prof.userHost IS NOT NULL');
|
|
|
|
}
|
|
|
|
|
|
|
|
const query = Users.createQueryBuilder('user')
|
|
|
|
.where(`user.id IN (${ profQuery.getQuery() })`)
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
2021-10-17 12:38:38 +03:00
|
|
|
.where('user.updatedAt IS NULL')
|
|
|
|
.orWhere('user.updatedAt > :activeThreshold', { activeThreshold: activeThreshold });
|
2021-10-17 10:26:35 +03:00
|
|
|
}))
|
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
.setParameters(profQuery.getParameters());
|
|
|
|
|
|
|
|
users = users.concat(await query
|
2021-10-17 12:38:38 +03:00
|
|
|
.orderBy('user.updatedAt', 'DESC', 'NULLS LAST')
|
2021-10-17 10:26:35 +03:00
|
|
|
.take(ps.limit!)
|
|
|
|
.skip(ps.offset)
|
|
|
|
.getMany()
|
|
|
|
);
|
2018-08-06 12:28:27 +03:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
});
|