dd1783f984
* Disable `import/no-default-export` properly * Disable `import/no-default-export`
77 lines
1.6 KiB
TypeScript
77 lines
1.6 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { URL } from 'node:url';
|
|
import { Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { RelayService } from '@/core/RelayService.js';
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
|
|
errors: {
|
|
invalidUrl: {
|
|
message: 'Invalid URL',
|
|
code: 'INVALID_URL',
|
|
id: 'fb8c92d3-d4e5-44e7-b3d4-800d5cef8b2c',
|
|
},
|
|
},
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
},
|
|
inbox: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'url',
|
|
},
|
|
status: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
default: 'requesting',
|
|
enum: [
|
|
'requesting',
|
|
'accepted',
|
|
'rejected',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
inbox: { type: 'string' },
|
|
},
|
|
required: ['inbox'],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
private relayService: RelayService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
try {
|
|
if (new URL(ps.inbox).protocol !== 'https:') throw new Error('https only');
|
|
} catch {
|
|
throw new ApiError(meta.errors.invalidUrl);
|
|
}
|
|
|
|
return await this.relayService.addRelay(ps.inbox);
|
|
});
|
|
}
|
|
}
|