Catalyst::Plugin::ConfigLoader - Load config files of various types


NAME

Catalyst::Plugin::ConfigLoader - Load config files of various types


SYNOPSIS

    package MyApp;
    
    # ConfigLoader should be first in your list so
    # other plugins can get the config information
    use Catalyst qw( ConfigLoader ... );
    
    # by default myapp.* will be loaded
    # you can specify a file if you'd like
    __PACKAGE__->config( 'Plugin::ConfigLoader' => { file => 'config.yaml' } );


DESCRIPTION

This module will attempt to load find and load a configuration file of various types. Currently it supports YAML, JSON, XML, INI and Perl formats. Special configuration for a particular driver format can be stored in MyApp->config->{ 'Plugin::ConfigLoader' }->{ driver }.

To support the distinction between development and production environments, this module will also attemp to load a local config (e.g. myapp_local.yaml) which will override any duplicate settings.


METHODS

setup( )

This method is automatically called by Catalyst's setup routine. It will attempt to use each plugin and, once a file has been successfully loaded, set the config() section.

load_config

This method handles loading the configuration data into the Catalyst context object. It does not return a value.

find_files

This method determines the potential file paths to be used for config loading. It returns an array of paths (up to the filename less the extension) to pass to Config::Any for loading.

get_config_path

This method determines the path, filename prefix and file extension to be used for config loading. It returns the path (up to the filename less the extension) to check and the specific extension to use (if it was specified).

The order of preference is specified as:

If either of the first two user-specified options are directories, the application prefix will be added on to the end of the path.

DEPRECATION NOTICE: $c->config->{ file } is deprecated and will be removed in the next release.

get_config_local_suffix

Determines the suffix of files used to override the main config. By default this value is local, but it can be specified in the following order of preference:

DEPRECATION NOTICE: $c->config->{ config_local_suffix } is deprecated and will be removed in the next release.

finalize_config

This method is called after the config file is loaded. It can be used to implement tuning of config values that can only be done at runtime. If you need to do this to properly configure any plugins, it's important to load ConfigLoader before them. ConfigLoader provides a default finalize_config method which walks through the loaded config hash and calls the config_substitutions sub on any string.

config_substitutions( $value )

This method substitutes macros found with calls to a function. There are three default macros:

The parameter list is split on comma (,). You can override this method to do your own string munging, or you can define your own macros in MyApp->config->{ 'Plugin::ConfigLoader' }->{ substitutions }. Example:

    MyApp->config->{ 'Plugin::ConfigLoader' }->{ substitutions } = {
        baz => sub { my $c = shift; qux( @_ ); }
    }

The above will respond to __baz(x,y)__ in config strings.


AUTHOR

Brian Cassidy <bricas@cpan.org>


CONTRIBUTORS

The following people have generously donated their time to the development of this module:

Work to this module has been generously sponsored by:


COPYRIGHT AND LICENSE

Copyright 2007 by Brian Cassidy

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


SEE ALSO

 Catalyst::Plugin::ConfigLoader - Load config files of various types