d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
39 lines
710 B
TypeScript
39 lines
710 B
TypeScript
import define from '../../define.js';
|
|
import Resolver from '@/remote/activitypub/resolver.js';
|
|
import { ApiError } from '../../error.js';
|
|
import ms from 'ms';
|
|
|
|
export const meta = {
|
|
tags: ['federation'],
|
|
|
|
requireCredential: true,
|
|
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 30,
|
|
},
|
|
|
|
errors: {
|
|
},
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
uri: { type: 'string' },
|
|
},
|
|
required: ['uri'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps) => {
|
|
const resolver = new Resolver();
|
|
const object = await resolver.resolve(ps.uri);
|
|
return object;
|
|
});
|