insomnia/packages/insomnia-app/app/templating/utils.js
Julien Giovaresco dfc89a3111
Allow prompt values to be clear + add actions to template tag plugin API (#2736)
Co-authored-by: Opender Singh <opender.singh@konghq.com>
2020-12-01 12:15:17 +13:00

246 lines
6.9 KiB
JavaScript

// @flow
import type { PluginArgumentEnumOption } from './extensions';
import objectPath from 'objectpath';
import type { PluginStore } from '../plugins/context';
export type NunjucksParsedTagArg = {
type: 'string' | 'number' | 'boolean' | 'variable' | 'expression' | 'enum' | 'file' | 'model',
encoding?: 'base64',
value: string | number | boolean,
defaultValue?: string | number | boolean,
forceVariable?: boolean,
placeholder?: string,
help?: string,
displayName?: string,
quotedBy?: '"' | "'",
validate?: (value: any) => string,
hide?: (Array<NunjucksParsedTagArg>) => boolean,
model?: string,
options?: Array<PluginArgumentEnumOption>,
itemTypes?: Array<string>,
extensions?: Array<string>,
};
export type NunjucksActionTag = {
name: string,
icon?: string,
run: (context: PluginStore) => Promise<void>,
};
export type NunjucksParsedTag = {
name: string,
args: Array<NunjucksParsedTagArg>,
actions: Array<NunjucksActionTag>,
rawValue?: string,
displayName?: string,
description?: string,
disablePreview?: (Array<NunjucksParsedTagArg>) => boolean,
};
/**
* Get list of paths to all primitive types in nested object
* @param {object} obj - object to analyse
* @param {String} [prefix] - base path to prefix to all paths
* @returns {Array} - list of paths
*/
export function getKeys(obj: any, prefix: string = ''): Array<{ name: string, value: any }> {
let allKeys = [];
const typeOfObj = Object.prototype.toString.call(obj);
if (typeOfObj === '[object Array]') {
for (let i = 0; i < obj.length; i++) {
allKeys = [...allKeys, ...getKeys(obj[i], forceBracketNotation(prefix, i))];
}
} else if (typeOfObj === '[object Object]') {
const keys = Object.keys(obj);
for (const key of keys) {
allKeys = [...allKeys, ...getKeys(obj[key], forceBracketNotation(prefix, key))];
}
} else if (typeOfObj === '[object Function]') {
// Ignore functions
} else if (prefix) {
allKeys.push({ name: normalizeToDotAndBracketNotation(prefix), value: obj });
}
return allKeys;
}
export function forceBracketNotation(prefix: string, key: string | number): string {
// Prefix is already in bracket notation because getKeys is recursive
return `${prefix}${objectPath.stringify([key], "'", true)}`;
}
export function normalizeToDotAndBracketNotation(prefix: string): string {
return objectPath.normalize(prefix);
}
/**
* Parse a Nunjucks tag string into a usable abject
* @param {string} tagStr - the template string for the tag
* @return {object} parsed tag data
*/
export function tokenizeTag(tagStr: string): NunjucksParsedTag {
// ~~~~~~~~ //
// Sanitize //
// ~~~~~~~~ //
const withoutEnds = tagStr
.trim()
.replace(/^{%/, '')
.replace(/%}$/, '')
.trim();
const nameMatch = withoutEnds.match(/^[a-zA-Z_$][0-9a-zA-Z_$]*/);
const name = nameMatch ? nameMatch[0] : withoutEnds;
const argsStr = withoutEnds.slice(name.length);
// ~~~~~~~~~~~~~ //
// Tokenize Args //
// ~~~~~~~~~~~~~ //
const args = [];
let quotedBy = null;
let currentArg = null;
for (let i = 0; i < argsStr.length + 1; i++) {
// Adding an "invisible" at the end helps us terminate the last arg
const c = argsStr.charAt(i) || ',';
// Do nothing if we're still on a space o comma
if (currentArg === null && c.match(/[\s,]/)) {
continue;
}
// Start a new single-quoted string
if (currentArg === null && c === "'") {
currentArg = '';
quotedBy = "'";
continue;
}
// Start a new double-quoted string
if (currentArg === null && c === '"') {
currentArg = '';
quotedBy = '"';
continue;
}
// Start a new unquoted string
if (currentArg === null) {
currentArg = c;
quotedBy = null;
continue;
}
const endQuoted = quotedBy && c === quotedBy;
const endUnquoted = !quotedBy && c === ',';
const argCompleted = endQuoted || endUnquoted;
// Append current char to argument
if (!argCompleted && currentArg !== null) {
if (c === '\\') {
// Handle backslashes
i += 1;
currentArg += argsStr.charAt(i);
} else {
currentArg += c;
}
}
// End current argument
if (currentArg !== null && argCompleted) {
let arg;
if (quotedBy) {
arg = { type: 'string', value: currentArg, quotedBy };
} else if (['true', 'false'].includes(currentArg)) {
arg = { type: 'boolean', value: currentArg.toLowerCase() === 'true' };
} else if (currentArg.match(/^\d*\.?\d*$/)) {
arg = { type: 'number', value: currentArg };
} else if (currentArg.match(/^[a-zA-Z_$][0-9a-zA-Z_$]*$/)) {
arg = { type: 'variable', value: currentArg };
} else {
arg = { type: 'expression', value: currentArg };
}
args.push(arg);
currentArg = null;
quotedBy = null;
}
}
return { name, args };
}
/** Convert a tokenized tag back into a Nunjucks string */
export function unTokenizeTag(tagData: NunjucksParsedTag): string {
const args = [];
for (const arg of tagData.args) {
if (['string', 'model', 'file', 'enum'].includes(arg.type)) {
const q = arg.quotedBy || "'";
const re = new RegExp(`([^\\\\])${q}`, 'g');
const str = arg.value.toString().replace(re, `$1\\${q}`);
args.push(`${q}${str}${q}`);
} else if (arg.type === 'boolean') {
args.push(arg.value ? 'true' : 'false');
} else {
args.push(arg.value);
}
}
const argsStr = args.join(', ');
return `{% ${tagData.name} ${argsStr} %}`;
}
/** Get the default Nunjucks string for an extension */
export function getDefaultFill(name: string, args: Array<NunjucksParsedTagArg>): string {
const stringArgs: Array<string> = (args || []).map(argDefinition => {
switch (argDefinition.type) {
case 'enum':
const { defaultValue, options } = argDefinition;
const fallback = options && options.length ? options[0].value : '';
const value = defaultValue !== undefined ? String(defaultValue) : String(fallback);
return `'${value}'`;
case 'number':
return `${parseFloat(argDefinition.defaultValue) || 0}`;
case 'boolean':
return argDefinition.defaultValue ? 'true' : 'false';
case 'string':
case 'file':
case 'model':
return `'${(argDefinition.defaultValue: any) || ''}'`;
default:
return "''";
}
});
return `${name} ${stringArgs.join(', ')}`;
}
export function encodeEncoding(value: string, encoding: 'base64'): string {
if (typeof value !== 'string') {
return value;
}
if (encoding === 'base64') {
const encodedValue = Buffer.from(value, 'utf8').toString('base64');
return `b64::${encodedValue}::46b`;
}
return value;
}
export function decodeEncoding(value: string): string {
if (typeof value !== 'string') {
return value;
}
const results = value.match(/^b64::(.+)::46b$/);
if (results) {
return Buffer.from(results[1], 'base64').toString('utf8');
}
return value;
}