make Prettier
This commit is contained in:
parent
16251a99b9
commit
0e5fff5c4a
74
index.js
74
index.js
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
"use strict";
|
||||
|
||||
module.exports = function (opts) {
|
||||
var escapeHtml = require('escape-html');
|
||||
var escapeHtml = require("escape-html");
|
||||
|
||||
if (!opts) {
|
||||
opts = {};
|
||||
|
@ -13,40 +13,41 @@ module.exports = function (opts) {
|
|||
opts.browsers = 301;
|
||||
}
|
||||
if (!opts.apis) {
|
||||
opts.apis = 'meta';
|
||||
opts.apis = "meta";
|
||||
}
|
||||
if (!Array.isArray(opts.paths)) {
|
||||
opts.paths = [ { match: '/' } ];
|
||||
opts.paths = [{ match: "/" }];
|
||||
}
|
||||
if (!('body' in opts)) {
|
||||
opts.body = "<!-- Hello Developer Person! We don't serve insecure resources around here."
|
||||
+ "\n Please use HTTPS instead. -->";
|
||||
if (!("body" in opts)) {
|
||||
opts.body =
|
||||
"<!-- Hello Developer Person! We don't serve insecure resources around here." +
|
||||
"\n Please use HTTPS instead. -->";
|
||||
}
|
||||
opts.body = opts.body.replace(/{{\s+PORT\s+}}/ig, opts.port);
|
||||
opts.body = opts.body.replace(/{{\s+PORT\s+}}/gi, opts.port);
|
||||
|
||||
return function (req, res, next) {
|
||||
if (req.connection.encrypted
|
||||
|| 'https' === req.protocol
|
||||
|| (opts.trustProxy && 'https' === req.headers['x-forwarded-proto'])
|
||||
if (
|
||||
req.connection.encrypted ||
|
||||
"https" === req.protocol ||
|
||||
(opts.trustProxy && "https" === req.headers["x-forwarded-proto"])
|
||||
) {
|
||||
next();
|
||||
return;
|
||||
}
|
||||
|
||||
var url = (req.originalUrl || req.url);
|
||||
var url = req.originalUrl || req.url;
|
||||
// We don't want chrome showing the "Not Secure" badge during the redirect.
|
||||
var probablyBrowser = (0 === (req.headers['user-agent']||'').indexOf('Mozilla/'));
|
||||
var probablyBrowser =
|
||||
0 === (req.headers["user-agent"] || "").indexOf("Mozilla/");
|
||||
// But we don't want devs, APIs, or Bots to accidentally browse insecure.
|
||||
var redirect = probablyBrowser ? opts.browsers : opts.apis;
|
||||
var host = req.headers.host || '';
|
||||
var host = req.headers.host || "";
|
||||
if (!/:\d+/.test(host) && 443 !== opts.port) {
|
||||
// we are using standard port 80, but we aren't using standard port 443
|
||||
host += ':80';
|
||||
host += ":80";
|
||||
}
|
||||
var newLocation = 'https://'
|
||||
+ host.replace(/:\d+/, ':' + opts.port) + url
|
||||
;
|
||||
|
||||
var newLocation =
|
||||
"https://" + host.replace(/:\d+/, ":" + opts.port) + url;
|
||||
//var encodedLocation = encodeURI(newLocation);
|
||||
var escapedLocation = escapeHtml(newLocation);
|
||||
var decodedLocation;
|
||||
|
@ -57,26 +58,29 @@ module.exports = function (opts) {
|
|||
}
|
||||
|
||||
var body = opts.body
|
||||
.replace(/{{\s*HTML_URL\s*}}/ig, escapeHtml(decodedLocation))
|
||||
.replace(/{{\s*URL\s*}}/ig, escapedLocation)
|
||||
.replace(/{{\s*UNSAFE_URL\s*}}/ig, newLocation)
|
||||
;
|
||||
|
||||
var metaRedirect = ''
|
||||
+ '<html>'
|
||||
+ '\n<head><META http-equiv="refresh" content="0;URL=\'' + escapedLocation + '\'"></head>'
|
||||
+ '\n<body>' + body + '</body>'
|
||||
+ '\n</html>\n'
|
||||
;
|
||||
.replace(/{{\s*HTML_URL\s*}}/gi, escapeHtml(decodedLocation))
|
||||
.replace(/{{\s*URL\s*}}/gi, escapedLocation)
|
||||
.replace(/{{\s*UNSAFE_URL\s*}}/gi, newLocation);
|
||||
var metaRedirect =
|
||||
"" +
|
||||
"<html>" +
|
||||
'\n<head><META http-equiv="refresh" content="0;URL=\'' +
|
||||
escapedLocation +
|
||||
"'\"></head>" +
|
||||
"\n<body>" +
|
||||
body +
|
||||
"</body>" +
|
||||
"\n</html>\n";
|
||||
var pathMatch;
|
||||
|
||||
opts.paths.some(function (p) {
|
||||
if (!p.match) {
|
||||
// ignore
|
||||
} else if ('string' === typeof p.match) {
|
||||
pathMatch = (url === p.match) && (p.redirect || 301);
|
||||
} else if ("string" === typeof p.match) {
|
||||
pathMatch = url === p.match && (p.redirect || 301);
|
||||
} else {
|
||||
pathMatch = p.match.test && p.match.test(url) && (p.redirect || 301);
|
||||
pathMatch =
|
||||
p.match.test && p.match.test(url) && (p.redirect || 301);
|
||||
}
|
||||
if (pathMatch) {
|
||||
redirect = pathMatch;
|
||||
|
@ -86,9 +90,9 @@ module.exports = function (opts) {
|
|||
// If it's not a non-0 number (because null is 0) then 'meta' is assumed.
|
||||
if (redirect && isFinite(redirect)) {
|
||||
res.statusCode = redirect;
|
||||
res.setHeader('Location', newLocation);
|
||||
res.setHeader("Location", newLocation);
|
||||
}
|
||||
res.setHeader('Content-Type', 'text/html; charset=utf-8');
|
||||
res.setHeader("Content-Type", "text/html; charset=utf-8");
|
||||
res.end(metaRedirect);
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue