adamconnelly / WindsorAppConfigFacility

A Windsor facility for creating interfaces for accessing app settings

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Windsor App Config Facility

A Windsor facility for automatically implementing interfaces to access application settings.

Build Status

License: MIT

What's it for?

Sometimes you need to use settings to alter how your application behaves. The default way to do this is using AppSettings via an app.config or web.config file. Accessing the AppSettings dictionary directly isn't great for unit testing because the objects being tested then have an external dependency that may not be obvious, and may rely on magic strings to work.

What you can do instead is define an interface to hold your settings, and inject that into your class. This way you can mock it for unit testing.

You can manually create an object that implements this interface at runtime, but this can get a bit tedious when you have to write the same boiler plate code over and over as you add new settings. What this facility does is automatically implements that class for you so you don't have to.

Getting Started

Say you have the following settings:

<appSettings>
  <add key="ApiUrl" value="http://api.someservice.com"/>
  <add key="ApiToken" value="ABCD1234"/>
</appSettings>

You define the following interface to access the settings:

public interface IAppConfig
{
    string ApiUrl { get; }
    string ApiToken { get; }
}

Now create your container, add the facility, and register your config component:

var container = new WindsorContainer();

container.AddFacility<AppConfigFacility>();

container.Register(Component.For<IAppConfig>().FromAppConfig());

Now you can inject IAppConfig into other classes, just like you would for any other component registered in Windsor.

Other Features

Prefixes

You can specify a prefix that should be used for getting settings from the settings store. What this allows you to do is split your app settings up into smaller, more specific settings interfaces.

For example, say we have the following settings:

<appSettings>
  <add key="Api.Url" value="http://api.someservice.com"/>
  <add key="Api.Token" value="ABCD1234"/>
  <add key="Email.SenderAddress" value="sender@email.com"/>
  <add key="Email.SmtpServer" value="smtp.email.com"/>
  <add key="Email.IsEnabled" value="true"/>
</appSettings>

And you create the following two interfaces to access your settings:

public interface IApiConfig
{
    string Url { get; }
    string Token { get; }
}

public interface IEmailConfig
{
    string SenderAddress { get; }
    string SmtpServer { get; }
    bool IsEnabled { get; }
}

You can configure your container as follows:

var container = new WindsorContainer()
    .AddFacility<AppConfigFacility>();

container.Register(
    Component.For<IApiConfig>().FromAppConfig(c => c.WithPrefix("Api.")),
    Component.For<IEmailConfig>().FromAppConfig(c => c.WithPrefix("Email."));

Azure

If you want to get your settings from Azure instead of an app.config or web.config file, install the WindsorAppConfig.Azure nuget package and just register the facility as follows:

container.AddFacility<AppConfigFacility>(c => c.FromAzure());

What this does is alters the facility so that it uses CloudConfigurationManager.GetSetting("MyKey") to access the settings.

Environment

If you want to get your settings from the environment register the facility as follows:

container.AddFacility<AppConfigFacility>(c => c.FromEnvironment());

Multiple Sources

You can register the facility to get the settings from multiple sources:

container.AddFacility<AppConfigFacility>(c => c.FromEnvironment().FromAzure());

This will cause it to try to get each setting in the order you specify. So, in the example above, the facility will first look for a setting from an environment variable, and will then try to get it from Azure. The Azure support automatically falls back to checking AppSettings for you, but if you want to be explicit about it you can do:

container.AddFacility(c => c.FromEnvironment().FromAzure().FromAppSettings());

Caching

By default the facility doesn't cache any of your settings. What this means is that it'll go back to the underlying data source (e.g. the web.config file or Azure CloudConfigurationManager) each time you get a setting. If you want it to cache your settings so it only gets them once, you can configure the facility as follows:

container.AddFacility<AppConfigFacility>(f => f.CacheSettings());

Computed Properties

You can specify computed properties when registering your settings interface. For example, if you have the following settings:

<appSettings>
  <add key="FirstName" value="Adam"/>
  <add key="LastName" value="Connelly"/>
</appSettings>

And the following interface:

public interface IPersonConfig
{
    string FirstName { get; }
    string LastName { get; }
    string FullName { get; }
}

You can implement FullName by registering IPersonConfig as follows:

container.Register(Component.For<IPersonConfig>().FromAppConfig(
    o => o.Computed(p => p.FullName, p => p.FirstName + " " + p.LastName)));

Advanced

Custom Settings Provider

If you need to get your settings from somewhere other than AppSettings or the Azure CloudConfigurationManager, you can create your own implementation of ISettingsProvider:

public interface ISettingsProvider
{
    /// <summary>
    /// Gets the specified setting.
    /// </summary>
    /// <param name="key">The setting key.</param>
    /// <param name="returnType">The type of the setting.</param>
    /// <returns>
    /// The setting.
    /// </returns>
    object GetSetting(string key, Type returnType);
}

To use your own settings provider, just use the UseSettingsProvider() method when adding the facility. So if you had created an implementation that got its settings from a database, you might do something like this:

container.AddFacility<AppConfigFacility>(c => c.UseSettingsProvider<DatabaseSettingsProvider>());

If you're creating your own settings provider, you probably want to inherit from SettingsProviderBase. This handles converting your settings to the correct types, so all you need to care about is getting them from somewhere.

Building and Publishing

To build the project ready to be published run the following command:

msbuild .\build.proj /t:NuGetPack /p:"Configuration=Release;Version=0.4.0.0" /m

To publish the packages to the NuGet registry run the following commands:

nuget push .\build\WindsorAppConfigFacility.0.4.0.nupkg -Source https://www.nuget.org
nuget push .\build\WindsorAppConfigFacility.Azure.0.4.0.nupkg -Source https://www.nuget.org

About

A Windsor facility for creating interfaces for accessing app settings

License:MIT License


Languages

Language:C# 100.0%