2019-09-26 15:50:34 -05:00
|
|
|
import * as Router from '@koa/router';
|
2019-02-05 02:42:55 -06:00
|
|
|
import config from '../config';
|
2019-04-23 18:11:19 -05:00
|
|
|
import { fetchMeta } from '../misc/fetch-meta';
|
2020-08-28 18:56:32 -05:00
|
|
|
import { Users } from '../models';
|
2019-02-13 00:56:45 -06:00
|
|
|
// import User from '../models/user';
|
|
|
|
// import Note from '../models/note';
|
2019-02-05 02:42:55 -06:00
|
|
|
|
|
|
|
const router = new Router();
|
|
|
|
|
|
|
|
const nodeinfo2_1path = '/nodeinfo/2.1';
|
|
|
|
const nodeinfo2_0path = '/nodeinfo/2.0';
|
|
|
|
|
|
|
|
export const links = [/* (awaiting release) {
|
|
|
|
rel: 'http://nodeinfo.diaspora.software/ns/schema/2.1',
|
|
|
|
href: config.url + nodeinfo2_1path
|
|
|
|
}, */{
|
|
|
|
rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0',
|
|
|
|
href: config.url + nodeinfo2_0path
|
|
|
|
}];
|
|
|
|
|
|
|
|
const nodeinfo2 = async () => {
|
|
|
|
const [
|
2019-11-01 08:34:26 -05:00
|
|
|
meta,
|
2019-02-13 00:56:45 -06:00
|
|
|
// total,
|
|
|
|
// activeHalfyear,
|
|
|
|
// activeMonth,
|
|
|
|
// localPosts,
|
|
|
|
// localComments
|
2019-02-05 02:42:55 -06:00
|
|
|
] = await Promise.all([
|
2019-04-23 18:11:19 -05:00
|
|
|
fetchMeta(true),
|
2019-02-13 00:56:45 -06:00
|
|
|
// User.count({ host: null }),
|
|
|
|
// User.count({ host: null, updatedAt: { $gt: new Date(Date.now() - 15552000000) } }),
|
|
|
|
// User.count({ host: null, updatedAt: { $gt: new Date(Date.now() - 2592000000) } }),
|
|
|
|
// Note.count({ '_user.host': null, replyId: null }),
|
|
|
|
// Note.count({ '_user.host': null, replyId: { $ne: null } })
|
2019-02-05 02:42:55 -06:00
|
|
|
]);
|
|
|
|
|
2020-08-28 18:56:32 -05:00
|
|
|
const proxyAccount = meta.proxyAccountId ? await Users.pack(meta.proxyAccountId).catch(() => null) : null;
|
|
|
|
|
2019-02-05 02:42:55 -06:00
|
|
|
return {
|
|
|
|
software: {
|
2019-11-01 08:34:26 -05:00
|
|
|
name: 'misskey',
|
|
|
|
version: config.version,
|
|
|
|
repository: meta.repositoryUrl,
|
2019-02-05 02:42:55 -06:00
|
|
|
},
|
|
|
|
protocols: ['activitypub'],
|
|
|
|
services: {
|
|
|
|
inbound: [] as string[],
|
|
|
|
outbound: ['atom1.0', 'rss2.0']
|
|
|
|
},
|
2019-11-01 08:34:26 -05:00
|
|
|
openRegistrations: !meta.disableRegistration,
|
2019-02-05 02:42:55 -06:00
|
|
|
usage: {
|
2019-02-13 00:56:45 -06:00
|
|
|
users: {} // { total, activeHalfyear, activeMonth },
|
|
|
|
// localPosts,
|
|
|
|
// localComments
|
2019-02-05 02:42:55 -06:00
|
|
|
},
|
2019-04-07 07:50:36 -05:00
|
|
|
metadata: {
|
2019-11-05 07:20:56 -06:00
|
|
|
nodeName: meta.name,
|
|
|
|
nodeDescription: meta.description,
|
2019-04-07 07:50:36 -05:00
|
|
|
maintainer: {
|
2019-11-01 08:34:26 -05:00
|
|
|
name: meta.maintainerName,
|
|
|
|
email: meta.maintainerEmail
|
2019-04-07 07:50:36 -05:00
|
|
|
},
|
2019-11-01 08:34:26 -05:00
|
|
|
langs: meta.langs,
|
2020-01-29 13:37:25 -06:00
|
|
|
tosUrl: meta.ToSUrl,
|
2019-11-01 08:34:26 -05:00
|
|
|
repositoryUrl: meta.repositoryUrl,
|
|
|
|
feedbackUrl: meta.feedbackUrl,
|
|
|
|
disableRegistration: meta.disableRegistration,
|
|
|
|
disableLocalTimeline: meta.disableLocalTimeline,
|
|
|
|
disableGlobalTimeline: meta.disableGlobalTimeline,
|
2020-04-28 00:29:33 -05:00
|
|
|
enableHcaptcha: meta.enableHcaptcha,
|
2019-11-01 08:34:26 -05:00
|
|
|
enableRecaptcha: meta.enableRecaptcha,
|
|
|
|
maxNoteTextLength: meta.maxNoteTextLength,
|
|
|
|
enableTwitterIntegration: meta.enableTwitterIntegration,
|
|
|
|
enableGithubIntegration: meta.enableGithubIntegration,
|
|
|
|
enableDiscordIntegration: meta.enableDiscordIntegration,
|
|
|
|
enableEmail: meta.enableEmail,
|
2020-08-28 18:56:32 -05:00
|
|
|
enableServiceWorker: meta.enableServiceWorker,
|
|
|
|
proxyAccountName: proxyAccount ? proxyAccount.username : null,
|
2019-04-07 07:50:36 -05:00
|
|
|
}
|
2019-02-05 02:42:55 -06:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
router.get(nodeinfo2_1path, async ctx => {
|
|
|
|
const base = await nodeinfo2();
|
|
|
|
|
|
|
|
ctx.body = { version: '2.1', ...base };
|
2020-05-15 07:37:09 -05:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=600');
|
2019-02-05 02:42:55 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
router.get(nodeinfo2_0path, async ctx => {
|
|
|
|
const base = await nodeinfo2();
|
|
|
|
|
|
|
|
delete base.software.repository;
|
|
|
|
|
|
|
|
ctx.body = { version: '2.0', ...base };
|
2020-05-15 07:37:09 -05:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=600');
|
2019-02-05 02:42:55 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
export default router;
|