2023-07-27 08:31:52 +03:00
|
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
|
import cluster from 'node:cluster';
|
|
|
|
|
import * as fs from 'node:fs';
|
2023-03-09 19:37:44 +02:00
|
|
|
|
import { fileURLToPath } from 'node:url';
|
2023-03-03 04:13:12 +02:00
|
|
|
|
import { Inject, Injectable, OnApplicationShutdown } from '@nestjs/common';
|
|
|
|
|
import Fastify, { FastifyInstance } from 'fastify';
|
2023-03-09 19:37:44 +02:00
|
|
|
|
import fastifyStatic from '@fastify/static';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
import { IsNull } from 'typeorm';
|
|
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
|
import type { Config } from '@/config.js';
|
2023-09-15 08:28:29 +03:00
|
|
|
|
import type { EmojisRepository, UserProfilesRepository, UsersRepository } from '@/models/_.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-18 17:07:41 +03:00
|
|
|
|
import type Logger from '@/logger.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
import * as Acct from '@/misc/acct.js';
|
|
|
|
|
import { genIdenticon } from '@/misc/gen-identicon.js';
|
|
|
|
|
import { createTemp } from '@/misc/create-temp.js';
|
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
2022-09-18 17:07:41 +03:00
|
|
|
|
import { LoggerService } from '@/core/LoggerService.js';
|
2023-01-17 08:58:12 +02:00
|
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-07-02 10:02:32 +03:00
|
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
import { ActivityPubServerService } from './ActivityPubServerService.js';
|
|
|
|
|
import { NodeinfoServerService } from './NodeinfoServerService.js';
|
|
|
|
|
import { ApiServerService } from './api/ApiServerService.js';
|
|
|
|
|
import { StreamingApiServerService } from './api/StreamingApiServerService.js';
|
|
|
|
|
import { WellKnownServerService } from './WellKnownServerService.js';
|
|
|
|
|
import { FileServerService } from './FileServerService.js';
|
|
|
|
|
import { ClientServerService } from './web/ClientServerService.js';
|
2023-03-09 19:37:44 +02:00
|
|
|
|
import { OpenApiServerService } from './api/openapi/OpenApiServerService.js';
|
2023-07-27 12:51:58 +03:00
|
|
|
|
import { OAuth2ProviderService } from './oauth/OAuth2ProviderService.js';
|
2023-03-09 19:37:44 +02:00
|
|
|
|
|
|
|
|
|
const _dirname = fileURLToPath(new URL('.', import.meta.url));
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
|
|
@Injectable()
|
2023-03-03 04:13:12 +02:00
|
|
|
|
export class ServerService implements OnApplicationShutdown {
|
2022-09-18 21:11:50 +03:00
|
|
|
|
private logger: Logger;
|
2023-03-03 04:13:12 +02:00
|
|
|
|
#fastify: FastifyInstance;
|
2022-09-18 17:07:41 +03:00
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
|
constructor(
|
|
|
|
|
@Inject(DI.config)
|
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
|
|
2023-01-07 07:19:25 +02:00
|
|
|
|
@Inject(DI.emojisRepository)
|
|
|
|
|
private emojisRepository: EmojisRepository,
|
|
|
|
|
|
2023-07-02 10:02:32 +03:00
|
|
|
|
private metaService: MetaService,
|
2022-09-17 21:27:08 +03:00
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
|
private apiServerService: ApiServerService,
|
2023-03-09 19:37:44 +02:00
|
|
|
|
private openApiServerService: OpenApiServerService,
|
2022-09-17 21:27:08 +03:00
|
|
|
|
private streamingApiServerService: StreamingApiServerService,
|
|
|
|
|
private activityPubServerService: ActivityPubServerService,
|
|
|
|
|
private wellKnownServerService: WellKnownServerService,
|
|
|
|
|
private nodeinfoServerService: NodeinfoServerService,
|
|
|
|
|
private fileServerService: FileServerService,
|
|
|
|
|
private clientServerService: ClientServerService,
|
|
|
|
|
private globalEventService: GlobalEventService,
|
2022-09-18 17:07:41 +03:00
|
|
|
|
private loggerService: LoggerService,
|
2023-07-27 12:51:58 +03:00
|
|
|
|
private oauth2ProviderService: OAuth2ProviderService,
|
2022-09-17 21:27:08 +03:00
|
|
|
|
) {
|
2022-09-18 21:11:50 +03:00
|
|
|
|
this.logger = this.loggerService.getLogger('server', 'gray', false);
|
2022-09-17 21:27:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
|
@bindThis
|
2023-07-27 12:51:58 +03:00
|
|
|
|
public async launch(): Promise<void> {
|
2022-12-03 12:42:05 +02:00
|
|
|
|
const fastify = Fastify({
|
|
|
|
|
trustProxy: true,
|
|
|
|
|
logger: !['production', 'test'].includes(process.env.NODE_ENV ?? ''),
|
|
|
|
|
});
|
2023-03-03 04:13:12 +02:00
|
|
|
|
this.#fastify = fastify;
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
|
|
// HSTS
|
|
|
|
|
// 6months (15552000sec)
|
|
|
|
|
if (this.config.url.startsWith('https') && !this.config.disableHsts) {
|
2022-12-03 12:42:05 +02:00
|
|
|
|
fastify.addHook('onRequest', (request, reply, done) => {
|
|
|
|
|
reply.header('strict-transport-security', 'max-age=15552000; preload');
|
|
|
|
|
done();
|
2022-09-17 21:27:08 +03:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-09 19:37:44 +02:00
|
|
|
|
// Register non-serving static server so that the child services can use reply.sendFile.
|
|
|
|
|
// `root` here is just a placeholder and each call must use its own `rootPath`.
|
|
|
|
|
fastify.register(fastifyStatic, {
|
|
|
|
|
root: _dirname,
|
|
|
|
|
serve: false,
|
|
|
|
|
});
|
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
|
fastify.register(this.apiServerService.createServer, { prefix: '/api' });
|
2023-03-09 19:37:44 +02:00
|
|
|
|
fastify.register(this.openApiServerService.createServer);
|
2023-01-26 09:06:29 +02:00
|
|
|
|
fastify.register(this.fileServerService.createServer);
|
2022-12-03 12:42:05 +02:00
|
|
|
|
fastify.register(this.activityPubServerService.createServer);
|
|
|
|
|
fastify.register(this.nodeinfoServerService.createServer);
|
|
|
|
|
fastify.register(this.wellKnownServerService.createServer);
|
2023-07-27 12:51:58 +03:00
|
|
|
|
fastify.register(this.oauth2ProviderService.createServer);
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
2023-02-28 12:55:31 +02:00
|
|
|
|
fastify.get<{ Params: { path: string }; Querystring: { static?: any; badge?: any; }; }>('/emoji/:path(.*)', async (request, reply) => {
|
2023-01-07 07:19:25 +02:00
|
|
|
|
const path = request.params.path;
|
|
|
|
|
|
2023-01-21 06:20:09 +02:00
|
|
|
|
reply.header('Cache-Control', 'public, max-age=86400');
|
|
|
|
|
|
2023-01-07 07:19:25 +02:00
|
|
|
|
if (!path.match(/^[a-zA-Z0-9\-_@\.]+?\.webp$/)) {
|
|
|
|
|
reply.code(404);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const name = path.split('@')[0].replace('.webp', '');
|
|
|
|
|
const host = path.split('@')[1]?.replace('.webp', '');
|
|
|
|
|
|
|
|
|
|
const emoji = await this.emojisRepository.findOneBy({
|
|
|
|
|
// `@.` is the spec of ReactionService.decodeReaction
|
|
|
|
|
host: (host == null || host === '.') ? IsNull() : host,
|
|
|
|
|
name: name,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
reply.header('Content-Security-Policy', 'default-src \'none\'; style-src \'unsafe-inline\'');
|
|
|
|
|
|
|
|
|
|
if (emoji == null) {
|
2023-01-17 08:58:12 +02:00
|
|
|
|
if ('fallback' in request.query) {
|
|
|
|
|
return await reply.redirect('/static-assets/emoji-unknown.png');
|
|
|
|
|
} else {
|
|
|
|
|
reply.code(404);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-01-07 07:19:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-28 12:55:31 +02:00
|
|
|
|
let url: URL;
|
|
|
|
|
if ('badge' in request.query) {
|
|
|
|
|
url = new URL(`${this.config.mediaProxy}/emoji.png`);
|
|
|
|
|
// || emoji.originalUrl してるのは後方互換性のため(publicUrlはstringなので??はだめ)
|
|
|
|
|
url.searchParams.set('url', emoji.publicUrl || emoji.originalUrl);
|
|
|
|
|
url.searchParams.set('badge', '1');
|
|
|
|
|
} else {
|
|
|
|
|
url = new URL(`${this.config.mediaProxy}/emoji.webp`);
|
|
|
|
|
// || emoji.originalUrl してるのは後方互換性のため(publicUrlはstringなので??はだめ)
|
|
|
|
|
url.searchParams.set('url', emoji.publicUrl || emoji.originalUrl);
|
|
|
|
|
url.searchParams.set('emoji', '1');
|
|
|
|
|
if ('static' in request.query) url.searchParams.set('static', '1');
|
|
|
|
|
}
|
2023-01-07 07:19:25 +02:00
|
|
|
|
|
|
|
|
|
return await reply.redirect(
|
|
|
|
|
301,
|
|
|
|
|
url.toString(),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
|
fastify.get<{ Params: { acct: string } }>('/avatar/@:acct', async (request, reply) => {
|
|
|
|
|
const { username, host } = Acct.parse(request.params.acct);
|
2022-09-17 21:27:08 +03:00
|
|
|
|
const user = await this.usersRepository.findOne({
|
|
|
|
|
where: {
|
|
|
|
|
usernameLower: username.toLowerCase(),
|
|
|
|
|
host: (host == null) || (host === this.config.host) ? IsNull() : host,
|
|
|
|
|
isSuspended: false,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2023-01-21 06:20:09 +02:00
|
|
|
|
reply.header('Cache-Control', 'public, max-age=86400');
|
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
|
if (user) {
|
2023-04-06 13:48:24 +03:00
|
|
|
|
reply.redirect(user.avatarUrl ?? this.userEntityService.getIdenticonUrl(user));
|
2022-09-17 21:27:08 +03:00
|
|
|
|
} else {
|
2022-12-03 12:42:05 +02:00
|
|
|
|
reply.redirect('/static-assets/user-unknown.png');
|
2022-09-17 21:27:08 +03:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
|
fastify.get<{ Params: { x: string } }>('/identicon/:x', async (request, reply) => {
|
|
|
|
|
reply.header('Content-Type', 'image/png');
|
2023-01-21 06:20:09 +02:00
|
|
|
|
reply.header('Cache-Control', 'public, max-age=86400');
|
2023-07-02 10:02:32 +03:00
|
|
|
|
|
|
|
|
|
if ((await this.metaService.fetch()).enableIdenticonGeneration) {
|
|
|
|
|
const [temp, cleanup] = await createTemp();
|
|
|
|
|
await genIdenticon(request.params.x, fs.createWriteStream(temp));
|
|
|
|
|
return fs.createReadStream(temp).on('close', () => cleanup());
|
|
|
|
|
} else {
|
|
|
|
|
return reply.redirect('/static-assets/avatar.png');
|
|
|
|
|
}
|
2022-09-17 21:27:08 +03:00
|
|
|
|
});
|
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
|
fastify.get<{ Params: { code: string } }>('/verify-email/:code', async (request, reply) => {
|
2022-09-17 21:27:08 +03:00
|
|
|
|
const profile = await this.userProfilesRepository.findOneBy({
|
2022-12-03 12:42:05 +02:00
|
|
|
|
emailVerifyCode: request.params.code,
|
2022-09-17 21:27:08 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (profile != null) {
|
|
|
|
|
await this.userProfilesRepository.update({ userId: profile.userId }, {
|
|
|
|
|
emailVerified: true,
|
|
|
|
|
emailVerifyCode: null,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.globalEventService.publishMainStream(profile.userId, 'meUpdated', await this.userEntityService.pack(profile.userId, { id: profile.userId }, {
|
|
|
|
|
detail: true,
|
|
|
|
|
includeSecrets: true,
|
|
|
|
|
}));
|
2022-12-03 12:42:05 +02:00
|
|
|
|
|
|
|
|
|
reply.code(200);
|
|
|
|
|
return 'Verify succeeded!';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
} else {
|
2022-12-03 12:42:05 +02:00
|
|
|
|
reply.code(404);
|
2023-02-09 04:03:40 +02:00
|
|
|
|
return;
|
2022-09-17 21:27:08 +03:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
|
fastify.register(this.clientServerService.createServer);
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
2023-05-29 07:32:19 +03:00
|
|
|
|
this.streamingApiServerService.attach(fastify.server);
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
2022-12-03 12:42:05 +02:00
|
|
|
|
fastify.server.on('error', err => {
|
2022-09-18 17:07:41 +03:00
|
|
|
|
switch ((err as any).code) {
|
2022-09-17 21:27:08 +03:00
|
|
|
|
case 'EACCES':
|
2023-02-22 11:00:35 +02:00
|
|
|
|
this.logger.error(`You do not have permission to listen on port ${this.config.port}.`);
|
2022-09-17 21:27:08 +03:00
|
|
|
|
break;
|
|
|
|
|
case 'EADDRINUSE':
|
2023-02-22 11:00:35 +02:00
|
|
|
|
this.logger.error(`Port ${this.config.port} is already in use by another process.`);
|
2022-09-17 21:27:08 +03:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2022-09-18 21:11:50 +03:00
|
|
|
|
this.logger.error(err);
|
2022-09-17 21:27:08 +03:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (cluster.isWorker) {
|
2022-12-03 12:42:05 +02:00
|
|
|
|
process.send!('listenFailed');
|
2022-09-17 21:27:08 +03:00
|
|
|
|
} else {
|
2022-12-03 12:42:05 +02:00
|
|
|
|
// disableClustering
|
2022-09-17 21:27:08 +03:00
|
|
|
|
process.exit(1);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2023-07-17 08:12:02 +03:00
|
|
|
|
if (this.config.socket) {
|
|
|
|
|
if (fs.existsSync(this.config.socket)) {
|
|
|
|
|
fs.unlinkSync(this.config.socket);
|
|
|
|
|
}
|
|
|
|
|
fastify.listen({ path: this.config.socket }, (err, address) => {
|
|
|
|
|
if (this.config.chmodSocket) {
|
|
|
|
|
fs.chmodSync(this.config.socket!, this.config.chmodSocket);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
fastify.listen({ port: this.config.port, host: '0.0.0.0' });
|
|
|
|
|
}
|
2023-03-03 04:13:12 +02:00
|
|
|
|
|
|
|
|
|
await fastify.ready();
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-29 07:21:26 +03:00
|
|
|
|
@bindThis
|
|
|
|
|
public async dispose(): Promise<void> {
|
2023-07-02 10:02:32 +03:00
|
|
|
|
await this.streamingApiServerService.detach();
|
2023-03-03 04:13:12 +02:00
|
|
|
|
await this.#fastify.close();
|
2022-09-17 21:27:08 +03:00
|
|
|
|
}
|
2023-05-29 07:21:26 +03:00
|
|
|
|
|
|
|
|
|
@bindThis
|
|
|
|
|
async onApplicationShutdown(signal: string): Promise<void> {
|
|
|
|
|
await this.dispose();
|
|
|
|
|
}
|
2022-09-17 21:27:08 +03:00
|
|
|
|
}
|