2917616892c1c37419144ae04e761b44747d283e
[catagits/Gitalist.git] / lib / Gitalist / Controller / Fragment / Ref.pm
1 package Gitalist::Controller::Fragment::Ref;
2 use Moose;
3 use namespace::autoclean;
4
5 BEGIN { extends 'Gitalist::Controller' }
6 with qw/
7     Gitalist::URIStructure::Ref
8     Gitalist::URIStructure::Fragment::WithLog
9 /;
10
11 use File::Type::WebImages ();
12
13 sub base : Chained('/fragment/repository/find') PathPart('') CaptureArgs(0) {}
14
15 sub _diff {
16     my ($self, $c) = @_;
17     my $commit = $c->stash->{Commit};
18     my %filename = $c->stash->{filename} ? (filename => $c->stash->{filename}) : ();
19     my($tree, $patch) = $c->stash->{Repository}->diff(
20         commit => $commit,
21         parent => $c->stash->{parent},
22         patch  => 1,
23         %filename,
24     );
25     $c->stash(
26       diff_tree => $tree,
27       diff      => $patch,
28       # XXX Hack hack hack, see View::SyntaxHighlight
29       blobs     => [map $_->{diff}, @$patch],
30       language  => 'Diff',
31       %filename,
32     );
33 }
34
35 after diff_fancy => sub {
36     my ($self, $c) = @_;
37     $self->_diff($c);
38     $c->forward('View::SyntaxHighlight');
39 };
40
41 after diff_plain => sub {
42     my ($self, $c) = @_;
43     $self->_diff($c);
44 };
45
46 after tree => sub {
47     my ( $self, $c ) = @_;
48     my $repository = $c->stash->{Repository};
49     my $commit  = $c->stash->{Commit};
50     my $tree    = $c->stash->{filename}
51       ? $repository->get_object($repository->hash_by_path($commit->sha1, $c->stash->{filename}))
52       : $repository->get_object($commit->tree_sha1)
53     ;
54     $c->stash(
55         tree      => $tree,
56         tree_list => [$repository->list_tree($tree->sha1)],
57     );
58 };
59
60 after blame => sub {
61     my($self, $c) = @_;
62
63     my $repository = $c->stash->{Repository};
64                                                       # WTF?
65     my $blame = $c->stash->{Commit}->blame($c->stash->{filename}, $c->stash->{Commit}->sha1);
66     $c->stash(
67         blame    => $blame,
68         # XXX Hack hack hack, see View::SyntaxHighlight
69         language => ($c->stash->{filename} =~ /\.p[lm]$/i ? 'Perl' : ''),
70         blob     => join("\n", map $_->{line}, @$blame),
71     );
72
73     $c->forward('View::SyntaxHighlight')
74         unless $c->stash->{no_wrapper};
75 };
76
77 =head2 blob
78
79 The blob action i.e the contents of a file.
80
81 =cut
82
83 after blob => sub {
84     my ( $self, $c ) = @_;
85     $c->stash(
86         # XXX Hack hack hack, see View::SyntaxHighlight
87         language  => ($c->stash->{filename} =~ /\.p[lm]$/i ? 'Perl' : ''),
88         is_image  => File::Type::WebImages::mime_type($c->stash->{blob}),
89         is_binary => -B $c->stash->{blob},
90     );
91
92     $c->forward('View::SyntaxHighlight')
93         unless $c->stash->{no_wrapper};
94 };
95
96 after history => sub {
97     my ($self, $c) = @_;
98     my $repository  = $c->stash->{Repository};
99     my $filename    = $c->stash->{filename};
100
101     my %logargs = (
102        sha1   => $c->stash->{Commit}->sha1,
103        count  => 25, #Gitalist->config->{paging}{log} || 25,
104        ($filename ? (file => $filename) : ())
105     );
106
107     my $file = $repository->get_object(
108         $repository->hash_by_path(
109             $repository->head_hash,
110             $filename
111         )
112     );
113
114     my $page = $c->req->param('pg') || 0;
115     $logargs{skip} = $c->req->param('pg') * $logargs{count}
116         if $c->req->param('pg');
117
118     $c->stash(
119        log_lines => [$repository->list_revs(%logargs)],
120        refs      => $repository->references,
121        filename  => $filename,
122        filetype  => $file->type,
123     );
124 };
125
126 __PACKAGE__->meta->make_immutable;