nav tabs on admin dashboard
This commit is contained in:
94
node_modules/http-proxy-middleware/lib/context-matcher.js
generated
vendored
94
node_modules/http-proxy-middleware/lib/context-matcher.js
generated
vendored
@@ -1,43 +1,43 @@
|
||||
var _ = require('lodash');
|
||||
var url = require('url');
|
||||
var isGlob = require('is-glob');
|
||||
var micromatch = require('micromatch');
|
||||
var _ = require('lodash')
|
||||
var url = require('url')
|
||||
var isGlob = require('is-glob')
|
||||
var micromatch = require('micromatch')
|
||||
var ERRORS = require('./errors')
|
||||
|
||||
module.exports = {
|
||||
match: matchContext
|
||||
};
|
||||
match: matchContext
|
||||
}
|
||||
|
||||
function matchContext(context, uri, req) {
|
||||
// single path
|
||||
if (isStringPath(context)) {
|
||||
return matchSingleStringPath(context, uri)
|
||||
}
|
||||
|
||||
// single path
|
||||
if (isStringPath(context)) {
|
||||
return matchSingleStringPath(context, uri);
|
||||
// single glob path
|
||||
if (isGlobPath(context)) {
|
||||
return matchSingleGlobPath(context, uri)
|
||||
}
|
||||
|
||||
// multi path
|
||||
if (Array.isArray(context)) {
|
||||
if (context.every(isStringPath)) {
|
||||
return matchMultiPath(context, uri)
|
||||
}
|
||||
if (context.every(isGlobPath)) {
|
||||
return matchMultiGlobPath(context, uri)
|
||||
}
|
||||
|
||||
// single glob path
|
||||
if (isGlobPath(context)) {
|
||||
return matchSingleGlobPath(context, uri);
|
||||
}
|
||||
throw new Error(ERRORS.ERR_CONTEXT_MATCHER_INVALID_ARRAY)
|
||||
}
|
||||
|
||||
// multi path
|
||||
if (Array.isArray(context)) {
|
||||
if (context.every(isStringPath)) {
|
||||
return matchMultiPath(context, uri);
|
||||
}
|
||||
if (context.every(isGlobPath)) {
|
||||
return matchMultiGlobPath(context, uri);
|
||||
}
|
||||
// custom matching
|
||||
if (_.isFunction(context)) {
|
||||
var pathname = getUrlPathName(uri)
|
||||
return context(pathname, req)
|
||||
}
|
||||
|
||||
throw new Error('[HPM] Invalid context. Expecting something like: ["/api", "/ajax"] or ["/api/**", "!**.html"]');
|
||||
}
|
||||
|
||||
// custom matching
|
||||
if (_.isFunction(context)) {
|
||||
var pathname = getUrlPathName(uri);
|
||||
return context(pathname, req);
|
||||
}
|
||||
|
||||
throw new Error('[HPM] Invalid context. Expecting something like: "/api" or ["/api", "/ajax"]');
|
||||
throw new Error(ERRORS.ERR_CONTEXT_MATCHER_GENERIC)
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -46,33 +46,33 @@ function matchContext(context, uri, req) {
|
||||
* @return {Boolean}
|
||||
*/
|
||||
function matchSingleStringPath(context, uri) {
|
||||
var pathname = getUrlPathName(uri);
|
||||
return pathname.indexOf(context) === 0;
|
||||
var pathname = getUrlPathName(uri)
|
||||
return pathname.indexOf(context) === 0
|
||||
}
|
||||
|
||||
function matchSingleGlobPath(pattern, uri) {
|
||||
var pathname = getUrlPathName(uri);
|
||||
var matches = micromatch(pathname, pattern);
|
||||
return matches && (matches.length > 0);
|
||||
var pathname = getUrlPathName(uri)
|
||||
var matches = micromatch(pathname, pattern)
|
||||
return matches && matches.length > 0
|
||||
}
|
||||
|
||||
function matchMultiGlobPath(patternList, uri) {
|
||||
return matchSingleGlobPath(patternList, uri);
|
||||
return matchSingleGlobPath(patternList, uri)
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {String} context ['/api', '/ajax']
|
||||
* @param {String} contextList ['/api', '/ajax']
|
||||
* @param {String} uri 'http://example.org/api/b/c/d.html'
|
||||
* @return {Boolean}
|
||||
*/
|
||||
function matchMultiPath(contextList, uri) {
|
||||
for (var i = 0; i < contextList.length; i++) {
|
||||
var context = contextList[i];
|
||||
if (matchSingleStringPath(context, uri)) {
|
||||
return true;
|
||||
}
|
||||
for (var i = 0; i < contextList.length; i++) {
|
||||
var context = contextList[i]
|
||||
if (matchSingleStringPath(context, uri)) {
|
||||
return true
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -82,13 +82,13 @@ function matchMultiPath(contextList, uri) {
|
||||
* @return {String} RFC 3986 path
|
||||
*/
|
||||
function getUrlPathName(uri) {
|
||||
return uri && url.parse(uri).pathname;
|
||||
return uri && url.parse(uri).pathname
|
||||
}
|
||||
|
||||
function isStringPath(context) {
|
||||
return _.isString(context) && !isGlob(context);
|
||||
return _.isString(context) && !isGlob(context)
|
||||
}
|
||||
|
||||
function isGlobPath(context) {
|
||||
return isGlob(context);
|
||||
return isGlob(context)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user