2022-06-14 12:01:23 +03:00
|
|
|
import { IsNull } from 'typeorm';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { UsersRepository } from '@/models/index.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import * as Acct from '@/misc/acct.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import type { User } from '@/models/entities/User.js';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2019-05-10 11:30:28 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2019-05-10 11:30:28 +03:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-05-10 11:30:28 +03:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'UserDetailed',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-05-10 11:30:28 +03:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2019-05-10 11:30:28 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
2019-05-10 11:30:28 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
private metaService: MetaService,
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const meta = await this.metaService.fetch();
|
2019-05-10 11:30:28 +03:00
|
|
|
|
2022-11-11 04:22:31 +02:00
|
|
|
const users = await Promise.all(meta.pinnedUsers.map(acct => Acct.parse(acct)).map(acct => this.usersRepository.findOneBy({
|
2022-09-17 21:27:08 +03:00
|
|
|
usernameLower: acct.username.toLowerCase(),
|
|
|
|
host: acct.host ?? IsNull(),
|
|
|
|
})));
|
|
|
|
|
2022-11-11 04:22:31 +02:00
|
|
|
return await this.userEntityService.packMany(users.filter(x => x !== null) as User[], me, { detail: true });
|
2022-09-17 21:27:08 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|