d598c1f9e9caf34c58a02b57b1105ac7457a0829
[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->response->content_type('text/css');
26     $c->stash(template => 'static/css/core.css');
27 }
28
29 sub base : Chained('/root') PathPart('') CaptureArgs(0) {
30   my($self, $c) = @_;
31
32   my $git_version = `git --version`;
33   chomp($git_version);
34   $c->stash(
35     git_version => $git_version,
36     version     => $Gitalist::VERSION,
37
38     time_since => sub {
39       return 'never' unless $_[0];
40       return age_string(time - $_[0]->epoch);
41     },
42     short_cmt => sub {
43       my $cmt = shift;
44       my($line) = split /\n/, $cmt;
45       $line =~ s/^(.{70,80}\b).*/$1 \x{2026}/ if defined $line;
46       return $line;
47     },
48     abridged_description => sub {
49         join(' ', grep { defined } (split / /, shift)[0..10]);
50     },
51     uri_for_gravatar => sub {
52         my $email = shift;
53         my $size = shift;
54         my $uri = 'http://www.gravatar.com/avatar/' . md5_hex($email);
55         $uri .= "?s=$size" if $size;
56         return $uri;
57     },
58   );
59 }
60
61 sub search : Chained('base') Args(0) {}
62
63 =head2 search_help
64
65 Provides some help for the search form.
66
67 =cut
68
69 sub search_help : Chained('base') Args(0) {}
70
71 sub end : ActionClass('RenderView') {}
72
73 sub error_404 : Action {
74     my ($self, $c) = @_;
75     $c->response->status(404);
76     $c->response->body('Page not found');
77 }
78
79 __PACKAGE__->meta->make_immutable;
80
81 __END__
82
83 =head1 NAME
84
85 Gitalist::Controller::Root - Root controller for the application
86
87 =head1 DESCRIPTION
88
89 This controller handles all of the root level paths for the application
90
91 =head1 METHODS
92
93 =head2 root
94
95 Root of chained actions
96
97 =head2 base
98
99 Populate the header and footer. Perhaps not the best location.
100
101 =head2 index
102
103 Provides the repository listing.
104
105 =head2 end
106
107 Attempt to render a view, if needed.
108
109 =head2 error_404
110
111 =head1 AUTHORS
112
113 See L<Gitalist> for authors.
114
115 =head1 LICENSE
116
117 See L<Gitalist> for the license.
118
119 =cut