package Code::TidyAll::Git::Prereceive; use strict; use warnings; use Capture::Tiny qw(capture); use Code::TidyAll::Util qw(tempdir_simple); use Code::TidyAll; use Digest::SHA qw(sha1_hex); use IPC::System::Simple qw(capturex run); use Path::Tiny qw(cwd path); use Specio::Library::Builtins; use Specio::Library::Numeric; use Specio::Library::String; use Try::Tiny; use Moo; our $VERSION = '0.84'; has allow_repeated_push => ( is => 'ro', isa => t('PositiveInt'), default => 3, ); has conf_name => ( is => 'ro', isa => t('NonEmptyStr'), ); has extra_conf_files => ( is => 'ro', isa => t( 'ArrayRef', of => t('NonEmptyStr') ), default => sub { [] }, ); has git_path => ( is => 'ro', isa => t('NonEmptyStr'), default => 'git', ); has tidyall_class => ( is => 'ro', isa => t('ClassName'), default => 'Code::TidyAll', ); has tidyall_options => ( is => 'ro', isa => t('HashRef'), default => sub { {} } ); sub check { my ( $class, %params ) = @_; my $fail_msg; try { my $self = $class->new(%params); my $root_dir = cwd(); local $ENV{GIT_DIR} = $root_dir; my $input = do { local $/; }; $fail_msg = $self->check_input($input); } catch { my $error = $_; if ( $params{reject_on_error} ) { die $error; } else { print STDERR "*** Error running pre-receive hook (allowing push to proceed):\n$error"; } }; die "$fail_msg\n" if $fail_msg; } sub check_input { my ( $self, $input ) = @_; my @lines = split( "\n", $input ); my ( @results, $tidyall ); foreach my $line (@lines) { chomp($line); my ( $base, $commit, $ref ) = split( /\s+/, $line ); # Create tidyall using configuration found in first commit # $tidyall ||= $self->create_tidyall($commit); my @files = $self->get_changed_files( $base, $commit ); foreach my $file (@files) { my $contents = $self->get_file_contents( $file, $commit ); if ( $contents =~ /\S/ && $contents =~ /\n/ ) { push( @results, $tidyall->process_source( $contents, $file ) ); } } } my $fail_msg; if ( my @error_results = grep { $_->error } @results ) { unless ( $self->check_repeated_push($input) ) { my $error_count = scalar(@error_results); $fail_msg = sprintf( '%d file%s did not pass tidyall check', $error_count, $error_count > 1 ? 's' : q{} ); } } return $fail_msg; } sub create_tidyall { my ( $self, $commit ) = @_; my $temp_dir = tempdir_simple(); my @conf_names = $self->conf_name ? ( $self->conf_name ) : Code::TidyAll->default_conf_names; my ($conf_file) = grep { $self->get_file_contents( $_, $commit ) } @conf_names or die sprintf( 'could not find conf file %s', join( ' or ', @conf_names ) ); foreach my $rel_file ( $conf_file, @{ $self->extra_conf_files } ) { my $contents = $self->get_file_contents( $rel_file, $commit ) or die sprintf( q{could not find file '%s' in repo root}, $rel_file ); $temp_dir->child($rel_file)->spew($contents); } my $tidyall = $self->tidyall_class->new_from_conf_file( "$temp_dir/" . $conf_file, mode => 'commit', quiet => 1, %{ $self->tidyall_options }, no_cache => 1, no_backups => 1, check_only => 1, ); return $tidyall; } sub get_changed_files { my ( $self, $base, $commit ) = @_; my $output = capturex( $self->git_path, 'diff', '--numstat', '--name-only', "$base..$commit" ); my @files = grep {/\S/} split( "\n", $output ); return @files; } sub get_file_contents { my ( $self, $file, $commit ) = @_; my ( $contents, $error ) = capture { system( $self->git_path, 'show', "$commit:$file" ) }; return $contents; } sub check_repeated_push { my ( $self, $input ) = @_; my $allow = $self->allow_repeated_push; return 0 unless defined $allow; my $cwd = path($0)->realpath->parent; my $last_push_file = $cwd->child('.prereceive_lastpush'); if ( -w $cwd || -w $last_push_file ) { my $push_sig = sha1_hex($input); if ( -f $last_push_file ) { my ( $last_push_sig, $count ) = split( /\s+/, $last_push_file->slurp ); if ( $last_push_sig eq $push_sig ) { ++$count; print STDERR "*** Identical push seen $count times\n"; if ( $count >= $allow ) { print STDERR "*** Allowing push to proceed despite errors\n"; unlink($last_push_file); return 1; } $last_push_file->spew( join( q{ }, $push_sig, $count ) ); return 0; } } $last_push_file->spew( join( q{ }, $push_sig, 1 ) ); } return 0; } 1; # ABSTRACT: Git pre-receive hook that requires files to be tidyall'd __END__ =pod =encoding UTF-8 =head1 NAME Code::TidyAll::Git::Prereceive - Git pre-receive hook that requires files to be tidyall'd =head1 VERSION version 0.84 =head1 SYNOPSIS In .git/hooks/pre-receive: #!/usr/bin/perl use Code::TidyAll::Git::Prereceive; use strict; use warnings; Code::TidyAll::Git::Prereceive->check(); # or my $input = do { local $/; }; # Do other things with $input here my $hook = Code::TidyAll::Git::Prereceive->new(); if (my $error = $hook->check_input($input)) { die $error; } =head1 DESCRIPTION This module implements a L that checks if all pushed files are tidied and valid according to L, and rejects the push if not. This is typically used to validate pushes from multiple developers to a shared repo, possibly on a remote server. See also L, which operates locally. =head1 METHODS This class provides the following methods: =head2 Code::TidyAll::Git::Prereceive->check(%params) This method reads commit info from standard input, then checks that all files being added or modified in this push are tidied and valid according to L. If not, then the entire push is rejected and the reason(s) are output to the client. e.g. % git push Counting objects: 9, done. ... remote: [checked] lib/CHI/Util.pm remote: Code before strictures are enabled on line 13 [TestingAndDebugging::RequireUseStrict] remote: remote: 1 file did not pass tidyall check To ... ! [remote rejected] master -> master (pre-receive hook declined) The configuration file (C or C<.tidyallrc>) must be checked into git in the repo root directory, i.e. next to the .git directory. In an emergency the hook can be bypassed by pushing the exact same set of commits 3 consecutive times (configurable via L): % git push ... remote: 1 file did not pass tidyall check % git push ... *** Identical push seen 2 times remote: 1 file did not pass tidyall check % git push ... *** Identical push seen 3 times *** Allowing push to proceed despite errors Or you can disable the hook in the repo being pushed to, e.g. by renaming .git/hooks/pre-receive. If an unexpected runtime error occurs, it is reported but by default the commit will be allowed through (see L). Passes mode = "commit" by default; see L. Key/value parameters: =over 4 =item * allow_repeated_push Number of times a push must be repeated exactly after which it will be let through regardless of errors. Defaults to 3. Set to 0 or C to disable this feature. =item * conf_name Conf file name to search for instead of the defaults. =item * extra_conf_files An arrayref of extra configuration files referred to from the main configuration file, e.g. extra_conf_files => ['perlcriticrc', 'perltidyrc'] These files will be pulled out of the repo alongside the main configuration file. If you don't list them here then you'll get errors like 'cannot find perlcriticrc' when the hook runs. =item * git_path Path to git to use in commands, e.g. '/usr/bin/git' or '/usr/local/bin/git'. By default, just uses 'git', which will search the user's PATH. =item * reject_on_error Whether C should reject the commit when an unexpected runtime error occurs. By default, the error will be reported but the commit will be allowed. =item * tidyall_class Subclass to use instead of L =item * tidyall_options Hashref of options to pass to the L constructor. You can use this to override the default options mode => 'commit', quiet => 1, or pass additional options. =back =head2 Code::TidyAll::Git::Prereceive->new(%params) This takes the same parameters documented as documented in C above and returns a new object which you can then call C on. =head2 $prereceive->check_input($input) Runs a check on I<$input>, the text block of lines that came from standard input. You can call this manually before or after you do other processing on the input. Returns an error string if there was a problem or undef if there were no problems. =head1 KNOWN BUGS This hook will ignore any files with only a single line of content (no newlines), as an imperfect way of filtering out symlinks. =head1 SUPPORT Bugs may be submitted at L. =head1 SOURCE The source code repository for Code-TidyAll can be found at L. =head1 AUTHORS =over 4 =item * Jonathan Swartz =item * Dave Rolsky =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011 - 2023 by Jonathan Swartz. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. The full text of the license can be found in the F file included with this distribution. =cut