2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { IsNull, MoreThan } from 'typeorm';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { NotesRepository, UsersRepository } from '@/models/index.js';
|
|
|
|
import type { Config } from '@/config.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
|
|
|
import { MAX_NOTE_TEXT_LENGTH } from '@/const.js';
|
|
|
|
import { Cache } from '@/misc/cache.js';
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
2022-12-04 08:03:09 +02:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-01-10 13:08:55 +02:00
|
|
|
import NotesChart from '@/core/chart/charts/notes.js';
|
|
|
|
import UsersChart from '@/core/chart/charts/users.js';
|
2023-01-15 13:52:53 +02:00
|
|
|
import { DEFAULT_POLICIES } from '@/core/RoleService.js';
|
2022-12-13 17:01:45 +02:00
|
|
|
import type { FastifyInstance, FastifyPluginOptions } from 'fastify';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
const nodeinfo2_1path = '/nodeinfo/2.1';
|
|
|
|
const nodeinfo2_0path = '/nodeinfo/2.0';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class NodeinfoServerService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
private metaService: MetaService,
|
2023-01-10 13:08:55 +02:00
|
|
|
private notesChart: NotesChart,
|
|
|
|
private usersChart: UsersChart,
|
2022-09-17 21:27:08 +03:00
|
|
|
) {
|
2022-12-04 08:03:09 +02:00
|
|
|
//this.createServer = this.createServer.bind(this);
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-09-17 21:27:08 +03:00
|
|
|
public getLinks() {
|
|
|
|
return [/* (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: this.config.url + nodeinfo2_0path,
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-12-03 12:42:05 +02:00
|
|
|
public createServer(fastify: FastifyInstance, options: FastifyPluginOptions, done: (err?: Error) => void) {
|
2022-09-17 21:27:08 +03:00
|
|
|
const nodeinfo2 = async () => {
|
|
|
|
const now = Date.now();
|
2023-01-10 13:08:55 +02:00
|
|
|
|
|
|
|
const notesChart = await this.notesChart.getChart('hour', 1, null);
|
|
|
|
const localPosts = notesChart.local.total[0];
|
|
|
|
|
|
|
|
const usersChart = await this.usersChart.getChart('hour', 1, null);
|
|
|
|
const total = usersChart.local.total[0];
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
const [
|
|
|
|
meta,
|
2023-01-10 13:08:55 +02:00
|
|
|
//activeHalfyear,
|
|
|
|
//activeMonth,
|
2022-09-17 21:27:08 +03:00
|
|
|
] = await Promise.all([
|
|
|
|
this.metaService.fetch(true),
|
2023-01-10 13:08:55 +02:00
|
|
|
// 重い
|
|
|
|
//this.usersRepository.count({ where: { host: IsNull(), lastActiveDate: MoreThan(new Date(now - 15552000000)) } }),
|
|
|
|
//this.usersRepository.count({ where: { host: IsNull(), lastActiveDate: MoreThan(new Date(now - 2592000000)) } }),
|
2022-09-17 21:27:08 +03:00
|
|
|
]);
|
|
|
|
|
2023-01-10 13:08:55 +02:00
|
|
|
const activeHalfyear = null;
|
|
|
|
const activeMonth = null;
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
const proxyAccount = meta.proxyAccountId ? await this.userEntityService.pack(meta.proxyAccountId).catch(() => null) : null;
|
|
|
|
|
2023-01-15 13:52:53 +02:00
|
|
|
const basePolicies = { ...DEFAULT_POLICIES, ...meta.policies };
|
2023-01-12 14:02:26 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
return {
|
|
|
|
software: {
|
|
|
|
name: 'misskey',
|
|
|
|
version: this.config.version,
|
|
|
|
repository: meta.repositoryUrl,
|
|
|
|
},
|
|
|
|
protocols: ['activitypub'],
|
|
|
|
services: {
|
|
|
|
inbound: [] as string[],
|
|
|
|
outbound: ['atom1.0', 'rss2.0'],
|
|
|
|
},
|
|
|
|
openRegistrations: !meta.disableRegistration,
|
|
|
|
usage: {
|
|
|
|
users: { total, activeHalfyear, activeMonth },
|
|
|
|
localPosts,
|
|
|
|
localComments: 0,
|
|
|
|
},
|
|
|
|
metadata: {
|
|
|
|
nodeName: meta.name,
|
|
|
|
nodeDescription: meta.description,
|
|
|
|
maintainer: {
|
|
|
|
name: meta.maintainerName,
|
|
|
|
email: meta.maintainerEmail,
|
|
|
|
},
|
|
|
|
langs: meta.langs,
|
|
|
|
tosUrl: meta.ToSUrl,
|
|
|
|
repositoryUrl: meta.repositoryUrl,
|
|
|
|
feedbackUrl: meta.feedbackUrl,
|
|
|
|
disableRegistration: meta.disableRegistration,
|
2023-01-15 13:52:53 +02:00
|
|
|
disableLocalTimeline: !basePolicies.ltlAvailable,
|
|
|
|
disableGlobalTimeline: !basePolicies.gtlAvailable,
|
2022-09-17 21:27:08 +03:00
|
|
|
emailRequiredForSignup: meta.emailRequiredForSignup,
|
|
|
|
enableHcaptcha: meta.enableHcaptcha,
|
|
|
|
enableRecaptcha: meta.enableRecaptcha,
|
|
|
|
maxNoteTextLength: MAX_NOTE_TEXT_LENGTH,
|
|
|
|
enableTwitterIntegration: meta.enableTwitterIntegration,
|
|
|
|
enableGithubIntegration: meta.enableGithubIntegration,
|
|
|
|
enableDiscordIntegration: meta.enableDiscordIntegration,
|
|
|
|
enableEmail: meta.enableEmail,
|
|
|
|
enableServiceWorker: meta.enableServiceWorker,
|
|
|
|
proxyAccountName: proxyAccount ? proxyAccount.username : null,
|
|
|
|
themeColor: meta.themeColor ?? '#86b300',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const cache = new Cache<Awaited<ReturnType<typeof nodeinfo2>>>(1000 * 60 * 10);
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
fastify.get(nodeinfo2_1path, async (request, reply) => {
|
2022-09-17 21:27:08 +03:00
|
|
|
const base = await cache.fetch(null, () => nodeinfo2());
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
reply.header('Cache-Control', 'public, max-age=600');
|
|
|
|
return { version: '2.1', ...base };
|
2022-09-17 21:27:08 +03:00
|
|
|
});
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
fastify.get(nodeinfo2_0path, async (request, reply) => {
|
2022-09-17 21:27:08 +03:00
|
|
|
const base = await cache.fetch(null, () => nodeinfo2());
|
|
|
|
|
2022-09-24 00:45:44 +03:00
|
|
|
delete (base as any).software.repository;
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
reply.header('Cache-Control', 'public, max-age=600');
|
|
|
|
return { version: '2.0', ...base };
|
2022-09-17 21:27:08 +03:00
|
|
|
});
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
done();
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
}
|