mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 07:43:09 +02:00
37 lines
669 B
TypeScript
37 lines
669 B
TypeScript
import $ from 'cafy';
|
|
import define from '../../define';
|
|
import Resolver from '@/remote/activitypub/resolver';
|
|
import { ApiError } from '../../error';
|
|
import ms from 'ms';
|
|
|
|
export const meta = {
|
|
tags: ['federation'],
|
|
|
|
requireCredential: true as const,
|
|
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 30,
|
|
},
|
|
|
|
params: {
|
|
uri: {
|
|
validator: $.str,
|
|
},
|
|
},
|
|
|
|
errors: {
|
|
},
|
|
|
|
res: {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
},
|
|
};
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, async (ps) => {
|
|
const resolver = new Resolver();
|
|
const object = await resolver.resolve(ps.uri);
|
|
return object;
|
|
});
|