Call ->diff on the Commit instance.
[catagits/Gitalist.git] / lib / Gitalist / Controller / Ref.pm
1 package Gitalist::Controller::Ref;
2
3 use Moose;
4 use namespace::autoclean;
5
6 BEGIN { extends 'Gitalist::Controller' }
7 with 'Gitalist::URIStructure::Ref';
8
9 use File::Type;
10 use File::Type::WebImages ();
11
12 sub base : Chained('/repository/find') PathPart('') CaptureArgs(0) {}
13
14 after commit => sub {
15   my($self, $c) = @_;
16
17   $c->stash->{diff_tree} = ( $c->stash->{Commit}->diff )[0];
18 };
19
20 sub raw : Chained('find') Does('FilenameArgs') Args() {
21     my ($self, $c) = @_;
22     $c->forward('find_blob');
23
24     if(!Gitalist::Utils::is_binary($c->stash->{blob})) {
25         $c->response->content_type('text/plain; charset=utf-8');
26     } else {
27         my $ft = File::Type->new();
28         $c->response->content_type(
29             File::Type::WebImages::mime_type($c->stash->{blob})
30          || File::Type->new->mime_type($c->stash->{blob})
31         );
32     }
33
34     $c->response->body(delete $c->stash->{blob});
35 }
36
37 =head2 snapshot
38
39 Provides a snapshot of a given commit.
40
41 =cut
42
43 sub snapshot : Chained('find') PathPart('snapshot') Args() {
44     my ($self, $c, $format) = @_;
45     $format ||= 'tgz';
46     my @snap = $c->stash->{Repository}->snapshot(
47         sha1 => $c->stash->{Commit}->sha1,
48         format => $format
49     );
50     $c->response->status(200);
51     $c->response->headers->header( 'Content-Disposition' =>
52                                        "attachment; filename=$snap[0]");
53     $c->response->body($snap[1]);
54 }
55
56 =head2 patch
57
58 A raw patch for a given commit.
59
60 =cut
61
62 sub patch : Chained('find') Args(0) {
63     my ($self, $c) = @_;
64     $c->detach('patches', [1]);
65 }
66
67 =head2 patches
68
69 The patcheset for a given commit ???
70
71 =cut
72
73 sub patches : Chained('find') Args(1) {
74     my ($self, $c, $count) = @_;
75     $count ||= Gitalist->config->{patches}{max};
76     my $commit = $c->stash->{Commit};
77     my $parent = $c->req->param('hp') || undef; # FIXME
78     my $patch = $commit->get_patch( $parent, $count );
79     $c->response->body($patch);
80     $c->response->content_type('text/plain');
81     $c->response->status(200);
82 }
83
84 __PACKAGE__->meta->make_immutable;