summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/users/search.ts
blob: e4fbfedd1024449611b0f87e7f4b2c3892e3bb53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import $ from 'cafy';
import define from '../../define';
import { UserProfiles, Users } from '@/models/index';
import { User } from '@/models/entities/user';
import { Brackets } from 'typeorm';
import { USER_ACTIVE_THRESHOLD } from '@/const';

export const meta = {
	tags: ['users'],

	requireCredential: false as const,

	params: {
		query: {
			validator: $.str,
		},

		offset: {
			validator: $.optional.num.min(0),
			default: 0,
		},

		limit: {
			validator: $.optional.num.range(1, 100),
			default: 10,
		},

		scope: {
			validator: $.optional.str.or(['local', 'remote', 'both']),
			default: 'both',
		},

		detail: {
			validator: $.optional.bool,
			default: true,
		},
	},

	res: {
		type: 'array' as const,
		optional: false as const, nullable: false as const,
		items: {
			type: 'object' as const,
			optional: false as const, nullable: false as const,
			ref: 'User',
		}
	},
};

export default define(meta, async (ps, me) => {
	const isUsername = ps.query.startsWith('@');

	let users: User[] = [];

	if (isUsername) {
		const usernameQuery = Users.createQueryBuilder('user')
			.where('user.usernameLower like :username', { username: ps.query.replace('@', '').toLowerCase() + '%' })
			.andWhere(new Brackets(qb => { qb
				.where('user.lastActiveDate IS NULL')
				.orWhere('user.lastActiveDate > :activeThreshold', { activeThreshold: new Date(Date.now() - USER_ACTIVE_THRESHOLD) });
			}))
			.andWhere('user.isSuspended = FALSE');

		if (ps.scope === 'local') {
			usernameQuery
				.andWhere('user.host IS NULL')
				.orderBy('user.lastActiveDate', 'DESC', 'NULLS LAST');
		} else if (ps.scope === 'remote') {
			usernameQuery
				.andWhere('user.host IS NOT NULL')
				.orderBy('user.updatedAt', 'DESC', 'NULLS LAST');
		} else { // both
			usernameQuery
				.orderBy('user.updatedAt', 'DESC', 'NULLS LAST');
		}

		users = await usernameQuery
			.take(ps.limit!)
			.skip(ps.offset)
			.getMany();
	} else {
		const nameQuery = Users.createQueryBuilder('user')
			.where('user.name ilike :query', { query: '%' + ps.query + '%' })
			.andWhere(new Brackets(qb => { qb
				.where('user.lastActiveDate IS NULL')
				.orWhere('user.lastActiveDate > :activeThreshold', { activeThreshold: new Date(Date.now() - USER_ACTIVE_THRESHOLD) });
			}))
			.andWhere('user.isSuspended = FALSE');

		if (ps.scope === 'local') {
			nameQuery
				.andWhere('user.host IS NULL')
				.orderBy('user.lastActiveDate', 'DESC', 'NULLS LAST');
		} else if (ps.scope === 'remote') {
			nameQuery
				.andWhere('user.host IS NOT NULL')
				.orderBy('user.updatedAt', 'DESC', 'NULLS LAST');
		} else { // both
			nameQuery
				.orderBy('user.updatedAt', 'DESC', 'NULLS LAST');
		}

		users = await nameQuery
			.take(ps.limit!)
			.skip(ps.offset)
			.getMany();

		if (users.length < ps.limit!) {
			const profQuery = UserProfiles.createQueryBuilder('prof')
				.select('prof.userId')
				.where('prof.description ilike :query', { query: '%' + ps.query + '%' });

			if (ps.scope === 'local') {
				profQuery.andWhere('prof.userHost IS NULL');
			} else if (ps.scope === 'remote') {
				profQuery.andWhere('prof.userHost IS NOT NULL');
			}

			const query = Users.createQueryBuilder('user')
				.where(`user.id IN (${ profQuery.getQuery() })`)
				.andWhere(new Brackets(qb => { qb
					.where('user.lastActiveDate IS NULL')
					.orWhere('user.lastActiveDate > :activeThreshold', { activeThreshold: new Date(Date.now() - USER_ACTIVE_THRESHOLD) });
				}))
				.andWhere('user.isSuspended = FALSE')
				.setParameters(profQuery.getParameters());

			if (ps.scope === 'local') {
				query.orderBy('user.lastActiveDate', 'DESC', 'NULLS LAST');
			} else if (ps.scope === 'remote') {
				query.orderBy('user.updatedAt', 'DESC', 'NULLS LAST');
			} else { // both
				query.orderBy('user.updatedAt', 'DESC', 'NULLS LAST');
			}

			users = users.concat(await query
				.take(ps.limit!)
				.skip(ps.offset)
				.getMany()
			);
		}
	}

	return await Users.packMany(users, me, { detail: ps.detail });
});