| SVN-Notify-Config documentation | Contained in the SVN-Notify-Config distribution. |
SVN::Notify::Config - Config-driven Subversion notification
This document describes version 0.0910 of SVN::Notify::Config, released March 5, 2008.
Set this as your Subversion repository's hooks/post-commit:
#!/usr/bin/perl -MSVN::Notify::Config=$0
--- #YAML:1.0
'':
PATH: "/usr/bin:/usr/local/bin"
'/path':
handler: HTML::ColorDiff
to: project-admin@example.com
'/path/ignored':
handler: ~
'/path/snapshot':
fork: 1
handler: Snapshot
to: "/tmp/tarball-%{%Y%m%d}-${revision}.tar.gz"
'/path/multitarget':
to:
- alice@localhost
- bob@localhost
- root@localhost
'/path/tags':
handler: Mirror
to: '/path/to/another/dir'
tag-regex: "RELEASE_"
Alternatively, use a config file inside the repository:
#!/usr/bin/perl -MSVN::Notify::Config=file://$1/svnnotify.yml
This module is a YAML-based configuration wrapper on SVN::Notify. Any option of the base SVN::Notify or any of its subclasses can be rendered in YAML and will be used to perform the appropriate task. In essence, your hook script is your configuration file, so it can be a very compact way to use SVN::Notify.
Notes on a few of the options:
Each block is contructed as a YAML hash entry whose key is the path that triggers that block's action. This term is evaluated as a Perl regex and all path entries are relative to the repository root. You can use very sophisticated mapping between paths and handlers. For example, a new tag under any project goes to all developers, but regular commits to branch or trunk go to that project list only.
With the core SVN::Notify module, you were required to issue multiple to_regex_map entries. In SVN::Notify::Config, an implicit to_regex_map is constructed from the path hash and the array of to: elements of the YAML file.
Versions of SVN::Notify::Config prior to 0.09 contained a subtle error in logic which meant that multiple overlapping paths would not all fire, but rather only the last block defined would fire. This does not agree with core SVN::Notify behavior, where you could have multiple independent to_regex_map entries which would all fire.
For example, see the '/path' block in the SYNOPSIS, which should receive a ColorDiff e-mail for any commit under the other blocks. If you need to replicate the previous behavior, you can use negative lookahead's.
Autrijus Tang E<lt>autrijus@autrijus.orgE<gt> John Peacock E<lt>jpeacock@cpan.orgE<gt>
Copyright (c) 2006-2008 by John Peacock <jpeacock@cpan.org>. Portions copyright 2004-2006 by Autrijus Tang <autrijus@autrijus.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| SVN-Notify-Config documentation | Contained in the SVN-Notify-Config distribution. |
package SVN::Notify::Config; $SVN::Notify::Config::VERSION = 0.0911; use strict; use YAML; use SVN::Notify;
sub import { my $class = shift; my @config = @_ or return; local $ENV{PATH} = $ENV{PATH} || do { require Config; require File::Basename; join( $Config::Config{pathsep}, ($Config::Config{bin}, File::Basename::dirname($^X)), ); }; foreach my $config (@config) { $config =~ s/\$0/$0/g; $config =~ s/\$(\d+)/$ARGV[$1-1]/eg; my $self = $class->new($config); $self->prepare; $self->execute( repos_path => $ARGV[0], revision => $ARGV[1], ); } exit; } sub new { my ($class, $config) = @_; bless( ( ( ref($config) eq 'HASH' ) ? $config : ($config =~ m{^(?:file|svn(?:\+ssh)?)://}) ? YAML::Load(scalar `svn cat $config`) : ($config =~ m{^[A-Za-z][-+.A-Za-z0-9]*://}) ? do { require LWP::Simple; YAML::Load( LWP::Simple::get($config) ) } : YAML::LoadFile( $config ), ), $class); } sub prepare { my ($self) = @_; # Heuristic: if none of our values are refs, cast it into ''. $self = { '' => { %$self } } unless grep ref, values %$self; my @keys = sort keys %$self; foreach my $key (@keys) { next if ref($self->{$key}) eq 'ARRAY'; $self->{$key} = [ { %{ $self->{$key} } } ]; } foreach my $key (@keys) { foreach my $value (@{ $self->{$key} }) { my @vkeys = sort keys %$value; foreach my $vkey (@vkeys) { $vkey =~ /-/ or next; $value->{$self->_normalize_key($vkey)} = delete $value->{$vkey}; } } } } sub execute { my ($self, %args) = @_; my @actions = ({}); my $path = $args{repos_path}; my @keys = sort keys %$self or return; my $filter = SVN::Notify->new( %args, to_regex_map => { map { +( $_ => map "$_(?:)", ($keys[$_] =~ m!^/?(.*)!g) ) } (0 .. $#keys) }, ); $filter->prepare_recipients; # maintain backwards compatibility with SVN::Notify < 2.61 my $to = $filter->{to}; unless ( ref($to) eq 'ARRAY' ) { $to = [$to =~ m!(\d+)!g]; } foreach my $key ( sort map {$keys[$_]} @{$to} ) { my $values = $self->{$key}; # multiply @actions by @$values @actions = map { my $orig = $_; map { +{ %$orig, %$_, (exists $_->{handler}) ? ( handle_path => ($key =~ m!^/?(.*)!g) ) : (), } } @$values } @actions; foreach my $value (@actions) { %$value = (%$value, %args); $value->{handler} or next; foreach my $key (sort keys %$value) { my $vval = $value->{$key}; next if ref($vval); $vval =~ s{\$\{([-\w]+)\}} {$value->{$self->_normalize_key($1)}}eg; $vval =~ s{\%\{(.+?)\}} {require POSIX; POSIX::strftime($1, localtime(time))}eg; $value->{$key} = $vval; } fork and exit if $value->{fork}; local %ENV = %ENV; $ENV{$_} = $value->{$_} for grep !/\p{IsLower}/, keys %$value; my $notify = SVN::Notify->new(%$value); $notify->prepare; $notify->execute; } } } sub _normalize_key { my ($self, $key) = @_; $key =~ s/-/_/g; return $key; } 1;