/* * SPDX-FileCopyrightText: syuilo and misskey-project * SPDX-License-Identifier: AGPL-3.0-only */ import { Injectable } from '@nestjs/common'; import { Endpoint } from '@/server/api/endpoint-base.js'; import { FollowingEntityService } from '@/core/entities/FollowingEntityService.js'; export const meta = { tags: ['federation'], requireCredential: true, kind: 'read:account', res: { type: 'array', optional: false, nullable: false, items: { type: 'object', optional: false, nullable: false, ref: 'Following', }, }, // 10 calls per 5 seconds limit: { duration: 1000 * 5, max: 10, }, } as const; export const paramDef = { type: 'object', properties: { host: { type: 'string' }, sinceId: { type: 'string', format: 'misskey:id' }, untilId: { type: 'string', format: 'misskey:id' }, limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 }, includeFollower: { type: 'boolean', default: false }, includeFollowee: { type: 'boolean', default: true }, }, required: ['host'], } as const; @Injectable() export default class extends Endpoint { // eslint-disable-line import/no-default-export constructor( private followingEntityService: FollowingEntityService, ) { super(meta, paramDef, async (ps, me) => { return this.followingEntityService.getFollowing(me, ps); }); } }