mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 06:43:09 +02:00
484e023c0c
* remove empty file If the endpoint is to be implemented later, the file can be added back, but for now it is confusing to have an empty file. * enhance(doc): document defaults Default for `isPublic` is based on the database schema default value. Defaults for `local` and `withFiles` are based on the behaviour of the endpoint. * enhance(doc): explain nullable emoji category * fix: make nullable if default is null * enhance(doc): explain mute attribute expiresAt * fix: define required fields - `notes/create`: the default for `text` has been removed because ajv can not handle `default` inside of `anyOf`, see https://ajv.js.org/guide/modifying-data.html#assigning-defaults and the default value cannot be `null` if text is `nullable: false` in the `anyOf` first alternative. - `notes/create`: The `mediaIds` property has been marked as deprecated because it has the same behaviour as using `fileIds`, but the implementation tries to handlè `fileIds` first. - The result schema for `admin/emoji/list` has been altered because the `host` property will always be `null` as it is filtered this way in the database query. See packages/backend/src/server/api/endpoints/admin/emoji/list.ts line 67. * enhance(doc): explain nullable hostname * update changelog Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
114 lines
3.4 KiB
TypeScript
114 lines
3.4 KiB
TypeScript
import define from '../../define.js';
|
|
import { Followings, Users } from '@/models/index.js';
|
|
import { Brackets } from 'typeorm';
|
|
import { USER_ACTIVE_THRESHOLD } from '@/const.js';
|
|
import { User } from '@/models/entities/user.js';
|
|
|
|
export const meta = {
|
|
tags: ['users'],
|
|
|
|
requireCredential: false,
|
|
|
|
res: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'User',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
username: { type: 'string', nullable: true },
|
|
host: { type: 'string', nullable: true },
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
detail: { type: 'boolean', default: true },
|
|
},
|
|
anyOf: [
|
|
{ required: ['username'] },
|
|
{ required: ['host'] },
|
|
],
|
|
} as const;
|
|
|
|
// TODO: avatar,bannerをJOINしたいけどエラーになる
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
const activeThreshold = new Date(Date.now() - (1000 * 60 * 60 * 24 * 30)); // 30日
|
|
|
|
if (ps.host) {
|
|
const q = Users.createQueryBuilder('user')
|
|
.where('user.isSuspended = FALSE')
|
|
.andWhere('user.host LIKE :host', { host: ps.host.toLowerCase() + '%' });
|
|
|
|
if (ps.username) {
|
|
q.andWhere('user.usernameLower LIKE :username', { username: ps.username.toLowerCase() + '%' });
|
|
}
|
|
|
|
q.andWhere('user.updatedAt IS NOT NULL');
|
|
q.orderBy('user.updatedAt', 'DESC');
|
|
|
|
const users = await q.take(ps.limit).getMany();
|
|
|
|
return await Users.packMany(users, me, { detail: ps.detail });
|
|
} else if (ps.username) {
|
|
let users: User[] = [];
|
|
|
|
if (me) {
|
|
const followingQuery = Followings.createQueryBuilder('following')
|
|
.select('following.followeeId')
|
|
.where('following.followerId = :followerId', { followerId: me.id });
|
|
|
|
const query = Users.createQueryBuilder('user')
|
|
.where(`user.id IN (${ followingQuery.getQuery() })`)
|
|
.andWhere(`user.id != :meId`, { meId: me.id })
|
|
.andWhere('user.isSuspended = FALSE')
|
|
.andWhere('user.usernameLower LIKE :username', { username: ps.username.toLowerCase() + '%' })
|
|
.andWhere(new Brackets(qb => { qb
|
|
.where('user.updatedAt IS NULL')
|
|
.orWhere('user.updatedAt > :activeThreshold', { activeThreshold: activeThreshold });
|
|
}));
|
|
|
|
query.setParameters(followingQuery.getParameters());
|
|
|
|
users = await query
|
|
.orderBy('user.usernameLower', 'ASC')
|
|
.take(ps.limit)
|
|
.getMany();
|
|
|
|
if (users.length < ps.limit) {
|
|
const otherQuery = await Users.createQueryBuilder('user')
|
|
.where(`user.id NOT IN (${ followingQuery.getQuery() })`)
|
|
.andWhere(`user.id != :meId`, { meId: me.id })
|
|
.andWhere('user.isSuspended = FALSE')
|
|
.andWhere('user.usernameLower LIKE :username', { username: ps.username.toLowerCase() + '%' })
|
|
.andWhere('user.updatedAt IS NOT NULL');
|
|
|
|
otherQuery.setParameters(followingQuery.getParameters());
|
|
|
|
const otherUsers = await otherQuery
|
|
.orderBy('user.updatedAt', 'DESC')
|
|
.take(ps.limit - users.length)
|
|
.getMany();
|
|
|
|
users = users.concat(otherUsers);
|
|
}
|
|
} else {
|
|
users = await Users.createQueryBuilder('user')
|
|
.where('user.isSuspended = FALSE')
|
|
.andWhere('user.usernameLower LIKE :username', { username: ps.username.toLowerCase() + '%' })
|
|
.andWhere('user.updatedAt IS NOT NULL')
|
|
.orderBy('user.updatedAt', 'DESC')
|
|
.take(ps.limit - users.length)
|
|
.getMany();
|
|
}
|
|
|
|
return await Users.packMany(users, me, { detail: !!ps.detail });
|
|
}
|
|
|
|
return [];
|
|
});
|