eternal-flame-AD
7a106a390d
Some checks failed
Lint / pnpm_install (pull_request) Successful in 1m53s
Publish Docker image / Build (pull_request) Successful in 5m5s
Test (production install and build) / production (20.16.0) (pull_request) Successful in 1m9s
Test (backend) / unit (20.16.0) (pull_request) Successful in 7m47s
Lint / pnpm_install (push) Successful in 1m15s
Publish Docker image / Build (push) Successful in 4m45s
Test (backend) / e2e (20.16.0) (pull_request) Failing after 10m58s
Test (production install and build) / production (20.16.0) (push) Successful in 1m12s
Lint / lint (backend) (pull_request) Successful in 2m12s
Test (backend) / unit (20.16.0) (push) Successful in 7m24s
Lint / lint (frontend) (pull_request) Successful in 2m17s
Lint / lint (frontend-embed) (pull_request) Successful in 2m21s
Lint / lint (frontend-shared) (pull_request) Successful in 2m26s
Test (backend) / e2e (20.16.0) (push) Successful in 10m51s
Lint / lint (misskey-bubble-game) (pull_request) Successful in 2m43s
Lint / lint (misskey-js) (pull_request) Successful in 2m24s
Lint / lint (misskey-reversi) (pull_request) Successful in 2m28s
Lint / lint (sw) (pull_request) Successful in 2m29s
Lint / typecheck (misskey-js) (pull_request) Successful in 1m29s
Lint / typecheck (backend) (pull_request) Successful in 2m19s
Lint / typecheck (sw) (pull_request) Successful in 1m34s
Lint / lint (backend) (push) Successful in 2m41s
Lint / lint (frontend) (push) Successful in 2m37s
Lint / lint (frontend-embed) (push) Successful in 2m24s
Lint / lint (frontend-shared) (push) Successful in 2m29s
Lint / lint (misskey-js) (push) Successful in 2m26s
Lint / lint (misskey-bubble-game) (push) Successful in 2m54s
Lint / lint (misskey-reversi) (push) Successful in 2m17s
Lint / typecheck (backend) (push) Successful in 2m13s
Lint / lint (sw) (push) Successful in 2m41s
Lint / typecheck (misskey-js) (push) Successful in 1m28s
Lint / typecheck (sw) (push) Successful in 1m32s
Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
179 lines
5.9 KiB
TypeScript
179 lines
5.9 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { Config } from '@/config.js';
|
|
import { MetaService } from '@/core/MetaService.js';
|
|
import { MAX_NOTE_TEXT_LENGTH } from '@/const.js';
|
|
import { MemorySingleCache } from '@/misc/cache.js';
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import NotesChart from '@/core/chart/charts/notes.js';
|
|
import UsersChart from '@/core/chart/charts/users.js';
|
|
import { DEFAULT_POLICIES } from '@/core/RoleService.js';
|
|
import type { FastifyInstance, FastifyPluginOptions } from 'fastify';
|
|
import { IsNull, MoreThan, Not } from 'typeorm';
|
|
import type { NotesRepository, UsersRepository } from '@/models/_.js';
|
|
|
|
const nodeinfo2_1path = '/nodeinfo/2.1';
|
|
const nodeinfo2_0path = '/nodeinfo/2.0';
|
|
const nodeinfo_homepage = 'https://misskey-hub.net';
|
|
|
|
@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,
|
|
private notesChart: NotesChart,
|
|
private usersChart: UsersChart,
|
|
) {
|
|
//this.createServer = this.createServer.bind(this);
|
|
}
|
|
|
|
@bindThis
|
|
public getLinks() {
|
|
return [{
|
|
rel: 'http://nodeinfo.diaspora.software/ns/schema/2.1',
|
|
href: this.config.url + nodeinfo2_1path,
|
|
}, {
|
|
rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0',
|
|
href: this.config.url + nodeinfo2_0path,
|
|
}];
|
|
}
|
|
|
|
@bindThis
|
|
public createServer(fastify: FastifyInstance, options: FastifyPluginOptions, done: (err?: Error) => void) {
|
|
const nodeinfo2 = async (version: number) => {
|
|
const now = Date.now();
|
|
|
|
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];
|
|
|
|
const [
|
|
meta,
|
|
activeHalfyear,
|
|
activeMonth,
|
|
localComments,
|
|
] = await Promise.all([
|
|
this.metaService.fetch(true),
|
|
this.usersRepository.count({ where: { host: IsNull(), lastActiveDate: MoreThan(new Date(now - 15552000000)) } }),
|
|
this.usersRepository.count({ where: { host: IsNull(), lastActiveDate: MoreThan(new Date(now - 2592000000)) } }),
|
|
this.notesRepository.count({ where: { userHost: IsNull(), replyId: Not(IsNull()) } }),
|
|
]);
|
|
|
|
const proxyAccount = meta.proxyAccountId ? await this.userEntityService.pack(meta.proxyAccountId).catch(() => null) : null;
|
|
|
|
const basePolicies = { ...DEFAULT_POLICIES, ...meta.policies };
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const document: any = {
|
|
software: {
|
|
name: 'misskey',
|
|
version: this.config.version,
|
|
homepage: nodeinfo_homepage,
|
|
repository: meta.repositoryUrl,
|
|
},
|
|
protocols: ['activitypub'],
|
|
services: {
|
|
inbound: [] as string[],
|
|
outbound: ['atom1.0', 'rss2.0'],
|
|
},
|
|
openRegistrations: !meta.disableRegistration,
|
|
usage: {
|
|
users: { total, activeHalfyear, activeMonth },
|
|
localPosts,
|
|
localComments,
|
|
},
|
|
metadata: {
|
|
nodeName: meta.name,
|
|
nodeDescription: meta.description,
|
|
nodeAdmins: [{
|
|
name: meta.maintainerName,
|
|
email: meta.maintainerEmail,
|
|
}],
|
|
// deprecated
|
|
maintainer: {
|
|
name: meta.maintainerName,
|
|
email: meta.maintainerEmail,
|
|
},
|
|
gitCommit: this.config.gitCommit,
|
|
gitDescribe: this.config.gitDescribe,
|
|
langs: meta.langs,
|
|
tosUrl: meta.termsOfServiceUrl,
|
|
privacyPolicyUrl: meta.privacyPolicyUrl,
|
|
inquiryUrl: meta.inquiryUrl,
|
|
impressumUrl: meta.impressumUrl,
|
|
repositoryUrl: meta.repositoryUrl,
|
|
feedbackUrl: meta.feedbackUrl,
|
|
disableRegistration: meta.disableRegistration,
|
|
disableLocalTimeline: !basePolicies.ltlAvailable,
|
|
disableGlobalTimeline: !basePolicies.gtlAvailable,
|
|
emailRequiredForSignup: meta.emailRequiredForSignup,
|
|
enableHcaptcha: meta.enableHcaptcha,
|
|
enableRecaptcha: meta.enableRecaptcha,
|
|
enableMcaptcha: meta.enableMcaptcha,
|
|
enableTurnstile: meta.enableTurnstile,
|
|
maxNoteTextLength: MAX_NOTE_TEXT_LENGTH,
|
|
enableEmail: meta.enableEmail,
|
|
enableServiceWorker: meta.enableServiceWorker,
|
|
proxyAccountName: proxyAccount ? proxyAccount.username : null,
|
|
themeColor: meta.themeColor ?? '#86b300',
|
|
},
|
|
};
|
|
if (version >= 21) {
|
|
document.software.repository = meta.repositoryUrl;
|
|
document.software.homepage = meta.repositoryUrl;
|
|
}
|
|
return document;
|
|
};
|
|
|
|
const cache = new MemorySingleCache<Awaited<ReturnType<typeof nodeinfo2>>>(1000 * 60 * 10); // 10m
|
|
|
|
fastify.get(nodeinfo2_1path, async (request, reply) => {
|
|
const base = await cache.fetch(() => nodeinfo2(21));
|
|
|
|
reply
|
|
.type(
|
|
'application/json; profile="http://nodeinfo.diaspora.software/ns/schema/2.1#"',
|
|
)
|
|
.header('Cache-Control', 'public, max-age=600')
|
|
.header('Access-Control-Allow-Headers', 'Accept')
|
|
.header('Access-Control-Allow-Methods', 'GET, OPTIONS')
|
|
.header('Access-Control-Allow-Origin', '*')
|
|
.header('Access-Control-Expose-Headers', 'Vary');
|
|
return { version: '2.1', ...base };
|
|
});
|
|
|
|
fastify.get(nodeinfo2_0path, async (request, reply) => {
|
|
const base = await cache.fetch(() => nodeinfo2(20));
|
|
|
|
delete (base as any).software.repository;
|
|
|
|
reply
|
|
.type(
|
|
'application/json; profile="http://nodeinfo.diaspora.software/ns/schema/2.0#"',
|
|
)
|
|
.header('Cache-Control', 'public, max-age=600')
|
|
.header('Access-Control-Allow-Headers', 'Accept')
|
|
.header('Access-Control-Allow-Methods', 'GET, OPTIONS')
|
|
.header('Access-Control-Allow-Origin', '*')
|
|
.header('Access-Control-Expose-Headers', 'Vary');
|
|
return { version: '2.0', ...base };
|
|
});
|
|
|
|
done();
|
|
}
|
|
}
|