insomnia/plugins/insomnia-plugin-base64/index.js

47 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-06-25 17:42:50 +00:00
module.exports.templateTags = [
{
name: 'base64',
displayName: 'Base64',
description: 'encode or decode values',
args: [
{
displayName: 'Action',
type: 'enum',
options: [
{ displayName: 'Encode', value: 'encode' },
{ displayName: 'Decode', value: 'decode' },
],
2018-06-25 17:42:50 +00:00
},
{
displayName: 'Kind',
type: 'enum',
options: [{ displayName: 'Normal', value: 'normal' }, { displayName: 'URL', value: 'url' }],
},
2018-06-25 17:42:50 +00:00
{
displayName: 'Value',
type: 'string',
placeholder: 'My text',
},
2018-06-25 17:42:50 +00:00
],
run(context, action, kind, text) {
2018-06-25 17:42:50 +00:00
text = text || '';
if (action === 'encode') {
if (kind === 'normal') {
return Buffer.from(text, 'utf8').toString('base64');
} else if (kind === 'url') {
return Buffer.from(text, 'utf8')
.toString('base64')
.replace(/\+/g, '-')
.replace(/\//g, '_')
.replace(/=/g, '');
}
} else if (action === 'decode') {
2018-06-25 17:42:50 +00:00
return Buffer.from(text, 'base64').toString('utf8');
} else {
throw new Error('Unsupported operation "' + action + '". Must be encode or decode.');
2018-06-25 17:42:50 +00:00
}
},
},
2018-06-25 17:42:50 +00:00
];