-
Notifications
You must be signed in to change notification settings - Fork 71
/
app.ts
199 lines (181 loc) · 5.49 KB
/
app.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
import * as express from 'express'
import * as helmet from 'helmet'
import * as cookieParser from 'cookie-parser'
import * as cors from 'cors'
import * as https from 'https'
import * as http from 'http'
import logger, { logging, sphinxLogger } from './src/utils/logger'
import { checkInvitesHubInterval } from './src/hub'
import { genUsersInterval } from './src/utils/proxy'
import {
setupDatabase,
setupDone,
setupOwnerContact,
setupPersonUuid,
updateLsat,
updateTotalMsgPerTribe,
} from './src/utils/setup'
import * as controllers from './src/controllers'
import * as connect from './src/utils/connect'
import * as socket from './src/utils/socket'
import * as network from './src/network'
import { hmacMiddleware, ownerMiddleware, unlocker } from './src/auth'
import * as grpc from './src/grpc/subscribe'
import * as cert from './src/utils/cert'
import { loadConfig } from './src/utils/config'
import { Req } from './src/types'
import { leadershipBoardInterval } from './src/utils/leadershipboard'
import rateLimit from 'express-rate-limit'
// force UTC time
process.env.TZ = 'UTC'
const env = process.env.NODE_ENV || 'development'
const config = loadConfig()
const port = process.env.PORT || config.node_http_port || 3001
sphinxLogger.info(['=> env', env])
//sphinxLogger.info(['=> config', config])
process.env.GRPC_SSL_CIPHER_SUITES =
'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384'
process.env.NODE_EXTRA_CA_CERTS = config.tls_location
// START SETUP!
async function start() {
await setupDatabase()
mainSetup()
// // IF NOT UNLOCK, go ahead and start this now
if (config.hub_api_url && !config.unlock) {
//pingHubInterval(30000)
genUsersInterval(60000)
}
}
start()
async function mainSetup() {
const app: any = await setupApp() // setup routes
grpc.reconnectToLightning(Math.random(), async function () {
sphinxLogger.info('>>> FINISH SETUP')
await finishSetup()
app.get('/is_setup', (req, res) => res.send(true))
}) // recursive
}
async function finishSetup() {
await setupOwnerContact()
await setupPersonUuid()
await updateLsat()
await updateTotalMsgPerTribe()
await network.initTribesSubscriptions()
if (config.hub_api_url) {
checkInvitesHubInterval(5000)
}
if (config.unlock) {
// IF UNLOCK, start this only after unlocked!
//pingHubInterval(15000)
}
leadershipBoardInterval(1800000)
setupDone()
}
const limiter = rateLimit({
windowMs: 1000, // 1 second
max: 10, // Limit each IP to 2 requests per `window` (here, per 1 second)
standardHeaders: true, // Return rate limit info in the `RateLimit-*` headers
legacyHeaders: false, // Disable the `X-RateLimit-*` headers
})
//
function setupApp() {
return new Promise(async (resolve) => {
const app = express()
if (config.rate_limit_trust_proxy) {
const rate_limit_trust_proxy = parseInt(config.rate_limit_trust_proxy)
if (rate_limit_trust_proxy > 0) {
app.set('trust proxy', rate_limit_trust_proxy)
}
}
app.use(helmet())
app.use(
express.json({
limit: '5MB',
verify: (req, res, buf) => {
;(req as any).rawBody = buf.toString()
},
})
)
app.use(express.urlencoded())
if (logging.Express) {
app.use(logger)
}
app.use(limiter)
app.use(
cors({
allowedHeaders: [
'X-Requested-With',
'Content-Type',
'Accept',
'x-user-token',
'x-jwt',
'x-hub-signature-256',
'x-hmac',
],
})
)
app.use(cookieParser())
app.use(ownerMiddleware)
app.use(hmacMiddleware)
app.use('/static', express.static('public'))
app.get('/app', (req, res) => res.send('INDEX'))
if (config.connect_ui) {
app.get('/connect', connect.connect)
app.post('/gen_channel', connect.genChannel)
app.post('/connect_peer', connect.connectPeer)
app.get('/peered', connect.checkPeered)
}
let server
if ('ssl' in config && config.ssl.enabled) {
try {
const certData = await cert.getCertificate(
config.public_url,
config.ssl.port,
config.ssl.save
)
const credentials = {
key: certData?.privateKey.toString(),
ca: certData?.caBundle,
cert: certData?.certificate,
}
server = https.createServer(credentials, app)
} catch (e) {
sphinxLogger.info(['getCertificate ERROR', e])
}
} else {
server = http.createServer(app)
}
if (!server) return sphinxLogger.info('=> FAILED to create server')
server.listen(port, (err) => {
if (err) throw err
/* eslint-disable no-console */
sphinxLogger.info(`Node listening on ${port}.`)
})
// process.on('SIGTERM', () => {
// server.close(function () {
// process.exit(0)
// })
// })
// process.on('exit', () => {
// server.close(function () {
// process.exit(0)
// })
// })
// start all routes!
if (!config.unlock) {
controllers.set(app)
socket.connect(server)
resolve(app)
} else {
app.post('/unlock', async function (req: Req, res) {
const ok = await unlocker(req, res)
if (ok) {
sphinxLogger.info('=> relay unlocked!')
controllers.set(app)
socket.connect(server)
resolve(app)
}
})
}
})
}