fixing inline pod documentation for the debian package. (missing whatis entry)
[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 use JSON::XS qw(encode_json);
13
14 sub base : Chained('/fragment/repository/find') PathPart('') CaptureArgs(0) {}
15
16 sub _diff {
17     my ($self, $c) = @_;
18     my %diff_args = ( patch => 1 );
19     foreach my $arg qw/filename parent/ {
20         if (defined $c->stash->{$arg}) {
21             $diff_args{$arg} = $c->stash->{$arg};
22         };
23     };
24     my ($tree, $patch) = $c->stash->{Commit}->diff(
25         %diff_args,
26     );
27     $c->stash(
28       diff_tree => $tree,
29       diff      => $patch,
30       # XXX Hack hack hack, see View::SyntaxHighlight
31       blobs     => [map $_->{diff}, @$patch],
32       %diff_args,
33     );
34 }
35
36 after diff_fancy => sub {
37     my ($self, $c) = @_;
38     $self->_diff($c);
39     $c->forward('Model::ContentMangler');
40 };
41
42 after diff_plain => sub {
43     my ($self, $c) = @_;
44     $self->_diff($c);
45 };
46
47 after tree => sub {
48     my ( $self, $c ) = @_;
49     my $repository = $c->stash->{Repository};
50     my $commit  = $c->stash->{Commit};
51     my $tree_obj    = $c->stash->{filename}
52       ? $commit->sha_by_path($c->stash->{filename})
53       : $commit->tree->[0]
54     ;
55     $c->stash(
56         tree      => $tree_obj,
57         tree_list => $tree_obj->tree,
58     );
59 };
60
61 after blame => sub {
62     my($self, $c) = @_;
63
64     my $repository = $c->stash->{Repository};
65
66     my $blame = $c->stash->{Commit}->blame($c->stash->{filename}, $c->stash->{Commit}->sha1);
67     $c->stash(
68         blame    => $blame,
69         blob     => join("\n", map $_->{line}, @$blame),
70     );
71
72     $c->forward('Model::ContentMangler');
73 };
74
75 =encoding UTF-8
76
77 =head1 NAME
78
79 Gitalist::Controller::Fragment::Ref - Fragment::Ref module for Gitalist::Controller
80
81 =head2 blob
82
83 The blob action i.e the contents of a file.
84
85 =cut
86
87 after blob => sub {
88     my ( $self, $c ) = @_;
89     $c->stash(
90         is_image  => File::Type::WebImages::mime_type($c->stash->{blob}),
91         is_binary => Gitalist::Utils::is_binary($c->stash->{blob}),
92     );
93     $c->forward('Model::ContentMangler');
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  => Gitalist->config->{paging}{log} || 25,
104        ($filename ? (file => $filename) : ())
105     );
106
107     my $commit = $repository->get_object('HEAD');
108     my $file = $commit->sha_by_path($filename);
109
110     my $page = $c->req->param('pg') || 0;
111     $logargs{skip} = $c->req->param('pg') * $logargs{count}
112         if $c->req->param('pg');
113
114     $c->stash(
115        log_lines => [$repository->list_revs(%logargs)],
116        refs      => $repository->references,
117        filename  => $filename,
118        filetype  => $file->type,
119        page      => $page,
120     );
121 };
122
123 after file_commit_info => sub {
124     my ($self, $c) = @_;
125
126     my $repository  = $c->stash->{Repository};
127
128     my($commit) = $repository->list_revs(
129        sha1   => $c->stash->{Commit}->sha1,
130        count  => 1,
131        file   => $c->stash->{filename},
132     );
133
134     my $json_obj = !$commit
135                  ? { }
136                  : {
137                      sha1    => $commit->sha1,
138                      comment => $c->stash->{short_cmt}->($commit->comment),
139                      age     => $c->stash->{time_since}->($commit->authored_time),
140                  };
141
142     $c->response->content_type('application/json');
143     # XXX Make use of the json branch
144     $c->response->body( encode_json $json_obj );
145 };
146
147 __PACKAGE__->meta->make_immutable;