/usr/share/perl5/SVN/Hooks/DenyFilenames.pm is in libsvn-hooks-perl 1.34-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | package SVN::Hooks::DenyFilenames;
# ABSTRACT: Deny some file names.
$SVN::Hooks::DenyFilenames::VERSION = '1.34';
use strict;
use warnings;
use Carp;
use Data::Util qw(:check);
use SVN::Hooks;
use Exporter qw/import/;
my $HOOK = 'DENY_FILENAMES';
our @EXPORT = ($HOOK, 'DENY_FILENAMES_PER_PATH');
sub _grok_check {
my ($directive, $check) = @_;
if (is_rx($check)) {
return [$check => 'filename not allowed'];
} elsif (is_array_ref($check)) {
@$check == 2 or croak "$directive: array arguments must have two arguments.\n";
is_rx($check->[0]) or croak "$directive: got \"$check->[0]\" while expecting a qr/Regex/.\n";
is_string($check->[1]) or croak "$directive: got \"$check->[1]\" while expecting a string.\n";
return $check;
} else {
croak "$directive: got \"$check\" while expecting a qr/Regex/ or a [qr/Regex/, 'message'].\n";
}
}
my @Checks; # default restrictions
sub DENY_FILENAMES {
foreach my $check (@_) {
push @Checks, _grok_check('DENY_FILENAMES', $check);
}
PRE_COMMIT(\&pre_commit);
return 1;
}
my @Per_path_checks; # per path restrictions
sub DENY_FILENAMES_PER_PATH {
my (@rules) = @_;
@rules % 2 == 0
or croak "DENY_FILENAMES_PER_PATH: got odd number of arguments.\n";
while (@rules) {
my ($match, $check) = splice @rules, 0, 2;
is_rx($match) or croak "DENY_FILENAMES_PER_PATH: rule prefix isn't a Regexp.\n";
push @Per_path_checks, [$match => _grok_check('DENY_FILENAMES_PER_PATH', $check)];
}
PRE_COMMIT(\&pre_commit);
return 1;
}
sub pre_commit {
my ($svnlook) = @_;
my $errors;
ADDED:
foreach my $added ($svnlook->added()) {
foreach my $rule (@Per_path_checks) {
if ($added =~ $rule->[0]) {
$errors .= "$HOOK: $rule->[1][1]: $added\n"
if $added =~ $rule->[1][0];
next ADDED;
}
}
foreach my $check (@Checks) {
if ($added =~ $check->[0]) {
$errors .= "$HOOK: $check->[1]: $added\n";
next ADDED;
}
}
}
croak $errors if $errors;
}
1; # End of SVN::Hooks::DenyFilenames
__END__
=pod
=encoding UTF-8
=head1 NAME
SVN::Hooks::DenyFilenames - Deny some file names.
=head1 VERSION
version 1.34
=head1 SYNOPSIS
This SVN::Hooks plugin is used to disallow the addition of some file
names.
It's active in the C<pre-commit> hook.
It's configured by the following directives.
=head2 DENY_FILENAMES(REGEXP, [REGEXP => MESSAGE], ...)
This directive denies the addition of new files matching the Regexps
passed as arguments. If any file or directory added in the commit
matches one of the specified Regexps the commit is aborted with an
error message telling about every denied file.
The arguments may be compiled Regexps or two-element arrays consisting
of a compiled Regexp and a specific error message. If a file matches
one of the lone Regexps an error message like this is produced:
DENY_FILENAMES: filename not allowed: filename
If a file matches a Regexp associated with an error message, the
specified error message is substituted for the 'filename not allowed'
default.
Note that this directive specifies a default restriction. If there are
any B<DENY_FILENAMES_PER_PATH> directives (see below) being used, this
one is only used for files that don't match any specific rules there.
Example:
DENY_FILENAMES(
qr/\.(doc|xls|ppt)$/i, # ODF only, please
[qr/\.(exe|zip|jar)/i => 'No binaries, please!'],
);
=head2 DENY_FILENAMES_PER_PATH(REGEXP => REGEXP, REGEXP => [REGEXP => MESSAGE], ...)
This directive is more specific than the B<DENY_FILENAMES>, because it
allows one to specify different restrictions in different regions of
the repository tree.
Its arguments are a sequence of rules, each one consisting of a
pair. The first element of each pair is a regular expression
specifying where in the repository this rule applies. It applies if
any file being added matches the regexp. The second element specifies
the restrictions that should be imposed, just like the arguments to
B<DENY_FILENAMES>.
The first rule matching an added file is used to check it. The
following rules aren't tried.
Only if no rules match a particular file will the restrictions defined
by B<DENY_FILENAMES> be imposed.
Example:
DENY_FILENAMES_PER_PATH(
qr:/src/: => [qr/[^\w.-]/ => 'source files must be strict'],
qr:/doc/: => qr/[^\w\s.-]/i, # document files allow spaces too.
qr:/notes/: => qr/^$/, # notes directory allows anything.
);
=for Pod::Coverage pre_commit
=head1 AUTHOR
Gustavo L. de M. Chaves <gnustavo@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by CPqD <www.cpqd.com.br>.
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
|