2017-06-26 04:49:39 +02:00
const os = require ( 'os' ) ;
const throng = require ( 'throng' ) ;
const dotenv = require ( 'dotenv' ) ;
const express = require ( 'express' ) ;
const http = require ( 'http' ) ;
const redis = require ( 'redis' ) ;
const pg = require ( 'pg' ) ;
const log = require ( 'npmlog' ) ;
const url = require ( 'url' ) ;
2019-05-22 18:19:16 +02:00
const { WebSocketServer } = require ( '@clusterws/cws' ) ;
2017-06-26 04:49:39 +02:00
const uuid = require ( 'uuid' ) ;
2018-08-24 18:16:53 +02:00
const fs = require ( 'fs' ) ;
2017-05-20 17:31:47 +02:00
const env = process . env . NODE _ENV || 'development' ;
2017-02-02 16:11:36 +01:00
dotenv . config ( {
2017-05-20 17:31:47 +02:00
path : env === 'production' ? '.env.production' : '.env' ,
} ) ;
2017-02-02 01:31:09 +01:00
2017-05-28 16:25:26 +02:00
log . level = process . env . LOG _LEVEL || 'verbose' ;
2017-05-03 23:18:13 +02:00
const dbUrlToConfig = ( dbUrl ) => {
if ( ! dbUrl ) {
2017-05-20 17:31:47 +02:00
return { } ;
2017-05-03 23:18:13 +02:00
}
2019-03-10 16:00:54 +01:00
const params = url . parse ( dbUrl , true ) ;
2017-05-20 17:31:47 +02:00
const config = { } ;
2017-05-04 15:53:44 +02:00
if ( params . auth ) {
2017-05-20 17:31:47 +02:00
[ config . user , config . password ] = params . auth . split ( ':' ) ;
2017-05-04 15:53:44 +02:00
}
if ( params . hostname ) {
2017-05-20 17:31:47 +02:00
config . host = params . hostname ;
2017-05-04 15:53:44 +02:00
}
if ( params . port ) {
2017-05-20 17:31:47 +02:00
config . port = params . port ;
2017-05-03 23:18:13 +02:00
}
2017-05-04 15:53:44 +02:00
if ( params . pathname ) {
2017-05-20 17:31:47 +02:00
config . database = params . pathname . split ( '/' ) [ 1 ] ;
2017-05-04 15:53:44 +02:00
}
2017-05-20 17:31:47 +02:00
const ssl = params . query && params . query . ssl ;
2017-05-20 21:06:09 +02:00
2019-03-10 16:00:54 +01:00
if ( ssl && ssl === 'true' || ssl === '1' ) {
config . ssl = true ;
2017-05-04 15:53:44 +02:00
}
2017-05-20 17:31:47 +02:00
return config ;
} ;
2017-05-03 23:18:13 +02:00
2017-05-20 21:06:09 +02:00
const redisUrlToClient = ( defaultConfig , redisUrl ) => {
const config = defaultConfig ;
if ( ! redisUrl ) {
return redis . createClient ( config ) ;
}
if ( redisUrl . startsWith ( 'unix://' ) ) {
return redis . createClient ( redisUrl . slice ( 7 ) , config ) ;
}
return redis . createClient ( Object . assign ( config , {
url : redisUrl ,
} ) ) ;
} ;
2017-05-28 16:25:26 +02:00
const numWorkers = + process . env . STREAMING _CLUSTER _NUM || ( env === 'development' ? 1 : Math . max ( os . cpus ( ) . length - 1 , 1 ) ) ;
2017-05-03 23:18:13 +02:00
2017-05-28 16:25:26 +02:00
const startMaster = ( ) => {
2018-08-24 18:16:53 +02:00
if ( ! process . env . SOCKET && process . env . PORT && isNaN ( + process . env . PORT ) ) {
log . warn ( 'UNIX domain socket is now supported by using SOCKET. Please migrate from PORT hack.' ) ;
}
2018-10-20 02:25:25 +02:00
2017-05-28 16:25:26 +02:00
log . info ( ` Starting streaming API server master with ${ numWorkers } workers ` ) ;
} ;
2017-05-03 23:18:13 +02:00
2017-05-28 16:25:26 +02:00
const startWorker = ( workerId ) => {
log . info ( ` Starting worker ${ workerId } ` ) ;
2017-04-17 04:32:30 +02:00
const pgConfigs = {
development : {
2017-06-25 18:13:31 +02:00
user : process . env . DB _USER || pg . defaults . user ,
password : process . env . DB _PASS || pg . defaults . password ,
2017-10-17 11:45:37 +02:00
database : process . env . DB _NAME || 'mastodon_development' ,
2017-06-25 18:13:31 +02:00
host : process . env . DB _HOST || pg . defaults . host ,
port : process . env . DB _PORT || pg . defaults . port ,
2017-05-20 17:31:47 +02:00
max : 10 ,
2017-04-17 04:32:30 +02:00
} ,
production : {
user : process . env . DB _USER || 'mastodon' ,
password : process . env . DB _PASS || '' ,
database : process . env . DB _NAME || 'mastodon_production' ,
host : process . env . DB _HOST || 'localhost' ,
port : process . env . DB _PORT || 5432 ,
2017-05-20 17:31:47 +02:00
max : 10 ,
} ,
} ;
2017-02-02 01:31:09 +01:00
2019-03-11 00:51:23 +01:00
if ( ! ! process . env . DB _SSLMODE && process . env . DB _SSLMODE !== 'disable' ) {
pgConfigs . development . ssl = true ;
pgConfigs . production . ssl = true ;
}
const app = express ( ) ;
2017-12-12 15:13:24 +01:00
app . set ( 'trusted proxy' , process . env . TRUSTED _PROXY _IP || 'loopback,uniquelocal' ) ;
2017-05-20 17:31:47 +02:00
const pgPool = new pg . Pool ( Object . assign ( pgConfigs [ env ] , dbUrlToConfig ( process . env . DATABASE _URL ) ) ) ;
const server = http . createServer ( app ) ;
const redisNamespace = process . env . REDIS _NAMESPACE || null ;
2017-02-07 14:37:12 +01:00
2017-05-07 19:42:32 +02:00
const redisParams = {
2017-04-17 04:32:30 +02:00
host : process . env . REDIS _HOST || '127.0.0.1' ,
port : process . env . REDIS _PORT || 6379 ,
2017-05-17 15:36:34 +02:00
db : process . env . REDIS _DB || 0 ,
2017-05-03 23:18:13 +02:00
password : process . env . REDIS _PASSWORD ,
2017-05-20 17:31:47 +02:00
} ;
2017-05-07 19:42:32 +02:00
if ( redisNamespace ) {
2017-05-20 17:31:47 +02:00
redisParams . namespace = redisNamespace ;
2017-05-07 19:42:32 +02:00
}
2017-05-20 21:06:09 +02:00
2017-05-20 17:31:47 +02:00
const redisPrefix = redisNamespace ? ` ${ redisNamespace } : ` : '' ;
2017-05-07 19:42:32 +02:00
2017-06-03 20:50:53 +02:00
const redisSubscribeClient = redisUrlToClient ( redisParams , process . env . REDIS _URL ) ;
2017-05-20 21:06:09 +02:00
const redisClient = redisUrlToClient ( redisParams , process . env . REDIS _URL ) ;
2017-02-07 14:37:12 +01:00
2017-05-20 17:31:47 +02:00
const subs = { } ;
2017-02-07 14:37:12 +01:00
2017-06-20 20:41:41 +02:00
redisSubscribeClient . on ( 'message' , ( channel , message ) => {
2017-05-20 17:31:47 +02:00
const callbacks = subs [ channel ] ;
2017-02-07 14:37:12 +01:00
2017-05-20 17:31:47 +02:00
log . silly ( ` New message on channel ${ channel } ` ) ;
2017-02-07 14:37:12 +01:00
2017-04-17 04:32:30 +02:00
if ( ! callbacks ) {
2017-05-20 17:31:47 +02:00
return ;
2017-04-17 04:32:30 +02:00
}
2017-05-28 16:25:26 +02:00
2017-05-20 17:31:47 +02:00
callbacks . forEach ( callback => callback ( message ) ) ;
} ) ;
2017-02-07 14:37:12 +01:00
2017-06-03 20:50:53 +02:00
const subscriptionHeartbeat = ( channel ) => {
const interval = 6 * 60 ;
const tellSubscribed = ( ) => {
redisClient . set ( ` ${ redisPrefix } subscribed: ${ channel } ` , '1' , 'EX' , interval * 3 ) ;
} ;
tellSubscribed ( ) ;
const heartbeat = setInterval ( tellSubscribed , interval * 1000 ) ;
return ( ) => {
clearInterval ( heartbeat ) ;
} ;
} ;
2017-02-07 14:37:12 +01:00
2017-04-17 04:32:30 +02:00
const subscribe = ( channel , callback ) => {
2017-05-20 17:31:47 +02:00
log . silly ( ` Adding listener for ${ channel } ` ) ;
subs [ channel ] = subs [ channel ] || [ ] ;
2017-06-20 20:41:41 +02:00
if ( subs [ channel ] . length === 0 ) {
log . verbose ( ` Subscribe ${ channel } ` ) ;
redisSubscribeClient . subscribe ( channel ) ;
}
2017-05-20 17:31:47 +02:00
subs [ channel ] . push ( callback ) ;
} ;
2017-02-03 18:27:42 +01:00
2017-04-17 04:32:30 +02:00
const unsubscribe = ( channel , callback ) => {
2017-05-20 17:31:47 +02:00
log . silly ( ` Removing listener for ${ channel } ` ) ;
subs [ channel ] = subs [ channel ] . filter ( item => item !== callback ) ;
2017-06-20 20:41:41 +02:00
if ( subs [ channel ] . length === 0 ) {
log . verbose ( ` Unsubscribe ${ channel } ` ) ;
redisSubscribeClient . unsubscribe ( channel ) ;
}
2017-05-20 17:31:47 +02:00
} ;
2017-02-03 18:27:42 +01:00
2017-04-17 04:32:30 +02:00
const allowCrossDomain = ( req , res , next ) => {
2017-05-20 17:31:47 +02:00
res . header ( 'Access-Control-Allow-Origin' , '*' ) ;
res . header ( 'Access-Control-Allow-Headers' , 'Authorization, Accept, Cache-Control' ) ;
res . header ( 'Access-Control-Allow-Methods' , 'GET, OPTIONS' ) ;
2017-02-05 23:37:25 +01:00
2017-05-20 17:31:47 +02:00
next ( ) ;
} ;
2017-02-05 23:37:25 +01:00
2017-04-17 04:32:30 +02:00
const setRequestId = ( req , res , next ) => {
2017-05-20 17:31:47 +02:00
req . requestId = uuid . v4 ( ) ;
res . header ( 'X-Request-Id' , req . requestId ) ;
2017-02-02 01:31:09 +01:00
2017-05-20 17:31:47 +02:00
next ( ) ;
} ;
2017-02-02 01:31:09 +01:00
2017-12-12 15:13:24 +01:00
const setRemoteAddress = ( req , res , next ) => {
req . remoteAddress = req . connection . remoteAddress ;
next ( ) ;
} ;
2019-05-24 15:21:42 +02:00
const accountFromToken = ( token , allowedScopes , req , next ) => {
2017-04-17 04:32:30 +02:00
pgPool . connect ( ( err , client , done ) => {
2017-02-02 01:31:09 +01:00
if ( err ) {
2017-05-20 17:31:47 +02:00
next ( err ) ;
return ;
2017-02-02 01:31:09 +01:00
}
2019-05-24 15:21:42 +02:00
client . query ( 'SELECT oauth_access_tokens.resource_owner_id, users.account_id, users.chosen_languages, oauth_access_tokens.scopes FROM oauth_access_tokens INNER JOIN users ON oauth_access_tokens.resource_owner_id = users.id WHERE oauth_access_tokens.token = $1 AND oauth_access_tokens.revoked_at IS NULL LIMIT 1' , [ token ] , ( err , result ) => {
2017-05-20 17:31:47 +02:00
done ( ) ;
2017-02-02 01:31:09 +01:00
2017-04-17 04:32:30 +02:00
if ( err ) {
2017-05-20 17:31:47 +02:00
next ( err ) ;
return ;
2017-04-17 04:32:30 +02:00
}
2017-02-02 01:31:09 +01:00
2017-04-17 04:32:30 +02:00
if ( result . rows . length === 0 ) {
2017-05-20 17:31:47 +02:00
err = new Error ( 'Invalid access token' ) ;
err . statusCode = 401 ;
2017-02-04 00:34:31 +01:00
2017-05-20 17:31:47 +02:00
next ( err ) ;
return ;
2017-04-17 04:32:30 +02:00
}
2017-02-04 00:34:31 +01:00
2019-05-24 15:21:42 +02:00
const scopes = result . rows [ 0 ] . scopes . split ( ' ' ) ;
if ( allowedScopes . size > 0 && ! scopes . some ( scope => allowedScopes . includes ( scope ) ) ) {
err = new Error ( 'Access token does not cover required scopes' ) ;
err . statusCode = 401 ;
next ( err ) ;
return ;
}
2017-05-20 17:31:47 +02:00
req . accountId = result . rows [ 0 ] . account _id ;
2018-07-14 03:59:31 +02:00
req . chosenLanguages = result . rows [ 0 ] . chosen _languages ;
2019-05-24 15:21:42 +02:00
req . allowNotifications = scopes . some ( scope => [ 'read' , 'read:notifications' ] . includes ( scope ) ) ;
2017-02-04 00:34:31 +01:00
2017-05-20 17:31:47 +02:00
next ( ) ;
} ) ;
} ) ;
} ;
2017-02-04 00:34:31 +01:00
2019-05-24 15:21:42 +02:00
const accountFromRequest = ( req , next , required = true , allowedScopes = [ 'read' ] ) => {
2017-05-29 18:20:53 +02:00
const authorization = req . headers . authorization ;
const location = url . parse ( req . url , true ) ;
2019-05-24 15:21:42 +02:00
const accessToken = location . query . access _token || req . headers [ 'sec-websocket-protocol' ] ;
2017-02-04 00:34:31 +01:00
2017-05-21 21:13:11 +02:00
if ( ! authorization && ! accessToken ) {
2017-12-12 15:13:24 +01:00
if ( required ) {
const err = new Error ( 'Missing access token' ) ;
err . statusCode = 401 ;
2017-02-02 01:31:09 +01:00
2017-12-12 15:13:24 +01:00
next ( err ) ;
return ;
} else {
next ( ) ;
return ;
}
2017-04-17 04:32:30 +02:00
}
2017-02-02 17:10:59 +01:00
2017-05-21 21:13:11 +02:00
const token = authorization ? authorization . replace ( /^Bearer / , '' ) : accessToken ;
2017-02-02 13:56:14 +01:00
2019-05-24 15:21:42 +02:00
accountFromToken ( token , allowedScopes , req , next ) ;
2017-05-20 17:31:47 +02:00
} ;
2017-02-05 03:19:04 +01:00
2017-12-12 15:13:24 +01:00
const PUBLIC _STREAMS = [
'public' ,
2018-05-21 12:43:38 +02:00
'public:media' ,
2017-12-12 15:13:24 +01:00
'public:local' ,
2018-05-21 12:43:38 +02:00
'public:local:media' ,
2017-12-12 15:13:24 +01:00
'hashtag' ,
'hashtag:local' ,
] ;
2017-05-29 18:20:53 +02:00
const wsVerifyClient = ( info , cb ) => {
2017-12-12 15:13:24 +01:00
const location = url . parse ( info . req . url , true ) ;
const authRequired = ! PUBLIC _STREAMS . some ( stream => stream === location . query . stream ) ;
2019-05-24 15:21:42 +02:00
const allowedScopes = [ ] ;
if ( authRequired ) {
allowedScopes . push ( 'read' ) ;
if ( location . query . stream === 'user:notification' ) {
allowedScopes . push ( 'read:notifications' ) ;
} else {
allowedScopes . push ( 'read:statuses' ) ;
}
}
2017-12-12 15:13:24 +01:00
2017-05-29 18:20:53 +02:00
accountFromRequest ( info . req , err => {
if ( ! err ) {
cb ( true , undefined , undefined ) ;
} else {
log . error ( info . req . requestId , err . toString ( ) ) ;
cb ( false , 401 , 'Unauthorized' ) ;
}
2019-05-24 15:21:42 +02:00
} , authRequired , allowedScopes ) ;
2017-05-29 18:20:53 +02:00
} ;
2017-12-12 15:13:24 +01:00
const PUBLIC _ENDPOINTS = [
'/api/v1/streaming/public' ,
'/api/v1/streaming/public/local' ,
'/api/v1/streaming/hashtag' ,
'/api/v1/streaming/hashtag/local' ,
] ;
2017-05-29 18:20:53 +02:00
const authenticationMiddleware = ( req , res , next ) => {
if ( req . method === 'OPTIONS' ) {
next ( ) ;
return ;
}
2017-12-12 15:13:24 +01:00
const authRequired = ! PUBLIC _ENDPOINTS . some ( endpoint => endpoint === req . path ) ;
2019-05-24 15:21:42 +02:00
const allowedScopes = [ ] ;
if ( authRequired ) {
allowedScopes . push ( 'read' ) ;
if ( req . path === '/api/v1/streaming/user/notification' ) {
allowedScopes . push ( 'read:notifications' ) ;
} else {
allowedScopes . push ( 'read:statuses' ) ;
}
}
accountFromRequest ( req , next , authRequired , allowedScopes ) ;
2017-05-29 18:20:53 +02:00
} ;
2017-06-26 01:46:15 +02:00
const errorMiddleware = ( err , req , res , { } ) => {
2017-05-28 16:25:26 +02:00
log . error ( req . requestId , err . toString ( ) ) ;
2017-05-20 17:31:47 +02:00
res . writeHead ( err . statusCode || 500 , { 'Content-Type' : 'application/json' } ) ;
2017-05-28 16:25:26 +02:00
res . end ( JSON . stringify ( { error : err . statusCode ? err . toString ( ) : 'An unexpected error occurred' } ) ) ;
2017-05-20 17:31:47 +02:00
} ;
2017-02-05 03:19:04 +01:00
2017-04-17 04:32:30 +02:00
const placeholders = ( arr , shift = 0 ) => arr . map ( ( _ , i ) => ` $ ${ i + 1 + shift } ` ) . join ( ', ' ) ;
2017-02-02 01:31:09 +01:00
2017-11-18 00:16:48 +01:00
const authorizeListAccess = ( id , req , next ) => {
pgPool . connect ( ( err , client , done ) => {
if ( err ) {
next ( false ) ;
return ;
}
client . query ( 'SELECT id, account_id FROM lists WHERE id = $1 LIMIT 1' , [ id ] , ( err , result ) => {
done ( ) ;
if ( err || result . rows . length === 0 || result . rows [ 0 ] . account _id !== req . accountId ) {
next ( false ) ;
return ;
}
next ( true ) ;
} ) ;
} ) ;
} ;
2017-06-03 20:50:53 +02:00
const streamFrom = ( id , req , output , attachCloseHandler , needsFiltering = false , notificationOnly = false ) => {
2017-12-12 15:13:24 +01:00
const accountId = req . accountId || req . remoteAddress ;
2017-06-03 20:50:53 +02:00
const streamType = notificationOnly ? ' (notification)' : '' ;
2017-12-12 15:13:24 +01:00
log . verbose ( req . requestId , ` Starting stream from ${ id } for ${ accountId } ${ streamType } ` ) ;
2017-04-17 04:32:30 +02:00
const listener = message => {
2017-05-20 17:31:47 +02:00
const { event , payload , queued _at } = JSON . parse ( message ) ;
2017-02-02 13:56:14 +01:00
2017-04-17 04:32:30 +02:00
const transmit = ( ) => {
2017-07-07 16:56:52 +02:00
const now = new Date ( ) . getTime ( ) ;
const delta = now - queued _at ;
2017-09-24 15:31:03 +02:00
const encodedPayload = typeof payload === 'object' ? JSON . stringify ( payload ) : payload ;
2017-02-02 13:56:14 +01:00
2017-12-12 15:13:24 +01:00
log . silly ( req . requestId , ` Transmitting for ${ accountId } : ${ event } ${ encodedPayload } Delay: ${ delta } ms ` ) ;
2017-07-07 16:56:52 +02:00
output ( event , encodedPayload ) ;
2017-05-20 17:31:47 +02:00
} ;
2017-02-02 13:56:14 +01:00
2017-06-03 20:50:53 +02:00
if ( notificationOnly && event !== 'notification' ) {
return ;
}
2019-05-24 15:21:42 +02:00
if ( event === 'notification' && ! req . allowNotifications ) {
return ;
}
2017-04-17 04:32:30 +02:00
// Only messages that may require filtering are statuses, since notifications
// are already personalized and deletes do not matter
2018-04-17 13:49:09 +02:00
if ( ! needsFiltering || event !== 'update' ) {
transmit ( ) ;
return ;
}
2017-02-02 13:56:14 +01:00
2018-04-17 13:49:09 +02:00
const unpackedPayload = payload ;
const targetAccountIds = [ unpackedPayload . account . id ] . concat ( unpackedPayload . mentions . map ( item => item . id ) ) ;
const accountDomain = unpackedPayload . account . acct . split ( '@' ) [ 1 ] ;
2017-04-17 04:32:30 +02:00
2018-07-14 03:59:31 +02:00
if ( Array . isArray ( req . chosenLanguages ) && unpackedPayload . language !== null && req . chosenLanguages . indexOf ( unpackedPayload . language ) === - 1 ) {
2018-04-17 13:49:09 +02:00
log . silly ( req . requestId , ` Message ${ unpackedPayload . id } filtered by language ( ${ unpackedPayload . language } ) ` ) ;
return ;
}
// When the account is not logged in, it is not necessary to confirm the block or mute
if ( ! req . accountId ) {
transmit ( ) ;
return ;
}
pgPool . connect ( ( err , client , done ) => {
if ( err ) {
log . error ( err ) ;
return ;
}
const queries = [
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 , unpackedPayload . account . id ] . concat ( targetAccountIds ) ) ,
] ;
if ( accountDomain ) {
queries . push ( client . query ( 'SELECT 1 FROM account_domain_blocks WHERE account_id = $1 AND domain = $2' , [ req . accountId , accountDomain ] ) ) ;
}
Promise . all ( queries ) . then ( values => {
done ( ) ;
if ( values [ 0 ] . rows . length > 0 || ( values . length > 1 && values [ 1 ] . rows . length > 0 ) ) {
2017-05-27 00:53:48 +02:00
return ;
}
2018-04-17 13:49:09 +02:00
transmit ( ) ;
} ) . catch ( err => {
done ( ) ;
log . error ( err ) ;
2017-05-20 17:31:47 +02:00
} ) ;
2018-04-17 13:49:09 +02:00
} ) ;
2017-05-20 17:31:47 +02:00
} ;
2017-04-17 04:32:30 +02:00
2017-05-20 17:31:47 +02:00
subscribe ( ` ${ redisPrefix } ${ id } ` , listener ) ;
attachCloseHandler ( ` ${ redisPrefix } ${ id } ` , listener ) ;
} ;
2017-02-02 01:31:09 +01:00
2017-04-17 04:32:30 +02:00
// Setup stream output to HTTP
const streamToHttp = ( req , res ) => {
2017-12-12 15:13:24 +01:00
const accountId = req . accountId || req . remoteAddress ;
2017-05-20 17:31:47 +02:00
res . setHeader ( 'Content-Type' , 'text/event-stream' ) ;
res . setHeader ( 'Transfer-Encoding' , 'chunked' ) ;
2017-02-04 00:34:31 +01:00
2017-05-20 17:31:47 +02:00
const heartbeat = setInterval ( ( ) => res . write ( ':thump\n' ) , 15000 ) ;
2017-02-04 00:34:31 +01:00
2017-04-17 04:32:30 +02:00
req . on ( 'close' , ( ) => {
2017-12-12 15:13:24 +01:00
log . verbose ( req . requestId , ` Ending stream for ${ accountId } ` ) ;
2017-05-20 17:31:47 +02:00
clearInterval ( heartbeat ) ;
} ) ;
2017-02-02 15:20:31 +01:00
2017-04-17 04:32:30 +02:00
return ( event , payload ) => {
2017-05-20 17:31:47 +02:00
res . write ( ` event: ${ event } \n ` ) ;
res . write ( ` data: ${ payload } \n \n ` ) ;
} ;
} ;
2017-02-02 01:31:09 +01:00
2017-04-17 04:32:30 +02:00
// Setup stream end for HTTP
2017-06-03 20:50:53 +02:00
const streamHttpEnd = ( req , closeHandler = false ) => ( id , listener ) => {
2017-04-17 04:32:30 +02:00
req . on ( 'close' , ( ) => {
2017-05-20 17:31:47 +02:00
unsubscribe ( id , listener ) ;
2017-06-03 20:50:53 +02:00
if ( closeHandler ) {
closeHandler ( ) ;
}
2017-05-20 17:31:47 +02:00
} ) ;
} ;
2017-02-04 00:34:31 +01:00
2017-04-17 04:32:30 +02:00
// Setup stream output to WebSockets
2017-05-28 16:25:26 +02:00
const streamToWs = ( req , ws ) => ( event , payload ) => {
if ( ws . readyState !== ws . OPEN ) {
log . error ( req . requestId , 'Tried writing to closed socket' ) ;
return ;
}
2017-02-04 00:34:31 +01:00
2017-05-28 16:25:26 +02:00
ws . send ( JSON . stringify ( { event , payload } ) ) ;
2017-05-20 17:31:47 +02:00
} ;
2017-02-02 01:31:09 +01:00
2017-04-17 04:32:30 +02:00
// Setup stream end for WebSockets
2017-06-03 20:50:53 +02:00
const streamWsEnd = ( req , ws , closeHandler = false ) => ( id , listener ) => {
2017-12-12 15:13:24 +01:00
const accountId = req . accountId || req . remoteAddress ;
2017-04-17 04:32:30 +02:00
ws . on ( 'close' , ( ) => {
2017-12-12 15:13:24 +01:00
log . verbose ( req . requestId , ` Ending stream for ${ accountId } ` ) ;
2017-05-20 17:31:47 +02:00
unsubscribe ( id , listener ) ;
2017-06-03 20:50:53 +02:00
if ( closeHandler ) {
closeHandler ( ) ;
}
2017-05-20 17:31:47 +02:00
} ) ;
2017-04-02 21:27:14 +02:00
2017-06-23 16:05:04 +02:00
ws . on ( 'error' , ( ) => {
2017-12-12 15:13:24 +01:00
log . verbose ( req . requestId , ` Ending stream for ${ accountId } ` ) ;
2017-05-20 17:31:47 +02:00
unsubscribe ( id , listener ) ;
2017-06-03 20:50:53 +02:00
if ( closeHandler ) {
closeHandler ( ) ;
}
2017-05-20 17:31:47 +02:00
} ) ;
} ;
2017-02-04 00:34:31 +01:00
2018-10-11 19:24:43 +02:00
const httpNotFound = res => {
res . writeHead ( 404 , { 'Content-Type' : 'application/json' } ) ;
res . end ( JSON . stringify ( { error : 'Not found' } ) ) ;
} ;
2017-05-20 17:31:47 +02:00
app . use ( setRequestId ) ;
2017-12-12 15:13:24 +01:00
app . use ( setRemoteAddress ) ;
2017-05-20 17:31:47 +02:00
app . use ( allowCrossDomain ) ;
2018-08-26 11:54:25 +02:00
app . get ( '/api/v1/streaming/health' , ( req , res ) => {
res . writeHead ( 200 , { 'Content-Type' : 'text/plain' } ) ;
res . end ( 'OK' ) ;
} ) ;
2017-05-20 17:31:47 +02:00
app . use ( authenticationMiddleware ) ;
app . use ( errorMiddleware ) ;
2017-02-02 01:31:09 +01:00
2017-04-17 04:32:30 +02:00
app . get ( '/api/v1/streaming/user' , ( req , res ) => {
2017-06-03 20:50:53 +02:00
const channel = ` timeline: ${ req . accountId } ` ;
streamFrom ( channel , req , streamToHttp ( req , res ) , streamHttpEnd ( req , subscriptionHeartbeat ( channel ) ) ) ;
} ) ;
app . get ( '/api/v1/streaming/user/notification' , ( req , res ) => {
streamFrom ( ` timeline: ${ req . accountId } ` , req , streamToHttp ( req , res ) , streamHttpEnd ( req ) , false , true ) ;
2017-05-20 17:31:47 +02:00
} ) ;
2017-02-04 00:34:31 +01:00
2017-04-17 04:32:30 +02:00
app . get ( '/api/v1/streaming/public' , ( req , res ) => {
2018-05-21 12:43:38 +02:00
const onlyMedia = req . query . only _media === '1' || req . query . only _media === 'true' ;
const channel = onlyMedia ? 'timeline:public:media' : 'timeline:public' ;
streamFrom ( channel , req , streamToHttp ( req , res ) , streamHttpEnd ( req ) , true ) ;
2017-05-20 17:31:47 +02:00
} ) ;
2017-02-04 00:34:31 +01:00
2017-04-17 04:32:30 +02:00
app . get ( '/api/v1/streaming/public/local' , ( req , res ) => {
2018-05-21 12:43:38 +02:00
const onlyMedia = req . query . only _media === '1' || req . query . only _media === 'true' ;
const channel = onlyMedia ? 'timeline:public:local:media' : 'timeline:public:local' ;
streamFrom ( channel , req , streamToHttp ( req , res ) , streamHttpEnd ( req ) , true ) ;
2017-05-20 17:31:47 +02:00
} ) ;
2017-02-06 23:46:14 +01:00
2018-04-18 13:09:06 +02:00
app . get ( '/api/v1/streaming/direct' , ( req , res ) => {
2018-10-07 23:44:58 +02:00
const channel = ` timeline:direct: ${ req . accountId } ` ;
streamFrom ( channel , req , streamToHttp ( req , res ) , streamHttpEnd ( req , subscriptionHeartbeat ( channel ) ) , true ) ;
2018-04-18 13:09:06 +02:00
} ) ;
2017-04-17 04:32:30 +02:00
app . get ( '/api/v1/streaming/hashtag' , ( req , res ) => {
2018-10-11 19:24:43 +02:00
const { tag } = req . query ;
if ( ! tag || tag . length === 0 ) {
httpNotFound ( res ) ;
return ;
}
streamFrom ( ` timeline:hashtag: ${ tag . toLowerCase ( ) } ` , req , streamToHttp ( req , res ) , streamHttpEnd ( req ) , true ) ;
2017-05-20 17:31:47 +02:00
} ) ;
2017-02-02 13:56:14 +01:00
2017-04-17 04:32:30 +02:00
app . get ( '/api/v1/streaming/hashtag/local' , ( req , res ) => {
2018-10-11 19:24:43 +02:00
const { tag } = req . query ;
if ( ! tag || tag . length === 0 ) {
httpNotFound ( res ) ;
return ;
}
streamFrom ( ` timeline:hashtag: ${ tag . toLowerCase ( ) } :local ` , req , streamToHttp ( req , res ) , streamHttpEnd ( req ) , true ) ;
2017-05-20 17:31:47 +02:00
} ) ;
2017-02-06 23:46:14 +01:00
2017-11-18 00:16:48 +01:00
app . get ( '/api/v1/streaming/list' , ( req , res ) => {
const listId = req . query . list ;
authorizeListAccess ( listId , req , authorized => {
if ( ! authorized ) {
2018-10-11 19:24:43 +02:00
httpNotFound ( res ) ;
2017-11-18 00:16:48 +01:00
return ;
}
const channel = ` timeline:list: ${ listId } ` ;
streamFrom ( channel , req , streamToHttp ( req , res ) , streamHttpEnd ( req , subscriptionHeartbeat ( channel ) ) ) ;
} ) ;
} ) ;
2019-05-22 18:19:16 +02:00
const wss = new WebSocketServer ( { server , verifyClient : wsVerifyClient } ) ;
2017-05-29 18:20:53 +02:00
2019-05-22 18:19:16 +02:00
wss . on ( 'connection' , ( ws , req ) => {
2017-05-29 18:20:53 +02:00
const location = url . parse ( req . url , true ) ;
req . requestId = uuid . v4 ( ) ;
2017-12-12 15:13:24 +01:00
req . remoteAddress = ws . _socket . remoteAddress ;
2017-02-02 01:31:09 +01:00
2018-10-07 23:44:58 +02:00
let channel ;
2017-05-29 18:20:53 +02:00
switch ( location . query . stream ) {
case 'user' :
2018-10-07 23:44:58 +02:00
channel = ` timeline: ${ req . accountId } ` ;
2017-06-03 20:50:53 +02:00
streamFrom ( channel , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws , subscriptionHeartbeat ( channel ) ) ) ;
break ;
case 'user:notification' :
streamFrom ( ` timeline: ${ req . accountId } ` , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws ) , false , true ) ;
2017-05-29 18:20:53 +02:00
break ;
case 'public' :
streamFrom ( 'timeline:public' , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws ) , true ) ;
break ;
case 'public:local' :
streamFrom ( 'timeline:public:local' , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws ) , true ) ;
break ;
2018-05-21 12:43:38 +02:00
case 'public:media' :
streamFrom ( 'timeline:public:media' , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws ) , true ) ;
break ;
case 'public:local:media' :
streamFrom ( 'timeline:public:local:media' , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws ) , true ) ;
break ;
2018-04-18 13:09:06 +02:00
case 'direct' :
2018-10-07 23:44:58 +02:00
channel = ` timeline:direct: ${ req . accountId } ` ;
streamFrom ( channel , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws , subscriptionHeartbeat ( channel ) ) , true ) ;
2018-04-18 13:09:06 +02:00
break ;
2017-05-29 18:20:53 +02:00
case 'hashtag' :
2018-10-11 19:24:43 +02:00
if ( ! location . query . tag || location . query . tag . length === 0 ) {
ws . close ( ) ;
return ;
}
2017-09-04 12:52:06 +02:00
streamFrom ( ` timeline:hashtag: ${ location . query . tag . toLowerCase ( ) } ` , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws ) , true ) ;
2017-05-29 18:20:53 +02:00
break ;
case 'hashtag:local' :
2018-10-11 19:24:43 +02:00
if ( ! location . query . tag || location . query . tag . length === 0 ) {
ws . close ( ) ;
return ;
}
2017-09-04 12:52:06 +02:00
streamFrom ( ` timeline:hashtag: ${ location . query . tag . toLowerCase ( ) } :local ` , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws ) , true ) ;
2017-05-29 18:20:53 +02:00
break ;
2017-11-18 00:16:48 +01:00
case 'list' :
const listId = location . query . list ;
authorizeListAccess ( listId , req , authorized => {
if ( ! authorized ) {
ws . close ( ) ;
return ;
}
2018-10-07 23:44:58 +02:00
channel = ` timeline:list: ${ listId } ` ;
2017-11-18 00:16:48 +01:00
streamFrom ( channel , req , streamToWs ( req , ws ) , streamWsEnd ( req , ws , subscriptionHeartbeat ( channel ) ) ) ;
} ) ;
break ;
2017-05-29 18:20:53 +02:00
default :
ws . close ( ) ;
}
2017-05-20 17:31:47 +02:00
} ) ;
2017-02-04 00:34:31 +01:00
2019-05-22 18:19:16 +02:00
wss . startAutoPing ( 30000 ) ;
2017-05-28 16:25:26 +02:00
2018-10-20 02:25:25 +02:00
attachServerWithConfig ( server , address => {
log . info ( ` Worker ${ workerId } now listening on ${ address } ` ) ;
} ) ;
2017-04-21 19:24:31 +02:00
2017-05-28 16:25:26 +02:00
const onExit = ( ) => {
log . info ( ` Worker ${ workerId } exiting, bye bye ` ) ;
2017-05-20 17:31:47 +02:00
server . close ( ) ;
2017-07-07 20:01:00 +02:00
process . exit ( 0 ) ;
2017-05-28 16:25:26 +02:00
} ;
const onError = ( err ) => {
log . error ( err ) ;
2017-12-12 20:19:33 +01:00
server . close ( ) ;
process . exit ( 0 ) ;
2017-05-28 16:25:26 +02:00
} ;
process . on ( 'SIGINT' , onExit ) ;
process . on ( 'SIGTERM' , onExit ) ;
process . on ( 'exit' , onExit ) ;
2017-12-12 20:19:33 +01:00
process . on ( 'uncaughtException' , onError ) ;
2017-05-28 16:25:26 +02:00
} ;
2018-10-20 02:25:25 +02:00
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 ) {
2018-10-21 16:41:33 +02:00
fs . chmodSync ( server . address ( ) , 0o666 ) ;
2018-10-20 02:25:25 +02:00
onSuccess ( server . address ( ) ) ;
}
} ) ;
} else {
server . listen ( + process . env . PORT || 4000 , process . env . BIND || '0.0.0.0' , ( ) => {
if ( onSuccess ) {
onSuccess ( ` ${ server . address ( ) . address } : ${ server . address ( ) . port } ` ) ;
}
} ) ;
}
} ;
const onPortAvailable = onSuccess => {
const testServer = http . createServer ( ) ;
testServer . once ( 'error' , err => {
onSuccess ( err ) ;
} ) ;
testServer . once ( 'listening' , ( ) => {
testServer . once ( 'close' , ( ) => onSuccess ( ) ) ;
testServer . close ( ) ;
} ) ;
attachServerWithConfig ( testServer ) ;
} ;
onPortAvailable ( err => {
if ( err ) {
log . error ( 'Could not start server, the port or socket is in use' ) ;
return ;
}
throng ( {
workers : numWorkers ,
lifetime : Infinity ,
start : startWorker ,
master : startMaster ,
} ) ;
2017-05-28 16:25:26 +02:00
} ) ;