Moved header & footer logic into the templates.
[catagits/Gitalist.git] / lib / Gitalist / Controller / Root.pm
CommitLineData
89de6a33 1package Gitalist::Controller::Root;
42fe5d11 2use Moose;
3use namespace::autoclean;
89de6a33 4
42fe5d11 5BEGIN { extends 'Catalyst::Controller' }
89de6a33 6
7#
8# Sets the actions in this controller to be registered with no prefix
9# so they function identically to actions created in MyApp.pm
10#
11__PACKAGE__->config->{namespace} = '';
12
d17ce39c 13use IO::Capture::Stdout;
f796a861 14use Sys::Hostname ();
d17ce39c 15use XML::Atom::Feed;
16use XML::Atom::Entry;
f796a861 17use XML::RSS;
d17ce39c 18
89de6a33 19=head1 NAME
20
21Gitalist::Controller::Root - Root Controller for Gitalist
22
23=head1 DESCRIPTION
24
25[enter your description here]
26
27=head1 METHODS
28
29=cut
30
31=head2 index
32
33=cut
34
1625cd5f 35=head2 run_gitweb
36
f71a83ab 37The C<gitweb> shim. It should now only be explicitly accessible by
38modifying the URL.
1625cd5f 39
40=cut
41
e66db0fb 42sub run_gitweb {
86382b95 43 my ( $self, $c ) = @_;
44
e66db0fb 45 # XXX A slippery slope to be sure.
46 if($c->req->param('a')) {
47 my $capture = IO::Capture::Stdout->new();
48 $capture->start();
49 eval {
50 my $action = gitweb::main($c);
51 $action->();
52 };
53 $capture->stop();
5a2f0948 54
e66db0fb 55 use Data::Dumper;
56 die Dumper($@)
57 if $@;
5a2f0948 58
e66db0fb 59 my $output = join '', $capture->read;
60 $c->stash->{gitweb_output} = $output;
61 $c->stash->{template} = 'gitweb.tt2';
62 }
86382b95 63}
64
832cbc81 65sub _get_object {
b4b4d0fd 66 my($self, $c, $haveh) = @_;
9dc3b9a5 67
c1f608c8 68 my $h = $haveh || $c->req->param('h') || '';
0ee97fec 69 my $f = $c->req->param('f');
8dbe8024 70
1aad4e81 71 my $m = $c->stash->{Project};
72 my $pd = $m->path;
0ee97fec 73
9dc3b9a5 74 # Either use the provided h(ash) parameter, the f(ile) parameter or just use HEAD.
a7cc1ede 75 my $hash = ($h =~ /[^a-f0-9]/ ? $m->head_hash($h) : $h)
76 || ($f && $m->hash_by_path($f))
77 || $m->head_hash
9dc3b9a5 78 # XXX This could definitely use more context.
79 || Carp::croak("Couldn't find a hash for the commit object!");
80
a7cc1ede 81 my $commit = $m->get_object($hash)
82 or Carp::croak("Couldn't find a commit object for '$hash' in '$pd'!");
9dc3b9a5 83
84 return $commit;
85}
86
1625cd5f 87=head2 index
88
89Provides the project listing.
90
91=cut
92
86382b95 93sub index :Path :Args(0) {
7bc165b3 94 my ( $self, $c ) = @_;
95
96 $c->detach($c->req->param('a'))
97 if $c->req->param('a');
98
99 my @list = @{ $c->model()->projects };
100 die 'No projects found in '. $c->model->repo_dir
101 unless @list;
102
103 my $search = $c->req->param('s') || '';
104 if($search) {
105 @list = grep {
106 index($_->name, $search) > -1
107 or ( $_->description !~ /^Unnamed repository/ and index($_->description, $search) > -1 )
108 } @list
109 }
110
111 $c->stash(
112 search_text => $search,
113 projects => \@list,
114 action => 'index',
115 );
04d1d917 116}
117
790ce598 118=head2 summary
119
120A summary of what's happening in the repo.
121
122=cut
123
124sub summary : Local {
125 my ( $self, $c ) = @_;
b47ae2c0 126 my $project = $c->stash->{Project};
3bbb1202 127 $c->detach('error_404') unless $project;
832cbc81 128 my $commit = $self->_get_object($c);
c65cccc2 129 my @heads = @{$project->heads};
06281e11 130 my $maxitems = Gitalist->config->{paging}{summary} || 10;
790ce598 131 $c->stash(
132 commit => $commit,
4111e151 133 log_lines => [$project->list_revs(
134 sha1 => $commit->sha1,
06281e11 135 count => $maxitems,
fde5091f 136 )],
4111e151 137 refs => $project->references,
0969b411 138 heads => [ @heads[0 .. ($#heads < $maxitems ? $#heads : $maxitems)] ],
790ce598 139 action => 'summary',
06281e11 140 );
790ce598 141}
142
143=head2 heads
144
145The current list of heads (aka branches) in the repo.
146
147=cut
148
149sub heads : Local {
150 my ( $self, $c ) = @_;
b47ae2c0 151 my $project = $c->stash->{Project};
790ce598 152 $c->stash(
832cbc81 153 commit => $self->_get_object($c),
c65cccc2 154 heads => $project->heads,
790ce598 155 action => 'heads',
156 );
157}
158
1625cd5f 159=head2 blob
160
161The blob action i.e the contents of a file.
162
163=cut
164
295c9703 165sub blob : Local {
166 my ( $self, $c ) = @_;
8bb7649b 167 my $project = $c->stash->{Project};
c8870bd3 168 my $h = $c->req->param('h')
8bb7649b 169 || $project->hash_by_path($c->req->param('hb'), $c->req->param('f'))
c8870bd3 170 || die "No file or sha1 provided.";
171 my $hb = $c->req->param('hb')
8bb7649b 172 || $project->head_hash
c8870bd3 173 || die "Couldn't discern the corresponding head.";
174
f5da8e7a 175 my $filename = $c->req->param('f') || '';
176
295c9703 177 $c->stash(
77b5d22c 178 blob => $project->get_object($h)->content,
8bb7649b 179 head => $project->get_object($hb),
f5da8e7a 180 filename => $filename,
181 # XXX Hack hack hack, see View::SyntaxHighlight
182 language => ($filename =~ /\.p[lm]$/ ? 'Perl' : ''),
c8870bd3 183 action => 'blob',
295c9703 184 );
7e54e579 185
c8a42dd5 186 $c->forward('View::SyntaxHighlight')
187 unless $c->stash->{no_wrapper};
188}
189
190sub blob_plain : Local {
191 my($self, $c) = @_;
192
193 $c->stash(no_wrapper => 1);
194 $c->response->content_type('text/plain; charset=utf-8');
195
196 $c->forward('blob');
197}
198
199sub blobdiff_plain : Local {
200 my($self, $c) = @_;
201
202 $c->stash(no_wrapper => 1);
203 $c->response->content_type('text/plain; charset=utf-8');
204
205 $c->forward('blobdiff');
206
295c9703 207}
208
6cf4366a 209=head2 blobdiff
210
211Exposes a given diff of a blob.
212
213=cut
214
215sub blobdiff : Local {
216 my ( $self, $c ) = @_;
832cbc81 217 my $commit = $self->_get_object($c, $c->req->param('hb'));
6cf4366a 218 my $filename = $c->req->param('f')
219 || croak("No file specified!");
6cfcd548 220 my($tree, $patch) = $c->stash->{Project}->diff(
ad8884fc 221 commit => $commit,
ad8884fc 222 patch => 1,
c8a42dd5 223 parent => $c->req->param('hpb') || undef,
224 file => $filename,
6cf4366a 225 );
226 $c->stash(
227 commit => $commit,
ad8884fc 228 diff => $patch,
6cf4366a 229 # XXX Hack hack hack, see View::SyntaxHighlight
ad8884fc 230 blobs => [$patch->[0]->{diff}],
6cf4366a 231 language => 'Diff',
232 action => 'blobdiff',
233 );
234
c8a42dd5 235 $c->forward('View::SyntaxHighlight')
236 unless $c->stash->{no_wrapper};
6cf4366a 237}
238
1625cd5f 239=head2 commit
240
47495599 241Exposes a given commit.
1625cd5f 242
243=cut
244
1feb3d6b 245sub commit : Local {
d7c9a32f 246 my ( $self, $c ) = @_;
77edf882 247 my $project = $c->stash->{Project};
832cbc81 248 my $commit = $self->_get_object($c);
b7aca93a 249 $c->stash(
790ce598 250 commit => $commit,
77edf882 251 diff_tree => ($project->diff(commit => $commit))[0],
252 refs => $project->references,
790ce598 253 action => 'commit',
b7aca93a 254 );
d7c9a32f 255}
256
2247133f 257=head2 commitdiff
258
259Exposes a given diff of a commit.
260
261=cut
262
263sub commitdiff : Local {
264 my ( $self, $c ) = @_;
832cbc81 265 my $commit = $self->_get_object($c);
fc948aee 266 my($tree, $patch) = $c->stash->{Project}->diff(
ad8884fc 267 commit => $commit,
fc948aee 268 parent => $c->req->param('hp') || undef,
ad8884fc 269 patch => 1,
270 );
2247133f 271 $c->stash(
f5da8e7a 272 commit => $commit,
ad8884fc 273 diff_tree => $tree,
274 diff => $patch,
f5da8e7a 275 # XXX Hack hack hack, see View::SyntaxHighlight
ad8884fc 276 blobs => [map $_->{diff}, @$patch],
f5da8e7a 277 language => 'Diff',
278 action => 'commitdiff',
2247133f 279 );
f5da8e7a 280
c8a42dd5 281 $c->forward('View::SyntaxHighlight')
282 unless $c->stash->{no_wrapper};
283}
284
285sub commitdiff_plain : Local {
286 my($self, $c) = @_;
287
288 $c->stash(no_wrapper => 1);
289 $c->response->content_type('text/plain; charset=utf-8');
290
291 $c->forward('commitdiff');
2247133f 292}
293
47495599 294=head2 shortlog
295
296Expose an abbreviated log of a given sha1.
297
298=cut
299
300sub shortlog : Local {
301 my ( $self, $c ) = @_;
f740f8a9 302 my $project = $c->stash->{Project};
832cbc81 303 my $commit = $self->_get_object($c);
fde5091f 304 my %logargs = (
305 sha1 => $commit->sha1,
f740f8a9 306 count => Gitalist->config->{paging}{log} || 25,
63e220b9 307 ($c->req->param('f') ? (file => $c->req->param('f')) : ())
308 );
fde5091f 309
310 my $page = $c->req->param('pg') || 0;
311 $logargs{skip} = $c->req->param('pg') * $logargs{count}
312 if $c->req->param('pg');
313
47495599 314 $c->stash(
790ce598 315 commit => $commit,
f740f8a9 316 log_lines => [$project->list_revs(%logargs)],
317 refs => $project->references,
790ce598 318 action => 'shortlog',
b4b4d0fd 319 page => $page,
47495599 320 );
321}
322
790ce598 323=head2 log
324
325Calls shortlog internally. Perhaps that should be reversed ...
326
327=cut
328sub log : Local {
329 $_[0]->shortlog($_[1]);
330 $_[1]->stash->{action} = 'log';
331}
332
c8a42dd5 333# For legacy support.
334sub history : Local {
335 $_[0]->shortlog(@_[1 .. $#_]);
336}
337
b3fa97cd 338=head2 tree
339
340The tree of a given commit.
341
342=cut
343
344sub tree : Local {
345 my ( $self, $c ) = @_;
74af77a3 346 my $project = $c->stash->{Project};
832cbc81 347 my $commit = $self->_get_object($c, $c->req->param('hb'));
348 my $tree = $self->_get_object($c, $c->req->param('h') || $commit->tree_sha1);
b3fa97cd 349 $c->stash(
790ce598 350 commit => $commit,
b4b4d0fd 351 tree => $tree,
74af77a3 352 tree_list => [$project->list_tree($tree->sha1)],
832cbc81 353 path => $c->req->param('f') || '',
790ce598 354 action => 'tree',
b3fa97cd 355 );
356}
357
9dc3b9a5 358=head2 reflog
359
360Expose the local reflog. This may go away.
361
362=cut
363
364sub reflog : Local {
365 my ( $self, $c ) = @_;
d8abdf1c 366 my @log = $c->stash->{Project}->reflog(
9dc3b9a5 367 '--since=yesterday'
368 );
369
370 $c->stash(
371 log => \@log,
372 action => 'reflog',
373 );
374}
375
14664e1c 376sub search : Local {
4df2f62f 377 my($self, $c) = @_;
d8abdf1c 378 $c->stash(current_action => 'GitRepos');
379 my $project = $c->stash->{Project};
832cbc81 380 my $commit = $self->_get_object($c);
4df2f62f 381 # Lifted from /shortlog.
382 my %logargs = (
383 sha1 => $commit->sha1,
384 count => Gitalist->config->{paging}{log},
385 ($c->req->param('f') ? (file => $c->req->param('f')) : ()),
72d72d4d 386 search => {
387 type => $c->req->param('type'),
388 text => $c->req->param('text'),
389 regexp => $c->req->param('regexp') || 0,
390 },
4df2f62f 391 );
392
393 $c->stash(
394 commit => $commit,
d8abdf1c 395 results => [$project->list_revs(%logargs)],
4df2f62f 396 action => 'search',
397 # This could be added - page => $page,
398 );
14664e1c 399}
400
401sub search_help : Local {
2646511e 402 my ($self, $c) = @_;
403 $c->stash(template => 'search_help.tt2');
6cfcd548 404}
405
406sub atom : Local {
d17ce39c 407 my($self, $c) = @_;
6cfcd548 408
d17ce39c 409 my $feed = XML::Atom::Feed->new;
6cfcd548 410
d17ce39c 411 my $host = lc Sys::Hostname::hostname();
412 $feed->title($host . ' - ' . Gitalist->config->{name});
413 $feed->updated(~~DateTime->now);
414
415 my $project = $c->stash->{Project};
416 my %logargs = (
417 sha1 => $project->head_hash,
418 count => Gitalist->config->{paging}{log} || 25,
419 ($c->req->param('f') ? (file => $c->req->param('f')) : ())
420 );
421
422 my $mk_title = $c->stash->{short_cmt};
423 for my $commit ($project->list_revs(%logargs)) {
424 my $entry = XML::Atom::Entry->new;
425 $entry->title( $mk_title->($commit->comment) );
426 $entry->id($c->uri_for('commit', {h=>$commit->sha1}));
427 # XXX Needs work ...
428 $entry->content($commit->comment);
429 $feed->add_entry($entry);
430 }
431
f796a861 432 $c->response->body($feed->as_xml);
e75df318 433 $c->response->content_type('application/atom+xml');
f796a861 434 $c->response->status(200);
6cfcd548 435}
436
6cfcd548 437sub rss : Local {
f796a861 438 my ($self, $c) = @_;
439
440 my $project = $c->stash->{Project};
441
442 my $rss = XML::RSS->new(version => '2.0');
443 $rss->channel(
444 title => lc(Sys::Hostname::hostname()) . ' - ' . Gitalist->config->{name},
445 link => $c->uri_for('summary', {p=>$project->name}),
446 language => 'en',
447 description => $project->description,
448 pubDate => DateTime->now,
449 lastBuildDate => DateTime->now,
450 );
451
452 my %logargs = (
453 sha1 => $project->head_hash,
454 count => Gitalist->config->{paging}{log} || 25,
455 ($c->req->param('f') ? (file => $c->req->param('f')) : ())
456 );
457 my $mk_title = $c->stash->{short_cmt};
458 for my $commit ($project->list_revs(%logargs)) {
459 # XXX Needs work ....
460 $rss->add_item(
461 title => $mk_title->($commit->comment),
462 permaLink => $c->uri_for(commit => {h=>$commit->sha1}),
463 description => $commit->comment,
464 );
465 }
466
467 $c->response->body($rss->as_string);
468 $c->response->content_type('application/rss+xml');
469 $c->response->status(200);
14664e1c 470}
471
6cfcd548 472sub patch : Local {
377bf360 473 my ($self, $c) = @_;
61ba8635 474 $c->detach('patches', [1]);
475}
476
477sub patches : Local {
478 my ($self, $c, $count) = @_;
479 $count ||= Gitalist->config->{patches}{max};
377bf360 480 my $commit = $self->_get_object($c);
481 my $parent = $c->req->param('hp') || undef;
f707d264 482 my $patch = $commit->get_patch( $parent, $count );
377bf360 483 $c->response->body($patch);
484 $c->response->content_type('text/plain');
485 $c->response->status(200);
6cfcd548 486}
487
6cfcd548 488sub snapshot : Local {
489 # FIXME - implement snapshot
490 Carp::croak "Not implemented.";
491}
492
1625cd5f 493=head2 auto
494
495Populate the header and footer. Perhaps not the best location.
496
497=cut
498
04d1d917 499sub auto : Private {
4621ecf0 500 my($self, $c) = @_;
04d1d917 501
da8f4f82 502 my $project = $c->req->param('p');
503 if (defined $project) {
504 eval {
505 $c->stash(Project => $c->model('GitRepos')->project($project));
506 };
507 if ($@) {
508 $c->detach('error_404');
509 }
510 }
511
512 my $a_project = $c->stash->{Project} || $c->model()->projects->[0];
4621ecf0 513 $c->stash(
da8f4f82 514 git_version => $a_project->run_cmd('--version'),
515 version => $Gitalist::VERSION,
516
517 # XXX Move these to a plugin!
4621ecf0 518 time_since => sub {
ef11b09e 519 return 'never' unless $_[0];
4621ecf0 520 return age_string(time - $_[0]->epoch);
521 },
522 short_cmt => sub {
523 my $cmt = shift;
524 my($line) = split /\n/, $cmt;
525 $line =~ s/^(.{70,80}\b).*/$1 …/;
526 return $line;
527 },
5cd9b9f9 528 abridged_description => sub {
529 join(' ', grep { defined } (split / /, shift)[0..10]);
530 },
4621ecf0 531 );
04d1d917 532}
d9a9b56b 533
89de6a33 534=head2 end
535
536Attempt to render a view, if needed.
537
538=cut
539
fde5091f 540sub end : ActionClass('RenderView') {
1aad4e81 541 my ($self, $c) = @_;
542 # Give project views the current HEAD.
543 if ($c->stash->{Project}) {
544 $c->stash->{HEAD} = $c->stash->{Project}->head_hash;
545 }
1fd8159c 546}
d9a9b56b 547
4111e151 548sub error_404 :Private {
549 my ($self, $c) = @_;
550 $c->response->status(404);
551 $c->stash(
552 title => 'Page not found',
553 content => 'Page not found',
1aad4e81 554 );
4111e151 555}
556
1fd8159c 557sub age_string {
da8f4f82 558 my $age = shift;
559 my $age_str;
560
561 if ( $age > 60 * 60 * 24 * 365 * 2 ) {
562 $age_str = ( int $age / 60 / 60 / 24 / 365 );
563 $age_str .= " years ago";
564 }
565 elsif ( $age > 60 * 60 * 24 * ( 365 / 12 ) * 2 ) {
566 $age_str = int $age / 60 / 60 / 24 / ( 365 / 12 );
567 $age_str .= " months ago";
568 }
569 elsif ( $age > 60 * 60 * 24 * 7 * 2 ) {
570 $age_str = int $age / 60 / 60 / 24 / 7;
571 $age_str .= " weeks ago";
572 }
573 elsif ( $age > 60 * 60 * 24 * 2 ) {
574 $age_str = int $age / 60 / 60 / 24;
575 $age_str .= " days ago";
576 }
577 elsif ( $age > 60 * 60 * 2 ) {
578 $age_str = int $age / 60 / 60;
579 $age_str .= " hours ago";
580 }
581 elsif ( $age > 60 * 2 ) {
582 $age_str = int $age / 60;
583 $age_str .= " min ago";
584 }
585 elsif ( $age > 2 ) {
586 $age_str = int $age;
587 $age_str .= " sec ago";
588 }
589 else {
590 $age_str .= " right now";
591 }
592 return $age_str;
7a88ffa4 593}
594
da8f4f82 595
89de6a33 596=head1 AUTHOR
597
f71a83ab 598Dan Brook
89de6a33 599
600=head1 LICENSE
601
602This library is free software. You can redistribute it and/or modify
603it under the same terms as Perl itself.
604
605=cut
606
42fe5d11 607__PACKAGE__->meta->make_immutable;