123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599 |
- // @ts-check
- import fs from 'node:fs';
- import http from 'node:http';
- import path from 'node:path';
- import url from 'node:url';
- import cors from 'cors';
- import dotenv from 'dotenv';
- import express from 'express';
- import { Redis } from 'ioredis';
- import { JSDOM } from 'jsdom';
- import pg from 'pg';
- import pgConnectionString from 'pg-connection-string';
- import WebSocket from 'ws';
- import { AuthenticationError, RequestError, extractStatusAndMessage as extractErrorStatusAndMessage } from './errors.js';
- import { logger, httpLogger, initializeLogLevel, attachWebsocketHttpLogger, createWebsocketLogger } from './logging.js';
- import { setupMetrics } from './metrics.js';
- import { isTruthy, normalizeHashtag, firstParam } from './utils.js';
- const environment = process.env.NODE_ENV || 'development';
- // Correctly detect and load .env or .env.production file based on environment:
- const dotenvFile = environment === 'production' ? '.env.production' : '.env';
- const dotenvFilePath = path.resolve(
- url.fileURLToPath(
- new URL(path.join('..', dotenvFile), import.meta.url)
- )
- );
- dotenv.config({
- path: dotenvFilePath
- });
- initializeLogLevel(process.env, environment);
- /**
- * Declares the result type for accountFromToken / accountFromRequest.
- *
- * Note: This is here because jsdoc doesn't like importing types that
- * are nested in functions
- * @typedef ResolvedAccount
- * @property {string} accessTokenId
- * @property {string[]} scopes
- * @property {string} accountId
- * @property {string[]} chosenLanguages
- * @property {string} deviceId
- */
- /**
- * @param {RedisConfiguration} config
- * @returns {Promise<Redis>}
- */
- const createRedisClient = async ({ redisParams, redisUrl }) => {
- let client;
- if (typeof redisUrl === 'string') {
- client = new Redis(redisUrl, redisParams);
- } else {
- client = new Redis(redisParams);
- }
- client.on('error', (err) => logger.error({ err }, 'Redis Client Error!'));
- return client;
- };
- /**
- * Attempts to safely parse a string as JSON, used when both receiving a message
- * from redis and when receiving a message from a client over a websocket
- * connection, this is why it accepts a `req` argument.
- * @param {string} json
- * @param {any?} req
- * @returns {Object.<string, any>|null}
- */
- const parseJSON = (json, req) => {
- try {
- return JSON.parse(json);
- } catch (err) {
- /* FIXME: This logging isn't great, and should probably be done at the
- * call-site of parseJSON, not in the method, but this would require changing
- * the signature of parseJSON to return something akin to a Result type:
- * [Error|null, null|Object<string,any}], and then handling the error
- * scenarios.
- */
- if (req) {
- if (req.accountId) {
- req.log.error({ err }, `Error parsing message from user ${req.accountId}`);
- } else {
- req.log.error({ err }, `Error parsing message from ${req.remoteAddress}`);
- }
- } else {
- logger.error({ err }, `Error parsing message from redis`);
- }
- return null;
- }
- };
- /**
- * Takes an environment variable that should be an integer, attempts to parse
- * it falling back to a default if not set, and handles errors parsing.
- * @param {string|undefined} value
- * @param {number} defaultValue
- * @param {string} variableName
- * @returns {number}
- */
- const parseIntFromEnv = (value, defaultValue, variableName) => {
- if (typeof value === 'string' && value.length > 0) {
- const parsedValue = parseInt(value, 10);
- if (isNaN(parsedValue)) {
- throw new Error(`Invalid ${variableName} environment variable: ${value}`);
- }
- return parsedValue;
- } else {
- return defaultValue;
- }
- };
- /**
- * @param {NodeJS.ProcessEnv} env the `process.env` value to read configuration from
- * @returns {pg.PoolConfig} the configuration for the PostgreSQL connection
- */
- const pgConfigFromEnv = (env) => {
- /** @type {Record<string, pg.PoolConfig>} */
- const pgConfigs = {
- development: {
- user: env.DB_USER || pg.defaults.user,
- password: env.DB_PASS || pg.defaults.password,
- database: env.DB_NAME || 'mastodon_development',
- host: env.DB_HOST || pg.defaults.host,
- port: parseIntFromEnv(env.DB_PORT, pg.defaults.port ?? 5432, 'DB_PORT')
- },
- production: {
- user: env.DB_USER || 'mastodon',
- password: env.DB_PASS || '',
- database: env.DB_NAME || 'mastodon_production',
- host: env.DB_HOST || 'localhost',
- port: parseIntFromEnv(env.DB_PORT, 5432, 'DB_PORT')
- },
- };
- /**
- * @type {pg.PoolConfig}
- */
- let baseConfig = {};
- if (env.DATABASE_URL) {
- const parsedUrl = pgConnectionString.parse(env.DATABASE_URL);
- // The result of dbUrlToConfig from pg-connection-string is not type
- // compatible with pg.PoolConfig, since parts of the connection URL may be
- // `null` when pg.PoolConfig expects `undefined`, as such we have to
- // manually create the baseConfig object from the properties of the
- // parsedUrl.
- //
- // For more information see:
- // https://github.com/brianc/node-postgres/issues/2280
- //
- // FIXME: clean up once brianc/node-postgres#3128 lands
- if (typeof parsedUrl.password === 'string') baseConfig.password = parsedUrl.password;
- if (typeof parsedUrl.host === 'string') baseConfig.host = parsedUrl.host;
- if (typeof parsedUrl.user === 'string') baseConfig.user = parsedUrl.user;
- if (typeof parsedUrl.port === 'string') {
- const parsedPort = parseInt(parsedUrl.port, 10);
- if (isNaN(parsedPort)) {
- throw new Error('Invalid port specified in DATABASE_URL environment variable');
- }
- baseConfig.port = parsedPort;
- }
- if (typeof parsedUrl.database === 'string') baseConfig.database = parsedUrl.database;
- if (typeof parsedUrl.options === 'string') baseConfig.options = parsedUrl.options;
- // The pg-connection-string type definition isn't correct, as parsedUrl.ssl
- // can absolutely be an Object, this is to work around these incorrect
- // types, including the casting of parsedUrl.ssl to Record<string, any>
- if (typeof parsedUrl.ssl === 'boolean') {
- baseConfig.ssl = parsedUrl.ssl;
- } else if (typeof parsedUrl.ssl === 'object' && !Array.isArray(parsedUrl.ssl) && parsedUrl.ssl !== null) {
- /** @type {Record<string, any>} */
- const sslOptions = parsedUrl.ssl;
- baseConfig.ssl = {};
- baseConfig.ssl.cert = sslOptions.cert;
- baseConfig.ssl.key = sslOptions.key;
- baseConfig.ssl.ca = sslOptions.ca;
- baseConfig.ssl.rejectUnauthorized = sslOptions.rejectUnauthorized;
- }
- // Support overriding the database password in the connection URL
- if (!baseConfig.password && env.DB_PASS) {
- baseConfig.password = env.DB_PASS;
- }
- } else if (Object.hasOwn(pgConfigs, environment)) {
- baseConfig = pgConfigs[environment];
- if (env.DB_SSLMODE) {
- switch(env.DB_SSLMODE) {
- case 'disable':
- case '':
- baseConfig.ssl = false;
- break;
- case 'no-verify':
- baseConfig.ssl = { rejectUnauthorized: false };
- break;
- default:
- baseConfig.ssl = {};
- break;
- }
- }
- } else {
- throw new Error('Unable to resolve postgresql database configuration.');
- }
- return {
- ...baseConfig,
- max: parseIntFromEnv(env.DB_POOL, 10, 'DB_POOL'),
- connectionTimeoutMillis: 15000,
- // Deliberately set application_name to an empty string to prevent excessive
- // CPU usage with PG Bouncer. See:
- // - https://github.com/mastodon/mastodon/pull/23958
- // - https://github.com/pgbouncer/pgbouncer/issues/349
- application_name: '',
- };
- };
- /**
- * @typedef RedisConfiguration
- * @property {import('ioredis').RedisOptions} redisParams
- * @property {string} redisPrefix
- * @property {string|undefined} redisUrl
- */
- /**
- * @param {NodeJS.ProcessEnv} env the `process.env` value to read configuration from
- * @returns {RedisConfiguration} configuration for the Redis connection
- */
- const redisConfigFromEnv = (env) => {
- // ioredis *can* transparently add prefixes for us, but it doesn't *in some cases*,
- // which means we can't use it. But this is something that should be looked into.
- const redisPrefix = env.REDIS_NAMESPACE ? `${env.REDIS_NAMESPACE}:` : '';
- let redisPort = parseIntFromEnv(env.REDIS_PORT, 6379, 'REDIS_PORT');
- let redisDatabase = parseIntFromEnv(env.REDIS_DB, 0, 'REDIS_DB');
- /** @type {import('ioredis').RedisOptions} */
- const redisParams = {
- host: env.REDIS_HOST || '127.0.0.1',
- port: redisPort,
- db: redisDatabase,
- password: env.REDIS_PASSWORD || undefined,
- };
- // redisParams.path takes precedence over host and port.
- if (env.REDIS_URL && env.REDIS_URL.startsWith('unix://')) {
- redisParams.path = env.REDIS_URL.slice(7);
- }
- return {
- redisParams,
- redisPrefix,
- redisUrl: typeof env.REDIS_URL === 'string' ? env.REDIS_URL : undefined,
- };
- };
- const PUBLIC_CHANNELS = [
- 'public',
- 'public:media',
- 'public:local',
- 'public:local:media',
- 'public:remote',
- 'public:remote:media',
- 'hashtag',
- 'hashtag:local',
- ];
- // Used for priming the counters/gauges for the various metrics that are
- // per-channel
- const CHANNEL_NAMES = [
- 'system',
- 'user',
- 'user:notification',
- 'list',
- 'direct',
- ...PUBLIC_CHANNELS
- ];
- const startServer = async () => {
- const pgPool = new pg.Pool(pgConfigFromEnv(process.env));
- const server = http.createServer();
- const wss = new WebSocket.Server({ noServer: true });
- // Set the X-Request-Id header on WebSockets:
- wss.on("headers", function onHeaders(headers, req) {
- headers.push(`X-Request-Id: ${req.id}`);
- });
- const app = express();
- app.set('trust proxy', process.env.TRUSTED_PROXY_IP ? process.env.TRUSTED_PROXY_IP.split(/(?:\s*,\s*|\s+)/) : 'loopback,uniquelocal');
- app.use(httpLogger);
- app.use(cors());
- // Handle eventsource & other http requests:
- server.on('request', app);
- // Handle upgrade requests:
- server.on('upgrade', async function handleUpgrade(request, socket, head) {
- // Setup the HTTP logger, since websocket upgrades don't get the usual http
- // logger. This decorates the `request` object.
- attachWebsocketHttpLogger(request);
- request.log.info("HTTP Upgrade Requested");
- /** @param {Error} err */
- const onSocketError = (err) => {
- request.log.error({ error: err }, err.message);
- };
- socket.on('error', onSocketError);
- /** @type {ResolvedAccount} */
- let resolvedAccount;
- try {
- resolvedAccount = await accountFromRequest(request);
- } catch (err) {
- // Unfortunately for using the on('upgrade') setup, we need to manually
- // write a HTTP Response to the Socket to close the connection upgrade
- // attempt, so the following code is to handle all of that.
- const {statusCode, errorMessage } = extractErrorStatusAndMessage(err);
- /** @type {Record<string, string | number | import('pino-http').ReqId>} */
- const headers = {
- 'Connection': 'close',
- 'Content-Type': 'text/plain',
- 'Content-Length': 0,
- 'X-Request-Id': request.id,
- 'X-Error-Message': errorMessage
- };
- // Ensure the socket is closed once we've finished writing to it:
- socket.once('finish', () => {
- socket.destroy();
- });
- // Write the HTTP response manually:
- socket.end(`HTTP/1.1 ${statusCode} ${http.STATUS_CODES[statusCode]}\r\n${Object.keys(headers).map((key) => `${key}: ${headers[key]}`).join('\r\n')}\r\n\r\n`);
- // Finally, log the error:
- request.log.error({
- err,
- res: {
- statusCode,
- headers
- }
- }, errorMessage);
- return;
- }
- // Remove the error handler, wss.handleUpgrade has its own:
- socket.removeListener('error', onSocketError);
- wss.handleUpgrade(request, socket, head, function done(ws) {
- request.log.info("Authenticated request & upgraded to WebSocket connection");
- const wsLogger = createWebsocketLogger(request, resolvedAccount);
- // Start the connection:
- wss.emit('connection', ws, request, wsLogger);
- });
- });
- /**
- * @type {Object.<string, Array.<function(Object<string, any>): void>>}
- */
- const subs = {};
- const redisConfig = redisConfigFromEnv(process.env);
- const redisSubscribeClient = await createRedisClient(redisConfig);
- const redisClient = await createRedisClient(redisConfig);
- const { redisPrefix } = redisConfig;
- const metrics = setupMetrics(CHANNEL_NAMES, pgPool);
- // TODO: migrate all metrics to metrics.X.method() instead of just X.method()
- const {
- connectedClients,
- connectedChannels,
- redisSubscriptions,
- redisMessagesReceived,
- messagesSent,
- } = metrics;
- // When checking metrics in the browser, the favicon is requested this
- // prevents the request from falling through to the API Router, which would
- // error for this endpoint:
- app.get('/favicon.ico', (_req, res) => res.status(404).end());
- app.get('/api/v1/streaming/health', (_req, res) => {
- res.writeHead(200, { 'Content-Type': 'text/plain' });
- res.end('OK');
- });
- app.get('/metrics', async (req, res) => {
- try {
- res.set('Content-Type', metrics.register.contentType);
- res.end(await metrics.register.metrics());
- } catch (ex) {
- req.log.error(ex);
- res.status(500).end();
- }
- });
- /**
- * @param {string[]} channels
- * @returns {function(): void}
- */
- const subscriptionHeartbeat = channels => {
- const interval = 6 * 60;
- const tellSubscribed = () => {
- channels.forEach(channel => redisClient.set(`${redisPrefix}subscribed:${channel}`, '1', 'EX', interval * 3));
- };
- tellSubscribed();
- const heartbeat = setInterval(tellSubscribed, interval * 1000);
- return () => {
- clearInterval(heartbeat);
- };
- };
- /**
- * @param {string} channel
- * @param {string} message
- */
- const onRedisMessage = (channel, message) => {
- redisMessagesReceived.inc();
- const callbacks = subs[channel];
- logger.debug(`New message on channel ${redisPrefix}${channel}`);
- if (!callbacks) {
- return;
- }
- const json = parseJSON(message, null);
- if (!json) return;
- callbacks.forEach(callback => callback(json));
- };
- redisSubscribeClient.on("message", onRedisMessage);
- /**
- * @callback SubscriptionListener
- * @param {ReturnType<parseJSON>} json of the message
- * @returns void
- */
- /**
- * @param {string} channel
- * @param {SubscriptionListener} callback
- */
- const subscribe = (channel, callback) => {
- logger.debug(`Adding listener for ${channel}`);
- subs[channel] = subs[channel] || [];
- if (subs[channel].length === 0) {
- logger.debug(`Subscribe ${channel}`);
- redisSubscribeClient.subscribe(channel, (err, count) => {
- if (err) {
- logger.error(`Error subscribing to ${channel}`);
- } else if (typeof count === 'number') {
- redisSubscriptions.set(count);
- }
- });
- }
- subs[channel].push(callback);
- };
- /**
- * @param {string} channel
- * @param {SubscriptionListener} callback
- */
- const unsubscribe = (channel, callback) => {
- logger.debug(`Removing listener for ${channel}`);
- if (!subs[channel]) {
- return;
- }
- subs[channel] = subs[channel].filter(item => item !== callback);
- if (subs[channel].length === 0) {
- logger.debug(`Unsubscribe ${channel}`);
- redisSubscribeClient.unsubscribe(channel, (err, count) => {
- if (err) {
- logger.error(`Error unsubscribing to ${channel}`);
- } else if (typeof count === 'number') {
- redisSubscriptions.set(count);
- }
- });
- delete subs[channel];
- }
- };
- /**
- * @param {http.IncomingMessage & ResolvedAccount} req
- * @param {string[]} necessaryScopes
- * @returns {boolean}
- */
- const isInScope = (req, necessaryScopes) =>
- req.scopes.some(scope => necessaryScopes.includes(scope));
- /**
- * @param {string} token
- * @param {any} req
- * @returns {Promise<ResolvedAccount>}
- */
- const accountFromToken = (token, req) => new Promise((resolve, reject) => {
- pgPool.connect((err, client, done) => {
- if (err) {
- reject(err);
- return;
- }
- // @ts-ignore
- client.query('SELECT oauth_access_tokens.id, oauth_access_tokens.resource_owner_id, users.account_id, users.chosen_languages, oauth_access_tokens.scopes, devices.device_id FROM oauth_access_tokens INNER JOIN users ON oauth_access_tokens.resource_owner_id = users.id LEFT OUTER JOIN devices ON oauth_access_tokens.id = devices.access_token_id WHERE oauth_access_tokens.token = $1 AND oauth_access_tokens.revoked_at IS NULL LIMIT 1', [token], (err, result) => {
- done();
- if (err) {
- reject(err);
- return;
- }
- if (result.rows.length === 0) {
- reject(new AuthenticationError('Invalid access token'));
- return;
- }
- req.accessTokenId = result.rows[0].id;
- req.scopes = result.rows[0].scopes.split(' ');
- req.accountId = result.rows[0].account_id;
- req.chosenLanguages = result.rows[0].chosen_languages;
- req.deviceId = result.rows[0].device_id;
- resolve({
- accessTokenId: result.rows[0].id,
- scopes: result.rows[0].scopes.split(' '),
- accountId: result.rows[0].account_id,
- chosenLanguages: result.rows[0].chosen_languages,
- deviceId: result.rows[0].device_id
- });
- });
- });
- });
- /**
- * @param {any} req
- * @returns {Promise<ResolvedAccount>}
- */
- const accountFromRequest = (req) => new Promise((resolve, reject) => {
- const authorization = req.headers.authorization;
- const location = url.parse(req.url, true);
- const accessToken = location.query.access_token || req.headers['sec-websocket-protocol'];
- if (!authorization && !accessToken) {
- reject(new AuthenticationError('Missing access token'));
- return;
- }
- const token = authorization ? authorization.replace(/^Bearer /, '') : accessToken;
- resolve(accountFromToken(token, req));
- });
- /**
- * @param {any} req
- * @returns {string|undefined}
- */
- const channelNameFromPath = req => {
- const { path, query } = req;
- const onlyMedia = isTruthy(query.only_media);
- switch (path) {
- case '/api/v1/streaming/user':
- return 'user';
- case '/api/v1/streaming/user/notification':
- return 'user:notification';
- case '/api/v1/streaming/public':
- return onlyMedia ? 'public:media' : 'public';
- case '/api/v1/streaming/public/local':
- return onlyMedia ? 'public:local:media' : 'public:local';
- case '/api/v1/streaming/public/remote':
- return onlyMedia ? 'public:remote:media' : 'public:remote';
- case '/api/v1/streaming/hashtag':
- return 'hashtag';
- case '/api/v1/streaming/hashtag/local':
- return 'hashtag:local';
- case '/api/v1/streaming/direct':
- return 'direct';
- case '/api/v1/streaming/list':
- return 'list';
- default:
- return undefined;
- }
- };
- /**
- * @param {http.IncomingMessage & ResolvedAccount} req
- * @param {import('pino').Logger} logger
- * @param {string|undefined} channelName
- * @returns {Promise.<void>}
- */
- const checkScopes = (req, logger, channelName) => new Promise((resolve, reject) => {
- logger.debug(`Checking OAuth scopes for ${channelName}`);
- // When accessing public channels, no scopes are needed
- if (channelName && PUBLIC_CHANNELS.includes(channelName)) {
- resolve();
- return;
- }
- // The `read` scope has the highest priority, if the token has it
- // then it can access all streams
- const requiredScopes = ['read'];
- // When accessing specifically the notifications stream,
- // we need a read:notifications, while in all other cases,
- // we can allow access with read:statuses. Mind that the
- // user stream will not contain notifications unless
- // the token has either read or read:notifications scope
- // as well, this is handled separately.
- if (channelName === 'user:notification') {
- requiredScopes.push('read:notifications');
- } else {
- requiredScopes.push('read:statuses');
- }
- if (req.scopes && requiredScopes.some(requiredScope => req.scopes.includes(requiredScope))) {
- resolve();
- return;
- }
- reject(new AuthenticationError('Access token does not have the required scopes'));
- });
- /**
- * @typedef SystemMessageHandlers
- * @property {function(): void} onKill
- */
- /**
- * @param {any} req
- * @param {SystemMessageHandlers} eventHandlers
- * @returns {SubscriptionListener}
- */
- const createSystemMessageListener = (req, eventHandlers) => {
- return message => {
- if (!message?.event) {
- return;
- }
- const { event } = message;
- req.log.debug(`System message for ${req.accountId}: ${event}`);
- if (event === 'kill') {
- req.log.debug(`Closing connection for ${req.accountId} due to expired access token`);
- eventHandlers.onKill();
- } else if (event === 'filters_changed') {
- req.log.debug(`Invalidating filters cache for ${req.accountId}`);
- req.cachedFilters = null;
- }
- };
- };
- /**
- * @param {http.IncomingMessage & ResolvedAccount} req
- * @param {http.OutgoingMessage} res
- */
- const subscribeHttpToSystemChannel = (req, res) => {
- const accessTokenChannelId = `timeline:access_token:${req.accessTokenId}`;
- const systemChannelId = `timeline:system:${req.accountId}`;
- const listener = createSystemMessageListener(req, {
- onKill() {
- res.end();
- },
- });
- res.on('close', () => {
- unsubscribe(`${redisPrefix}${accessTokenChannelId}`, listener);
- unsubscribe(`${redisPrefix}${systemChannelId}`, listener);
- connectedChannels.labels({ type: 'eventsource', channel: 'system' }).dec(2);
- });
- subscribe(`${redisPrefix}${accessTokenChannelId}`, listener);
- subscribe(`${redisPrefix}${systemChannelId}`, listener);
- connectedChannels.labels({ type: 'eventsource', channel: 'system' }).inc(2);
- };
- /**
- * @param {any} req
- * @param {any} res
- * @param {function(Error=): void} next
- */
- const authenticationMiddleware = (req, res, next) => {
- if (req.method === 'OPTIONS') {
- next();
- return;
- }
- const channelName = channelNameFromPath(req);
- // If no channelName can be found for the request, then we should terminate
- // the connection, as there's nothing to stream back
- if (!channelName) {
- next(new RequestError('Unknown channel requested'));
- return;
- }
- accountFromRequest(req).then(() => checkScopes(req, req.log, channelName)).then(() => {
- subscribeHttpToSystemChannel(req, res);
- }).then(() => {
- next();
- }).catch(err => {
- next(err);
- });
- };
- /**
- * @param {Error} err
- * @param {any} req
- * @param {any} res
- * @param {function(Error=): void} next
- */
- const errorMiddleware = (err, req, res, next) => {
- req.log.error({ err }, err.toString());
- if (res.headersSent) {
- next(err);
- return;
- }
- const {statusCode, errorMessage } = extractErrorStatusAndMessage(err);
- res.writeHead(statusCode, { 'Content-Type': 'application/json' });
- res.end(JSON.stringify({ error: errorMessage }));
- };
- /**
- * @param {any[]} arr
- * @param {number=} shift
- * @returns {string}
- */
- // @ts-ignore
- const placeholders = (arr, shift = 0) => arr.map((_, i) => `$${i + 1 + shift}`).join(', ');
- /**
- * @param {string} listId
- * @param {any} req
- * @returns {Promise.<void>}
- */
- const authorizeListAccess = (listId, req) => new Promise((resolve, reject) => {
- const { accountId } = req;
- pgPool.connect((err, client, done) => {
- if (err) {
- reject();
- return;
- }
- // @ts-ignore
- client.query('SELECT id, account_id FROM lists WHERE id = $1 LIMIT 1', [listId], (err, result) => {
- done();
- if (err || result.rows.length === 0 || result.rows[0].account_id !== accountId) {
- reject();
- return;
- }
- resolve();
- });
- });
- });
- /**
- * @param {string[]} channelIds
- * @param {http.IncomingMessage & ResolvedAccount} req
- * @param {import('pino').Logger} log
- * @param {function(string, string): void} output
- * @param {undefined | function(string[], SubscriptionListener): void} attachCloseHandler
- * @param {'websocket' | 'eventsource'} destinationType
- * @param {boolean=} needsFiltering
- * @returns {SubscriptionListener}
- */
- const streamFrom = (channelIds, req, log, output, attachCloseHandler, destinationType, needsFiltering = false) => {
- log.info({ channelIds }, `Starting stream`);
- /**
- * @param {string} event
- * @param {object|string} payload
- */
- const transmit = (event, payload) => {
- // TODO: Replace "string"-based delete payloads with object payloads:
- const encodedPayload = typeof payload === 'object' ? JSON.stringify(payload) : payload;
- messagesSent.labels({ type: destinationType }).inc(1);
- log.debug({ event, payload }, `Transmitting ${event} to ${req.accountId}`);
- output(event, encodedPayload);
- };
- // The listener used to process each message off the redis subscription,
- // message here is an object with an `event` and `payload` property. Some
- // events also include a queued_at value, but this is being removed shortly.
- /** @type {SubscriptionListener} */
- const listener = message => {
- if (!message?.event || !message?.payload) {
- return;
- }
- const { event, payload } = message;
- // Streaming only needs to apply filtering to some channels and only to
- // some events. This is because majority of the filtering happens on the
- // Ruby on Rails side when producing the event for streaming.
- //
- // The only events that require filtering from the streaming server are
- // `update` and `status.update`, all other events are transmitted to the
- // client as soon as they're received (pass-through).
- //
- // The channels that need filtering are determined in the function
- // `channelNameToIds` defined below:
- if (!needsFiltering || (event !== 'update' && event !== 'status.update')) {
- transmit(event, payload);
- return;
- }
- // The rest of the logic from here on in this function is to handle
- // filtering of statuses:
- // Filter based on language:
- if (Array.isArray(req.chosenLanguages) && payload.language !== null && req.chosenLanguages.indexOf(payload.language) === -1) {
- log.debug(`Message ${payload.id} filtered by language (${payload.language})`);
- return;
- }
- // When the account is not logged in, it is not necessary to confirm the block or mute
- if (!req.accountId) {
- transmit(event, payload);
- return;
- }
- // Filter based on domain blocks, blocks, mutes, or custom filters:
- // @ts-ignore
- const targetAccountIds = [payload.account.id].concat(payload.mentions.map(item => item.id));
- const accountDomain = payload.account.acct.split('@')[1];
- // TODO: Move this logic out of the message handling loop
- pgPool.connect((err, client, releasePgConnection) => {
- if (err) {
- log.error(err);
- return;
- }
- const queries = [
- // @ts-ignore
- client.query(`SELECT 1
- FROM blocks
- WHERE (account_id = $1 AND target_account_id IN (${placeholders(targetAccountIds, 2)}))
- OR (account_id = $2 AND target_account_id = $1)
- UNION
- SELECT 1
- FROM mutes
- WHERE account_id = $1
- AND target_account_id IN (${placeholders(targetAccountIds, 2)})`, [req.accountId, payload.account.id].concat(targetAccountIds)),
- ];
- if (accountDomain) {
- // @ts-ignore
- queries.push(client.query('SELECT 1 FROM account_domain_blocks WHERE account_id = $1 AND domain = $2', [req.accountId, accountDomain]));
- }
- // @ts-ignore
- if (!payload.filtered && !req.cachedFilters) {
- // @ts-ignore
- queries.push(client.query('SELECT filter.id AS id, filter.phrase AS title, filter.context AS context, filter.expires_at AS expires_at, filter.action AS filter_action, keyword.keyword AS keyword, keyword.whole_word AS whole_word FROM custom_filter_keywords keyword JOIN custom_filters filter ON keyword.custom_filter_id = filter.id WHERE filter.account_id = $1 AND (filter.expires_at IS NULL OR filter.expires_at > NOW())', [req.accountId]));
- }
- Promise.all(queries).then(values => {
- releasePgConnection();
- // Handling blocks & mutes and domain blocks: If one of those applies,
- // then we don't transmit the payload of the event to the client
- if (values[0].rows.length > 0 || (accountDomain && values[1].rows.length > 0)) {
- return;
- }
- // If the payload already contains the `filtered` property, it means
- // that filtering has been applied on the ruby on rails side, as
- // such, we don't need to construct or apply the filters in streaming:
- if (Object.hasOwn(payload, "filtered")) {
- transmit(event, payload);
- return;
- }
- // Handling for constructing the custom filters and caching them on the request
- // TODO: Move this logic out of the message handling lifecycle
- // @ts-ignore
- if (!req.cachedFilters) {
- const filterRows = values[accountDomain ? 2 : 1].rows;
- // @ts-ignore
- req.cachedFilters = filterRows.reduce((cache, filter) => {
- if (cache[filter.id]) {
- cache[filter.id].keywords.push([filter.keyword, filter.whole_word]);
- } else {
- cache[filter.id] = {
- keywords: [[filter.keyword, filter.whole_word]],
- expires_at: filter.expires_at,
- filter: {
- id: filter.id,
- title: filter.title,
- context: filter.context,
- expires_at: filter.expires_at,
- // filter.filter_action is the value from the
- // custom_filters.action database column, it is an integer
- // representing a value in an enum defined by Ruby on Rails:
- //
- // enum { warn: 0, hide: 1 }
- filter_action: ['warn', 'hide'][filter.filter_action],
- },
- };
- }
- return cache;
- }, {});
- // Construct the regular expressions for the custom filters: This
- // needs to be done in a separate loop as the database returns one
- // filterRow per keyword, so we need all the keywords before
- // constructing the regular expression
- // @ts-ignore
- Object.keys(req.cachedFilters).forEach((key) => {
- // @ts-ignore
- req.cachedFilters[key].regexp = new RegExp(req.cachedFilters[key].keywords.map(([keyword, whole_word]) => {
- let expr = keyword.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
- if (whole_word) {
- if (/^[\w]/.test(expr)) {
- expr = `\\b${expr}`;
- }
- if (/[\w]$/.test(expr)) {
- expr = `${expr}\\b`;
- }
- }
- return expr;
- }).join('|'), 'i');
- });
- }
- // Apply cachedFilters against the payload, constructing a
- // `filter_results` array of FilterResult entities
- // @ts-ignore
- if (req.cachedFilters) {
- const status = payload;
- // TODO: Calculate searchableContent in Ruby on Rails:
- // @ts-ignore
- const searchableContent = ([status.spoiler_text || '', status.content].concat((status.poll && status.poll.options) ? status.poll.options.map(option => option.title) : [])).concat(status.media_attachments.map(att => att.description)).join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
- const searchableTextContent = JSDOM.fragment(searchableContent).textContent;
- const now = new Date();
- // @ts-ignore
- const filter_results = Object.values(req.cachedFilters).reduce((results, cachedFilter) => {
- // Check the filter hasn't expired before applying:
- if (cachedFilter.expires_at !== null && cachedFilter.expires_at < now) {
- return results;
- }
- // Just in-case JSDOM fails to find textContent in searchableContent
- if (!searchableTextContent) {
- return results;
- }
- const keyword_matches = searchableTextContent.match(cachedFilter.regexp);
- if (keyword_matches) {
- // results is an Array of FilterResult; status_matches is always
- // null as we only are only applying the keyword-based custom
- // filters, not the status-based custom filters.
- // https://docs.joinmastodon.org/entities/FilterResult/
- results.push({
- filter: cachedFilter.filter,
- keyword_matches,
- status_matches: null
- });
- }
- return results;
- }, []);
- // Send the payload + the FilterResults as the `filtered` property
- // to the streaming connection. To reach this code, the `event` must
- // have been either `update` or `status.update`, meaning the
- // `payload` is a Status entity, which has a `filtered` property:
- //
- // filtered: https://docs.joinmastodon.org/entities/Status/#filtered
- transmit(event, {
- ...payload,
- filtered: filter_results
- });
- } else {
- transmit(event, payload);
- }
- }).catch(err => {
- log.error(err);
- releasePgConnection();
- });
- });
- };
- channelIds.forEach(id => {
- subscribe(`${redisPrefix}${id}`, listener);
- });
- if (typeof attachCloseHandler === 'function') {
- attachCloseHandler(channelIds.map(id => `${redisPrefix}${id}`), listener);
- }
- return listener;
- };
- /**
- * @param {any} req
- * @param {any} res
- * @returns {function(string, string): void}
- */
- const streamToHttp = (req, res) => {
- const channelName = channelNameFromPath(req);
- connectedClients.labels({ type: 'eventsource' }).inc();
- // In theory we'll always have a channel name, but channelNameFromPath can return undefined:
- if (typeof channelName === 'string') {
- connectedChannels.labels({ type: 'eventsource', channel: channelName }).inc();
- }
- res.setHeader('Content-Type', 'text/event-stream');
- res.setHeader('Cache-Control', 'no-store');
- res.setHeader('Transfer-Encoding', 'chunked');
- res.write(':)\n');
- const heartbeat = setInterval(() => res.write(':thump\n'), 15000);
- req.on('close', () => {
- req.log.info({ accountId: req.accountId }, `Ending stream`);
- // We decrement these counters here instead of in streamHttpEnd as in that
- // method we don't have knowledge of the channel names
- connectedClients.labels({ type: 'eventsource' }).dec();
- // In theory we'll always have a channel name, but channelNameFromPath can return undefined:
- if (typeof channelName === 'string') {
- connectedChannels.labels({ type: 'eventsource', channel: channelName }).dec();
- }
- clearInterval(heartbeat);
- });
- return (event, payload) => {
- res.write(`event: ${event}\n`);
- res.write(`data: ${payload}\n\n`);
- };
- };
- /**
- * @param {any} req
- * @param {function(): void} [closeHandler]
- * @returns {function(string[], SubscriptionListener): void}
- */
- const streamHttpEnd = (req, closeHandler = undefined) => (ids, listener) => {
- req.on('close', () => {
- ids.forEach(id => {
- unsubscribe(id, listener);
- });
- if (closeHandler) {
- closeHandler();
- }
- });
- };
- /**
- * @param {http.IncomingMessage} req
- * @param {WebSocket} ws
- * @param {string[]} streamName
- * @returns {function(string, string): void}
- */
- const streamToWs = (req, ws, streamName) => (event, payload) => {
- if (ws.readyState !== ws.OPEN) {
- req.log.error('Tried writing to closed socket');
- return;
- }
- const message = JSON.stringify({ stream: streamName, event, payload });
- ws.send(message, (/** @type {Error|undefined} */ err) => {
- if (err) {
- req.log.error({err}, `Failed to send to websocket`);
- }
- });
- };
- /**
- * @param {http.ServerResponse} res
- */
- const httpNotFound = res => {
- res.writeHead(404, { 'Content-Type': 'application/json' });
- res.end(JSON.stringify({ error: 'Not found' }));
- };
- const api = express.Router();
- app.use(api);
- api.use(authenticationMiddleware);
- api.use(errorMiddleware);
- api.get('/api/v1/streaming/*', (req, res) => {
- const channelName = channelNameFromPath(req);
- // FIXME: In theory we'd never actually reach here due to
- // authenticationMiddleware catching this case, however, we need to refactor
- // how those middlewares work, so I'm adding the extra check in here.
- if (!channelName) {
- httpNotFound(res);
- return;
- }
- channelNameToIds(req, channelName, req.query).then(({ channelIds, options }) => {
- const onSend = streamToHttp(req, res);
- const onEnd = streamHttpEnd(req, subscriptionHeartbeat(channelIds));
- // @ts-ignore
- streamFrom(channelIds, req, req.log, onSend, onEnd, 'eventsource', options.needsFiltering);
- }).catch(err => {
- const {statusCode, errorMessage } = extractErrorStatusAndMessage(err);
- res.log.info({ err }, 'Eventsource subscription error');
- res.writeHead(statusCode, { 'Content-Type': 'application/json' });
- res.end(JSON.stringify({ error: errorMessage }));
- });
- });
- /**
- * @typedef StreamParams
- * @property {string} [tag]
- * @property {string} [list]
- * @property {string} [only_media]
- */
- /**
- * @param {any} req
- * @returns {string[]}
- */
- const channelsForUserStream = req => {
- const arr = [`timeline:${req.accountId}`];
- if (isInScope(req, ['crypto']) && req.deviceId) {
- arr.push(`timeline:${req.accountId}:${req.deviceId}`);
- }
- if (isInScope(req, ['read', 'read:notifications'])) {
- arr.push(`timeline:${req.accountId}:notifications`);
- }
- return arr;
- };
- /**
- * @param {any} req
- * @param {string} name
- * @param {StreamParams} params
- * @returns {Promise.<{ channelIds: string[], options: { needsFiltering: boolean } }>}
- */
- const channelNameToIds = (req, name, params) => new Promise((resolve, reject) => {
- switch (name) {
- case 'user':
- resolve({
- channelIds: channelsForUserStream(req),
- options: { needsFiltering: false },
- });
- break;
- case 'user:notification':
- resolve({
- channelIds: [`timeline:${req.accountId}:notifications`],
- options: { needsFiltering: false },
- });
- break;
- case 'public':
- resolve({
- channelIds: ['timeline:public'],
- options: { needsFiltering: true },
- });
- break;
- case 'public:local':
- resolve({
- channelIds: ['timeline:public:local'],
- options: { needsFiltering: true },
- });
- break;
- case 'public:remote':
- resolve({
- channelIds: ['timeline:public:remote'],
- options: { needsFiltering: true },
- });
- break;
- case 'public:media':
- resolve({
- channelIds: ['timeline:public:media'],
- options: { needsFiltering: true },
- });
- break;
- case 'public:local:media':
- resolve({
- channelIds: ['timeline:public:local:media'],
- options: { needsFiltering: true },
- });
- break;
- case 'public:remote:media':
- resolve({
- channelIds: ['timeline:public:remote:media'],
- options: { needsFiltering: true },
- });
- break;
- case 'direct':
- resolve({
- channelIds: [`timeline:direct:${req.accountId}`],
- options: { needsFiltering: false },
- });
- break;
- case 'hashtag':
- if (!params.tag) {
- reject(new RequestError('Missing tag name parameter'));
- } else {
- resolve({
- channelIds: [`timeline:hashtag:${normalizeHashtag(params.tag)}`],
- options: { needsFiltering: true },
- });
- }
- break;
- case 'hashtag:local':
- if (!params.tag) {
- reject(new RequestError('Missing tag name parameter'));
- } else {
- resolve({
- channelIds: [`timeline:hashtag:${normalizeHashtag(params.tag)}:local`],
- options: { needsFiltering: true },
- });
- }
- break;
- case 'list':
- if (!params.list) {
- reject(new RequestError('Missing list name parameter'));
- return;
- }
- authorizeListAccess(params.list, req).then(() => {
- resolve({
- channelIds: [`timeline:list:${params.list}`],
- options: { needsFiltering: false },
- });
- }).catch(() => {
- reject(new AuthenticationError('Not authorized to stream this list'));
- });
- break;
- default:
- reject(new RequestError('Unknown stream type'));
- }
- });
- /**
- * @param {string} channelName
- * @param {StreamParams} params
- * @returns {string[]}
- */
- const streamNameFromChannelName = (channelName, params) => {
- if (channelName === 'list' && params.list) {
- return [channelName, params.list];
- } else if (['hashtag', 'hashtag:local'].includes(channelName) && params.tag) {
- return [channelName, params.tag];
- } else {
- return [channelName];
- }
- };
- /**
- * @typedef WebSocketSession
- * @property {WebSocket & { isAlive: boolean}} websocket
- * @property {http.IncomingMessage & ResolvedAccount} request
- * @property {import('pino').Logger} logger
- * @property {Object.<string, { channelName: string, listener: SubscriptionListener, stopHeartbeat: function(): void }>} subscriptions
- */
- /**
- * @param {WebSocketSession} session
- * @param {string} channelName
- * @param {StreamParams} params
- * @returns {void}
- */
- const subscribeWebsocketToChannel = ({ websocket, request, logger, subscriptions }, channelName, params) => {
- checkScopes(request, logger, channelName).then(() => channelNameToIds(request, channelName, params)).then(({
- channelIds,
- options,
- }) => {
- if (subscriptions[channelIds.join(';')]) {
- return;
- }
- const onSend = streamToWs(request, websocket, streamNameFromChannelName(channelName, params));
- const stopHeartbeat = subscriptionHeartbeat(channelIds);
- const listener = streamFrom(channelIds, request, logger, onSend, undefined, 'websocket', options.needsFiltering);
- connectedChannels.labels({ type: 'websocket', channel: channelName }).inc();
- subscriptions[channelIds.join(';')] = {
- channelName,
- listener,
- stopHeartbeat,
- };
- }).catch(err => {
- const {statusCode, errorMessage } = extractErrorStatusAndMessage(err);
- logger.error({ err }, 'Websocket subscription error');
- // If we have a socket that is alive and open still, send the error back to the client:
- if (websocket.isAlive && websocket.readyState === websocket.OPEN) {
- websocket.send(JSON.stringify({
- error: errorMessage,
- status: statusCode
- }));
- }
- });
- };
- /**
- * @param {WebSocketSession} session
- * @param {string[]} channelIds
- */
- const removeSubscription = ({ request, logger, subscriptions }, channelIds) => {
- logger.info({ channelIds, accountId: request.accountId }, `Ending stream`);
- const subscription = subscriptions[channelIds.join(';')];
- if (!subscription) {
- return;
- }
- channelIds.forEach(channelId => {
- unsubscribe(`${redisPrefix}${channelId}`, subscription.listener);
- });
- connectedChannels.labels({ type: 'websocket', channel: subscription.channelName }).dec();
- subscription.stopHeartbeat();
- delete subscriptions[channelIds.join(';')];
- };
- /**
- * @param {WebSocketSession} session
- * @param {string} channelName
- * @param {StreamParams} params
- * @returns {void}
- */
- const unsubscribeWebsocketFromChannel = (session, channelName, params) => {
- const { websocket, request, logger } = session;
- channelNameToIds(request, channelName, params).then(({ channelIds }) => {
- removeSubscription(session, channelIds);
- }).catch(err => {
- logger.error({err}, 'Websocket unsubscribe error');
- // If we have a socket that is alive and open still, send the error back to the client:
- if (websocket.isAlive && websocket.readyState === websocket.OPEN) {
- // TODO: Use a better error response here
- websocket.send(JSON.stringify({ error: "Error unsubscribing from channel" }));
- }
- });
- };
- /**
- * @param {WebSocketSession} session
- */
- const subscribeWebsocketToSystemChannel = ({ websocket, request, subscriptions }) => {
- const accessTokenChannelId = `timeline:access_token:${request.accessTokenId}`;
- const systemChannelId = `timeline:system:${request.accountId}`;
- const listener = createSystemMessageListener(request, {
- onKill() {
- websocket.close();
- },
- });
- subscribe(`${redisPrefix}${accessTokenChannelId}`, listener);
- subscribe(`${redisPrefix}${systemChannelId}`, listener);
- subscriptions[accessTokenChannelId] = {
- channelName: 'system',
- listener,
- stopHeartbeat: () => {
- },
- };
- subscriptions[systemChannelId] = {
- channelName: 'system',
- listener,
- stopHeartbeat: () => {
- },
- };
- connectedChannels.labels({ type: 'websocket', channel: 'system' }).inc(2);
- };
- /**
- * @param {WebSocket & { isAlive: boolean }} ws
- * @param {http.IncomingMessage & ResolvedAccount} req
- * @param {import('pino').Logger} log
- */
- function onConnection(ws, req, log) {
- // Note: url.parse could throw, which would terminate the connection, so we
- // increment the connected clients metric straight away when we establish
- // the connection, without waiting:
- connectedClients.labels({ type: 'websocket' }).inc();
- // Setup connection keep-alive state:
- ws.isAlive = true;
- ws.on('pong', () => {
- ws.isAlive = true;
- });
- /**
- * @type {WebSocketSession}
- */
- const session = {
- websocket: ws,
- request: req,
- logger: log,
- subscriptions: {},
- };
- ws.on('close', function onWebsocketClose() {
- const subscriptions = Object.keys(session.subscriptions);
- subscriptions.forEach(channelIds => {
- removeSubscription(session, channelIds.split(';'));
- });
- // Decrement the metrics for connected clients:
- connectedClients.labels({ type: 'websocket' }).dec();
- // We need to unassign the session object as to ensure it correctly gets
- // garbage collected, without doing this we could accidentally hold on to
- // references to the websocket, the request, and the logger, causing
- // memory leaks.
- // This is commented out because `delete` only operated on object properties
- // It needs to be replaced by `session = undefined`, but it requires every calls to
- // `session` to check for it, thus a significant refactor
- // delete session;
- });
- // Note: immediately after the `error` event is emitted, the `close` event
- // is emitted. As such, all we need to do is log the error here.
- ws.on('error', (/** @type {Error} */ err) => {
- log.error(err);
- });
- ws.on('message', (data, isBinary) => {
- if (isBinary) {
- log.warn('Received binary data, closing connection');
- ws.close(1003, 'The mastodon streaming server does not support binary messages');
- return;
- }
- const message = data.toString('utf8');
- const json = parseJSON(message, session.request);
- if (!json) return;
- const { type, stream, ...params } = json;
- if (type === 'subscribe') {
- subscribeWebsocketToChannel(session, firstParam(stream), params);
- } else if (type === 'unsubscribe') {
- unsubscribeWebsocketFromChannel(session, firstParam(stream), params);
- } else {
- // Unknown action type
- }
- });
- subscribeWebsocketToSystemChannel(session);
- // Parse the URL for the connection arguments (if supplied), url.parse can throw:
- const location = req.url && url.parse(req.url, true);
- if (location && location.query.stream) {
- subscribeWebsocketToChannel(session, firstParam(location.query.stream), location.query);
- }
- }
- wss.on('connection', onConnection);
- setInterval(() => {
- wss.clients.forEach(ws => {
- // @ts-ignore
- if (ws.isAlive === false) {
- ws.terminate();
- return;
- }
- // @ts-ignore
- ws.isAlive = false;
- ws.ping('', false);
- });
- }, 30000);
- attachServerWithConfig(server, address => {
- logger.info(`Streaming API now listening on ${address}`);
- });
- const onExit = () => {
- server.close();
- process.exit(0);
- };
- /** @param {Error} err */
- const onError = (err) => {
- logger.error(err);
- server.close();
- process.exit(0);
- };
- process.on('SIGINT', onExit);
- process.on('SIGTERM', onExit);
- process.on('exit', onExit);
- process.on('uncaughtException', onError);
- };
- /**
- * @param {any} server
- * @param {function(string): void} [onSuccess]
- */
- const attachServerWithConfig = (server, onSuccess) => {
- if (process.env.SOCKET || process.env.PORT && isNaN(+process.env.PORT)) {
- server.listen(process.env.SOCKET || process.env.PORT, () => {
- if (onSuccess) {
- fs.chmodSync(server.address(), 0o666);
- onSuccess(server.address());
- }
- });
- } else {
- server.listen(+(process.env.PORT || 4000), process.env.BIND || '127.0.0.1', () => {
- if (onSuccess) {
- onSuccess(`${server.address().address}:${server.address().port}`);
- }
- });
- }
- };
- startServer();
|