Enabled content type css for css files served by template, previous implementation...
[catagits/Gitalist.git] / lib / Gitalist / Controller / Root.pm
1 package Gitalist::Controller::Root;
2
3 use Moose;
4 use Moose::Autobox;
5 use Digest::MD5 qw(md5_hex);
6 use Gitalist::Utils qw/ age_string /;
7
8 use namespace::autoclean;
9
10 BEGIN { extends 'Gitalist::Controller' }
11
12 __PACKAGE__->config(namespace => '');
13
14 sub root : Chained('/') PathPart('') CaptureArgs(0) {}
15
16 sub index : Chained('base') PathPart('') Args(0) {
17     my ( $self, $c ) = @_;
18     $c->stash( search_text => $c->req->param('s') || '' ) # FIXME - XSS?
19 }
20
21 # XXX Fragile much?
22 sub css : Chained('/root') PathPart('core.css') Args(0) {
23     my ( $self, $c ) = @_;
24
25     $c->stash( template => 'static/css/core.css', content_type => 'text/css' );
26 }
27
28 sub base : Chained('/root') PathPart('') CaptureArgs(0) {
29   my($self, $c) = @_;
30
31   my $git_version = `git --version`;
32   chomp($git_version);
33   $c->stash(
34     git_version => $git_version,
35     version     => $Gitalist::VERSION,
36
37     time_since => sub {
38       return 'never' unless $_[0];
39       return age_string(time - $_[0]->epoch);
40     },
41     short_cmt => sub {
42       my $cmt = shift;
43       my($line) = split /\n/, $cmt;
44       $line =~ s/^(.{70,80}\b).*/$1 \x{2026}/ if defined $line;
45       return $line;
46     },
47     abridged_description => sub {
48         join(' ', grep { defined } (split / /, shift)[0..10]);
49     },
50     uri_for_gravatar => sub {
51         my $email = shift;
52         my $size = shift;
53         my $uri = 'http://www.gravatar.com/avatar/' . md5_hex($email);
54         $uri .= "?s=$size" if $size;
55         return $uri;
56     },
57   );
58 }
59
60 sub search : Chained('base') Args(0) {}
61
62 =head2 search_help
63
64 Provides some help for the search form.
65
66 =cut
67
68 sub search_help : Chained('base') Args(0) {}
69
70 sub end : ActionClass('Serialize') {
71     my ($self, $c) = @_;
72     # Give repository views the current HEAD.
73     if ($c->stash->{Repository}) {
74         $c->stash->{HEAD} = $c->stash->{Repository}->head_hash;
75     }
76     if ($c->stash->{data} && blessed $c->stash->{data}) {
77         $c->stash->{rest} = $c->stash->{data}->pack;
78     }
79 }
80
81 sub error_404 : Action {
82     my ($self, $c) = @_;
83     $c->response->status(404);
84     $c->response->body('Page not found');
85 }
86
87 __PACKAGE__->config(
88     default => 'text/html',
89     map => {
90         'application/json' => [qw/ JSON /],
91         map { $_ => [qw/ View Default /] }
92              qw( text/css text/html text/plain
93                  application/atom+xml application/rss+xml application/rss )
94     },
95     content_type_stash_key => 'content_type',
96 );
97
98 __PACKAGE__->meta->make_immutable;
99
100 __END__
101
102 =head1 NAME
103
104 Gitalist::Controller::Root - Root controller for the application
105
106 =head1 DESCRIPTION
107
108 This controller handles all of the root level paths for the application
109
110 =head1 METHODS
111
112 =head2 root
113
114 Root of chained actions
115
116 =head2 base
117
118 Populate the header and footer. Perhaps not the best location.
119
120 =head2 index
121
122 Provides the repository listing.
123
124 =head2 end
125
126 Attempt to render a view, if needed.
127
128 =head2 error_404
129
130 =head1 AUTHORS
131
132 See L<Gitalist> for authors.
133
134 =head1 LICENSE
135
136 See L<Gitalist> for the license.
137
138 =cut