Fixed history link in root/nav/actions.tt2.
[catagits/Gitalist.git] / lib / Gitalist / Controller / LegacyURI.pm
CommitLineData
319537bf 1package Gitalist::Controller::LegacyURI;
2use Moose;
9c515df2 3use Moose::Autobox;
319537bf 4use namespace::autoclean;
5
6BEGIN { extends 'Gitalist::Controller' }
7
894b2dc8 8my %LEGACY_DISPATCH = (
7ce87dff 9 opml => sub { '/opml/opml' },
10 project_index => sub { '/legacyuri/project_index' },
894b2dc8 11 '(?:summary|heads|tags)' => sub {
7ce87dff 12 my($c, $action, $repos) = @_;
13 return "/repository/$action", [$repos];
894b2dc8 14 },
15 blob => sub {
7ce87dff 16 my($c, $action, $repos) = @_;
17 my $ref = $c->req->param('hb') || $c->req->param('h');
18 return '/ref/blob', [$repos, $ref], $c->req->param('f');
4a3445c1 19 },
20 blob_plain => sub {
21 my($c, $action, $repos) = @_;
22 my $ref = $c->req->param('hb') || $c->req->param('h');
23 return '/ref/raw', [$repos, $ref], $c->req->param('f');
894b2dc8 24 },
25);
26
27sub _legacy_uri {
28 my($self, $c, $repos, $action) = @_;
29
30 return
7ce87dff 31 unless $action;
894b2dc8 32
33 my @result = grep { $action =~ /^$_$/ } keys %LEGACY_DISPATCH;
34 die "Matched too many actions for '$a' - @result"
7ce87dff 35 if @result > 1;
894b2dc8 36
37 return $LEGACY_DISPATCH{$result[0]}->($c, $action, $repos)
7ce87dff 38 if $result[0];
894b2dc8 39}
40
319537bf 41sub handler : Chained('/base') PathPart('legacy') Args() {
20503690 42 my ( $self, $c, $repos ) = @_;
894b2dc8 43
44 my ($action, $captures, @args) = $self->_legacy_uri($c, $repos, $c->req->param('a'));
45
46 die("Not supported")
7ce87dff 47 unless $action;
894b2dc8 48
49 $c->res->redirect($c->uri_for_action($action, $captures || [], @args));
ad6d2173 50 $c->res->status(301);
319537bf 51}
52
ad6d2173 53sub project_index : Chained('/base') Args(0) {
9c515df2 54 my ( $self, $c ) = @_;
55
56 $c->response->content_type('text/plain');
57 $c->response->body(
58 join "\n", map $_->name, $c->model()->repositories->flatten
59 ) or die 'No repositories found in '. $c->model->repo_dir;
60}
61
319537bf 62__PACKAGE__->meta->make_immutable;