Sharkey/src/server/api/mastodon.ts
MeiMei 072492c29b Implement /api/v1/instance/peers (#2913)
* Implement /api/v1/instance/peers

* Use punycode

* Remove Cache-Control

* Rename
2018-10-16 08:55:55 +09:00

15 lines
400 B
TypeScript

import * as Router from 'koa-router';
import User from '../../models/user';
import { toASCII } from 'punycode';
// Init router
const router = new Router();
router.get('/v1/instance/peers', async ctx => {
const peers = await User.distinct('host', { host: { $ne: null } }) as any as string[];
const punyCodes = peers.map(peer => toASCII(peer));
ctx.body = punyCodes;
});
module.exports = router;