mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 17:08:31 +01:00
96 lines
2.2 KiB
JavaScript
96 lines
2.2 KiB
JavaScript
/**
|
|
* @author d98762625 [d98762625@gmail.com]
|
|
* @copyright Crown Copyright 2018
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
import Operation from "../Operation";
|
|
import OperationError from "../errors/OperationError";
|
|
|
|
/**
|
|
* Set Union operation
|
|
*/
|
|
class SetUnion extends Operation {
|
|
|
|
/**
|
|
* Set Union constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "Set Union";
|
|
this.module = "Default";
|
|
this.description = "Calculates the union of two sets.";
|
|
this.inputType = "string";
|
|
this.outputType = "string";
|
|
this.args = [
|
|
{
|
|
name: "Sample delimiter",
|
|
type: "binaryString",
|
|
value: "\\n\\n"
|
|
},
|
|
{
|
|
name: "Item delimiter",
|
|
type: "binaryString",
|
|
value: ","
|
|
},
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Validate input length
|
|
*
|
|
* @param {Object[]} sets
|
|
* @throws {Error} if not two sets
|
|
*/
|
|
validateSampleNumbers(sets) {
|
|
if (!sets || (sets.length !== 2)) {
|
|
throw new OperationError("Incorrect number of sets, perhaps you need to modify the sample delimiter or add more samples?");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Run the union operation
|
|
*
|
|
* @param {string} input
|
|
* @param {Object[]} args
|
|
* @returns {string}
|
|
* @throws {OperationError}
|
|
*/
|
|
run(input, args) {
|
|
[this.sampleDelim, this.itemDelimiter] = args;
|
|
const sets = input.split(this.sampleDelim);
|
|
|
|
this.validateSampleNumbers(sets);
|
|
|
|
return this.runUnion(...sets.map(s => s.split(this.itemDelimiter)));
|
|
}
|
|
|
|
/**
|
|
* Get the union of the two sets.
|
|
*
|
|
* @param {Object[]} a
|
|
* @param {Object[]} b
|
|
* @returns {Object[]}
|
|
*/
|
|
runUnion(a, b) {
|
|
const result = {};
|
|
|
|
/**
|
|
* Only add non-existing items
|
|
* @param {Object} hash
|
|
*/
|
|
const addUnique = (hash) => (item) => {
|
|
if (!hash[item]) {
|
|
hash[item] = true;
|
|
}
|
|
};
|
|
|
|
a.map(addUnique(result));
|
|
b.map(addUnique(result));
|
|
|
|
return Object.keys(result).join(this.itemDelimiter);
|
|
}
|
|
}
|
|
|
|
export default SetUnion;
|