2016-09-14 18:04:42 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
<rules>: <rule>
|
|
|
|
<rules>: [<rule>]
|
|
|
|
<rule>: {
|
|
|
|
resource: {
|
|
|
|
test: <condition>,
|
|
|
|
include: <condition>,
|
|
|
|
exclude: <condition>,
|
|
|
|
},
|
|
|
|
resource: <condition>, -> resource.test
|
|
|
|
test: <condition>, -> resource.test
|
|
|
|
include: <condition>, -> resource.include
|
|
|
|
exclude: <condition>, -> resource.exclude
|
|
|
|
issuer: {
|
|
|
|
test: <condition>,
|
|
|
|
include: <condition>,
|
|
|
|
exclude: <condition>,
|
|
|
|
},
|
|
|
|
issuer: <condition>, -> issuer.test
|
|
|
|
use: "loader", -> use[0].loader
|
|
|
|
loader: <>, -> use[0].loader
|
|
|
|
loaders: <>, -> use
|
|
|
|
options: {}, -> use[0].options,
|
|
|
|
query: {}, -> options
|
|
|
|
parser: {},
|
|
|
|
use: [
|
|
|
|
"loader" -> use[x].loader
|
|
|
|
],
|
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: "loader",
|
|
|
|
options: {}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
rules: [
|
|
|
|
<rule>
|
|
|
|
],
|
|
|
|
oneOf: [
|
|
|
|
<rule>
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
<condition>: /regExp/
|
|
|
|
<condition>: function(arg) {}
|
|
|
|
<condition>: "starting"
|
|
|
|
<condition>: [<condition>] // or
|
|
|
|
<condition>: { and: [<condition>] }
|
|
|
|
<condition>: { or: [<condition>] }
|
|
|
|
<condition>: { not: [<condition>] }
|
2016-10-23 02:20:22 +08:00
|
|
|
<condition>: { test: <condition>, include: <condition>, exclude: <condition> }
|
2016-09-14 18:04:42 +08:00
|
|
|
|
|
|
|
|
|
|
|
normalized:
|
|
|
|
|
|
|
|
{
|
|
|
|
resource: function(),
|
|
|
|
issuer: function(),
|
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: string,
|
|
|
|
options: string,
|
|
|
|
<any>: <any>
|
|
|
|
}
|
|
|
|
],
|
|
|
|
rules: [<rule>],
|
|
|
|
oneOf: [<rule>],
|
|
|
|
<any>: <any>,
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
function RuleSet(rules) {
|
|
|
|
this.rules = RuleSet.normalizeRules(rules);
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = RuleSet;
|
|
|
|
|
|
|
|
RuleSet.normalizeRules = function(rules) {
|
|
|
|
if(Array.isArray(rules)) {
|
|
|
|
return rules.map(function(rule) {
|
|
|
|
return RuleSet.normalizeRule(rule);
|
|
|
|
});
|
|
|
|
} else if(rules) {
|
|
|
|
return [RuleSet.normalizeRule(rules)]
|
|
|
|
} else {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
RuleSet.normalizeRule = function(rule) {
|
|
|
|
if(typeof rule === "string")
|
2016-09-14 18:04:42 +08:00
|
|
|
return {
|
|
|
|
use: [{
|
|
|
|
loader: rule
|
|
|
|
}]
|
|
|
|
};
|
2016-09-14 18:04:42 +08:00
|
|
|
if(!rule)
|
|
|
|
throw new Error("Unexcepted null when object was expected as rule");
|
|
|
|
if(typeof rule !== "object")
|
|
|
|
throw new Error("Unexcepted " + typeof rule + " when object was expected as rule (" + rule + ")");
|
|
|
|
|
|
|
|
var newRule = {};
|
|
|
|
var useSource;
|
|
|
|
var resourceSource;
|
|
|
|
|
|
|
|
if(rule.test || rule.include || rule.exclude) {
|
|
|
|
checkResourceSource("test + include + exclude");
|
2016-10-23 02:20:22 +08:00
|
|
|
var condition = {
|
2016-09-14 18:04:42 +08:00
|
|
|
test: rule.test,
|
|
|
|
include: rule.include,
|
|
|
|
exclude: rule.exclude
|
2016-10-23 02:20:22 +08:00
|
|
|
};
|
|
|
|
try {
|
|
|
|
newRule.resource = RuleSet.normalizeCondition(condition);
|
|
|
|
} catch (error) {
|
|
|
|
var conditionAsText = JSON.stringify(condition, function(key, value) {
|
|
|
|
return (value === undefined) ? "undefined" : value;
|
|
|
|
}, 2)
|
|
|
|
var message = error.message + " in " + conditionAsText;
|
|
|
|
throw new Error(message);
|
|
|
|
}
|
2016-09-14 18:04:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if(rule.resource) {
|
|
|
|
checkResourceSource("resource");
|
|
|
|
newRule.resource = RuleSet.normalizeCondition(rule.resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rule.issuer) {
|
|
|
|
newRule.issuer = RuleSet.normalizeCondition(rule.issuer);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rule.loader && rule.loaders)
|
|
|
|
throw new Error("Provided loader and loaders for rule");
|
|
|
|
|
|
|
|
var loader = rule.loaders || rule.loader;
|
|
|
|
if(typeof loader === "string" && !rule.options && !rule.query) {
|
|
|
|
checkUseSource("loader");
|
|
|
|
newRule.use = RuleSet.normalizeUse(loader.split("!"));
|
2016-09-14 18:04:42 +08:00
|
|
|
} else if(typeof loader === "string" && (rule.options || rule.query)) {
|
2016-09-14 18:04:42 +08:00
|
|
|
checkUseSource("loader + options/query");
|
|
|
|
newRule.use = RuleSet.normalizeUse({
|
|
|
|
loader: loader,
|
|
|
|
options: rule.options,
|
|
|
|
query: rule.query
|
|
|
|
});
|
2016-09-14 18:04:42 +08:00
|
|
|
} else if(loader && (rule.options || rule.query)) {
|
|
|
|
throw new Error("options/query cannot be used with loaders");
|
2016-09-14 18:04:42 +08:00
|
|
|
} else if(loader) {
|
|
|
|
checkUseSource("loaders");
|
|
|
|
newRule.use = RuleSet.normalizeUse(loader);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rule.use) {
|
|
|
|
checkUseSource("use");
|
|
|
|
newRule.use = RuleSet.normalizeUse(rule.use);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rule.rules)
|
|
|
|
newRule.rules = RuleSet.normalizeRules(rule.rules);
|
|
|
|
|
|
|
|
if(rule.oneOf)
|
|
|
|
newRule.oneOf = RuleSet.normalizeRules(rule.oneOf);
|
|
|
|
|
|
|
|
var keys = Object.keys(rule).filter(function(key) {
|
|
|
|
return ["resource", "test", "include", "exclude", "issuer", "loader", "options", "query", "loaders", "use", "rules", "oneOf"].indexOf(key) < 0;
|
|
|
|
});
|
|
|
|
keys.forEach(function(key) {
|
|
|
|
newRule[key] = rule[key];
|
|
|
|
});
|
|
|
|
|
|
|
|
function checkUseSource(newSource) {
|
|
|
|
if(useSource && useSource !== newSource)
|
|
|
|
throw new Error("Rule can only have one result source (provided " + newSource + " and " + useSource + ")");
|
|
|
|
useSource = newSource;
|
|
|
|
}
|
2016-09-14 18:04:42 +08:00
|
|
|
|
2016-09-14 18:04:42 +08:00
|
|
|
function checkResourceSource(newSource) {
|
|
|
|
if(resourceSource && resourceSource !== newSource)
|
|
|
|
throw new Error("Rule can only have one resource source (provided " + newSource + " and " + resourceSource + ")");
|
|
|
|
resourceSource = newSource;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newRule;
|
|
|
|
};
|
|
|
|
|
|
|
|
RuleSet.normalizeUse = function normalizeUse(use) {
|
|
|
|
if(Array.isArray(use)) {
|
|
|
|
return use.map(RuleSet.normalizeUse).reduce(function(arr, items) {
|
|
|
|
return arr.concat(items);
|
|
|
|
}, []);
|
|
|
|
}
|
|
|
|
return [RuleSet.normalizeUseItem(use)];
|
|
|
|
};
|
|
|
|
|
|
|
|
RuleSet.normalizeUseItem = function normalizeUseItem(item) {
|
|
|
|
if(typeof item === "function")
|
|
|
|
return item;
|
|
|
|
|
|
|
|
if(typeof item === "string") {
|
|
|
|
var idx = item.indexOf("?");
|
|
|
|
if(idx >= 0) {
|
|
|
|
return {
|
|
|
|
loader: item.substr(0, idx),
|
|
|
|
options: item.substr(idx + 1)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
loader: item
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
var newItem = {};
|
|
|
|
|
|
|
|
if(item.options && item.query)
|
|
|
|
throw new Error("Provided options and query in use");
|
|
|
|
|
2016-09-14 18:04:42 +08:00
|
|
|
if(!item.loader)
|
|
|
|
throw new Error("No loader specified");
|
|
|
|
|
2016-09-14 18:04:42 +08:00
|
|
|
newItem.options = item.options || item.query;
|
|
|
|
|
|
|
|
var keys = Object.keys(item).filter(function(key) {
|
|
|
|
return ["options", "query"].indexOf(key) < 0;
|
|
|
|
});
|
|
|
|
|
|
|
|
keys.forEach(function(key) {
|
|
|
|
newItem[key] = item[key];
|
|
|
|
});
|
|
|
|
|
|
|
|
return newItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
RuleSet.normalizeCondition = function normalizeCondition(condition) {
|
|
|
|
if(!condition)
|
|
|
|
throw new Error("Expected condition but got falsy value");
|
|
|
|
if(typeof condition === "string") {
|
|
|
|
return function(str) {
|
|
|
|
return str.indexOf(condition) === 0;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if(typeof condition === "function") {
|
|
|
|
return condition;
|
|
|
|
}
|
|
|
|
if(condition instanceof RegExp) {
|
|
|
|
return condition.test.bind(condition);
|
|
|
|
}
|
|
|
|
if(Array.isArray(condition)) {
|
2016-09-14 18:04:42 +08:00
|
|
|
var items = condition.map(function(c) {
|
|
|
|
return RuleSet.normalizeCondition(c);
|
|
|
|
});
|
2016-09-14 18:04:42 +08:00
|
|
|
return orMatcher(items);
|
|
|
|
}
|
|
|
|
if(typeof condition !== "object")
|
|
|
|
throw Error("Unexcepted " + typeof condition + " when condition was expected (" + condition + ")");
|
|
|
|
var matchers = [];
|
|
|
|
Object.keys(condition).forEach(function(key) {
|
|
|
|
var value = condition[key];
|
|
|
|
switch(key) {
|
|
|
|
case "or":
|
|
|
|
case "include":
|
|
|
|
case "test":
|
|
|
|
if(value)
|
|
|
|
matchers.push(RuleSet.normalizeCondition(value));
|
|
|
|
break;
|
|
|
|
case "and":
|
|
|
|
if(value) {
|
2016-09-14 18:04:42 +08:00
|
|
|
var items = value.map(function(c) {
|
|
|
|
return RuleSet.normalizeCondition(c);
|
|
|
|
});
|
2016-09-14 18:04:42 +08:00
|
|
|
matchers.push(andMatcher(items));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "not":
|
|
|
|
case "exclude":
|
|
|
|
if(value) {
|
|
|
|
var matcher = RuleSet.normalizeCondition(value);
|
|
|
|
matchers.push(notMatcher(matcher));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error("Unexcepted property " + key + " in condition");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if(matchers.length === 0)
|
|
|
|
throw new Error("Excepted condition but got " + condition);
|
|
|
|
if(matchers.length === 1)
|
|
|
|
return matchers[0];
|
|
|
|
return andMatcher(matchers);
|
|
|
|
};
|
|
|
|
|
|
|
|
function notMatcher(matcher) {
|
|
|
|
return function(str) {
|
|
|
|
return !matcher(str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function orMatcher(items) {
|
|
|
|
return function(str) {
|
|
|
|
for(var i = 0; i < items.length; i++) {
|
2016-09-14 18:04:42 +08:00
|
|
|
if(items[i](str))
|
2016-09-14 18:04:42 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function andMatcher(items) {
|
|
|
|
return function(str) {
|
|
|
|
for(var i = 0; i < items.length; i++) {
|
2016-09-14 18:04:42 +08:00
|
|
|
if(!items[i](str))
|
2016-09-14 18:04:42 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RuleSet.prototype.exec = function(data) {
|
|
|
|
var result = [];
|
2016-09-14 18:04:42 +08:00
|
|
|
this._run(data, {
|
|
|
|
rules: this.rules
|
|
|
|
}, result);
|
2016-09-14 18:04:42 +08:00
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
|
|
|
RuleSet.prototype._run = function _run(data, rule, result) {
|
|
|
|
// test conditions
|
|
|
|
if(rule.resource && !data.resource)
|
|
|
|
return false;
|
|
|
|
if(rule.issuer && !data.issuer)
|
|
|
|
return false;
|
|
|
|
if(rule.resource && !rule.resource(data.resource))
|
|
|
|
return false;
|
|
|
|
if(data.issuer && rule.issuer && !rule.issuer(data.issuer))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// apply
|
|
|
|
var keys = Object.keys(rule).filter(function(key) {
|
|
|
|
return ["resource", "issuer", "rules", "oneOf", "use", "enforce"].indexOf(key) < 0;
|
|
|
|
});
|
|
|
|
keys.forEach(function(key) {
|
|
|
|
result.push({
|
|
|
|
type: key,
|
|
|
|
value: rule[key]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
if(rule.use) {
|
|
|
|
rule.use.forEach(function(use) {
|
|
|
|
result.push({
|
|
|
|
type: "use",
|
|
|
|
value: typeof use === "function" ? use(data) : use,
|
|
|
|
enforce: rule.enforce
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
var i;
|
|
|
|
|
|
|
|
if(rule.rules) {
|
|
|
|
for(i = 0; i < rule.rules.length; i++) {
|
|
|
|
this._run(data, rule.rules[i], result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rule.oneOf) {
|
|
|
|
for(i = 0; i < rule.oneOf.length; i++) {
|
|
|
|
if(this._run(data, rule.oneOf[i], result))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|