UNPKG

envalid

Version:

Validation for your environment variables

108 lines (95 loc) 3.59 kB
import { EnvError, EnvMissingError } from './errors' import { CleanOptions, Spec, ValidatorSpec } from './types' import { defaultReporter } from './reporter' export const testOnlySymbol = Symbol('envalid - test only') /** * Validate a single env var, given a spec object * * @throws EnvError - If validation is unsuccessful * @return - The cleaned value */ function validateVar<T>({ spec, name, rawValue, }: { name: string, rawValue: string | T, spec: ValidatorSpec<T>, }) { if (typeof spec._parse !== 'function') { throw new EnvError(`Invalid spec for "${name}"`) } const value = spec._parse(rawValue as string) if (spec.choices) { if (!Array.isArray(spec.choices)) { throw new TypeError(`"choices" must be an array (in spec for "${name}")`) } else if (!spec.choices.includes(value)) { throw new EnvError(`Value "${value}" not in choices [${spec.choices}]`) } } if (value == null) throw new EnvError(`Invalid value for env var "${name}"`) return value } // Format a string error message for when a required env var is missing function formatSpecDescription<T>(spec: Spec<T>) { const egText = spec.example ? ` (eg. "${spec.example}")` : '' const docsText = spec.docs ? `. See ${spec.docs}` : '' return `${spec.desc}${egText}${docsText}` } const readRawEnvValue = <T>(env: unknown, k: keyof T | 'NODE_ENV'): string | T[keyof T] => { return (env as any)[k] } const isTestOnlySymbol = (value: any): value is symbol => value === testOnlySymbol /** * Perform the central validation/sanitization logic on the full environment object */ export function getSanitizedEnv<T>( environment: unknown, specs: { [K in keyof T]: ValidatorSpec<T[K]> }, options: CleanOptions<T> = {}, ): T { let cleanedEnv = {} as T const errors: Partial<Record<keyof T, Error>> = {} const varKeys = Object.keys(specs) as Array<keyof T> const rawNodeEnv = readRawEnvValue(environment, 'NODE_ENV') for (const k of varKeys) { const spec = specs[k] const rawValue = readRawEnvValue(environment, k) // If no value was given and default/devDefault were provided, return the appropriate default // value without passing it through validation if (rawValue === undefined) { // Use devDefault values only if NODE_ENV was explicitly set, and isn't 'production' const usingDevDefault = rawNodeEnv && rawNodeEnv !== 'production' && spec.hasOwnProperty('devDefault') if (usingDevDefault) { // @ts-expect-error default values can break the rules slightly by being explicitly set to undefined cleanedEnv[k] = spec.devDefault; break; } if (spec.hasOwnProperty('default')) { // @ts-expect-error default values can break the rules slightly by being explicitly set to undefined cleanedEnv[k] = spec.default; break; } } try { if (isTestOnlySymbol(rawValue)) { throw new EnvMissingError(formatSpecDescription(spec)) } if (rawValue === undefined) { // @ts-ignore (fixes #138) Need to figure out why explicitly undefined default/devDefault breaks inference cleanedEnv[k] = undefined throw new EnvMissingError(formatSpecDescription(spec)) } else { cleanedEnv[k] = validateVar({ name: k as string, spec, rawValue }) } } catch (err) { if (options?.reporter === null) throw err if (err instanceof Error) errors[k] = err } } const reporter = options?.reporter || defaultReporter reporter({ errors, env: cleanedEnv }) return cleanedEnv }