2022-09-18 03:27:08 +09:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2021-11-12 19:47:04 +09:00
|
|
|
import ms from 'ms';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
|
import { ApResolverService } from '@/core/remote/activitypub/ApResolverService.js';
|
|
|
|
|
import { ApiError } from '../../error.js';
|
2021-04-16 17:34:06 +09:00
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
|
tags: ['federation'],
|
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2021-10-08 14:05:07 +09:00
|
|
|
|
|
|
|
|
limit: {
|
|
|
|
|
duration: ms('1hour'),
|
2021-12-09 23:58:30 +09:00
|
|
|
max: 30,
|
2021-10-08 14:05:07 +09:00
|
|
|
},
|
2021-04-16 17:34:06 +09:00
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2021-04-16 17:34:06 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
|
properties: {
|
|
|
|
|
uri: { type: 'string' },
|
|
|
|
|
},
|
|
|
|
|
required: ['uri'],
|
|
|
|
|
} as const;
|
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-18 03:27:08 +09:00
|
|
|
@Injectable()
|
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
|
constructor(
|
|
|
|
|
private apResolverService: ApResolverService,
|
|
|
|
|
) {
|
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
|
const resolver = this.apResolverService.createResolver();
|
|
|
|
|
const object = await resolver.resolve(ps.uri);
|
|
|
|
|
return object;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|