mirror of
https://github.com/LukeHagar/arbiter.git
synced 2025-12-09 12:27:48 +00:00
Saving all progress
This commit is contained in:
45
node_modules/http-proxy-middleware/dist/router.js
generated
vendored
Normal file
45
node_modules/http-proxy-middleware/dist/router.js
generated
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.getTarget = getTarget;
|
||||
const is_plain_object_1 = require("is-plain-object");
|
||||
const debug_1 = require("./debug");
|
||||
const debug = debug_1.Debug.extend('router');
|
||||
async function getTarget(req, config) {
|
||||
let newTarget;
|
||||
const router = config.router;
|
||||
if ((0, is_plain_object_1.isPlainObject)(router)) {
|
||||
newTarget = getTargetFromProxyTable(req, router);
|
||||
}
|
||||
else if (typeof router === 'function') {
|
||||
newTarget = await router(req);
|
||||
}
|
||||
return newTarget;
|
||||
}
|
||||
function getTargetFromProxyTable(req, table) {
|
||||
let result;
|
||||
const host = req.headers.host;
|
||||
const path = req.url;
|
||||
const hostAndPath = host + path;
|
||||
for (const [key, value] of Object.entries(table)) {
|
||||
if (containsPath(key)) {
|
||||
if (hostAndPath.indexOf(key) > -1) {
|
||||
// match 'localhost:3000/api'
|
||||
result = value;
|
||||
debug('match: "%s" -> "%s"', key, result);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (key === host) {
|
||||
// match 'localhost:3000'
|
||||
result = value;
|
||||
debug('match: "%s" -> "%s"', host, result);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
function containsPath(v) {
|
||||
return v.indexOf('/') > -1;
|
||||
}
|
||||
Reference in New Issue
Block a user