-
Notifications
You must be signed in to change notification settings - Fork 29
/
server.js
277 lines (255 loc) · 9.75 KB
/
server.js
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
* Copyright © 2015-2020 Cask Data, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
import sockjs from 'sockjs';
import http from 'http';
import fs from 'fs';
import log4js from 'log4js';
import https from 'https';
import ip from 'ip';
import cookie from 'cookie';
import { getApp } from 'server/express';
import Aggregator from 'server/aggregator';
import { extractConfig } from 'server/config/parser';
import { getCDAPConfig } from 'server/cdap-config';
import { applyGraphQLMiddleware } from 'gql/graphql';
import { getHostName } from 'server/config/hostname';
import middleware404 from 'server/middleware-404';
var cdapConfig,
securityConfig,
allowedOrigin = [],
wsConnections = {},
hostname,
hostIP = ip.address();
/**
* Configuring the logger. In order to use the logger anywhere
* in the BE, include the following:
* var log4js = require('log4js');
* var logger = log4js.getLogger();
*
* We configure using LOG4JS_CONFIG specified file or we use
* the default provided in the conf/log4js.json file.
*/
if (!process.env.LOG4JS_CONFIG) {
log4js.configure(__dirname + '/server/config/log4js.json');
}
// Get a log handle.
var log = log4js.getLogger('default');
function getAuthHeaderFromRawCookies(req) {
const cookies = cookie.parse(req.headers.cookie || '');
const authCookie = cookies['CDAP_Auth_Token'];
return authCookie ? `Bearer ${authCookie}` : '';
}
function getFullURL(host) {
let nodejsport = cdapConfig['dashboard.bind.port'];
const isSSLEnabled = cdapConfig['ssl.external.enabled'] === 'true';
const nodejsprotocol = isSSLEnabled ? 'https' : 'http';
if (isSSLEnabled) {
nodejsport = cdapConfig['dashboard.ssl.bind.port'];
}
let baseUrl = `${nodejsprotocol}://${host}`;
return nodejsport ? `${baseUrl}:${nodejsport}` : baseUrl;
}
async function setAllowedOrigin() {
const nodejsserver = cdapConfig['dashboard.bind.address'];
// protocol and port will be added to this domain
const whitelistedDomain = cdapConfig['dashboard.domain.name'];
// take exact domain as-is from config
const whitelistedOrigin = cdapConfig['dashboard.origin'];
allowedOrigin = [getFullURL(nodejsserver)];
try {
hostname = await getHostName();
} catch (e) {
log.error('Unable to determine hostname: ' + e);
hostname = null;
}
if (hostname) {
allowedOrigin.push(getFullURL(hostname));
}
if (hostIP) {
allowedOrigin.push(getFullURL(hostIP));
}
if (whitelistedDomain) {
allowedOrigin.push(getFullURL(whitelistedDomain));
}
if (['localhost', '127.0.0.1', '0.0.0.0'].indexOf(nodejsserver) !== -1) {
allowedOrigin.push(getFullURL('127.0.0.1'), getFullURL('0.0.0.0'), getFullURL('localhost'));
}
if (whitelistedOrigin) {
allowedOrigin.push(whitelistedOrigin);
}
}
log.info('Starting CDAP UI ...');
getCDAPConfig()
.then(function(c) {
/**
* In order for the sandbox to refresh the conf/cdap-config.json you need
* to run 'cdap config-tool --cdap' in the sandbox folder.
*
* In order to simulate what is created there, you need to edit
* server/config/development and add whatever config piece you want there.
*
* You also need to edit the get /config route inside of express.js if you
* want your new config to be returned to the ui.
*/
// extract feature flags from the config with shorter keys to make it
// easier to consume
const featureFlags = {};
// extract external links to be placed in cog menu of the app toolbar
const externalLinks = {};
for (const [key, value] of Object.entries(c)) {
if (key.match(/^feature/)) {
// feature. is 8 characters and we only want to include feature flags
featureFlags[key.substring(8)] = value;
delete c[key];
}
if (key.match(/ui.externalLinks/)) {
/**
* ui.externalLinks is 15 characters so remove ui.ui.ExternalLinks.
* the format for external links inside of the config is ui.externalLinks.link
* and the value is the url it should link to
*/
externalLinks[key.substring(17)] = value;
delete c[key];
}
}
cdapConfig = c;
cdapConfig.featureFlags = featureFlags;
cdapConfig.externalLinks = externalLinks;
if (cdapConfig['security.enabled'] === 'true') {
log.debug('CDAP Security has been enabled');
return extractConfig('security');
}
})
.then(function(s) {
securityConfig = s;
setAllowedOrigin();
return getApp(Object.assign({}, cdapConfig, securityConfig));
})
.then(function(app) {
// handles /graphql route
applyGraphQLMiddleware(app, Object.assign({}, cdapConfig, securityConfig), log);
// handles all unmatched routes
app.use(middleware404.render404);
var port, server;
if (cdapConfig['ssl.external.enabled'] === 'true') {
if (cdapConfig['dashboard.ssl.disable.cert.check'] === 'true') {
// For self signed certs: see https://github.com/mikeal/request/issues/418
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
}
try {
server = https.createServer(
{
key: fs.readFileSync(securityConfig['dashboard.ssl.key']),
cert: fs.readFileSync(securityConfig['dashboard.ssl.cert']),
},
app
);
} catch (e) {
log.error(
'SSL key/cert files read failed. Please fix the key/ssl certificate files and restart node server - ',
e
);
process.exit(1);
}
port = cdapConfig['dashboard.ssl.bind.port'];
} else {
server = http.createServer(app);
port = cdapConfig['dashboard.bind.port'];
}
server.listen(port, cdapConfig['dashboard.bind.address'], function() {
log.info('CDAP UI listening on port %s', port);
});
return server;
})
.then(async function(server) {
var sockServer = sockjs.createServer({
log: function(lvl, msg) {
log.trace(msg);
},
});
/**
* Node server now supports Proxy mode. This means, between the client and the node proxy
* there can be another proxy that handle authentication and pass on the user id and auth token.
* This means the client will not know anything about the user but the node proxy and the backend
* will be configured to pass on the auth token and user id from the proxy for authentication.
*
* This is the journey of an auth token and user id in proxy mode.
*
* 1. CDAP starts in k8s which spins up UI in a pod with
* security.authentication.mode: PROXY
* security.authentication.proxy.user.identity.header: x-inverting-proxy-user-id
* 2. Once node proxy goes to PROXY mode, it will get the auth token only for the http
* requests.
* 3. The client will not know about the auth token either.
* 4. Once the client reaches CDAP UI, the proxy would have already authenticated the user.
* 5. The request to upgrade websocket connection should already have the auth token and the user id
* 6. We take those values and add to the connection object (sockjs connection object)
* 7. This then gets picked up at the aggregator module that actually makes the call to the
* backend along with these in the request header.
* 8. Upon receiving the response, we remove these from the request object and send it back
* to the client as if no authentication exists.
*/
let authToken, userid;
sockServer.on('connection', function(c) {
if (!c) {
log.error('Connection requested, but no connection available');
return;
}
log.debug('[SOCKET OPEN] Connection to client "' + c.id + '" opened');
// @ts-ignore
var a = new Aggregator(c, { ...cdapConfig, ...securityConfig });
c.authToken = authToken;
c.userid = userid;
wsConnections[c.id] = c;
c.on('close', function() {
log.debug('Cleaning out aggregator: ' + JSON.stringify(a.connection.id));
a = null;
c.end();
c.destroy();
delete wsConnections[c.id];
});
});
sockServer.installHandlers(server, { prefix: '/_sock' });
server.addListener('upgrade', function(req, socket) {
req.headers.authorization = getAuthHeaderFromRawCookies(req);
authToken = req.headers.authorization;
const userIdProperty = cdapConfig['security.authentication.proxy.user.identity.header'];
userid = req.headers[userIdProperty];
if (allowedOrigin.indexOf(req.headers.origin) === -1) {
log.info('Unknown Origin: ' + req.headers.origin);
log.info('Denying socket connection and closing the channel');
socket.end();
socket.destroy();
return;
}
});
function gracefulShutdown() {
log.info('Caught SIGTERM. Closing http & ws server');
server.close();
if (typeof wsConnections === 'object' && Object.keys(wsConnections).length) {
log.debug(`Closing ${Object.keys(wsConnections).length} open websocket connections`)
Object.values(wsConnections).forEach((connection) => {
log.debug('Ending and destroying all graceful shutdown: ' + connection.readyState);
connection.end();
connection.destroy();
});
log.debug('Closed all open websocket connections');
wsConnections = {};
}
process.exit(0);
}
process.on('SIGTERM', gracefulShutdown);
});