Template WebAPI: Defining External Configurations
A part of the Template WebAPI series.
One design constraint that I wanted to enforce on the application is that the idea of app settings should stay in the within the API layer. But we still need a mechanism for transferring configurations form the API down to the various implementations.
The best design I've come across is to define your configuration dependencies through interfaces, which you can type against your configuration file.
Take a look at MongoConnector.cs, where we have to give it a connection string and database name in order to instantiate it. We wrap the configuration in the file MongoConfig.
Then when we want to setup the service, we can define the configuration by referring to our app settings.
Now we have define a configuration for an external service, without having to pass around our complete AppSettings file, and the configuration is abstracted away from the external services.
Full configuration can be found on Github.
One design constraint that I wanted to enforce on the application is that the idea of app settings should stay in the within the API layer. But we still need a mechanism for transferring configurations form the API down to the various implementations.
The best design I've come across is to define your configuration dependencies through interfaces, which you can type against your configuration file.
Take a look at MongoConnector.cs, where we have to give it a connection string and database name in order to instantiate it. We wrap the configuration in the file MongoConfig.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MongoConnector | |
{ | |
private readonly IMongoClient _client; | |
private readonly IMongoDatabase _database; | |
public MongoConnector(MongoConfig config) | |
{ | |
_client = new MongoClient(config.ConnectionString); | |
_database = _client.GetDatabase(config.DatabaseName); | |
} | |
public IMongoCollection<T> GetCollection<T>(string collectionName) | |
{ | |
return _database.GetCollection<T>(collectionName); | |
} | |
} | |
public interface MongoConfig | |
{ | |
string ConnectionString { get; set; } | |
string DatabaseName { get; set; } | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AppSettings | |
{ | |
public MongoDatabase Mongo { get; set; } | |
} | |
public class MongoDatabase : MongoConfig | |
{ | |
public string ConnectionString { get; set; } | |
public string DatabaseName { get; set; } | |
} | |
public static class MongoConfiguration | |
{ | |
public static void ConfigureMongo(this IServiceCollection services, AppSettings settings) | |
{ | |
// Settings | |
services.AddSingleton<MongoConfig>(settings.Mongo); | |
// Connection | |
services.AddSingleton<MongoConnector>(); | |
} | |
} |
Full configuration can be found on Github.
Comments
Post a Comment