use warnings; use strict; package SVN::Hooks; { $SVN::Hooks::VERSION = '1.17'; } # ABSTRACT: A framework for implementing Subversion hooks. use File::Basename; use File::Spec::Functions; use Data::Util qw(:check); use SVN::Look; use Exporter qw/import/; our @EXPORT = qw/run_hook POST_COMMIT POST_LOCK POST_REVPROP_CHANGE POST_UNLOCK PRE_COMMIT PRE_LOCK PRE_REVPROP_CHANGE PRE_UNLOCK START_COMMIT/; our @Conf_Files = (catfile('conf', 'svn-hooks.conf')); our $Repo = undef; our %Hooks = (); sub run_hook { my ($hook_name, $repo_path, @args) = @_; $hook_name = basename $hook_name; -d $repo_path or die "not a directory ($repo_path): $_\n"; $Repo = $repo_path; # Reload all configuration files foreach my $conf (@Conf_Files) { my $conffile = file_name_is_absolute($conf) ? $conf : catfile($Repo, $conf); next unless -e $conffile; # Configuration files are optional package main; { $main::VERSION = '1.17'; } unless (my $return = do $conffile) { die "couldn't parse '$conffile': $@\n" if $@; die "couldn't do '$conffile': $!\n" unless defined $return; die "couldn't run '$conffile'\n" unless $return; } } # Substitute a SVN::Look object for the first argument # in the hooks where this makes sense. if ($hook_name eq 'pre-commit') { # The next arg is a transaction number $repo_path = SVN::Look->new($repo_path, '-t' => $args[0]); } elsif ($hook_name =~ /^(?:post-commit|(?:pre|post)-revprop-change)$/) { # The next arg is a revision number $repo_path = SVN::Look->new($repo_path, '-r' => $args[0]); } foreach my $hook (values %{$Hooks{$hook_name}}) { if (is_code_ref($hook)) { $hook->($repo_path, @args); } elsif (is_array_ref($hook)) { foreach my $h (@$hook) { $h->($repo_path, @args); } } else { die "SVN::Hooks: internal error!\n"; } } return; } # post-commit(SVN::Look) sub POST_COMMIT (&) { my ($hook) = @_; $Hooks{'post-commit'}{$hook} ||= sub { $hook->(@_); }; } # post-lock(repos-path, username) sub POST_LOCK (&) { my ($hook) = @_; $Hooks{'post-lock'}{$hook} ||= sub { $hook->(@_); }; } # post-revprop-change(SVN::Look, username, property-name, action) sub POST_REVPROP_CHANGE (&) { my ($hook) = @_; $Hooks{'post-revprop-change'}{$hook} ||= sub { $hook->(@_); }; } # post-unlock(repos-path, username) sub POST_UNLOCK (&) { my ($hook) = @_; $Hooks{'post-unlock'}{$hook} ||= sub { $hook->(@_); }; } # pre-commit(SVN::Look) sub PRE_COMMIT (&) { my ($hook) = @_; $Hooks{'pre-commit'}{$hook} ||= sub { $hook->(@_); }; } # pre-lock(repos-path, path, username, comment, steal-lock-flag) sub PRE_LOCK (&) { my ($hook) = @_; $Hooks{'pre-lock'}{$hook} ||= sub { $hook->(@_); }; } # pre-revprop-change(SVN::Look, username, property-name, action) sub PRE_REVPROP_CHANGE (&) { my ($hook) = @_; $Hooks{'pre-revprop-change'}{$hook} ||= sub { $hook->(@_); }; } # pre-unlock(repos-path, path, username, lock-token, break-unlock-flag) sub PRE_UNLOCK (&) { my ($hook) = @_; $Hooks{'pre-unlock'}{$hook} ||= sub { $hook->(@_); }; } # start-commit(repos-path, username, capabilities) sub START_COMMIT (&) { my ($hook) = @_; $Hooks{'start-commit'}{$hook} ||= sub { $hook->(@_); }; } 1; # End of SVN::Hooks =pod =head1 NAME SVN::Hooks - A framework for implementing Subversion hooks. =head1 VERSION version 1.17 =head1 SYNOPSIS A single script can implement several hooks: #!/usr/bin/perl use SVN::Hooks; START_COMMIT { my ($repo_path, $username, $capabilities) = @_; # ... }; PRE_COMMIT { my ($svnlook) = @_; # ... }; run_hook($0, @ARGV); Or you can use already implemented hooks via plugins: #!/usr/bin/perl use SVN::Hooks; use SVN::Hooks::DenyFilenames; use SVN::Hooks::DenyChanges; use SVN::Hooks::CheckProperty; ... run_hook($0, @ARGV); =for Pod::Coverage run_hook POST_COMMIT POST_LOCK POST_REVPROP_CHANGE POST_UNLOCK PRE_COMMIT PRE_LOCK PRE_REVPROP_CHANGE PRE_UNLOCK START_COMMIT =head1 INTRODUCTION In order to really understand what this is all about you need to understand Subversion L and its hooks. You can read everything about this in the svnbook, a.k.a. Version Control with Subversion, at L. Subversion is a version control system, and as such it is used to keep historical revisions of files and directories. Each revision maintains information about all the changes introduced since the previous one: date, author, log message, files changed, files renamed, etc. Subversion uses a client/server model. The server maintains the B, which is the database containing all the historical information we talked about above. Users use a Subversion client tool to query and change the repository but also to maintain one or more B. A working area is a directory in the user machine containing a copy of a particular revision of the repository. The user can use the client tool to make all sorts of changes in his working area and to "commit" them all in an atomic operation that bumps the repository to a new revision. A hook is a specifically named program that is called by the Subversion server during the execution of some operations. There are exactly nine hooks which must reside under the C directory in the repository. When you create a new repository, you get nine template files in this directory, all of them having the C<.tmpl> suffix and helpful instructions inside explaining how to convert them into working hooks. When Subversion is performing a commit operation on behalf of a client, for example, it calls the C hook, then the C hook, and then the C hook. The first two can gather all sorts of information about the specific commit transaction being performed and decide to reject it in case it doesn't comply to specified policies. The C can be used to log or alert interested parties about the commit just done. IMPORTANT NOTE from the svnbook: "For security reasons, the Subversion repository executes hook programs with an empty environment—that is, no environment variables are set at all, not even $PATH (or %PATH%, under Windows). Because of this, many administrators are baffled when their hook program runs fine by hand, but doesn't work when run by Subversion. Be sure to explicitly set any necessary environment variables in your hook program and/or use absolute paths to programs." There are several useful hook scripts available elsewhere L, mainly for those three associated with the commit operation. However, when you try to combine the functionality of two or more of those scripts in a single hook you normally end up facing two problems. =over =item B In order to integrate the funcionality of more than one script you have to write a driver script that's called by Subversion and calls all the other scripts in order, passing to them the arguments they need. Moreover, some of those scripts may have configuration files to read and you may have to maintain several of them. =item B This arrangement is inefficient in two ways. First because each script runs as a separate process, which usually have a high startup cost because they are, well, scripts and not binaries. And second, because as each script is called in turn they have no memory of the scripts called before and have to gather the information about the transaction again and again, normally by calling the C command, which spawns yet another process. =back SVN::Hooks is a framework for implementing Subversion hooks that tries to solve these problems. Instead of having separate scripts implementing different functionality you have a single script implementing all the funcionality you need either directly or using some of the existing plugins, which are implemented by Perl modules in the SVN::Hooks:: namespace. This single script can be used to implement all nine standard hooks, because each hook knows when to perform based on the context in which the script was called. =head1 USAGE In the Subversion server, go to the C directory under the directory where the repository was created. You should see there the nine hook templates. Create a script there using the SVN::Hooks module. $ cd /path/to/repo/hooks $ cat >svn-hooks.pl < passing to it the name with which it wass called (C<$0>) and all the arguments it received (C<@ARGV>). =head2 Implementing Hooks Implement hooks using one of the nine hook I below. Each one of them get a single block (anonymous function) as argument. The block will be called by C with proper arguments, as indicated below. These arguments are the ones gotten from @ARGV, with the exception of the ones identified by C. These are SVN::Look objects which can be used to grok detailed information about the repository and the current transaction. (Please, refer to the L documentation to know how to use it.) =over =item * POST_COMMIT(SVN::Look) =item * POST_LOCK(repos-path, username) =item * POST_REVPROP_CHANGE(SVN::Look, username, property-name, action) =item * POST_UNLOCK(repos-path, username) =item * PRE_COMMIT(SVN::Look) =item * PRE_LOCK(repos-path, path, username, comment, steal-lock-flag) =item * PRE_REVPROP_CHANGE(SVN::Look, username, property-name, action) =item * PRE_UNLOCK(repos-path, path, username, lock-token, break-unlock-flag) =item * START_COMMIT(repos-path, username, capabilities) =back This is an example of a script implementing two hooks: #!/usr/bin/perl use SVN::Hooks; # ... START_COMMIT { my ($repos_path, $username, $capabilities) = @_; exists $committers{$username} or die "User '$username' is not allowed to commit.\n"; $capabilities =~ /mergeinfo/ or die "Your Subversion client does not support mergeinfo capability.\n"; }; PRE_COMMIT { my ($svnlook) = @_; foreach my $added ($svnlook->added()) { $added !~ /\.(exe|o|jar|zip)$/ or die "Please, don't commit binary files such as '$added'.\n"; } }; run_hook($0, @ARGV); Note that the hook directives resemble function definitions but they're not. They are function calls, and as such must end with a semi-colon. Most of the C and C hooks are used to check some condition. If the condition holds, they must simply end without returning anything. Otherwise, they must C with a suitable error message. Also note that each hook directive can be called more than once if you need to implement more than one specific hook. =head2 Using Plugins There are several hooks already implemented as plugin modules under the namespace C, which you can use. The main ones are described succinctly below. Please, see their own documentation for more details. =over =item SVN::Hooks::AllowPropChange Allow only specified users make changes in revision properties. =item SVN::Hooks::CheckCapability Check if the Subversion client implements the required capabilities. =item SVN::Hooks::CheckJira Integrate Subversion with the JIRA L ticketing system. =item SVN::Hooks::CheckLog Check if the log message in a commit conforms to a Regexp. =item SVN::Hooks::CheckMimeTypes Check if the files added to the repository have the C property set. Moreover, for text files, check if the properties C and C are also set. =item SVN::Hooks::CheckProperty Check for specific properties for specific kinds of files. =item SVN::Hooks::CheckStructure Check if the files and directories being added to the repository conform to a specific structure. =item SVN::Hooks::DenyChanges Deny the addition, modification, or deletion of specific files and directories in the repository. Usually used to deny modifications in the C directory. =item SVN::Hooks::DenyFilenames Deny the addition of files which file names doesn't comply with a Regexp. Usually used to disallow some characteres in the filenames. =item SVN::Hooks::Notify Sends notification emails after successful commits. =item SVN::Hooks::UpdateConfFile Allows you to maintain Subversion configuration files versioned in the same repository where they are used. Usually used to maintain the configuration file for the hooks and the repository access control file. =back This is an example of a script using some plugins: #!/usr/bin/perl use SVN::Hooks; use SVN::Hooks::CheckProperty; use SVN::Hooks::DenyChanges; use SVN::Hooks::DenyFilenames; # Accept only letters, digits, underlines, periods, and hifens DENY_FILENAMES(qr/[^-\/\.\w]/i); # Disallow modifications in the tags directory DENY_UPDATE(qr:^tags:); # OpenOffice.org documents need locks CHECK_PROPERTY(qr/\.(?:od[bcfgimpst]|ot[ghpst])$/i => 'svn:needs-lock'); run_hook($0, @ARGV); Those directives are implemented and exported by the hooks. Note that using hooks you don't need to be explicit about which one of the nine hooks will be triggered by the directives. This is on purpose, because some plugins can trigger more than one hook. The plugin documentation should tell you which hooks can be triggered so that you know which symbolic links you need to create in the F repository directory. =head2 Configuration file Before calling the hooks, the function C evaluates a file called F under the F directory in the repository, if it exists. Hence, you can choose to put all the directives in this file and not in the script under the F directory. The advantage of this is that you can then manage the configuration file with the C and have it versioned under the same repository that it controls. One way to do this is to use this hook script: #!/usr/bin/perl use SVN::Hooks; use SVN::Hooks::UpdateConfFile; use ... UPDATE_CONF_FILE( 'conf/svn-hooks.conf' => 'svn-hooks.conf', validator => [qw(/usr/bin/perl -c)], rotate => 2, ); run_hook($0, @ARGV); Use this hook script and create a directory called F at the root of the repository (besides the common F, F, and F directories). Add the F file under the F directory. Then, whenever you commit a new version of the file, the pre-commit hook will validate it sintactically (C) and copy its new version to the F file in the repository. (Read the L documentation to understand it in details.) Being a Perl script, it's possible to get fancy with the configuration file, using variables, functions, and whatever. But for most purposes it consists just in a series of configuration directives. Don't forget to end it with the C<1;> statement, though, because it's evaluated with a C statement and needs to end with a true expression. Please, see the plugins documentation to know about the directives. =head1 PLUGIN DEVELOPER TUTORIAL Yet to do. =head1 EXPORT =head2 run_hook This is responsible to invoke the right plugins depending on the context in which it was called. Its first argument must be the name of the hook that was called. Usually you just pass C<$0> to it, since it knows to extract the basename of the parameter. Its second argument must be the path to the directory where the repository was created. The remaining arguments depend on the hook for which it's being called, like this: =over =item * start-commit repo-path user capabilities =item * pre-commit repo-path txn =item * post-commit repo-path rev =item * pre-lock repo-path path user =item * post-lock repo-path user =item * pre-unlock repo-path path user =item * post-unlock repo-path user =item * pre-revprop-change repo-path rev user propname action =item * post-revprop-change repo-path rev user propname action =back But as these are exactly the arguments Subversion passes when it calls the hooks, you usually call C like this: run_hook($0, @ARGV); =head1 AUTHOR Gustavo L. de M. Chaves =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2012 by CPqD. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut __END__