2022-06-14 11:01:23 +02:00
|
|
|
import { IsNull } from 'typeorm';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { Users } from '@/models/index.js';
|
|
|
|
import { fetchMeta } from '@/misc/fetch-meta.js';
|
|
|
|
import * as Acct from '@/misc/acct.js';
|
2022-11-10 05:06:03 +01:00
|
|
|
import type { User } from '@/models/entities/user.js';
|
2022-06-14 11:01:23 +02:00
|
|
|
import define from '../define.js';
|
2019-05-10 10:30:28 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2022-11-10 04:59:20 +01:00
|
|
|
requireCredentialPrivateMode: false,
|
2019-05-10 10:30:28 +02:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-05-10 10:30:28 +02:00
|
|
|
items: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'UserDetailed',
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2019-05-10 10:30:28 +02:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-05-10 10:30:28 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2019-05-10 10:30:28 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
|
2022-03-26 07:34:00 +01: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 10:30:28 +02:00
|
|
|
|
|
|
|
return await Users.packMany(users.filter(x => x !== undefined) as User[], me, { detail: true });
|
|
|
|
});
|