fixing inline pod documentation for the debian package. (missing whatis entry)
[catagits/Gitalist.git] / lib / Gitalist / Controller / Ref.pm
CommitLineData
2980657b 1package Gitalist::Controller::Ref;
f6a72048 2
3use Moose;
f6a72048 4use namespace::autoclean;
5
b6ec181b 6BEGIN { extends 'Gitalist::Controller' }
2980657b 7with 'Gitalist::URIStructure::Ref';
f6a72048 8
e172b6b8 9use File::Type;
10use File::Type::WebImages ();
11
f6a72048 12sub base : Chained('/repository/find') PathPart('') CaptureArgs(0) {}
13
ae36e02c 14after commit => sub {
15 my($self, $c) = @_;
16
586572a7 17 $c->stash->{diff_tree} = ( $c->stash->{Commit}->diff )[0];
ae36e02c 18};
19
ca06a177 20sub raw : Chained('find') Does('FilenameArgs') Args() {
b132dce6 21 my ($self, $c) = @_;
ca06a177 22 $c->forward('find_blob');
b132dce6 23
53a9d6de 24 if(!Gitalist::Utils::is_binary($c->stash->{blob})) {
6ee49ff4 25 $c->response->content_type('text/plain; charset=utf-8');
e172b6b8 26 } else {
6ee49ff4 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 );
e172b6b8 32 }
33
606ffc33 34 utf8::decode($c->stash->{blob});
b132dce6 35 $c->response->body(delete $c->stash->{blob});
36}
37
2298d93f 38=encoding UTF-8
39
40=head1 NAME
41
42Gitalist::Controller::Ref - Controller::Ref module for Gitalist
43
b132dce6 44=head2 snapshot
45
46Provides a snapshot of a given commit.
47
48=cut
49
d423d020 50sub snapshot : Chained('find') PathPart('snapshot') Args() {
b132dce6 51 my ($self, $c, $format) = @_;
52 $format ||= 'tgz';
53 my @snap = $c->stash->{Repository}->snapshot(
54 sha1 => $c->stash->{Commit}->sha1,
55 format => $format
56 );
57 $c->response->status(200);
58 $c->response->headers->header( 'Content-Disposition' =>
59 "attachment; filename=$snap[0]");
60 $c->response->body($snap[1]);
61}
62
8fd20a28 63=head2 patch
64
65A raw patch for a given commit.
66
67=cut
68
69sub patch : Chained('find') Args(0) {
70 my ($self, $c) = @_;
71 $c->detach('patches', [1]);
72}
73
74=head2 patches
75
76The patcheset for a given commit ???
77
78=cut
79
80sub patches : Chained('find') Args(1) {
81 my ($self, $c, $count) = @_;
82 $count ||= Gitalist->config->{patches}{max};
83 my $commit = $c->stash->{Commit};
84 my $parent = $c->req->param('hp') || undef; # FIXME
85 my $patch = $commit->get_patch( $parent, $count );
86 $c->response->body($patch);
87 $c->response->content_type('text/plain');
88 $c->response->status(200);
89}
90
f6a72048 91__PACKAGE__->meta->make_immutable;