mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 06:43:09 +02:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
34 lines
696 B
TypeScript
34 lines
696 B
TypeScript
import define from '../../define.js';
|
|
import { Instances } from '@/models/index.js';
|
|
import { toPuny } from '@/misc/convert-host.js';
|
|
|
|
export const meta = {
|
|
tags: ['federation'],
|
|
|
|
requireCredential: false,
|
|
|
|
res: {
|
|
oneOf: [{
|
|
type: 'object',
|
|
ref: 'FederationInstance',
|
|
}, {
|
|
type: 'null',
|
|
}],
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
host: { type: 'string' },
|
|
},
|
|
required: ['host'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
const instance = await Instances
|
|
.findOne({ host: toPuny(ps.host) });
|
|
|
|
return instance ? await Instances.pack(instance) : null;
|
|
});
|