Make paging work for history
[catagits/Gitalist.git] / lib / Gitalist / Controller / Fragment / Ref.pm
CommitLineData
2980657b 1package Gitalist::Controller::Fragment::Ref;
0da7966e 2use Moose;
3use namespace::autoclean;
4
b6ec181b 5BEGIN { extends 'Gitalist::Controller' }
b9423b8e 6with qw/
7 Gitalist::URIStructure::Ref
8 Gitalist::URIStructure::Fragment::WithLog
9/;
0da7966e 10
e172b6b8 11use File::Type::WebImages ();
9912b062 12use JSON::XS qw(encode_json);
e172b6b8 13
0da7966e 14sub base : Chained('/fragment/repository/find') PathPart('') CaptureArgs(0) {}
15
7998de12 16sub _diff {
493327c8 17 my ($self, $c) = @_;
586572a7 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,
493327c8 26 );
27 $c->stash(
28 diff_tree => $tree,
29 diff => $patch,
30 # XXX Hack hack hack, see View::SyntaxHighlight
31 blobs => [map $_->{diff}, @$patch],
5ac7ddcc 32 %diff_args,
493327c8 33 );
7998de12 34}
493327c8 35
d361d955 36after diff_fancy => sub {
37 my ($self, $c) = @_;
7998de12 38 $self->_diff($c);
0fb64eae 39 $c->forward('Model::ContentMangler');
d361d955 40};
41
42after diff_plain => sub {
43 my ($self, $c) = @_;
7998de12 44 $self->_diff($c);
493327c8 45};
46
1b33f63b 47after tree => sub {
b6ec181b 48 my ( $self, $c ) = @_;
1b33f63b 49 my $repository = $c->stash->{Repository};
50 my $commit = $c->stash->{Commit};
220ff256 51 my $tree_obj = $c->stash->{filename}
b9708061 52 ? $commit->sha_by_path($c->stash->{filename})
220ff256 53 : $commit->tree->[0]
1b33f63b 54 ;
55 $c->stash(
220ff256 56 tree => $tree_obj,
57 tree_list => $tree_obj->tree,
1b33f63b 58 );
59};
60
571348f6 61after blame => sub {
b6ec181b 62 my($self, $c) = @_;
571348f6 63
64 my $repository = $c->stash->{Repository};
5111a8ab 65
b6ec181b 66 my $blame = $c->stash->{Commit}->blame($c->stash->{filename}, $c->stash->{Commit}->sha1);
571348f6 67 $c->stash(
68 blame => $blame,
571348f6 69 blob => join("\n", map $_->{line}, @$blame),
70 );
71
1064e5b8 72 $c->forward('Model::ContentMangler');
571348f6 73};
74
85aed493 75=head2 blob
76
77The blob action i.e the contents of a file.
78
79=cut
80
81after blob => sub {
b6ec181b 82 my ( $self, $c ) = @_;
85aed493 83 $c->stash(
e172b6b8 84 is_image => File::Type::WebImages::mime_type($c->stash->{blob}),
53a9d6de 85 is_binary => Gitalist::Utils::is_binary($c->stash->{blob}),
85aed493 86 );
1064e5b8 87 $c->forward('Model::ContentMangler');
85aed493 88};
89
18fdf3d0 90after history => sub {
91 my ($self, $c) = @_;
92 my $repository = $c->stash->{Repository};
93 my $filename = $c->stash->{filename};
94
95 my %logargs = (
96 sha1 => $c->stash->{Commit}->sha1,
5111a8ab 97 count => Gitalist->config->{paging}{log} || 25,
18fdf3d0 98 ($filename ? (file => $filename) : ())
99 );
100
9aed017f 101 my $commit = $repository->get_object('HEAD');
b9708061 102 my $file = $commit->sha_by_path($filename);
18fdf3d0 103
104 my $page = $c->req->param('pg') || 0;
105 $logargs{skip} = $c->req->param('pg') * $logargs{count}
106 if $c->req->param('pg');
107
108 $c->stash(
109 log_lines => [$repository->list_revs(%logargs)],
110 refs => $repository->references,
111 filename => $filename,
112 filetype => $file->type,
ff90329f 113 page => $page,
18fdf3d0 114 );
115};
116
9912b062 117after file_commit_info => sub {
118 my ($self, $c) = @_;
119
120 my $repository = $c->stash->{Repository};
121
122 my($commit) = $repository->list_revs(
123 sha1 => $c->stash->{Commit}->sha1,
124 count => 1,
125 file => $c->stash->{filename},
126 );
127
e404e9a6 128 my $json_obj = !$commit
129 ? { }
130 : {
faafb966 131 sha1 => $commit->sha1,
132 comment => $c->stash->{short_cmt}->($commit->comment),
133 age => $c->stash->{time_since}->($commit->authored_time),
134 };
9912b062 135
136 $c->response->content_type('application/json');
137 # XXX Make use of the json branch
138 $c->response->body( encode_json $json_obj );
139};
140
0da7966e 141__PACKAGE__->meta->make_immutable;