2018-03-27 00:14:23 +02:00
|
|
|
/**
|
|
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
|
|
* @copyright Crown Copyright 2016
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2017-12-26 00:11:52 +01:00
|
|
|
import utf8 from "utf8";
|
2018-03-26 23:25:36 +02:00
|
|
|
import moment from "moment-timezone";
|
2017-03-06 13:45:51 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Utility functions for use in operations, the core framework and the stage.
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
class Utils {
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Translates an ordinal into a character.
|
|
|
|
*
|
|
|
|
* @param {number} o
|
|
|
|
* @returns {char}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns 'a'
|
|
|
|
* Utils.chr(97);
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static chr(o) {
|
2017-06-19 17:40:36 +02:00
|
|
|
// Detect astral symbols
|
|
|
|
// Thanks to @mathiasbynens for this solution
|
|
|
|
// https://mathiasbynens.be/notes/javascript-unicode
|
|
|
|
if (o > 0xffff) {
|
|
|
|
o -= 0x10000;
|
|
|
|
const high = String.fromCharCode(o >>> 10 & 0x3ff | 0xd800);
|
|
|
|
o = 0xdc00 | o & 0x3ff;
|
|
|
|
return high + String.fromCharCode(o);
|
|
|
|
}
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
return String.fromCharCode(o);
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Translates a character into an ordinal.
|
|
|
|
*
|
|
|
|
* @param {char} c
|
|
|
|
* @returns {number}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns 97
|
|
|
|
* Utils.ord('a');
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static ord(c) {
|
2017-06-19 17:40:36 +02:00
|
|
|
// Detect astral symbols
|
|
|
|
// Thanks to @mathiasbynens for this solution
|
|
|
|
// https://mathiasbynens.be/notes/javascript-unicode
|
|
|
|
if (c.length === 2) {
|
|
|
|
const high = c.charCodeAt(0);
|
|
|
|
const low = c.charCodeAt(1);
|
|
|
|
if (high >= 0xd800 && high < 0xdc00 &&
|
|
|
|
low >= 0xdc00 && low < 0xe000) {
|
|
|
|
return (high - 0xd800) * 0x400 + low - 0xdc00 + 0x10000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
return c.charCodeAt(0);
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
2017-02-09 19:07:46 +01:00
|
|
|
/**
|
|
|
|
* Adds trailing bytes to a byteArray.
|
|
|
|
*
|
2017-02-09 19:22:27 +01:00
|
|
|
* @author tlwr [toby@toby.codes]
|
|
|
|
*
|
2017-02-09 19:07:46 +01:00
|
|
|
* @param {byteArray} arr - byteArray to add trailing bytes to.
|
|
|
|
* @param {number} numBytes - Maximum width of the array.
|
|
|
|
* @param {Integer} [padByte=0] - The byte to pad with.
|
|
|
|
* @returns {byteArray}
|
|
|
|
*
|
|
|
|
* @example
|
2017-02-09 19:37:30 +01:00
|
|
|
* // returns ["a", 0, 0, 0]
|
2017-02-09 19:07:46 +01:00
|
|
|
* Utils.padBytesRight("a", 4);
|
|
|
|
*
|
2017-02-09 19:37:30 +01:00
|
|
|
* // returns ["a", 1, 1, 1]
|
2017-02-09 19:07:46 +01:00
|
|
|
* Utils.padBytesRight("a", 4, 1);
|
2017-02-09 19:37:30 +01:00
|
|
|
*
|
|
|
|
* // returns ["t", "e", "s", "t", 0, 0, 0, 0]
|
|
|
|
* Utils.padBytesRight("test", 8);
|
|
|
|
*
|
|
|
|
* // returns ["t", "e", "s", "t", 1, 1, 1, 1]
|
|
|
|
* Utils.padBytesRight("test", 8, 1);
|
2017-02-09 19:07:46 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static padBytesRight(arr, numBytes, padByte=0) {
|
2017-04-13 19:08:50 +02:00
|
|
|
const paddedBytes = new Array(numBytes);
|
2017-02-09 19:07:46 +01:00
|
|
|
paddedBytes.fill(padByte);
|
|
|
|
|
|
|
|
Array.prototype.map.call(arr, function(b, i) {
|
|
|
|
paddedBytes[i] = b;
|
|
|
|
});
|
|
|
|
|
|
|
|
return paddedBytes;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-02-09 19:07:46 +01:00
|
|
|
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
/**
|
|
|
|
* Truncates a long string to max length and adds suffix.
|
|
|
|
*
|
|
|
|
* @param {string} str - String to truncate
|
|
|
|
* @param {number} max - Maximum length of the final string
|
|
|
|
* @param {string} [suffix='...'] - The string to add to the end of the final string
|
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "A long..."
|
|
|
|
* Utils.truncate("A long string", 9);
|
|
|
|
*
|
|
|
|
* // returns "A long s-"
|
|
|
|
* Utils.truncate("A long string", 9, "-");
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static truncate(str, max, suffix="...") {
|
2016-11-28 11:42:58 +01:00
|
|
|
if (str.length > max) {
|
|
|
|
str = str.slice(0, max - suffix.length) + suffix;
|
|
|
|
}
|
|
|
|
return str;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a character or number to its hex representation.
|
|
|
|
*
|
|
|
|
* @param {char|number} c
|
|
|
|
* @param {number} [length=2] - The width of the resulting hex number.
|
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "6e"
|
|
|
|
* Utils.hex("n");
|
|
|
|
*
|
|
|
|
* // returns "6e"
|
|
|
|
* Utils.hex(110);
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static hex(c, length=2) {
|
2016-11-28 11:42:58 +01:00
|
|
|
c = typeof c == "string" ? Utils.ord(c) : c;
|
2017-12-28 15:38:57 +01:00
|
|
|
return c.toString(16).padStart(length, "0");
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a character or number to its binary representation.
|
|
|
|
*
|
|
|
|
* @param {char|number} c
|
|
|
|
* @param {number} [length=8] - The width of the resulting binary number.
|
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "01101110"
|
|
|
|
* Utils.bin("n");
|
|
|
|
*
|
|
|
|
* // returns "01101110"
|
|
|
|
* Utils.bin(110);
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static bin(c, length=8) {
|
2016-11-28 11:42:58 +01:00
|
|
|
c = typeof c == "string" ? Utils.ord(c) : c;
|
2017-12-28 15:38:57 +01:00
|
|
|
return c.toString(2).padStart(length, "0");
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a string with all non-printable chars as dots, optionally preserving whitespace.
|
|
|
|
*
|
|
|
|
* @param {string} str - The input string to display.
|
2017-01-31 19:24:56 +01:00
|
|
|
* @param {boolean} [preserveWs=false] - Whether or not to print whitespace.
|
2016-11-28 11:42:58 +01:00
|
|
|
* @returns {string}
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static printable(str, preserveWs=false) {
|
2017-09-20 01:37:57 +02:00
|
|
|
if (ENVIRONMENT_IS_WEB() && window.app && !window.app.options.treatAsUtf8) {
|
2017-01-31 19:24:56 +01:00
|
|
|
str = Utils.byteArrayToChars(Utils.strToByteArray(str));
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-06-19 17:40:36 +02:00
|
|
|
const re = /[\0-\x08\x0B-\x0C\x0E-\x1F\x7F-\x9F\xAD\u0378\u0379\u037F-\u0383\u038B\u038D\u03A2\u0528-\u0530\u0557\u0558\u0560\u0588\u058B-\u058E\u0590\u05C8-\u05CF\u05EB-\u05EF\u05F5-\u0605\u061C\u061D\u06DD\u070E\u070F\u074B\u074C\u07B2-\u07BF\u07FB-\u07FF\u082E\u082F\u083F\u085C\u085D\u085F-\u089F\u08A1\u08AD-\u08E3\u08FF\u0978\u0980\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09FC-\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u0A3A\u0A3B\u0A3D\u0A43-\u0A46\u0A49\u0A4A\u0A4E-\u0A50\u0A52-\u0A58\u0A5D\u0A5F-\u0A65\u0A76-\u0A80\u0A84\u0A8E\u0A92\u0AA9\u0AB1\u0AB4\u0ABA\u0ABB\u0AC6\u0ACA\u0ACE\u0ACF\u0AD1-\u0ADF\u0AE4\u0AE5\u0AF2-\u0B00\u0B04\u0B0D\u0B0E\u0B11\u0B12\u0B29\u0B31\u0B34\u0B3A\u0B3B\u0B45\u0B46\u0B49\u0B4A\u0B4E-\u0B55\u0B58-\u0B5B\u0B5E\u0B64\u0B65\u0B78-\u0B81\u0B84\u0B8B-\u0B8D\u0B91\u0B96-\u0B98\u0B9B\u0B9D\u0BA0-\u0BA2\u0BA5-\u0BA7\u0BAB-\u0BAD\u0BBA-\u0BBD\u0BC3-\u0BC5\u0BC9\u0BCE\u0BCF\u0BD1-\u0BD6\u0BD8-\u0BE5\u0BFB-\u0C00\u0C04\u0C0D\u0C11\u0C29\u0C34\u0C3A-\u0C3C\u0C45\u0C49\u0C4E-\u0C54\u0C57\u0C5A-\u0C5F\u0C64\u0C65\u0C70-\u0C77\u0C80\u0C81\u0C84\u0C8D\u0C91\u0CA9\u0CB4\u0CBA\u0CBB\u0CC5\u0CC9\u0CCE-\u0CD4\u0CD7-\u0CDD\u0CDF\u0CE4\u0CE5\u0CF0\u0CF3-\u0D01\u0D04\u0D0D\u0D11\u0D3B\u0D3C\u0D45\u0D49\u0D4F-\u0D56\u0D58-\u0D5F\u0D64\u0D65\u0D76-\u0D78\u0D80\u0D81\u0D84\u0D97-\u0D99\u0DB2\u0DBC\u0DBE\u0DBF\u0DC7-\u0DC9\u0DCB-\u0DCE\u0DD5\u0DD7\u0DE0-\u0DF1\u0DF5-\u0E00\u0E3B-\u0E3E\u0E5C-\u0E80\u0E83\u0E85\u0E86\u0E89\u0E8B\u0E8C\u0E8E-\u0E93\u0E98\u0EA0\u0EA4\u0EA6\u0EA8\u0EA9\u0EAC\u0EBA\u0EBE\u0EBF\u0EC5\u0EC7\u0ECE\u0ECF\u0EDA\u0EDB\u0EE0-\u0EFF\u0F48\u0F6D-\u0F70\u0F98\u0FBD\u0FCD\u0FDB-\u0FFF\u10C6\u10C8-\u10CC\u10CE\u10CF\u1249\u124E\u124F\u1257\u1259\u125E\u125F\u1289\u128E\u128F\u12B1\u12B6\u12B7\u12BF\u12C1\u12C6\u12C7\u12D7\u1311\u1316\u1317\u135B\u135C\u137D-\u137F\u139A-\u139F\u13F5-\u13FF\u169D-\u169F\u16F1-\u16FF\u170D\u1715-\u171F\u1737-\u173F\u1754-\u175F\u176D\u1771\u1774-\u177F\u17DE\u17DF\u17EA-\u17EF\u17FA-\u17FF\u180F\u181A-\u181F\u1878-\u187F\u18AB-\u18AF\u18F6-\u18FF\u191D-\u191F\u192C-\u192F\u193C-\u193F\u1941-\u1943\u196E\u196F\u1975-\u197F\u19AC-\u19AF\u19CA-\u19CF\u19DB-\u19DD\u1A1C\u1A1D\u1A5F\u1A7D\u1A7E\u1A8A-\u1A8F\u1A9A-\u1A9F\u1AAE-\u1AFF\u1B4C-\u1B4F\u1B7D-\u1B7F\u1BF4-\u1BFB\u1C38-\u1C3A\u1C4A-\u1C4C\u1C80-\u1CBF\u1CC8-\u1CCF\u1CF7-\u1CFF\u1DE7-\u1DFB\u1F16\u1F17\u1F1E\u1F1F\u1F46\u1F47\u1F4E\u1F4F\u1F58\u1F5A\u1F5C\u1F5E\u1F7E\u1F7F\u1FB5\u1FC5\u1FD4\u1FD5\u1FDC\u1FF0\u1FF1\u1FF5\u1FFF\u200B-\u200F\u202A-\u202E\u2060-\u206F\u2072\u2073\u208F\u209D-\u209F\u20BB-\u20CF\u20F1-\u20FF\u218A-\u218F\u23F4-\u23FF\u2427-\u243F\u244B-\u245F\u2700\u2B4D-\u2B4F\u2B5A-\u2BFF\u2C2F\u2C5F\u2CF4-\u2CF8\u2D26\u2D28-\u2D2C\u2D2E\u2D2F\u2D68-\u2D6E\u2D71-\u2D7E\u2D97-\u2D9F\u2DA7\u2DAF\u2DB7\u2DBF\u2DC7\u2DCF\u2DD7\u2DDF\u2E3C-\u2E7F\u2E9A\u2EF4-\u2EFF\u2FD6-\u2FEF\u2FFC-\u2FFF\u3040\u3097\u3098\u3100-\u3104\u312E-\u3130\u318F\u31BB-\u31BF\u31E4-\u31EF\u321F\u32FF\u4DB6-\u4DBF\u9FCD-\u9FFF\uA48D-\uA48F\uA4C7-\uA4CF\uA62C-\uA63F\uA698-\uA69E\uA6F8-\uA6FF\uA78F\uA794-\uA79F\uA7AB-\uA7F7\uA82C-\uA82F\uA83A-\uA83F\uA878-\uA87F\uA8C5-\uA8CD\uA8DA-\uA8DF\uA8FC-\uA8FF\uA954-\uA95E\uA97D-\uA97F\uA9CE\uA9DA-\uA9DD\uA9E0-\uA9FF\uAA37-\uAA3F\uAA4E\uAA4F\uAA5A\uAA5B\uAA7C-\uAA7F\uAAC3-\uAADA\uAAF7-\uAB00\uAB07\uAB08\uAB0F\uAB10\uAB17-\uAB1F\uAB27\uAB2F-\uABBF\uABEE\uABEF\uABFA-\uABFF\uD7A4-\uD7AF\uD7C7-\uD7CA\uD7FC-\uD7FF\uE000-\uF8FF\uFA6E\uFA6F\uFADA-\uFAFF\uFB07-\uFB12\uFB18-\uFB1C\uFB37\uFB3D\uFB3F\uFB42\uFB45\uFBC2-\uFBD2\uFD40-\uFD4F\uFD90\uFD91\uFDC8-\uFDEF\uFDFE\uFDFF\uFE1A-\uFE1F\uFE27-\uFE2F\uFE53\uFE67\uFE6C-\uFE6F\uFE75\uFEFD-\uFF00\uFFBF-\uFFC1\uFFC8\uFFC9\uFFD0\uFFD1\uFFD8\uFFD9\uFFDD-\uFFDF\uFFE7\uFFEF-\uFFFB\uFFFE\uFFFF]/g;
|
2017-04-13 19:08:50 +02:00
|
|
|
const wsRe = /[\x09-\x10\x0D\u2028\u2029]/g;
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
str = str.replace(re, ".");
|
2017-01-31 19:24:56 +01:00
|
|
|
if (!preserveWs) str = str.replace(wsRe, ".");
|
2016-11-28 11:42:58 +01:00
|
|
|
return str;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a string entered by a user and replace escaped chars with the bytes they represent.
|
|
|
|
*
|
|
|
|
* @param {string} str
|
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "\x00"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.parseEscapedChars("\\x00");
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns "\n"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.parseEscapedChars("\\n");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static parseEscapedChars(str) {
|
2018-03-26 23:25:36 +02:00
|
|
|
return str.replace(/(\\)?\\([bfnrtv0'"]|x[\da-fA-F]{2}|u[\da-fA-F]{4}|u\{[\da-fA-F]{1,6}\})/g, function(m, a, b) {
|
2016-12-14 17:39:17 +01:00
|
|
|
if (a === "\\") return "\\"+b;
|
2016-11-28 11:42:58 +01:00
|
|
|
switch (b[0]) {
|
2018-03-26 23:25:36 +02:00
|
|
|
case "0":
|
|
|
|
return "\0";
|
2016-11-28 11:42:58 +01:00
|
|
|
case "b":
|
|
|
|
return "\b";
|
2018-03-26 23:25:36 +02:00
|
|
|
case "t":
|
|
|
|
return "\t";
|
|
|
|
case "n":
|
|
|
|
return "\n";
|
|
|
|
case "v":
|
|
|
|
return "\v";
|
2016-11-28 11:42:58 +01:00
|
|
|
case "f":
|
|
|
|
return "\f";
|
2018-03-26 23:25:36 +02:00
|
|
|
case "r":
|
|
|
|
return "\r";
|
|
|
|
case '"':
|
|
|
|
return '"';
|
|
|
|
case "'":
|
|
|
|
return "'";
|
2016-11-28 11:42:58 +01:00
|
|
|
case "x":
|
2018-03-26 23:25:36 +02:00
|
|
|
return String.fromCharCode(parseInt(b.substr(1), 16));
|
|
|
|
case "u":
|
|
|
|
if (b[1] === "{")
|
|
|
|
return String.fromCodePoint(parseInt(b.slice(2, -1), 16));
|
|
|
|
else
|
|
|
|
return String.fromCharCode(parseInt(b.substr(1), 16));
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
|
|
|
});
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
2017-06-15 16:21:30 +02:00
|
|
|
/**
|
|
|
|
* Escape a string containing regex control characters so that it can be safely
|
|
|
|
* used in a regex without causing unintended behaviours.
|
|
|
|
*
|
|
|
|
* @param {string} str
|
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "\[example\]"
|
|
|
|
* Utils.escapeRegex("[example]");
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static escapeRegex(str) {
|
2017-07-24 15:49:16 +02:00
|
|
|
return str.replace(/([.*+?^=!:${}()|[\]/\\])/g, "\\$1");
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-06-15 16:21:30 +02:00
|
|
|
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
/**
|
|
|
|
* Expand an alphabet range string into a list of the characters in that range.
|
|
|
|
*
|
2017-01-31 19:24:56 +01:00
|
|
|
* @param {string} alphStr
|
2016-11-28 11:42:58 +01:00
|
|
|
* @returns {char[]}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.expandAlphRange("0-9");
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns ["a", "b", "c", "d", "0", "1", "2", "3", "+", "/"]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.expandAlphRange("a-d0-3+/");
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns ["a", "b", "c", "d", "0", "-", "3"]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.expandAlphRange("a-d0\\-3")
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static expandAlphRange(alphStr) {
|
2017-04-13 19:08:50 +02:00
|
|
|
const alphArr = [];
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
for (let i = 0; i < alphStr.length; i++) {
|
2017-01-31 19:24:56 +01:00
|
|
|
if (i < alphStr.length - 2 &&
|
|
|
|
alphStr[i+1] === "-" &&
|
|
|
|
alphStr[i] !== "\\") {
|
2017-04-13 19:08:50 +02:00
|
|
|
let start = Utils.ord(alphStr[i]),
|
2017-01-31 19:24:56 +01:00
|
|
|
end = Utils.ord(alphStr[i+2]);
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
for (let j = start; j <= end; j++) {
|
2017-01-31 19:24:56 +01:00
|
|
|
alphArr.push(Utils.chr(j));
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
|
|
|
i += 2;
|
2017-01-31 19:24:56 +01:00
|
|
|
} else if (i < alphStr.length - 2 &&
|
|
|
|
alphStr[i] === "\\" &&
|
|
|
|
alphStr[i+1] === "-") {
|
|
|
|
alphArr.push("-");
|
2016-11-28 11:42:58 +01:00
|
|
|
i++;
|
|
|
|
} else {
|
2017-01-31 19:24:56 +01:00
|
|
|
alphArr.push(alphStr[i]);
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
|
|
|
}
|
2017-01-31 19:24:56 +01:00
|
|
|
return alphArr;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
2017-12-26 00:11:52 +01:00
|
|
|
/**
|
|
|
|
* Coverts data of varying types to a byteArray.
|
|
|
|
* Accepts hex, Base64, UTF8 and Latin1 strings.
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2017-12-26 00:11:52 +01:00
|
|
|
* @param {string} str
|
|
|
|
* @param {string} type - One of "Hex", "Base64", "UTF8" or "Latin1"
|
|
|
|
* @returns {byteArray}
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2017-12-26 00:11:52 +01:00
|
|
|
* @example
|
2017-12-26 01:44:40 +01:00
|
|
|
* // returns [208, 159, 209, 128, 208, 184, 208, 178, 208, 181, 209, 130]
|
|
|
|
* Utils.convertToByteArray("Привет", "utf8");
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2017-12-26 01:44:40 +01:00
|
|
|
* // returns [208, 159, 209, 128, 208, 184, 208, 178, 208, 181, 209, 130]
|
|
|
|
* Utils.convertToByteArray("d097d0b4d180d0b0d0b2d181d182d0b2d183d0b9d182d0b5", "hex");
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2017-12-26 01:44:40 +01:00
|
|
|
* // returns [208, 159, 209, 128, 208, 184, 208, 178, 208, 181, 209, 130]
|
|
|
|
* Utils.convertToByteArray("0JfQtNGA0LDQstGB0YLQstGD0LnRgtC1", "base64");
|
2017-12-26 00:11:52 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static convertToByteArray(str, type) {
|
2017-12-26 00:11:52 +01:00
|
|
|
switch (type.toLowerCase()) {
|
|
|
|
case "hex":
|
|
|
|
return Utils.fromHex(str);
|
|
|
|
case "base64":
|
|
|
|
return Utils.fromBase64(str, null, "byteArray");
|
|
|
|
case "utf8":
|
|
|
|
return Utils.strToUtf8ByteArray(str);
|
|
|
|
case "latin1":
|
|
|
|
default:
|
|
|
|
return Utils.strToByteArray(str);
|
|
|
|
}
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-12-26 00:11:52 +01:00
|
|
|
|
|
|
|
|
2018-01-01 17:09:58 +01:00
|
|
|
/**
|
|
|
|
* Coverts data of varying types to a byte string.
|
|
|
|
* Accepts hex, Base64, UTF8 and Latin1 strings.
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2018-01-01 17:09:58 +01:00
|
|
|
* @param {string} str
|
|
|
|
* @param {string} type - One of "Hex", "Base64", "UTF8" or "Latin1"
|
|
|
|
* @returns {string}
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2018-01-01 17:09:58 +01:00
|
|
|
* @example
|
2018-03-26 23:25:36 +02:00
|
|
|
* // returns "ÐÑивеÑ"
|
|
|
|
* Utils.convertToByteString("Привет", "utf8");
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2018-03-26 23:25:36 +02:00
|
|
|
* // returns "ÐдÑавÑÑвÑйÑе"
|
|
|
|
* Utils.convertToByteString("d097d0b4d180d0b0d0b2d181d182d0b2d183d0b9d182d0b5", "hex");
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2018-03-26 23:25:36 +02:00
|
|
|
* // returns "ÐдÑавÑÑвÑйÑе"
|
|
|
|
* Utils.convertToByteString("0JfQtNGA0LDQstGB0YLQstGD0LnRgtC1", "base64");
|
2018-01-01 17:09:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static convertToByteString(str, type) {
|
2018-01-01 17:09:58 +01:00
|
|
|
switch (type.toLowerCase()) {
|
|
|
|
case "hex":
|
|
|
|
return Utils.byteArrayToChars(Utils.fromHex(str));
|
|
|
|
case "base64":
|
|
|
|
return Utils.byteArrayToChars(Utils.fromBase64(str, null, "byteArray"));
|
|
|
|
case "utf8":
|
|
|
|
return utf8.encode(str);
|
|
|
|
case "latin1":
|
|
|
|
default:
|
|
|
|
return str;
|
|
|
|
}
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2018-01-01 17:09:58 +01:00
|
|
|
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
/**
|
|
|
|
* Converts a string to a byte array.
|
|
|
|
* Treats the string as UTF-8 if any values are over 255.
|
|
|
|
*
|
|
|
|
* @param {string} str
|
2017-01-31 19:24:56 +01:00
|
|
|
* @returns {byteArray}
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns [72,101,108,108,111]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.strToByteArray("Hello");
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns [228,189,160,229,165,189]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.strToByteArray("你好");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static strToByteArray(str) {
|
2017-04-13 19:08:50 +02:00
|
|
|
const byteArray = new Array(str.length);
|
|
|
|
let i = str.length, b;
|
2016-11-28 11:42:58 +01:00
|
|
|
while (i--) {
|
|
|
|
b = str.charCodeAt(i);
|
2017-01-31 19:24:56 +01:00
|
|
|
byteArray[i] = b;
|
2016-11-28 11:42:58 +01:00
|
|
|
// If any of the bytes are over 255, read as UTF-8
|
2017-01-31 19:24:56 +01:00
|
|
|
if (b > 255) return Utils.strToUtf8ByteArray(str);
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
2017-01-31 19:24:56 +01:00
|
|
|
return byteArray;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a string to a UTF-8 byte array.
|
|
|
|
*
|
|
|
|
* @param {string} str
|
2017-01-31 19:24:56 +01:00
|
|
|
* @returns {byteArray}
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns [72,101,108,108,111]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.strToUtf8ByteArray("Hello");
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns [228,189,160,229,165,189]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.strToUtf8ByteArray("你好");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static strToUtf8ByteArray(str) {
|
2017-12-26 00:11:52 +01:00
|
|
|
const utf8Str = utf8.encode(str);
|
2016-11-28 11:42:58 +01:00
|
|
|
|
2017-12-26 00:11:52 +01:00
|
|
|
if (str.length !== utf8Str.length) {
|
2017-09-20 01:37:57 +02:00
|
|
|
if (ENVIRONMENT_IS_WORKER()) {
|
|
|
|
self.setOption("attemptHighlight", false);
|
|
|
|
} else if (ENVIRONMENT_IS_WEB()) {
|
|
|
|
window.app.options.attemptHighlight = false;
|
|
|
|
}
|
2017-04-05 23:00:06 +02:00
|
|
|
}
|
2017-12-26 00:11:52 +01:00
|
|
|
|
|
|
|
return Utils.strToByteArray(utf8Str);
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-19 17:40:36 +02:00
|
|
|
* Converts a string to a unicode charcode array
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* @param {string} str
|
2017-01-31 19:24:56 +01:00
|
|
|
* @returns {byteArray}
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns [72,101,108,108,111]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.strToCharcode("Hello");
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns [20320,22909]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.strToCharcode("你好");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static strToCharcode(str) {
|
2017-10-03 19:14:40 +02:00
|
|
|
const charcode = [];
|
2017-06-19 17:40:36 +02:00
|
|
|
|
|
|
|
for (let i = 0; i < str.length; i++) {
|
|
|
|
let ord = str.charCodeAt(i);
|
|
|
|
|
|
|
|
// Detect and merge astral symbols
|
|
|
|
if (i < str.length - 1 && ord >= 0xd800 && ord < 0xdc00) {
|
|
|
|
const low = str[i + 1].charCodeAt(0);
|
|
|
|
if (low >= 0xdc00 && low < 0xe000) {
|
|
|
|
ord = Utils.ord(str[i] + str[++i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
charcode.push(ord);
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
2017-06-19 17:40:36 +02:00
|
|
|
|
|
|
|
return charcode;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempts to convert a byte array to a UTF-8 string.
|
|
|
|
*
|
2017-01-31 19:24:56 +01:00
|
|
|
* @param {byteArray} byteArray
|
2016-11-28 11:42:58 +01:00
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "Hello"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.byteArrayToUtf8([72,101,108,108,111]);
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns "你好"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.byteArrayToUtf8([228,189,160,229,165,189]);
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static byteArrayToUtf8(byteArray) {
|
2017-12-26 00:11:52 +01:00
|
|
|
const str = Utils.byteArrayToChars(byteArray);
|
2016-11-28 11:42:58 +01:00
|
|
|
try {
|
2017-12-26 00:11:52 +01:00
|
|
|
const utf8Str = utf8.decode(str);
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-12-26 00:11:52 +01:00
|
|
|
if (str.length !== utf8Str.length) {
|
2017-09-20 01:37:57 +02:00
|
|
|
if (ENVIRONMENT_IS_WORKER()) {
|
|
|
|
self.setOption("attemptHighlight", false);
|
|
|
|
} else if (ENVIRONMENT_IS_WEB()) {
|
|
|
|
window.app.options.attemptHighlight = false;
|
|
|
|
}
|
|
|
|
}
|
2017-12-26 00:11:52 +01:00
|
|
|
return utf8Str;
|
2016-11-28 11:42:58 +01:00
|
|
|
} catch (err) {
|
|
|
|
// If it fails, treat it as ANSI
|
2017-12-26 00:11:52 +01:00
|
|
|
return str;
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a charcode array to a string.
|
|
|
|
*
|
2017-12-28 16:59:58 +01:00
|
|
|
* @param {byteArray|Uint8Array} byteArray
|
2016-11-28 11:42:58 +01:00
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "Hello"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.byteArrayToChars([72,101,108,108,111]);
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns "你好"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.byteArrayToChars([20320,22909]);
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static byteArrayToChars(byteArray) {
|
2017-01-31 19:24:56 +01:00
|
|
|
if (!byteArray) return "";
|
2017-04-13 19:08:50 +02:00
|
|
|
let str = "";
|
|
|
|
for (let i = 0; i < byteArray.length;) {
|
2017-01-31 19:24:56 +01:00
|
|
|
str += String.fromCharCode(byteArray[i++]);
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
|
|
|
return str;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
|
|
|
|
2017-12-26 01:44:40 +01:00
|
|
|
/**
|
|
|
|
* Converts an ArrayBuffer to a string.
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2017-12-26 01:44:40 +01:00
|
|
|
* @param {ArrayBuffer} arrayBuffer
|
2018-03-04 18:39:53 +01:00
|
|
|
* @param {boolean} [utf8=true] - Whether to attempt to decode the buffer as UTF-8
|
2017-12-26 01:44:40 +01:00
|
|
|
* @returns {string}
|
2018-01-02 15:46:35 +01:00
|
|
|
*
|
2017-12-26 01:44:40 +01:00
|
|
|
* @example
|
|
|
|
* // returns "hello"
|
|
|
|
* Utils.arrayBufferToStr(Uint8Array.from([104,101,108,108,111]).buffer);
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static arrayBufferToStr(arrayBuffer, utf8=true) {
|
2017-12-26 01:44:40 +01:00
|
|
|
const byteArray = Array.prototype.slice.call(new Uint8Array(arrayBuffer));
|
2018-03-04 18:39:53 +01:00
|
|
|
return utf8 ? Utils.byteArrayToUtf8(byteArray) : Utils.byteArrayToChars(byteArray);
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-12-26 01:44:40 +01:00
|
|
|
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
/**
|
|
|
|
* Base64's the input byte array using the given alphabet, returning a string.
|
|
|
|
*
|
2017-12-28 16:59:58 +01:00
|
|
|
* @param {byteArray|Uint8Array|string} data
|
2018-03-27 00:14:23 +02:00
|
|
|
* @param {string} [alphabet="A-Za-z0-9+/="]
|
2016-11-28 11:42:58 +01:00
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "SGVsbG8="
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.toBase64([72, 101, 108, 108, 111]);
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns "SGVsbG8="
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.toBase64("Hello");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static toBase64(data, alphabet="A-Za-z0-9+/=") {
|
2016-11-28 11:42:58 +01:00
|
|
|
if (!data) return "";
|
|
|
|
if (typeof data == "string") {
|
2017-01-31 19:24:56 +01:00
|
|
|
data = Utils.strToByteArray(data);
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2018-03-27 00:14:23 +02:00
|
|
|
alphabet = Utils.expandAlphRange(alphabet).join("");
|
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
let output = "",
|
2016-11-28 11:42:58 +01:00
|
|
|
chr1, chr2, chr3,
|
|
|
|
enc1, enc2, enc3, enc4,
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
while (i < data.length) {
|
|
|
|
chr1 = data[i++];
|
|
|
|
chr2 = data[i++];
|
|
|
|
chr3 = data[i++];
|
|
|
|
|
|
|
|
enc1 = chr1 >> 2;
|
|
|
|
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
|
|
|
|
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
|
|
|
|
enc4 = chr3 & 63;
|
|
|
|
|
|
|
|
if (isNaN(chr2)) {
|
|
|
|
enc3 = enc4 = 64;
|
|
|
|
} else if (isNaN(chr3)) {
|
|
|
|
enc4 = 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
output += alphabet.charAt(enc1) + alphabet.charAt(enc2) +
|
|
|
|
alphabet.charAt(enc3) + alphabet.charAt(enc4);
|
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UnBase64's the input string using the given alphabet, returning a byte array.
|
|
|
|
*
|
2017-01-31 19:24:56 +01:00
|
|
|
* @param {byteArray} data
|
2018-03-27 00:14:23 +02:00
|
|
|
* @param {string} [alphabet="A-Za-z0-9+/="]
|
2017-01-31 19:24:56 +01:00
|
|
|
* @param {string} [returnType="string"] - Either "string" or "byteArray"
|
|
|
|
* @param {boolean} [removeNonAlphChars=true]
|
|
|
|
* @returns {byteArray}
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "Hello"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.fromBase64("SGVsbG8=");
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns [72, 101, 108, 108, 111]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.fromBase64("SGVsbG8=", null, "byteArray");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static fromBase64(data, alphabet="A-Za-z0-9+/=", returnType="string", removeNonAlphChars=true) {
|
2016-11-28 11:42:58 +01:00
|
|
|
if (!data) {
|
2017-01-31 19:24:56 +01:00
|
|
|
return returnType === "string" ? "" : [];
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2018-03-27 00:14:23 +02:00
|
|
|
alphabet = Utils.expandAlphRange(alphabet).join("");
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
let output = [],
|
2016-11-28 11:42:58 +01:00
|
|
|
chr1, chr2, chr3,
|
|
|
|
enc1, enc2, enc3, enc4,
|
|
|
|
i = 0;
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-01-31 19:24:56 +01:00
|
|
|
if (removeNonAlphChars) {
|
2017-07-24 15:49:16 +02:00
|
|
|
const re = new RegExp("[^" + alphabet.replace(/[[\]\\\-^$]/g, "\\$&") + "]", "g");
|
2016-11-28 11:42:58 +01:00
|
|
|
data = data.replace(re, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
while (i < data.length) {
|
|
|
|
enc1 = alphabet.indexOf(data.charAt(i++));
|
|
|
|
enc2 = alphabet.indexOf(data.charAt(i++) || "=");
|
|
|
|
enc3 = alphabet.indexOf(data.charAt(i++) || "=");
|
|
|
|
enc4 = alphabet.indexOf(data.charAt(i++) || "=");
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2016-12-14 17:39:17 +01:00
|
|
|
enc2 = enc2 === -1 ? 64 : enc2;
|
|
|
|
enc3 = enc3 === -1 ? 64 : enc3;
|
|
|
|
enc4 = enc4 === -1 ? 64 : enc4;
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
chr1 = (enc1 << 2) | (enc2 >> 4);
|
|
|
|
chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
|
|
|
|
chr3 = ((enc3 & 3) << 6) | enc4;
|
|
|
|
|
|
|
|
output.push(chr1);
|
|
|
|
|
2016-12-14 17:39:17 +01:00
|
|
|
if (enc3 !== 64) {
|
2016-11-28 11:42:58 +01:00
|
|
|
output.push(chr2);
|
|
|
|
}
|
2016-12-14 17:39:17 +01:00
|
|
|
if (enc4 !== 64) {
|
2016-11-28 11:42:58 +01:00
|
|
|
output.push(chr3);
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-01-31 19:24:56 +01:00
|
|
|
return returnType === "string" ? Utils.byteArrayToUtf8(output) : output;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a byte array into a hex string.
|
|
|
|
*
|
2017-12-28 15:38:57 +01:00
|
|
|
* @param {Uint8Array|byteArray} data
|
2016-11-28 11:42:58 +01:00
|
|
|
* @param {string} [delim=" "]
|
|
|
|
* @param {number} [padding=2]
|
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "0a 14 1e"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.toHex([10,20,30]);
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns "0a:14:1e"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.toHex([10,20,30], ":");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static toHex(data, delim=" ", padding=2) {
|
2016-11-28 11:42:58 +01:00
|
|
|
if (!data) return "";
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
let output = "";
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
for (let i = 0; i < data.length; i++) {
|
2017-12-28 15:38:57 +01:00
|
|
|
output += data[i].toString(16).padStart(padding, "0") + delim;
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
// Add \x or 0x to beginning
|
2016-12-14 17:39:17 +01:00
|
|
|
if (delim === "0x") output = "0x" + output;
|
|
|
|
if (delim === "\\x") output = "\\x" + output;
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
if (delim.length)
|
|
|
|
return output.slice(0, -delim.length);
|
|
|
|
else
|
|
|
|
return output;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
/**
|
|
|
|
* Convert a byte array into a hex string as efficiently as possible with no options.
|
|
|
|
*
|
2017-01-31 19:24:56 +01:00
|
|
|
* @param {byteArray} data
|
2016-11-28 11:42:58 +01:00
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "0a141e"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.toHex([10,20,30]);
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static toHexFast(data) {
|
2016-11-28 11:42:58 +01:00
|
|
|
if (!data) return "";
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
const output = [];
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
for (let i = 0; i < data.length; i++) {
|
2016-11-28 11:42:58 +01:00
|
|
|
output.push((data[i] >>> 4).toString(16));
|
|
|
|
output.push((data[i] & 0x0f).toString(16));
|
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
return output.join("");
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a hex string into a byte array.
|
|
|
|
*
|
|
|
|
* @param {string} data
|
|
|
|
* @param {string} [delim]
|
2017-01-31 19:24:56 +01:00
|
|
|
* @param {number} [byteLen=2]
|
|
|
|
* @returns {byteArray}
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns [10,20,30]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.fromHex("0a 14 1e");
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns [10,20,30]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.fromHex("0a:14:1e", "Colon");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static fromHex(data, delim, byteLen=2) {
|
2016-11-28 11:42:58 +01:00
|
|
|
delim = delim || (data.indexOf(" ") >= 0 ? "Space" : "None");
|
2016-12-14 17:39:17 +01:00
|
|
|
if (delim !== "None") {
|
2018-03-27 00:14:23 +02:00
|
|
|
const delimRegex = Utils.regexRep(delim);
|
2017-01-31 19:24:56 +01:00
|
|
|
data = data.replace(delimRegex, "");
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
const output = [];
|
|
|
|
for (let i = 0; i < data.length; i += byteLen) {
|
2017-01-31 19:24:56 +01:00
|
|
|
output.push(parseInt(data.substr(i, byteLen), 16));
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
|
|
|
return output;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
/**
|
|
|
|
* Parses CSV data and returns it as a two dimensional array or strings.
|
|
|
|
*
|
|
|
|
* @param {string} data
|
|
|
|
* @returns {string[][]}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns [["head1", "head2"], ["data1", "data2"]]
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.parseCSV("head1,head2\ndata1,data2");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static parseCSV(data) {
|
2017-04-13 19:08:50 +02:00
|
|
|
let b,
|
2017-01-31 19:24:56 +01:00
|
|
|
ignoreNext = false,
|
|
|
|
inString = false,
|
2016-11-28 11:42:58 +01:00
|
|
|
cell = "",
|
|
|
|
line = [],
|
|
|
|
lines = [];
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
for (let i = 0; i < data.length; i++) {
|
2016-11-28 11:42:58 +01:00
|
|
|
b = data[i];
|
2017-01-31 19:24:56 +01:00
|
|
|
if (ignoreNext) {
|
2016-11-28 11:42:58 +01:00
|
|
|
cell += b;
|
2017-01-31 19:24:56 +01:00
|
|
|
ignoreNext = false;
|
2016-12-14 17:39:17 +01:00
|
|
|
} else if (b === "\\") {
|
2016-11-28 11:42:58 +01:00
|
|
|
cell += b;
|
2017-01-31 19:24:56 +01:00
|
|
|
ignoreNext = true;
|
|
|
|
} else if (b === "\"" && !inString) {
|
|
|
|
inString = true;
|
|
|
|
} else if (b === "\"" && inString) {
|
|
|
|
inString = false;
|
|
|
|
} else if (b === "," && !inString) {
|
2016-11-28 11:42:58 +01:00
|
|
|
line.push(cell);
|
|
|
|
cell = "";
|
2017-01-31 19:24:56 +01:00
|
|
|
} else if ((b === "\n" || b === "\r") && !inString) {
|
2016-11-28 11:42:58 +01:00
|
|
|
line.push(cell);
|
|
|
|
cell = "";
|
|
|
|
lines.push(line);
|
|
|
|
line = [];
|
|
|
|
} else {
|
|
|
|
cell += b;
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
if (line.length) {
|
|
|
|
line.push(cell);
|
|
|
|
lines.push(line);
|
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
return lines;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes all HTML (or XML) tags from the input string.
|
|
|
|
*
|
2017-01-31 19:24:56 +01:00
|
|
|
* @param {string} htmlStr
|
2018-03-27 00:14:23 +02:00
|
|
|
* @param {boolean} [removeScriptAndStyle=false]
|
|
|
|
* - Flag to specify whether to remove entire script or style blocks
|
2016-11-28 11:42:58 +01:00
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "Test"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.stripHtmlTags("<div>Test</div>");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static stripHtmlTags(htmlStr, removeScriptAndStyle=false) {
|
2017-01-31 19:24:56 +01:00
|
|
|
if (removeScriptAndStyle) {
|
|
|
|
htmlStr = htmlStr.replace(/<(script|style)[^>]*>.*<\/(script|style)>/gmi, "");
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
2017-07-07 15:23:58 +02:00
|
|
|
return htmlStr.replace(/<[^>]+>/g, "");
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-02-10 17:39:32 +01:00
|
|
|
* Escapes HTML tags in a string to stop them being rendered.
|
|
|
|
* https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* @param {string} str
|
|
|
|
* @returns string
|
|
|
|
*
|
|
|
|
* @example
|
2017-02-10 17:39:32 +01:00
|
|
|
* // return "A <script> tag"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.escapeHtml("A <script> tag");
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static escapeHtml(str) {
|
2017-04-13 19:08:50 +02:00
|
|
|
const HTML_CHARS = {
|
2017-02-10 17:39:32 +01:00
|
|
|
"&": "&",
|
|
|
|
"<": "<",
|
|
|
|
">": ">",
|
|
|
|
'"': """,
|
|
|
|
"'": "'", // ' not recommended because it's not in the HTML spec
|
|
|
|
"/": "/", // forward slash is included as it helps end an HTML entity
|
|
|
|
"`": "`"
|
|
|
|
};
|
|
|
|
|
2017-07-24 15:49:16 +02:00
|
|
|
return str.replace(/[&<>"'/`]/g, function (match) {
|
2017-02-10 17:39:32 +01:00
|
|
|
return HTML_CHARS[match];
|
|
|
|
});
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
2017-03-01 22:33:28 +01:00
|
|
|
/**
|
|
|
|
* Unescapes HTML tags in a string to make them render again.
|
|
|
|
*
|
|
|
|
* @param {string} str
|
|
|
|
* @returns string
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // return "A <script> tag"
|
|
|
|
* Utils.unescapeHtml("A <script> tag");
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static unescapeHtml(str) {
|
2017-04-13 19:08:50 +02:00
|
|
|
const HTML_CHARS = {
|
2017-03-01 22:33:28 +01:00
|
|
|
"&": "&",
|
|
|
|
"<": "<",
|
|
|
|
">": ">",
|
|
|
|
""": '"',
|
|
|
|
"'": "'",
|
|
|
|
"/": "/",
|
|
|
|
"`": "`"
|
|
|
|
};
|
|
|
|
|
|
|
|
return str.replace(/&#?x?[a-z0-9]{2,4};/ig, function (match) {
|
|
|
|
return HTML_CHARS[match] || match;
|
|
|
|
});
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-03-01 22:33:28 +01:00
|
|
|
|
|
|
|
|
2017-08-15 18:26:42 +02:00
|
|
|
/**
|
|
|
|
* Encodes a URI fragment (#) or query (?) using a minimal amount of percent-encoding.
|
|
|
|
*
|
|
|
|
* RFC 3986 defines legal characters for the fragment and query parts of a URL to be as follows:
|
|
|
|
*
|
|
|
|
* fragment = *( pchar / "/" / "?" )
|
|
|
|
* query = *( pchar / "/" / "?" )
|
2017-12-20 16:51:57 +01:00
|
|
|
* pchar = unreserved / pct-encoded / sub-delims / ":" / "@"
|
2017-08-15 18:26:42 +02:00
|
|
|
* unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
|
|
|
|
* pct-encoded = "%" HEXDIG HEXDIG
|
|
|
|
* sub-delims = "!" / "$" / "&" / "'" / "(" / ")"
|
|
|
|
* / "*" / "+" / "," / ";" / "="
|
|
|
|
*
|
|
|
|
* Meaning that the list of characters that need not be percent-encoded are alphanumeric plus:
|
|
|
|
* -._~!$&'()*+,;=:@/?
|
|
|
|
*
|
|
|
|
* & and = are still escaped as they are used to serialise the key-value pairs in CyberChef
|
|
|
|
* fragments. + is also escaped so as to prevent it being decoded to a space.
|
|
|
|
*
|
|
|
|
* @param {string} str
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static encodeURIFragment(str) {
|
2017-08-15 18:26:42 +02:00
|
|
|
const LEGAL_CHARS = {
|
|
|
|
"%2D": "-",
|
|
|
|
"%2E": ".",
|
|
|
|
"%5F": "_",
|
|
|
|
"%7E": "~",
|
|
|
|
"%21": "!",
|
|
|
|
"%24": "$",
|
|
|
|
//"%26": "&",
|
|
|
|
"%27": "'",
|
|
|
|
"%28": "(",
|
|
|
|
"%29": ")",
|
|
|
|
"%2A": "*",
|
|
|
|
//"%2B": "+",
|
|
|
|
"%2C": ",",
|
|
|
|
"%3B": ";",
|
|
|
|
//"%3D": "=",
|
|
|
|
"%3A": ":",
|
|
|
|
"%40": "@",
|
|
|
|
"%2F": "/",
|
|
|
|
"%3F": "?"
|
|
|
|
};
|
|
|
|
str = encodeURIComponent(str);
|
|
|
|
|
|
|
|
return str.replace(/%[0-9A-F]{2}/g, function (match) {
|
|
|
|
return LEGAL_CHARS[match] || match;
|
|
|
|
});
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-08-15 18:26:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a "pretty" recipe format from a recipeConfig object.
|
|
|
|
*
|
|
|
|
* "Pretty" CyberChef recipe formats are designed to be included in the fragment (#) or query (?)
|
|
|
|
* parts of the URL. They can also be loaded into CyberChef through the 'Load' interface. In order
|
|
|
|
* to make this format as readable as possible, various special characters are used unescaped. This
|
2018-01-18 19:35:17 +01:00
|
|
|
* reduces the amount of percent-encoding included in the URL which is typically difficult to read
|
|
|
|
* and substantially increases the overall length. These characteristics can be quite off-putting
|
|
|
|
* for users.
|
2017-08-15 18:26:42 +02:00
|
|
|
*
|
|
|
|
* @param {Object[]} recipeConfig
|
2018-03-27 00:14:23 +02:00
|
|
|
* @param {boolean} [newline=false] - whether to add a newline after each operation
|
2017-08-15 18:26:42 +02:00
|
|
|
* @returns {string}
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static generatePrettyRecipe(recipeConfig, newline=false) {
|
2017-08-15 18:26:42 +02:00
|
|
|
let prettyConfig = "",
|
|
|
|
name = "",
|
|
|
|
args = "",
|
|
|
|
disabled = "",
|
|
|
|
bp = "";
|
|
|
|
|
|
|
|
recipeConfig.forEach(op => {
|
|
|
|
name = op.op.replace(/ /g, "_");
|
|
|
|
args = JSON.stringify(op.args)
|
|
|
|
.slice(1, -1) // Remove [ and ] as they are implied
|
2018-01-18 19:35:17 +01:00
|
|
|
// We now need to switch double-quoted (") strings to single quotes (') as single quotes
|
|
|
|
// do not need to be percent-encoded.
|
2017-08-15 18:26:42 +02:00
|
|
|
.replace(/'/g, "\\'") // Escape single quotes
|
2018-01-18 19:35:17 +01:00
|
|
|
.replace(/"((?:[^"\\]|\\.)*)"/g, "'$1'") // Replace opening and closing " with '
|
|
|
|
.replace(/\\"/g, '"'); // Unescape double quotes
|
2017-08-15 18:26:42 +02:00
|
|
|
|
|
|
|
disabled = op.disabled ? "/disabled": "";
|
|
|
|
bp = op.breakpoint ? "/breakpoint" : "";
|
|
|
|
prettyConfig += `${name}(${args}${disabled}${bp})`;
|
|
|
|
if (newline) prettyConfig += "\n";
|
|
|
|
});
|
|
|
|
return prettyConfig;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-08-15 18:26:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a recipe string to the JSON representation of the recipe.
|
2018-03-27 00:14:23 +02:00
|
|
|
* Accepts either stringified JSON or the bespoke "pretty" recipe format.
|
2017-08-15 18:26:42 +02:00
|
|
|
*
|
|
|
|
* @param {string} recipe
|
|
|
|
* @returns {Object[]}
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static parseRecipeConfig(recipe) {
|
2017-08-15 18:26:42 +02:00
|
|
|
recipe = recipe.trim();
|
|
|
|
if (recipe.length === 0) return [];
|
|
|
|
if (recipe[0] === "[") return JSON.parse(recipe);
|
|
|
|
|
|
|
|
// Parse bespoke recipe format
|
|
|
|
recipe = recipe.replace(/\n/g, "");
|
|
|
|
let m,
|
2018-02-28 17:40:15 +01:00
|
|
|
recipeRegex = /([^(]+)\(((?:'[^'\\]*(?:\\.[^'\\]*)*'|[^)/'])*)(\/[^)]+)?\)/g,
|
2017-08-15 18:26:42 +02:00
|
|
|
recipeConfig = [],
|
|
|
|
args;
|
|
|
|
|
|
|
|
while ((m = recipeRegex.exec(recipe))) {
|
|
|
|
// Translate strings in args back to double-quotes
|
|
|
|
args = m[2]
|
|
|
|
.replace(/"/g, '\\"') // Escape double quotes
|
2017-08-16 16:11:50 +02:00
|
|
|
.replace(/(^|,|{|:)'/g, '$1"') // Replace opening ' with "
|
|
|
|
.replace(/([^\\])'(,|:|}|$)/g, '$1"$2') // Replace closing ' with "
|
2017-08-15 18:26:42 +02:00
|
|
|
.replace(/\\'/g, "'"); // Unescape single quotes
|
|
|
|
args = "[" + args + "]";
|
|
|
|
|
|
|
|
let op = {
|
|
|
|
op: m[1].replace(/_/g, " "),
|
|
|
|
args: JSON.parse(args)
|
|
|
|
};
|
|
|
|
if (m[3] && m[3].indexOf("disabled") > 0) op.disabled = true;
|
|
|
|
if (m[3] && m[3].indexOf("breakpoint") > 0) op.breakpoint = true;
|
|
|
|
recipeConfig.push(op);
|
|
|
|
}
|
|
|
|
return recipeConfig;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-08-15 18:26:42 +02:00
|
|
|
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
/**
|
|
|
|
* Expresses a number of milliseconds in a human readable format.
|
|
|
|
*
|
|
|
|
* Range | Sample Output
|
|
|
|
* -----------------------------|-------------------------------
|
|
|
|
* 0 to 45 seconds | a few seconds ago
|
|
|
|
* 45 to 90 seconds | a minute ago
|
|
|
|
* 90 seconds to 45 minutes | 2 minutes ago ... 45 minutes ago
|
|
|
|
* 45 to 90 minutes | an hour ago
|
|
|
|
* 90 minutes to 22 hours | 2 hours ago ... 22 hours ago
|
|
|
|
* 22 to 36 hours | a day ago
|
|
|
|
* 36 hours to 25 days | 2 days ago ... 25 days ago
|
|
|
|
* 25 to 45 days | a month ago
|
|
|
|
* 45 to 345 days | 2 months ago ... 11 months ago
|
|
|
|
* 345 to 545 days (1.5 years) | a year ago
|
|
|
|
* 546 days+ | 2 years ago ... 20 years ago
|
|
|
|
*
|
|
|
|
* @param {number} ms
|
|
|
|
* @returns {string}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns "3 minutes"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.fuzzyTime(152435);
|
2016-11-28 11:42:58 +01:00
|
|
|
*
|
|
|
|
* // returns "5 days"
|
2017-01-31 19:24:56 +01:00
|
|
|
* Utils.fuzzyTime(456851321);
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static fuzzyTime(ms) {
|
2016-11-28 11:42:58 +01:00
|
|
|
return moment.duration(ms, "milliseconds").humanize();
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
2017-02-08 06:05:52 +01:00
|
|
|
/**
|
|
|
|
* Formats a list of files or directories.
|
2017-02-09 19:22:27 +01:00
|
|
|
* A File is an object with a "fileName" and optionally a "contents".
|
|
|
|
* If the fileName ends with "/" and the contents is of length 0 then
|
|
|
|
* it is considered a directory.
|
2017-02-08 06:05:52 +01:00
|
|
|
*
|
2017-02-08 18:51:54 +01:00
|
|
|
* @author tlwr [toby@toby.codes]
|
|
|
|
*
|
2017-02-09 05:36:09 +01:00
|
|
|
* @param {Object[]} files
|
2017-02-08 06:05:52 +01:00
|
|
|
* @returns {html}
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static displayFilesAsHTML(files) {
|
2017-07-07 15:23:58 +02:00
|
|
|
/* <NL> and <SP> used to denote newlines and spaces in HTML markup.
|
|
|
|
* If a non-html operation is used, all markup will be removed but these
|
|
|
|
* whitespace chars will remain for formatting purposes.
|
|
|
|
*/
|
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
const formatDirectory = function(file) {
|
2017-07-07 15:23:58 +02:00
|
|
|
const html = `<div class='panel panel-default' style='white-space: normal;'>
|
|
|
|
<div class='panel-heading' role='tab'>
|
|
|
|
<h4 class='panel-title'>
|
|
|
|
<NL>${Utils.escapeHtml(file.fileName)}
|
|
|
|
</h4>
|
|
|
|
</div>
|
|
|
|
</div>`;
|
2017-02-08 06:05:52 +01:00
|
|
|
return html;
|
|
|
|
};
|
|
|
|
|
2017-04-13 19:08:50 +02:00
|
|
|
const formatFile = function(file, i) {
|
|
|
|
const blob = new Blob(
|
2017-03-12 17:51:04 +01:00
|
|
|
[new Uint8Array(file.bytes)],
|
|
|
|
{type: "octet/stream"}
|
|
|
|
);
|
2017-04-13 19:08:50 +02:00
|
|
|
const blobUrl = URL.createObjectURL(blob);
|
2017-03-22 00:06:51 +01:00
|
|
|
|
2017-07-07 15:23:58 +02:00
|
|
|
const viewFileElem = `<a href='#collapse${i}'
|
|
|
|
class='collapsed'
|
|
|
|
data-toggle='collapse'
|
|
|
|
aria-expanded='true'
|
|
|
|
aria-controls='collapse${i}'
|
|
|
|
title="Show/hide contents of '${Utils.escapeHtml(file.fileName)}'">👁️</a>`;
|
|
|
|
|
|
|
|
const downloadFileElem = `<a href='${blobUrl}'
|
|
|
|
title='Download ${Utils.escapeHtml(file.fileName)}'
|
|
|
|
download='${Utils.escapeHtml(file.fileName)}'>💾</a>`;
|
|
|
|
|
|
|
|
const hexFileData = Utils.toHexFast(new Uint8Array(file.bytes));
|
|
|
|
|
|
|
|
const switchToInputElem = `<a href='#switchFileToInput${i}'
|
|
|
|
class='file-switch'
|
|
|
|
title='Move file to input as hex'
|
|
|
|
fileValue='${hexFileData}'>⇧</a>`;
|
|
|
|
|
|
|
|
const html = `<div class='panel panel-default' style='white-space: normal;'>
|
|
|
|
<div class='panel-heading' role='tab' id='heading${i}'>
|
|
|
|
<h4 class='panel-title'>
|
|
|
|
<div>
|
|
|
|
${Utils.escapeHtml(file.fileName)}<NL>
|
|
|
|
${viewFileElem}<SP>
|
|
|
|
${downloadFileElem}<SP>
|
|
|
|
${switchToInputElem}<SP>
|
|
|
|
<span class='pull-right'>
|
|
|
|
<NL>${file.size.toLocaleString()} bytes
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
</div>
|
|
|
|
<div id='collapse${i}' class='panel-collapse collapse'
|
|
|
|
role='tabpanel' aria-labelledby='heading${i}'>
|
|
|
|
<div class='panel-body'>
|
|
|
|
<NL><NL><pre><code>${Utils.escapeHtml(file.contents)}</code></pre>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>`;
|
2017-02-08 06:05:52 +01:00
|
|
|
return html;
|
|
|
|
};
|
|
|
|
|
2017-07-07 15:23:58 +02:00
|
|
|
let html = `<div style='padding: 5px; white-space: normal;'>
|
|
|
|
${files.length} file(s) found<NL>
|
|
|
|
</div>`;
|
|
|
|
|
2017-02-08 06:05:52 +01:00
|
|
|
files.forEach(function(file, i) {
|
2017-02-09 17:38:20 +01:00
|
|
|
if (typeof file.contents !== "undefined") {
|
2017-02-08 06:05:52 +01:00
|
|
|
html += formatFile(file, i);
|
|
|
|
} else {
|
|
|
|
html += formatDirectory(file);
|
|
|
|
}
|
|
|
|
});
|
2017-07-07 15:23:58 +02:00
|
|
|
|
|
|
|
return html.replace(/(?:(<pre>(?:\n|.)*<\/pre>)|\s{2,})/g, "$1") // Remove whitespace from markup
|
|
|
|
.replace(/<NL>/g, "\n") // Replace <NP> with newlines
|
|
|
|
.replace(/<SP>/g, " "); // Replace <SP> with spaces
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-02-08 06:05:52 +01:00
|
|
|
|
|
|
|
|
2017-06-16 13:04:35 +02:00
|
|
|
/**
|
|
|
|
* Parses URI parameters into a JSON object.
|
|
|
|
*
|
|
|
|
* @param {string} paramStr - The serialised query or hash section of a URI
|
|
|
|
* @returns {object}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns {a: 'abc', b: '123'}
|
|
|
|
* Utils.parseURIParams("?a=abc&b=123")
|
|
|
|
* Utils.parseURIParams("#a=abc&b=123")
|
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static parseURIParams(paramStr) {
|
2017-06-16 13:04:35 +02:00
|
|
|
if (paramStr === "") return {};
|
|
|
|
|
|
|
|
// Cut off ? or # and split on &
|
2017-07-12 14:49:10 +02:00
|
|
|
if (paramStr[0] === "?" ||
|
|
|
|
paramStr[0] === "#") {
|
|
|
|
paramStr = paramStr.substr(1);
|
|
|
|
}
|
2017-06-16 13:04:35 +02:00
|
|
|
|
2017-07-12 14:49:10 +02:00
|
|
|
const params = paramStr.split("&");
|
2017-06-16 13:04:35 +02:00
|
|
|
const result = {};
|
2017-07-12 14:49:10 +02:00
|
|
|
|
2017-06-16 13:04:35 +02:00
|
|
|
for (let i = 0; i < params.length; i++) {
|
|
|
|
const param = params[i].split("=");
|
|
|
|
if (param.length !== 2) {
|
|
|
|
result[params[i]] = true;
|
|
|
|
} else {
|
|
|
|
result[param[0]] = decodeURIComponent(param[1].replace(/\+/g, " "));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-06-16 13:04:35 +02:00
|
|
|
|
|
|
|
|
2017-02-08 12:51:37 +01:00
|
|
|
/**
|
2017-02-09 15:17:44 +01:00
|
|
|
* Actual modulo function, since % is actually the remainder function in JS.
|
2017-02-08 18:29:50 +01:00
|
|
|
*
|
2017-06-22 18:13:31 +02:00
|
|
|
* @author Matt C [matt@artemisbot.uk]
|
2017-02-08 12:51:37 +01:00
|
|
|
* @param {number} x
|
|
|
|
* @param {number} y
|
2017-02-09 15:17:44 +01:00
|
|
|
* @returns {number}
|
2017-02-08 12:51:37 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static mod(x, y) {
|
2017-02-08 12:51:37 +01:00
|
|
|
return ((x % y) + y) % y;
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
2017-02-08 18:29:50 +01:00
|
|
|
|
2017-02-08 12:51:37 +01:00
|
|
|
/**
|
2017-02-09 15:17:44 +01:00
|
|
|
* Finds the greatest common divisor of two numbers.
|
2017-02-08 18:29:50 +01:00
|
|
|
*
|
2017-06-22 18:13:31 +02:00
|
|
|
* @author Matt C [matt@artemisbot.uk]
|
2017-02-08 12:51:37 +01:00
|
|
|
* @param {number} x
|
|
|
|
* @param {number} y
|
2017-02-09 15:17:44 +01:00
|
|
|
* @returns {number}
|
2017-02-08 12:51:37 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static gcd(x, y) {
|
2017-02-08 12:51:37 +01:00
|
|
|
if (!y) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
return Utils.gcd(y, x % y);
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2017-02-08 12:51:37 +01:00
|
|
|
|
2017-02-08 18:29:50 +01:00
|
|
|
|
|
|
|
/**
|
2017-02-09 15:17:44 +01:00
|
|
|
* Finds the modular inverse of two values.
|
2017-02-08 18:29:50 +01:00
|
|
|
*
|
2017-06-22 18:13:31 +02:00
|
|
|
* @author Matt C [matt@artemisbot.uk]
|
2017-02-08 18:29:50 +01:00
|
|
|
* @param {number} x
|
|
|
|
* @param {number} y
|
2017-02-09 15:17:44 +01:00
|
|
|
* @returns {number}
|
2017-02-08 18:29:50 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static modInv(x, y) {
|
2017-02-08 12:51:37 +01:00
|
|
|
x %= y;
|
2017-04-13 19:08:50 +02:00
|
|
|
for (let i = 1; i < y; i++) {
|
2017-02-08 12:51:37 +01:00
|
|
|
if ((x * i) % 26 === 1) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
2017-02-08 18:29:50 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
/**
|
|
|
|
* A mapping of names of delimiter characters to their symbols.
|
2018-03-27 00:14:23 +02:00
|
|
|
*
|
|
|
|
* @param {string} token
|
|
|
|
* @returns {string}
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static charRep(token) {
|
|
|
|
return {
|
|
|
|
"Space": " ",
|
|
|
|
"Comma": ",",
|
|
|
|
"Semi-colon": ";",
|
|
|
|
"Colon": ":",
|
|
|
|
"Line feed": "\n",
|
|
|
|
"CRLF": "\r\n",
|
|
|
|
"Forward slash": "/",
|
|
|
|
"Backslash": "\\",
|
|
|
|
"0x": "0x",
|
|
|
|
"\\x": "\\x",
|
|
|
|
"Nothing (separate chars)": "",
|
|
|
|
"None": "",
|
|
|
|
}[token];
|
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A mapping of names of delimiter characters to regular expressions which can select them.
|
2018-03-27 00:14:23 +02:00
|
|
|
*
|
|
|
|
* @param {string} token
|
|
|
|
* @returns {RegExp}
|
2016-11-28 11:42:58 +01:00
|
|
|
*/
|
2018-03-27 00:14:23 +02:00
|
|
|
static regexRep(token) {
|
|
|
|
return {
|
|
|
|
"Space": /\s+/g,
|
|
|
|
"Comma": /,/g,
|
|
|
|
"Semi-colon": /;/g,
|
|
|
|
"Colon": /:/g,
|
|
|
|
"Line feed": /\n/g,
|
|
|
|
"CRLF": /\r\n/g,
|
|
|
|
"Forward slash": /\//g,
|
|
|
|
"Backslash": /\\/g,
|
|
|
|
"0x": /0x/g,
|
|
|
|
"\\x": /\\x/g,
|
|
|
|
"None": /\s+/g // Included here to remove whitespace when there shouldn't be any
|
|
|
|
}[token];
|
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
2018-03-27 00:14:23 +02:00
|
|
|
}
|
2016-11-28 11:42:58 +01:00
|
|
|
|
2017-03-23 18:52:20 +01:00
|
|
|
export default Utils;
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes all duplicates from an array.
|
|
|
|
*
|
|
|
|
* @returns {Array}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns [3,6,4,8,2]
|
|
|
|
* [3,6,4,8,4,2,3].unique();
|
|
|
|
*
|
|
|
|
* // returns ["One", "Two", "Three"]
|
|
|
|
* ["One", "Two", "Three", "One"].unique();
|
|
|
|
*/
|
|
|
|
Array.prototype.unique = function() {
|
2017-04-13 19:08:50 +02:00
|
|
|
let u = {}, a = [];
|
|
|
|
for (let i = 0, l = this.length; i < l; i++) {
|
2016-11-28 11:42:58 +01:00
|
|
|
if (u.hasOwnProperty(this[i])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
a.push(this[i]);
|
|
|
|
u[this[i]] = 1;
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the largest value in the array.
|
|
|
|
*
|
|
|
|
* @returns {number}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns 7
|
|
|
|
* [4,2,5,3,7].max();
|
|
|
|
*/
|
|
|
|
Array.prototype.max = function() {
|
|
|
|
return Math.max.apply(null, this);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the smallest value in the array.
|
|
|
|
*
|
|
|
|
* @returns {number}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns 2
|
|
|
|
* [4,2,5,3,7].min();
|
|
|
|
*/
|
|
|
|
Array.prototype.min = function() {
|
|
|
|
return Math.min.apply(null, this);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sums all the values in an array.
|
|
|
|
*
|
|
|
|
* @returns {number}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns 21
|
|
|
|
* [4,2,5,3,7].sum();
|
|
|
|
*/
|
|
|
|
Array.prototype.sum = function() {
|
|
|
|
return this.reduce(function (a, b) {
|
|
|
|
return a + b;
|
|
|
|
}, 0);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether two arrays are equal or not.
|
|
|
|
*
|
|
|
|
* @param {Object[]} other
|
|
|
|
* @returns {boolean}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns true
|
|
|
|
* [1,2,3].equals([1,2,3]);
|
|
|
|
*
|
|
|
|
* // returns false
|
|
|
|
* [1,2,3].equals([3,2,1]);
|
|
|
|
*/
|
|
|
|
Array.prototype.equals = function(other) {
|
|
|
|
if (!other) return false;
|
2017-04-13 19:08:50 +02:00
|
|
|
let i = this.length;
|
2016-12-14 17:39:17 +01:00
|
|
|
if (i !== other.length) return false;
|
2016-11-28 11:42:58 +01:00
|
|
|
while (i--) {
|
|
|
|
if (this[i] !== other[i]) return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Counts the number of times a char appears in a string.
|
|
|
|
*
|
|
|
|
* @param {char} chr
|
|
|
|
* @returns {number}
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // returns 2
|
|
|
|
* "Hello".count("l");
|
|
|
|
*/
|
|
|
|
String.prototype.count = function(chr) {
|
|
|
|
return this.split(chr).length - 1;
|
|
|
|
};
|
2017-12-28 15:38:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Polyfills
|
|
|
|
*/
|
|
|
|
|
|
|
|
// https://github.com/uxitten/polyfill/blob/master/string.polyfill.js
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart
|
|
|
|
if (!String.prototype.padStart) {
|
|
|
|
String.prototype.padStart = function padStart(targetLength, padString) {
|
|
|
|
targetLength = targetLength>>0; //floor if number or convert non-number to 0;
|
|
|
|
padString = String((typeof padString !== "undefined" ? padString : " "));
|
|
|
|
if (this.length > targetLength) {
|
|
|
|
return String(this);
|
|
|
|
} else {
|
|
|
|
targetLength = targetLength-this.length;
|
|
|
|
if (targetLength > padString.length) {
|
|
|
|
padString += padString.repeat(targetLength/padString.length); //append to original to ensure we are longer than needed
|
|
|
|
}
|
|
|
|
return padString.slice(0, targetLength) + String(this);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// https://github.com/uxitten/polyfill/blob/master/string.polyfill.js
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd
|
|
|
|
if (!String.prototype.padEnd) {
|
|
|
|
String.prototype.padEnd = function padEnd(targetLength, padString) {
|
|
|
|
targetLength = targetLength>>0; //floor if number or convert non-number to 0;
|
|
|
|
padString = String((typeof padString !== "undefined" ? padString : " "));
|
|
|
|
if (this.length > targetLength) {
|
|
|
|
return String(this);
|
|
|
|
} else {
|
|
|
|
targetLength = targetLength-this.length;
|
|
|
|
if (targetLength > padString.length) {
|
|
|
|
padString += padString.repeat(targetLength/padString.length); //append to original to ensure we are longer than needed
|
|
|
|
}
|
|
|
|
return String(this) + padString.slice(0, targetLength);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|