2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-06-14 04:01:23 -05:00
|
|
|
import { IsNull } from 'typeorm';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-09-15 00:28:29 -05:00
|
|
|
import type { UsersRepository } from '@/models/_.js';
|
2022-02-26 20:07:39 -06:00
|
|
|
import * as Acct from '@/misc/acct.js';
|
2023-09-19 21:33:36 -05:00
|
|
|
import type { MiUser } from '@/models/User.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
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 03:30:28 -05:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: false,
|
2019-05-10 03:30:28 -05:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-05-10 03:30:28 -05:00
|
|
|
items: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'UserDetailed',
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2019-05-10 03:30:28 -05:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2019-05-10 03:30:28 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
2023-08-17 07:20:58 -05:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
2019-05-10 03:30:28 -05:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
private metaService: MetaService,
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const meta = await this.metaService.fetch();
|
2019-05-10 03:30:28 -05:00
|
|
|
|
2022-11-10 20:22:31 -06:00
|
|
|
const users = await Promise.all(meta.pinnedUsers.map(acct => Acct.parse(acct)).map(acct => this.usersRepository.findOneBy({
|
2022-09-17 13:27:08 -05:00
|
|
|
usernameLower: acct.username.toLowerCase(),
|
|
|
|
host: acct.host ?? IsNull(),
|
|
|
|
})));
|
|
|
|
|
2023-08-16 03:51:28 -05:00
|
|
|
return await this.userEntityService.packMany(users.filter(x => x !== null) as MiUser[], me, { detail: true });
|
2022-09-17 13:27:08 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|