2020-12-14 15:28:35 +00:00
|
|
|
/*eslint node/no-extraneous-require: "off"*/
|
2020-05-11 15:37:11 +00:00
|
|
|
'use strict';
|
|
|
|
const fs = require('fs');
|
|
|
|
const promisify = require('util').promisify;
|
|
|
|
const read = promisify(fs.readFile);
|
2020-07-07 18:58:46 +00:00
|
|
|
const express = require('express');
|
2020-05-11 15:37:11 +00:00
|
|
|
|
|
|
|
module.exports = function(app, options) {
|
|
|
|
// During development the proxy server has no way of
|
|
|
|
// knowing the content/mime type of our `oidc/callback` file
|
|
|
|
// as it has no extension.
|
|
|
|
// This shims the default server to set the correct headers
|
|
|
|
// just for this file
|
|
|
|
|
|
|
|
const file = `/oidc/callback`;
|
|
|
|
const rootURL = options.rootURL;
|
|
|
|
const url = `${rootURL.substr(0, rootURL.length - 1)}${file}`;
|
|
|
|
app.use(function(req, resp, next) {
|
|
|
|
if (req.url.split('?')[0] === url) {
|
|
|
|
return read(`${process.cwd()}/public${file}`).then(function(buffer) {
|
|
|
|
resp.header('Content-Type', 'text/html');
|
|
|
|
resp.write(buffer.toString());
|
|
|
|
resp.end();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
next();
|
|
|
|
});
|
2021-03-17 10:46:21 +00:00
|
|
|
|
|
|
|
// sets the base CSP policy for the UI
|
|
|
|
app.use(function(request, response, next) {
|
|
|
|
response.set({
|
|
|
|
'Content-Security-Policy': `default-src 'self' ws: localhost:${options.liveReloadPort} http: localhost:${options.liveReloadPort}; img-src 'self' data: ; style-src 'self' 'unsafe-inline'`,
|
|
|
|
});
|
|
|
|
next();
|
|
|
|
});
|
2020-07-07 18:58:46 +00:00
|
|
|
// Serve the coverage folder for easy viewing during development
|
|
|
|
app.use('/coverage', express.static('coverage'));
|
2020-05-11 15:37:11 +00:00
|
|
|
};
|