134 lines
3.2 KiB
JavaScript
134 lines
3.2 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
const entities = new (require('html-entities').XmlEntities)()
|
|
const jsesc = require('jsesc')
|
|
const utils = require('../utils')
|
|
|
|
class common extends utils {
|
|
/**
|
|
* Escape and quote a string
|
|
* @param s - String to be quoted
|
|
* @param {boolean} html - Identifies whether the string must be HTML safe
|
|
* @returns {*}
|
|
*/
|
|
static quote (s, html = false) {
|
|
const options = {
|
|
minimal: true,
|
|
isScriptContext: html
|
|
}
|
|
|
|
if (typeof s === 'string') {
|
|
return `'${jsesc(s, options)}'`
|
|
} else {
|
|
return jsesc(s, options)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove quotes and escape sequence from string
|
|
* @param {string} s
|
|
* @returns {string}
|
|
*/
|
|
static unquote (s) {
|
|
return s.replace(/\\'/g, '\'')
|
|
.replace(/\\"/g, '"')
|
|
.replace(/\\0/g, '\0')
|
|
.replace(/\\\\/g, '\\')
|
|
.replace(/(^['|"])(.*)\1$/gm, '$2')
|
|
}
|
|
|
|
/**
|
|
* Unicode safe b64 encoding
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/WindowBase64/Base64_encoding_and_decoding#The_Unicode_Problem
|
|
* @param {string} str
|
|
* @returns {*}
|
|
*/
|
|
static b64encode (str) {
|
|
if (process.browser) {
|
|
return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g,
|
|
function toSolidBytes (match, p1) {
|
|
// noinspection JSCheckFunctionSignatures
|
|
return String.fromCharCode(`0x${p1}`)
|
|
})
|
|
)
|
|
} else {
|
|
return Buffer.from(str).toString('base64')
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Unicode safe b64 decoding
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/WindowBase64/Base64_encoding_and_decoding#The_Unicode_Problem
|
|
* @param {string} str
|
|
* @returns {*}
|
|
*/
|
|
static b64decode (str) {
|
|
if (process.browser) {
|
|
return decodeURIComponent(atob(str).split('').map(function (c) {
|
|
return `%${('00' + c.charCodeAt(0).toString(16)).slice(-2)}`
|
|
}).join(''))
|
|
} else {
|
|
return Buffer.from(str, 'base64').toString('ascii')
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Escape special characters using HTML entities
|
|
* @param {string} str
|
|
* @returns {string}
|
|
*/
|
|
static htmlEscape (str) {
|
|
return entities.encode(str)
|
|
}
|
|
|
|
/**
|
|
* Remove HTML entities from string
|
|
* @param {string} str
|
|
* @returns {string}
|
|
*/
|
|
static htmlUnescape (str) {
|
|
return entities.decode(str)
|
|
}
|
|
|
|
/**
|
|
* Remove duplicate items from a list
|
|
* @param {Array} list
|
|
* @returns {Array}
|
|
*/
|
|
static uniqueList (list) {
|
|
return list.filter((v, i, a) => a.indexOf(v) === i)
|
|
}
|
|
|
|
/**
|
|
* Merge two objects recursively
|
|
* @param {Object} obj1
|
|
* @param {Object} obj2
|
|
* @returns {*}
|
|
*/
|
|
static mergeHash (obj1, obj2) {
|
|
for (let p in obj2) {
|
|
try {
|
|
if (obj2[p].constructor === Object) {
|
|
obj1[p] = utils.common.mergeHash(obj1[p], obj2[p])
|
|
} else {
|
|
obj1[p] = obj2[p]
|
|
}
|
|
} catch (e) {
|
|
obj1[p] = obj2[p]
|
|
}
|
|
}
|
|
return obj1
|
|
}
|
|
|
|
/**
|
|
* Template string beautifier
|
|
* @param {Object} obj
|
|
* @returns {string}
|
|
*/
|
|
static mockup (obj) {
|
|
return obj.split('\n').map((ln) => ln.trim()).join('')
|
|
}
|
|
}
|
|
|
|
module.exports = common
|