mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-13 08:15:14 +02:00
36 lines
1,018 B
TypeScript
36 lines
1,018 B
TypeScript
import { readFileSync } from 'node:fs';
|
|
import { homedir } from 'node:os';
|
|
import { resolve } from 'node:path';
|
|
|
|
export function resolveKtxHomePath(path: string): string {
|
|
if (path === '~') {
|
|
return homedir();
|
|
}
|
|
|
|
if (path.startsWith('~/')) {
|
|
return resolve(homedir(), path.slice(2));
|
|
}
|
|
|
|
return resolve(path);
|
|
}
|
|
|
|
export function resolveKtxConfigReference(value: string | undefined, env: NodeJS.ProcessEnv): string | undefined {
|
|
if (!value) {
|
|
return undefined;
|
|
}
|
|
|
|
if (value.startsWith('env:')) {
|
|
const envName = value.slice('env:'.length).trim();
|
|
const envValue = env[envName];
|
|
return envValue && envValue.trim().length > 0 ? envValue.trim() : undefined;
|
|
}
|
|
|
|
if (value.startsWith('file:')) {
|
|
const filePath = resolveKtxHomePath(value.slice('file:'.length).trim());
|
|
const fileValue = readFileSync(filePath, 'utf8').trim();
|
|
return fileValue.length > 0 ? fileValue : undefined;
|
|
}
|
|
|
|
const trimmed = value.trim();
|
|
return trimmed.length > 0 ? trimmed : undefined;
|
|
}
|