From 8d06be81d889e3e137250b4768669c196bac8dd9 Mon Sep 17 00:00:00 2001 From: sak Date: Fri, 7 Apr 2023 16:14:36 +0700 Subject: [PATCH] add httpStaticMiddleware before serve static files --- packages/node_modules/node-red/red.js | 7 ++++++- packages/node_modules/node-red/settings.js | 12 ++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/packages/node_modules/node-red/red.js b/packages/node_modules/node-red/red.js index 2f5ab354c..cb247ee48 100755 --- a/packages/node_modules/node-red/red.js +++ b/packages/node_modules/node-red/red.js @@ -423,6 +423,11 @@ httpsPromise.then(function(startupHttps) { // } if (settings.httpStatic) { let appUseMem = {}; + let httpStaticMiddleware = (req, res, next) => next() + if (typeof settings.httpStaticMiddleware === 'function' || isArray(settings.httpStaticMiddleware)) { + httpStaticMiddleware = settings.httpStaticMiddleware + } + for (let si = 0; si < settings.httpStatic.length; si++) { const sp = settings.httpStatic[si]; const filePath = sp.path; @@ -434,7 +439,7 @@ httpsPromise.then(function(startupHttps) { if (settings.httpStaticAuth) { app.use(thisRoot, basicAuthMiddleware(settings.httpStaticAuth.user, settings.httpStaticAuth.pass)); } - app.use(thisRoot, express.static(filePath)); + app.use(thisRoot, httpStaticMiddleware, express.static(filePath)); } } diff --git a/packages/node_modules/node-red/settings.js b/packages/node_modules/node-red/settings.js index ef76f8680..b2c0b764c 100644 --- a/packages/node_modules/node-red/settings.js +++ b/packages/node_modules/node-red/settings.js @@ -239,6 +239,18 @@ module.exports = { */ //httpStaticRoot: '/static/', + /** The following property can be used to add a custom middleware function + * in front of all static files. This allows custom authentication to be + * applied to all http in nodes, or any other sort of common request processing. + * It can be a single function or an array of middleware functions. + */ + // httpStaticMiddleware: [ + // require('compression')({ threshold: 0}), + // function(req,res,next) { + // // for example + // next(); + // }, + // ], /******************************************************************************* * Runtime Settings * - lang