mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
more debugging
This commit is contained in:
parent
e4b688a2c3
commit
14d591caa1
4 changed files with 24 additions and 4 deletions
|
@ -44,6 +44,10 @@ class Dish {
|
|||
if (dishOrInput &&
|
||||
dishOrInput.hasOwnProperty("value") &&
|
||||
dishOrInput.hasOwnProperty("type")) {
|
||||
console.log('first setting');
|
||||
console.log(dishOrInput);
|
||||
console.log(dishOrInput.constructor.name);
|
||||
console.log(dishOrInput.value);
|
||||
this.set(dishOrInput.value, dishOrInput.type);
|
||||
// input and type defined separately
|
||||
} else if (dishOrInput && type) {
|
||||
|
@ -99,6 +103,8 @@ class Dish {
|
|||
* @returns {string} The data type as a string.
|
||||
*/
|
||||
static enumLookup(typeEnum) {
|
||||
console.trace('enumLookup');
|
||||
console.log('type ' + typeEnum);
|
||||
switch (typeEnum) {
|
||||
case Dish.BYTE_ARRAY:
|
||||
return "byteArray";
|
||||
|
@ -174,11 +180,16 @@ class Dish {
|
|||
type = Dish.typeEnum(type);
|
||||
}
|
||||
|
||||
console.log('Dish setting:');
|
||||
console.log(value);
|
||||
console.log(type);
|
||||
|
||||
log.debug("Dish type: " + Dish.enumLookup(type));
|
||||
this.value = value;
|
||||
this.type = type;
|
||||
|
||||
if (!this.valid()) {
|
||||
console.log('invalid!');
|
||||
const sample = Utils.truncate(JSON.stringify(this.value), 13);
|
||||
throw new DishError(`Data is not a valid ${Dish.enumLookup(type)}: ${sample}`);
|
||||
}
|
||||
|
@ -220,6 +231,8 @@ class Dish {
|
|||
// All values can be serialised in some manner, so we return true in all cases
|
||||
return true;
|
||||
case Dish.FILE:
|
||||
console.log("Validating on file");
|
||||
console.log(this.value instanceof File);
|
||||
return this.value instanceof File;
|
||||
case Dish.LIST_FILE:
|
||||
return this.value instanceof Array &&
|
||||
|
@ -336,6 +349,8 @@ class Dish {
|
|||
|
||||
// Node environment => translate is sync
|
||||
if (Utils.isNode()) {
|
||||
console.log('_translate toType:');
|
||||
console.log(toType);
|
||||
this._toByteArray();
|
||||
this._fromByteArray(toType, notUTF8);
|
||||
|
||||
|
@ -389,6 +404,7 @@ class Dish {
|
|||
};
|
||||
|
||||
try {
|
||||
console.log("_tyByteArray this.type: " + this.type);
|
||||
return toByteArrayFuncs[Utils.isNode() && "node" || "browser"][this.type]();
|
||||
} catch (err) {
|
||||
throw new DishError(`Error translating from ${Dish.enumLookup(this.type)} to byteArray: ${err}`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue