Compare commits

..

4 Commits

Author SHA1 Message Date
b81ab9d9b2 5.0.22 2024-06-19 18:50:01 +02:00
5ec9124d29 fix(core): update 2024-06-19 18:50:00 +02:00
f7f035e878 5.0.21 2024-06-19 17:53:28 +02:00
3caf300544 fix(core): update 2024-06-19 17:53:27 +02:00
3 changed files with 24 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/npmextra",
"version": "5.0.20",
"version": "5.0.22",
"private": false,
"description": "A utility to enhance npm with additional configuration, tool management capabilities, and a key-value store for project setups.",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/npmextra',
version: '5.0.20',
version: '5.0.22',
description: 'A utility to enhance npm with additional configuration, tool management capabilities, and a key-value store for project setups.'
}

View File

@ -77,18 +77,36 @@ export class AppData<T = any> {
// Recursive function to handle nested objects, now includes key parameter
const processEnvMapping = async (key: keyof T, mappingValue: any, parentKey: keyof T | '' = ''): Promise<any> => {
if (typeof mappingValue === 'string') {
let envValue: string | T[keyof T];
let envValue: string | boolean | T[keyof T];
let convert: 'none' | 'json' | 'base64' | 'boolean' = 'none'
if (mappingValue.startsWith('hard:')) {
envValue = mappingValue.replace('hard:', '') as T[keyof T];
} else if (mappingValue.startsWith('boolean:')) {
envValue = await qenvInstance.getEnvVarOnDemand(mappingValue.replace('boolean:', '')) as T[keyof T];
convert = 'boolean';
} else if(mappingValue.startsWith('json')) {
envValue = await qenvInstance.getEnvVarOnDemand(mappingValue.replace('json:', '')) as T[keyof T];
convert = 'json';
} else if (mappingValue.startsWith('base64')) {
envValue = await qenvInstance.getEnvVarOnDemand(mappingValue.replace('base64:', '')) as T[keyof T];
convert = 'base64';
} else {
envValue = await qenvInstance.getEnvVarOnDemand(mappingValue) as T[keyof T];
}
// lets format the env value
if (envValue) {
if (typeof envValue === 'string' && mappingValue.endsWith('_JSON')) {
envValue = JSON.parse(envValue) as T[keyof T];
if (convert === 'boolean') {
envValue = envValue === 'true';
}
if (typeof envValue === 'string' && (mappingValue.endsWith('_JSON') || convert === 'json')) {
envValue = JSON.parse(envValue as string) as T[keyof T];
}
if (typeof envValue === 'string' && (mappingValue.endsWith('_BASE64') || convert === 'base64')) {
envValue = Buffer.from(envValue as string, 'base64').toString();
}
if (!parentKey) {
await this.kvStore.writeKey(key, envValue);
await this.kvStore.writeKey(key, envValue as any);
} else {
return envValue;
}