2023-02-16 14:09:41 +00:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2021-11-12 10:47:04 +00:00
|
|
|
import ms from 'ms';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-12-04 01:16:03 +00:00
|
|
|
import { ApResolverService } from '@/core/activitypub/ApResolverService.js';
|
2021-04-16 08:34:06 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['federation'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2021-10-08 05:05:07 +00:00
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
2021-12-09 14:58:30 +00:00
|
|
|
max: 30,
|
2021-10-08 05:05:07 +00:00
|
|
|
},
|
2021-04-16 08:34:06 +00:00
|
|
|
|
|
|
|
errors: {
|
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2021-04-16 08:34:06 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
uri: { type: 'string' },
|
|
|
|
},
|
|
|
|
required: ['uri'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00: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;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|