@nestjs/config
Version:
Nest - modern, fast, powerful node.js web framework (@config)
98 lines (97 loc) • 4.46 kB
JavaScript
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConfigService = void 0;
const common_1 = require("@nestjs/common");
const shared_utils_1 = require("@nestjs/common/utils/shared.utils");
const lodash_1 = require("lodash");
const config_constants_1 = require("./config.constants");
let ConfigService = class ConfigService {
constructor(internalConfig = {}) {
this.internalConfig = internalConfig;
this.cache = {};
this._isCacheEnabled = false;
}
set isCacheEnabled(value) {
this._isCacheEnabled = value;
}
get isCacheEnabled() {
return this._isCacheEnabled;
}
/**
* Get a configuration value (either custom configuration or process environment variable)
* based on property path (you can use dot notation to traverse nested object, e.g. "database.host").
* It returns a default value if the key does not exist.
* @param propertyPath
* @param defaultValueOrOptions
*/
get(propertyPath, defaultValueOrOptions, options) {
const validatedEnvValue = this.getFromValidatedEnv(propertyPath);
if (!(0, shared_utils_1.isUndefined)(validatedEnvValue)) {
return validatedEnvValue;
}
const defaultValue = this.isGetOptionsObject(defaultValueOrOptions) && !options
? undefined
: defaultValueOrOptions;
const processEnvValue = this.getFromProcessEnv(propertyPath, defaultValue);
if (!(0, shared_utils_1.isUndefined)(processEnvValue)) {
return processEnvValue;
}
const internalValue = this.getFromInternalConfig(propertyPath);
if (!(0, shared_utils_1.isUndefined)(internalValue)) {
return internalValue;
}
return defaultValue;
}
getFromCache(propertyPath, defaultValue) {
const cachedValue = (0, lodash_1.get)(this.cache, propertyPath);
return (0, shared_utils_1.isUndefined)(cachedValue)
? defaultValue
: cachedValue;
}
getFromValidatedEnv(propertyPath) {
const validatedEnvValue = (0, lodash_1.get)(this.internalConfig[config_constants_1.VALIDATED_ENV_PROPNAME], propertyPath);
return validatedEnvValue;
}
getFromProcessEnv(propertyPath, defaultValue) {
if (this.isCacheEnabled &&
(0, lodash_1.has)(this.cache, propertyPath)) {
const cachedValue = this.getFromCache(propertyPath, defaultValue);
return !(0, shared_utils_1.isUndefined)(cachedValue) ? cachedValue : defaultValue;
}
const processValue = (0, lodash_1.get)(process.env, propertyPath);
this.setInCacheIfDefined(propertyPath, processValue);
return processValue;
}
getFromInternalConfig(propertyPath) {
const internalValue = (0, lodash_1.get)(this.internalConfig, propertyPath);
return internalValue;
}
setInCacheIfDefined(propertyPath, value) {
if (typeof value === 'undefined') {
return;
}
(0, lodash_1.set)(this.cache, propertyPath, value);
}
isGetOptionsObject(options) {
return options && (options === null || options === void 0 ? void 0 : options.infer) && Object.keys(options).length === 1;
}
};
ConfigService = __decorate([
(0, common_1.Injectable)(),
__param(0, (0, common_1.Optional)()),
__param(0, (0, common_1.Inject)(config_constants_1.CONFIGURATION_TOKEN)),
__metadata("design:paramtypes", [Object])
], ConfigService);
exports.ConfigService = ConfigService;