2022-06-14 12:01:23 +03:00
|
|
|
import { IsNull } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { Users } from '@/models/index.js';
|
|
|
|
import { fetchMeta } from '@/misc/fetch-meta.js';
|
|
|
|
import * as Acct from '@/misc/acct.js';
|
|
|
|
import { User } from '@/models/entities/user.js';
|
2022-06-14 12:01:23 +03:00
|
|
|
import define from '../define.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-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2019-05-10 11:30:28 +03:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
|
2022-03-26 08:34:00 +02:00
|
|
|
const users = await Promise.all(meta.pinnedUsers.map(acct => Acct.parse(acct)).map(acct => Users.findOneBy({
|
|
|
|
usernameLower: acct.username.toLowerCase(),
|
|
|
|
host: acct.host ?? IsNull(),
|
|
|
|
})));
|
2019-05-10 11:30:28 +03:00
|
|
|
|
|
|
|
return await Users.packMany(users.filter(x => x !== undefined) as User[], me, { detail: true });
|
|
|
|
});
|