-
Notifications
You must be signed in to change notification settings - Fork 54
/
server.js
792 lines (724 loc) · 24.8 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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
/* eslint-disable no-shadow */
const express = require('express');
const path = require('path');
const url = require('url');
const fs = require('fs');
const asciidoctor = require('asciidoctor.js');
const Mustache = require('mustache');
const { requireRoles } = require('./server_middleware');
const giteaClient = require('./gitea_client');
const gitClient = require('./git_client');
const bodyParser = require('body-parser');
const uuid = require('uuid');
const promMid = require('express-prometheus-middleware');
const Prometheus = require('prom-client');
const querystring = require('querystring');
const flattenDeep = require('lodash.flattendeep');
const proxy = require('express-http-proxy');
const { sync, closeConnection, getUserWalkthroughs, setUserWalkthroughs, validUrl } = require('./model');
const OPENSHIFT_PROXY_PATH = '/proxy/openshift';
const app = express();
const adoc = asciidoctor();
const LOCAL_DEV_INSTALLED_SERVICES = {
'3scale': {
Host: 'https://3scale-admin.apps.demo.com',
Version: '2.7'
},
amqonline: {
Host: 'http://localhost:3003',
Version: '1.3.1'
},
apicurito: {
Host: 'http://localhost:4200',
Version: '1.0.1'
},
codeready: {
Host: 'https://codeready-redhat-rhmi-codeready-workspaces.apps.demo.com',
Version: '2.0.0'
},
'fuse-managed': {
Host: 'http://localhost:3000',
Version: '7.5'
},
ups: {
Host: 'https://ups-unifiedpush-proxy-redhat-rhmi-ups.apps.demo.com',
Version: '2.3.2'
},
'user-rhsso': {
Host: 'https://keycloak-edge-redhat-rhmi-user-sso.apps.demo.com',
Version: '8.0.1'
}
};
const CROSS_CONSOLE_ENABLED = false;
app.use(bodyParser.json());
app.use(
OPENSHIFT_PROXY_PATH,
proxy(`https://${process.env.OPENSHIFT_API}`, {
proxyReqOptDecorator(proxyReqOpts, _) {
proxyReqOpts.rejectUnauthorized = false;
return proxyReqOpts;
}
})
);
// prometheus metrics endpoint
app.use(
promMid({
metricsPath: '/metrics',
collectDefaultMetrics: true,
requestDurationBuckets: [0.1, 0.5, 1, 1.5]
})
);
const openshiftVersion = process.env.OPENSHIFT_VERSION || '3';
const port = process.env.PORT || 5001;
const configPath = process.env.SERVER_EXTRA_CONFIG_FILE || '/etc/webapp/customServerConfig.json';
const DEFAULT_CUSTOM_CONFIG_DATA = {
services: []
};
const walkthroughLocations =
process.env.WALKTHROUGH_LOCATIONS ||
(process.env.NODE_ENV === 'production'
? 'https://github.com/integr8ly/tutorial-web-app-walkthroughs'
: '../tutorial-web-app-walkthroughs/walkthroughs');
const CONTEXT_PREAMBLE = 'preamble';
const CONTEXT_PARAGRAPH = 'paragraph';
const LOCATION_SEPARATOR = ',';
const TMP_DIR = process.env.TMP_DIR || '/tmp';
// Types of walkthrough location that can be provided.
const WALKTHROUGH_LOCATION_TYPE_GIT = 'git';
const WALKTHROUGH_LOCATION_TYPE_PATH = 'path';
const WALKTHROUGH_LOCATION_DEFAULT = {
type: WALKTHROUGH_LOCATION_TYPE_GIT,
commitHash: null,
commitDate: null,
remote: null,
directory: null,
header: null
};
const backendRequiredRoles = [
'system:cluster-admins',
'system:dedicated-admins',
'dedicated-admins'
];
const walkthroughs = [];
let server;
app.get('/services', (req, res) => {
res.setHeader('Content-Type', 'application/json');
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept');
if ((isOpenShift4() || process.env.CROSS_CONSOLE_LOCAL_DEV_MODE === 'true') && CROSS_CONSOLE_ENABLED) {
if (process.env.INSTALLED_SERVICES) {
res.send(process.env.INSTALLED_SERVICES);
} else {
res.send(JSON.stringify(LOCAL_DEV_INSTALLED_SERVICES));
}
} else {
res.send(JSON.stringify({}));
}
});
app.get('/customWalkthroughs', (req, res) => {
res.status(200).json(walkthroughs);
});
// metric endpoint
app.get('/metrics', (req, res) => {
res.set('Content-Type', Prometheus.register.contentType);
res.end(Prometheus.register.metrics());
});
// Get all user defined walkthrough repositories
app.get('/user_walkthroughs', (req, res) =>
getUserWalkthroughs()
.then(data => {
if (data) {
const { value } = data;
return res.json(value);
}
return res.end();
})
.catch(err => {
console.error(err);
return res.sendStatus(500);
})
);
// Insert new user defined walkthrough repositories
// This requires cluster- or dedicated admin permissions
app.post('/user_walkthroughs', requireRoles(backendRequiredRoles), (req, res) => {
const { data } = req.body;
return setUserWalkthroughs(data)
.then(({ value }) => res.json(value))
.catch(err => {
console.error(err);
return res.sendStatus(500);
});
});
// Dynamic configuration for openshift API calls
app.get('/config.js', (req, res) => {
if (!process.env.OPENSHIFT_HOST) {
console.warn('OPENSHIFT_HOST not set. Using service URLs from env vars');
res.send(getMockConfigData());
} else {
res.send(getConfigData(req));
}
});
app.get('/customConfig', (req, res) => {
getCustomConfigData(configPath).then(config => {
const compiledConfig = Mustache.render(JSON.stringify(config), req.query);
res.json(JSON.parse(compiledConfig));
});
});
app.get('/about', (_, res) => {
const packageJson = require('./package.json');
res.json({
version: packageJson.version || 'Not Available',
walkthroughLocations: getUniqueWalkthroughLocationInfos(walkthroughs)
});
});
app.get('/upgrade_data', (_, res) => {
res.json({
upgradeData: JSON.parse(process.env.UPGRADE_DATA)
});
});
app.get('/about/walkthrough/:walkthroughId', (req, res) => {
const { walkthroughId } = req.params;
const walkthrough = walkthroughs.find(w => w.id === walkthroughId);
if (!walkthrough) {
console.error('Could not find walkthrough with ID', walkthroughId);
res.sendStatus(404);
return;
}
res.json({
walkthroughId,
walkthroughLocation: walkthrough.walkthroughLocationInfo
});
});
function getUniqueWalkthroughLocationInfos(walkthroughs) {
const infos = {};
walkthroughs.forEach(walkthrough => {
const { walkthroughLocationInfo } = walkthrough;
const walkthroughLocationId = `${walkthroughLocationInfo.remote}-${walkthroughLocationInfo.directory}`;
if (!infos[walkthroughLocationId]) {
infos[walkthroughLocationId] = Object.assign({ walkthroughs: [] }, walkthroughLocationInfo);
}
infos[walkthroughLocationId].walkthroughs.push({
id: walkthrough.id,
title: walkthrough.title
});
});
return Object.values(infos);
}
// Dynamic static path for walkthrough assets. Based on the walkthrough ID
// provided it'll look in different paths.
app.get('/walkthroughs/:walkthroughId/files/*', (req, res) => {
const {
params: { walkthroughId }
} = req;
const file = req.param(0);
const walkthrough = walkthroughs.find(wt => wt.id === walkthroughId);
if (!walkthrough) {
return res.status(404).json({ error: `Walkthrough with ID ${walkthroughId} is not found` });
}
// Dotpaths are not allowed by default, meaning an end-user shouldn't be able
// to abuse the file system using the wildcard file param.
return res.sendFile(path.resolve(__dirname, `${walkthrough.basePath}`, file));
});
// Reload each walkthrough. This will clone any repo walkthroughs.
app.post('/sync-walkthroughs', (_, res) => {
loadAllWalkthroughs(walkthroughLocations)
.then(() => {
res.json(walkthroughs);
})
.catch(err => {
console.error('An error occurred when syncing walkthroughs', err);
res.json(500, { error: 'Failed to sync walkthroughs' });
});
});
/**
* Load walkthroughs from the passed locations.
* @param location (string) A string that can contains one or more walkthrough locations.
* Locations can either be paths in the filesystem or URLs pointing to git repositories. IF
* multiple locations are provided they must be separated by LOCATION_SEPARATOR
*/
function loadAllWalkthroughs(location) {
let locations = [];
if (location.indexOf(LOCATION_SEPARATOR) >= 0) {
locations = location.split(LOCATION_SEPARATOR);
} else {
locations.push(location);
}
walkthroughs.length = 0;
return injectUserWalkthroughRepos(locations)
.then(l => resolveWalkthroughLocations(l))
.then(l => Promise.all(l.map(lookupWalkthroughResources)))
.then(l => l.reduce((a, b) => a.concat(b)), []) // flatten walkthrough arrays of all locations
.then(l => l.map(importWalkthroughAdoc))
.then(l => Promise.all(l));
}
function injectUserWalkthroughRepos(locations) {
return new Promise((resolve, reject) =>
getUserWalkthroughs()
.then(val => {
if (!val) {
return resolve(locations);
}
const { value } = val;
if (!value || value === '') {
return resolve(locations);
}
const urls = value.trim().split('\n');
urls.filter(validUrl).forEach(url => {
if (locations.indexOf(url) >= 0) {
console.warn(`duplicate walkthrough repository ${url}`);
return;
}
locations.push(url);
});
return resolve(locations);
})
.catch(reject)
);
}
/**
* Parses the locations provided in the env var `WALKTHROUGH_LOCATIONS` and resolves them:
* If the location is a git repository it will be cloned and the path to the cloned repository
* will be returned.
* If the location is a path in the filesystem it will be returned directly.
* @param locations An array of paths or URLs
* @returns {Promise<any[]>}
*/
function resolveWalkthroughLocations(locations) {
function isGitRepo(p) {
if (!p) {
return false;
}
const parsed = url.parse(p);
return parsed.host && parsed.protocol;
}
function isPath(p) {
return p && fs.existsSync(p);
}
const tmpDirPrefix = uuid.v4();
const mappedLocations = locations.map(location =>
new Promise((resolve, reject) => {
const locationResultTemplate = { origin: location };
if (!location) {
return reject(new Error(`Invalid location ${location}`));
} else if (isPath(location)) {
console.log(`Importing walkthrough from path ${location}`);
const locationResult = Object.assign(
{
parentId: path.basename(location),
walkthroughLocationInfo: Object.assign({}, WALKTHROUGH_LOCATION_DEFAULT, {
type: WALKTHROUGH_LOCATION_TYPE_PATH,
directory: path.basename(location)
})
},
locationResultTemplate,
{ local: location }
);
return resolve(locationResult);
} else if (isGitRepo(location)) {
const clonePath = path.join(TMP_DIR, tmpDirPrefix);
// Need to parse out query params for walkthroughs, e.g custom directory
const cloneUrl = generateCloneUrlFromLocation(location);
const repoName = getWalkthroughRepoNameFromLocation(location);
const walkthroughParams = querystring.parse(url.parse(location).query);
console.log(`Importing walkthrough from git ${cloneUrl}`);
return gitClient
.cloneRepo(cloneUrl, clonePath)
.then(cloned => {
gitClient.latestLog(cloned.localDir).then(log => {
getWalkthroughHeader(cloned.localDir)
.then(head => {
let wtHeader;
if (head === null) {
wtHeader = null;
} else {
wtHeader = head.prettyName;
}
const walkthroughFolders = [];
if (!Array.isArray(walkthroughParams.walkthroughsFolder)) {
walkthroughFolders.push(walkthroughParams.walkthroughsFolder || 'walkthroughs');
} else {
walkthroughFolders.push(...walkthroughParams.walkthroughsFolder);
}
// Get the folders to import in the repository.
const walkthroughInfos = walkthroughFolders.map(folder => {
const walkthroughLocationInfo = Object.assign({}, WALKTHROUGH_LOCATION_DEFAULT, {
type: WALKTHROUGH_LOCATION_TYPE_GIT,
commitHash: log.latest.hash,
commitDate: log.latest.date,
remote: cloned.repoName,
directory: folder,
header: wtHeader
});
return Object.assign({}, locationResultTemplate, {
parentId: `${repoName}-${path.basename(folder)}`,
walkthroughLocationInfo,
local: path.join(cloned.localDir, folder)
});
});
resolve(walkthroughInfos);
})
.catch(reject);
});
})
.catch(reject);
}
return reject(new Error(`${location} is neither a path nor a git repo`));
}).catch(err => {
console.error(err);
return undefined;
})
);
return Promise.all(mappedLocations).then(promises =>
// Ignore all locations that could not be resolved
flattenDeep(promises.filter(p => !!p))
);
}
/**
* Given a URL to a repository, strip the query and rebuild the URL
* @param {String} location
*/
function generateCloneUrlFromLocation(location) {
const locationParsed = url.parse(location);
// Need to nullify query params since these are just used by us
locationParsed.search = locationParsed.query = null;
return url.format(locationParsed);
}
function getWalkthroughRepoNameFromLocation(location) {
const locationParsed = url.parse(location);
// Return the repository name, i.e the highest-level identifier
return path.basename(locationParsed.path.split('?')[0]);
}
/**
* Check if a walkthrough location is valid and contains `walkthrough.adoc`
* @param location Path to the walkthrough directory
* @returns {Promise<any>}
*/
function lookupWalkthroughResources(location) {
return new Promise((resolve, reject) => {
if (!fs.existsSync(location.local)) {
reject(new Error(`Could not find walkthroughs directory in provided location: ${location.origin}`));
}
fs.readdir(location.local, (err, files) => {
if (err) {
return reject(err);
}
const adocInfo = files.reduce((acc, dirName) => {
const basePath = path.join(location.local, dirName);
const adocPath = path.join(basePath, 'walkthrough.adoc');
const jsonPath = path.join(basePath, 'walkthrough.json');
if (!fs.existsSync(adocPath) || !fs.existsSync(jsonPath)) {
console.log(
`walkthrough.json and walkthrough.adoc must be included in walkthrough directory, skipping importing ${basePath}`
);
return acc;
}
acc.push({
parentId: location.parentId,
walkthroughLocationInfo: location.walkthroughLocationInfo,
dirName,
basePath,
adocPath
});
return acc;
}, []);
return resolve(adocInfo);
});
});
}
/**
* Load and process the Asciidoc of a walkthrough. Also checks if any of the walkthrough
* IDs are duplicate and rejects them in that case.
* @param adocContext (Object) Contains filesystem info about the walkthrough location
* @returns {Promise<any>}
*/
function importWalkthroughAdoc(adocContext) {
const { parentId, adocPath, dirName, basePath, walkthroughLocationInfo } = adocContext;
return new Promise((resolve, reject) => {
fs.readFile(adocPath, (err, rawAdoc) => {
if (err) {
return reject(err);
}
const loadedAdoc = adoc.load(rawAdoc);
const walkthroughInfo = getWalkthroughInfoFromAdoc(parentId, dirName, basePath, loadedAdoc);
walkthroughInfo.walkthroughLocationInfo = walkthroughLocationInfo;
// Don't allow duplicate walkthroughs
if (walkthroughs.find(wt => wt.id === walkthroughInfo.id)) {
return reject(
new Error(`Duplicate walkthrough with id ${walkthroughInfo.id} (${walkthroughInfo.shortDescription})`)
);
}
walkthroughs.push(walkthroughInfo);
return resolve();
});
});
}
function getCustomConfigData(configPath) {
return new Promise(resolve => {
if (!configPath) {
return resolve(DEFAULT_CUSTOM_CONFIG_DATA);
}
fs.readFile(configPath, (err, data) => {
if (err) {
return resolve(DEFAULT_CUSTOM_CONFIG_DATA);
}
return resolve(JSON.parse(data));
});
});
}
// Function to get the header of the repo-based walkthroughs
function getWalkthroughHeader(basePath) {
const jsonPath = path.join(basePath, 'walkthroughs-config.json');
return new Promise(resolve => {
if (!fs.existsSync(jsonPath)) {
console.log(`FAIL: walkthroughs-config.json is not included in the following directory: ${basePath}`);
return resolve(null);
}
console.log(`SUCCESS: Found walkthroughs-config.json in the following directory: ${basePath}`);
fs.readFile(jsonPath, 'utf8', (err, data) => {
if (err) {
console.error(`Failed to read header: ${err}`);
return resolve(null);
}
console.log(`getWalkthroughHeader returning: ${data}`);
return resolve(JSON.parse(data));
});
});
}
function isOpenShift4() {
return `${process.env.OPENSHIFT_VERSION}` === '4';
}
function getMockConfigData() {
return `window.OPENSHIFT_CONFIG = {
masterUri: 'mock-openshift-console-url',
integreatlyVersion: '${process.env.INTEGREATLY_VERSION || ''}',
openshiftVersion: ${openshiftVersion},
threescaleWildcardDomain: '${process.env.THREESCALE_WILDCARD_DOMAIN || ''}',
optionalWatchServices: [],
optionalProvisionServices: [],
mockData: {
serviceInstances: [
{
spec: {
clusterServiceClassExternalName: 'amq-online-standard'
},
status: {
dashboardURL:'${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: '3scale'
},
status: {
dashboardURL:'${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: 'fuse'
},
status: {
dashboardURL:'${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: 'fuse-managed'
},
status: {
dashboardURL:'${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: 'fuse-managed'
},
status: {
dashboardURL:'${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: 'rhsso'
},
status: {
dashboardURL:'${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: 'launcher'
},
status: {
dashboardURL:'${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: 'codeready'
},
status: {
dashboardURL:'${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: 'apicurito-rhmi'
},
status: {
dashboardURL:'${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: 'user-rhsso'
},
status: {
dashboardURL: '${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
},
{
spec: {
clusterServiceClassExternalName: 'unifiedpush'
},
status: {
dashboardURL: '${process.env.OPENSHIFT_URL}',
conditions: [{ status: 'True' }]
}
}
]
}
};`;
}
function getConfigData(req) {
let redirectHost = null;
if (req.headers['x-forwarded-proto'] && req.headers['x-forwarded-host']) {
redirectHost = `${req.headers['x-forwarded-proto']}://${req.headers['x-forwarded-host']}`;
} else {
redirectHost = `https://${req.headers.host}`;
}
let logoutRedirectUri = null;
if (process.env.NODE_ENV === 'production') {
logoutRedirectUri = redirectHost;
} else {
logoutRedirectUri = 'http://localhost:3006';
}
if (!process.env.OPENSHIFT_OAUTH_HOST) {
console.warn(
'OPENSHIFT_OAUTH_HOST not set, using OPENSHIFT_HOST instead. This is okay on OCP 3.11, but will not work on 4.x, see INTLY-2791.'
);
process.env.OPENSHIFT_OAUTH_HOST = process.env.OPENSHIFT_HOST;
}
const masterUri = isOpenShift4() ? OPENSHIFT_PROXY_PATH : `https://${process.env.OPENSHIFT_HOST}`;
const wssMasterUri = isOpenShift4() ? OPENSHIFT_PROXY_PATH : `wss://${process.env.OPENSHIFT_HOST}`;
const ssoLogoutUri = isOpenShift4()
? '/'
: `https://${
process.env.SSO_ROUTE
}/auth/realms/openshift/protocol/openid-connect/logout?redirect_uri=${logoutRedirectUri}`;
const installedServices = process.env.INSTALLED_SERVICES || '{}';
return `window.OPENSHIFT_CONFIG = {
openshiftHost: 'https://${process.env.OPENSHIFT_HOST}',
clientId: '${process.env.OPENSHIFT_OAUTHCLIENT_ID}',
accessTokenUri: 'https://${process.env.OPENSHIFT_OAUTH_HOST}/oauth/token',
authorizationUri: 'https://${process.env.OPENSHIFT_OAUTH_HOST}/oauth/authorize',
redirectUri: '${redirectHost}/oauth/callback',
scopes: ['user:full'],
masterUri: '${masterUri}',
wssMasterUri: '${wssMasterUri}',
ssoLogoutUri: '${ssoLogoutUri}',
threescaleWildcardDomain: '${process.env.THREESCALE_WILDCARD_DOMAIN || ''}',
integreatlyVersion: '${process.env.INTEGREATLY_VERSION || ''}',
clusterType: '${process.env.CLUSTER_TYPE || ''}',
installationType: '${process.env.INSTALLATION_TYPE || ''}',
optionalWatchServices: ${JSON.stringify(arrayFromString(process.env.OPTIONAL_WATCH_SERVICES || '', ','))},
optionalProvisionServices: ${JSON.stringify(arrayFromString(process.env.OPTIONAL_PROVISION_SERVICES || '', ','))},
openshiftVersion: ${openshiftVersion},
provisionedServices: ${installedServices}
};`;
}
const arrayFromString = (data, sep) => data.split(sep).filter(item => item !== '');
function getWalkthroughInfoFromAdoc(parentId, id, dirName, doc) {
// Retrieve the short description. There must be a gap between the document title and the short description.
// Otherwise it's counted as the author field. For example, see this adoc file:
// ````
// = This is a title
// This is an author field
// This would be the revision field or something
// This is the short description.
// ````
// So it's better to just tell the user to put a blank line between the title and short description
let shortDescription = '';
if (
doc.blocks[0] &&
doc.blocks[0].context === 'preamble' &&
doc.blocks[0].blocks.length > 0 &&
doc.blocks[0].blocks[0].lines &&
doc.blocks[0].blocks[0].lines.length > 0
) {
shortDescription = doc.blocks[0].blocks[0].lines[0];
}
return {
// Using the repo name plus folder name should be sufficiently unique
id: `${parentId}-${id}`,
title: doc.getDocumentTitle(),
shortDescription,
time: getTotalWalkthroughTime(doc),
adoc: path.join(dirName, 'walkthrough.adoc'),
json: path.join(dirName, 'walkthrough.json'),
basePath: dirName
};
}
const getTotalWalkthroughTime = doc => {
let time = 0;
doc.blocks.forEach(b => {
if (b.context === CONTEXT_PREAMBLE || b.context === CONTEXT_PARAGRAPH) {
return;
}
time += parseInt(b.getAttribute('time'), 10) || 0;
});
return time;
};
if (process.env.NODE_ENV === 'production') {
// Serve any static files
app.use(express.static(path.join(__dirname, 'build')));
// Handle React routing, return all requests to React app
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
}
function run() {
sync().then(() => {
loadAllWalkthroughs(walkthroughLocations)
.then(() => {
server = app.listen(port, () => console.log(`Listening on port ${port}`));
})
.catch(err => {
console.error(err);
process.exit(1);
});
});
}
// Close all connections before shutting down
function stop() {
console.log('Webapp shutting down');
closeConnection().then(() => {
server && server.close();
console.log('Webapp shutdown complete');
});
}
process.on('SIGTERM', stop);
process.on('SIGABRT', stop);
process.on('SIGQUIT', stop);
process.on('SIGINT', stop);
run();