platform/lib/angel_configuration.dart
2017-09-25 09:50:56 -04:00

126 lines
3.8 KiB
Dart

library angel_configuration;
import 'package:angel_framework/angel_framework.dart';
import 'package:dotenv/dotenv.dart' as dotenv;
import 'package:file/file.dart';
import 'package:merge_map/merge_map.dart';
import 'package:yaml/yaml.dart';
final RegExp _equ = new RegExp(r'=$');
final RegExp _sym = new RegExp(r'Symbol\("([^"]+)"\)');
/// A proxy object that encapsulates a server's configuration.
@proxy
class Configuration {
/// The [Angel] instance that loaded this configuration.
final Angel app;
Configuration(this.app);
operator [](key) => app.configuration[key];
operator []=(key, value) => app.configuration[key] = value;
noSuchMethod(Invocation invocation) {
if (invocation.memberName != null) {
String name = _sym.firstMatch(invocation.memberName.toString()).group(1);
if (invocation.isMethod) {
return Function.apply(app.configuration[name],
invocation.positionalArguments, invocation.namedArguments);
} else if (invocation.isGetter) {
return app.configuration[name];
}
}
super.noSuchMethod(invocation);
}
}
_loadYamlFile(Angel app, File yamlFile, Map<String, String> env) async {
if (await yamlFile.exists()) {
var config = loadYaml(await yamlFile.readAsString());
if (config is! Map) {
app.logger?.warning(
'WARNING: The configuration at "${yamlFile.absolute.path}" is not a Map. Refusing to load it.');
return;
}
Map<String, dynamic> out = {};
for (String key in config.keys) {
out[key] = _applyEnv(config[key], env ?? {}, app);
}
app.configuration.addAll(mergeMap(
[
app.configuration,
out,
],
acceptNull: true,
));
}
}
_applyEnv(var v, Map<String, String> env, Angel app) {
if (v is String) {
if (v.startsWith(r'$') && v.length > 1) {
var key = v.substring(1);
if (env.containsKey(key))
return env[key];
else {
app.logger?.warning(
'Your configuration calls for loading the value of "$key" from the system environment, but it is not defined. Defaulting to `null`.');
return null;
}
} else
return v;
} else if (v is Iterable) {
return v.map((x) => _applyEnv(x, env ?? {}, app)).toList();
} else if (v is Map) {
return v.keys
.fold<Map>({}, (out, k) => out..[k] = _applyEnv(v[k], env ?? {}, app));
} else
return v;
}
/// Dynamically loads application configuration from configuration files.
///
/// You can modify which [directoryPath] to search in, or explicitly
/// load from a [overrideEnvironmentName].
///
/// You can also specify a custom [envPath] to load system configuration from.
AngelConfigurer configuration(
FileSystem fileSystem,
{String directoryPath: "./config",
String overrideEnvironmentName,
String envPath}) {
return (Angel app) async {
Directory sourceDirectory = fileSystem.directory(directoryPath);
var env = dotenv.env;
var envFile = sourceDirectory.childFile(envPath ?? '.env');
if (await envFile.exists()) {
try {
dotenv.load(envFile.absolute.uri.toFilePath());
} catch (_) {
app.logger?.warning(
'WARNING: Found an environment configuration at ${envFile.absolute.path}, but it was invalidly formatted. Refusing to load it.');
}
}
String environmentName = env['ANGEL_ENV'] ?? 'development';
if (overrideEnvironmentName != null) {
environmentName = overrideEnvironmentName;
}
var defaultYaml = sourceDirectory.childFile('default.yaml');
await _loadYamlFile(app, defaultYaml, env);
String configFilePath = "$environmentName.yaml";
var configFile = sourceDirectory.childFile(configFilePath);
await _loadYamlFile(app, configFile, env);
app.container.singleton(new Configuration(app));
};
}