Refactor blob, make blob_plain work, move rss/atom and snapshot.
[catagits/Gitalist.git] / lib / Gitalist / Controller / Commit.pm
CommitLineData
f6a72048 1package Gitalist::Controller::Commit;
2
3use Moose;
f6a72048 4use namespace::autoclean;
5
b6ec181b 6BEGIN { extends 'Gitalist::Controller' }
0da7966e 7with 'Gitalist::URIStructure::Commit';
f6a72048 8
9sub base : Chained('/repository/find') PathPart('') CaptureArgs(0) {}
10
b132dce6 11sub blob_plain : Chained('find_blob') Does('FilenameArgs') Args() {
12 my ($self, $c) = @_;
13
14 $c->response->content_type('text/plain; charset=utf-8');
15 $c->response->body(delete $c->stash->{blob});
16}
17
18=head2 snapshot
19
20Provides a snapshot of a given commit.
21
22=cut
23
24sub snapshot : Chained('base') Args() {
25 my ($self, $c, $format) = @_;
26 $format ||= 'tgz';
27 my @snap = $c->stash->{Repository}->snapshot(
28 sha1 => $c->stash->{Commit}->sha1,
29 format => $format
30 );
31 $c->response->status(200);
32 $c->response->headers->header( 'Content-Disposition' =>
33 "attachment; filename=$snap[0]");
34 $c->response->body($snap[1]);
35}
36
f6a72048 37__PACKAGE__->meta->make_immutable;