package SVN::Web::Revision; use strict; use warnings; use base 'SVN::Web::action'; use File::Temp; use SVN::Core; use SVN::Ra; use SVN::Web::X; use SVN::Web::DiffParser; our $VERSION = 0.53; =head1 NAME SVN::Web::Revision - SVN::Web action to view a repository revision =head1 SYNOPSIS In F actions: ... revision: class: SVN::Web::Revision opts: max_diff_size: 200_000 show_diff: 1 # or 0 ... =head1 DESCRIPTION Shows information about a specific revision in a Subversion repository. =head1 CONFIGURATION The following configuration options may be specified in F. =over =item max_diff_size If showing the diff (see C), this determines the maximum size of the diff that will be shown. If the size of the generated diff (in bytes) is larger than this figure then it is not shown. Defaults to 200,000 bytes. =item show_diff Boolean indicating whether or not a diff of every file that was changed in the revision should be shown. Defaults to 1. =back =head1 OPTIONS =over 8 =item rev The revision to show. If not provided then use the repository's youngest revision. =back =head1 TEMPLATE VARIABLES =over 8 =item context Always C. =item rev The revision that is being shown. =item youngest_rev The repository's youngest revision. This is useful when constructing C and C links. =item date The date on which the revision was committed, formatted according to L. =item author The revision's author. =item msg The log message associated with this revision. =item paths A hash of hash refs. Each key is a path name. The value is a further hash ref with the following keys. =over 8 =item isdir A boolean value, true if the given path is a directory. =item diff A L object representing the diff. This may be undef, if the generated diff was larger than C or if C is false. =item diff_size The size of the generated diff (before parsing). =item max_diff_size The configured maximum diff size. =item action A single letter indicating the action that carried out on the path. A file was either added C, modified C, replaced C, or deleted C. =item copyfrom If the file was copied from another file then this is the path of the source of the copy. =item copyfromrev If the file was copied from another file then this is the revision of the file that it was copied form. =back =back =head1 EXCEPTIONS =over 4 =item (revision %1 does not exist) The given revision does not exist in the repository. =back =cut my %default_opts = ( max_diff_size => 200_000, show_diff => 1, ); sub _log { my($self, $paths, $rev, $author, $date, $msg, $pool) = @_; my $data = { rev => $rev, author => $author, date => $self->format_svn_timestamp($date), msg => $msg, }; $data->{paths} = { map { $_ => { action => $paths->{$_}->action(), copyfrom => $paths->{$_}->copyfrom_path(), copyfromrev => $paths->{$_}->copyfrom_rev(), } } keys %$paths }; return $data; } sub cache_key { my $self = shift; return $self->{cgi}->param('rev') if defined $self->{cgi}->param('rev'); return $self->{repos}{ra}->get_latest_revnum(); } sub run { my $self = shift; $self->{opts} = { %default_opts, %{ $self->{opts} } }; my $ctx = $self->{repos}{client}; my $ra = $self->{repos}{ra}; my $uri = $self->{repos}{uri}; my $yrev = $ra->get_latest_revnum(); my $rev = $self->{cgi}->param('rev'); my $max_diff_size = $self->{opts}{max_diff_size}; $rev = $yrev unless defined $rev; SVN::Web::X->throw( error => '(revision %1 does not exist)', vars => [$rev] ) if $rev > $yrev; $ra->get_log(['/'], $rev, $rev, 1, 1, 1, sub { $self->{REV} = $self->_log(@_) }); $self->_resolve_changed_paths(); my $diff; my $diff_size = 0; if($self->{opts}{show_diff}) { my($out_h, $out_fn) = File::Temp::tempfile(); my($err_h, $err_fn) = File::Temp::tempfile(); $ctx->diff([], $uri, $rev - 1, $uri, $rev, 1, 1, 0, $out_h, $err_h); my $out_c; local $/ = undef; seek($out_h, 0, 0); $out_c = <$out_h>; unlink($out_fn); unlink($err_fn); close($out_h); close($err_h); $diff_size = length($out_c); if($diff_size <= $max_diff_size) { $diff = SVN::Web::DiffParser->new($out_c); } } return { template => 'revision', data => { context => 'revision', rev => $rev, youngest_rev => $yrev, diff => $diff, diff_size => $diff_size, max_diff_size => $max_diff_size, %{ $self->{REV} }, } }; } # Add 'isdir' keys to the paths if appropriate. # # This code used to be in get_log() when it used the repos layer. When # the code was changed to use the ra layer it had to be moved out, as you # can't call ra functions from a get_log() callback. # # XXX Very similar code in Log.pm, needs refactoring sub _resolve_changed_paths { my $self = shift; my $ctx = $self->{repos}{client}; my $ra = $self->{repos}{ra}; my $uri = $self->{repos}{uri}; my $subpool = SVN::Pool->new(); my $data = $self->{REV}; my $node_kind; # Set the 'isdir' key foreach my $path (keys %{ $data->{paths} }) { $subpool->clear(); # Ignore deleted nodes if($data->{paths}{$path}{action} ne 'D') { $ctx->info("$uri$path", $data->{rev}, $data->{rev}, sub { $node_kind = $_[1]->kind() }, 0, $subpool); $data->{paths}{$path}{isdir} = $node_kind == $SVN::Node::dir; } } } 1; =head1 COPYRIGHT Copyright 2003-2004 by Chia-liang Kao C<< >>. Copyright 2005-2007 by Nik Clayton C<< >>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L =cut