9516b7df4309bfd0c2b49d0cec7e614d5470ebfd
[catagits/Gitalist.git] / lib / Gitalist / URIStructure / Ref.pm
1 package Gitalist::URIStructure::Ref;
2 use MooseX::MethodAttributes::Role;
3 use Moose::Autobox;
4 use namespace::autoclean;
5
6 requires 'base';
7
8 with qw/
9     Gitalist::URIStructure::WithLog
10 /;
11
12 after 'base' => sub {
13     my ($self, $c) = @_;
14     confess("No repository in the stash")
15         unless $c->stash->{Repository};
16 };
17
18 sub find : Chained('base') PathPart('') CaptureArgs(1) {
19     my ($self, $c, $sha1part) = @_;
20     # FIXME - Should not be here!
21     $c->stash->{Commit} = $c->stash->{Repository}->get_object_or_head($sha1part)
22         or $c->detach('/error404', "Couldn't find a object for '$sha1part' in XXXX!");
23 }
24
25 sub diff : Chained('find') CaptureArgs(0) {}
26
27 sub diff_fancy : Chained('diff') PathPart('') Args() {
28     my($self, $c, $comparison, @rest) = @_;
29     # FIXME - This ain't pretty
30     $c->stash->{parent}   = $comparison
31       if $comparison;
32     $c->stash->{filename} = $rest[0]
33       if @rest;
34 }
35
36 sub diff_plain : Chained('diff') PathPart('plain') Args(0) {
37     my($self, $c) = @_;
38     $c->stash->{no_wrapper} = 1;
39 }
40
41 sub commit : Chained('find') PathPart('commit') Args(0) {}
42
43 sub tree : Chained('find') Does('FilenameArgs') Args() {}
44
45 sub find_blob : Action {
46     my ($self, $c) = @_;
47     # FIXME - Eugh!
48     my $h  = $c->stash->{Repository}->hash_by_path($c->stash->{Commit}->sha1, $c->stash->{filename})
49            || die "No file or sha1 provided.";
50     $c->stash(blob => $c->stash->{Repository}->get_object($h)->content);
51 }
52
53 sub blob : Chained('find') Does('FilenameArgs') Args() {
54     my ($self, $c) = @_;
55     $c->forward('find_blob');
56 }
57
58 sub blame : Chained('find') Does('FilenameArgs') Args() {}
59
60 sub history : Chained('find') Does('FilenameArgs') Args() {}
61
62 1;