37 lines
674 B
TypeScript
37 lines
674 B
TypeScript
import define from '../../define.js';
|
|
import Resolver from '@/remote/activitypub/resolver.js';
|
|
import { HOUR } from '@/const.js';
|
|
|
|
export const meta = {
|
|
tags: ['federation'],
|
|
|
|
requireCredential: true,
|
|
|
|
limit: {
|
|
duration: HOUR,
|
|
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;
|
|
});
|