a272406586ddc5c787d95e3ba2e487ff66229f78
[catagits/Gitalist.git] / lib / Gitalist / Controller / LegacyURI.pm
1 package Gitalist::Controller::LegacyURI;
2 use Moose;
3 use Moose::Autobox;
4 use namespace::autoclean;
5
6 BEGIN { extends 'Gitalist::Controller' }
7
8 my %LEGACY_DISPATCH = (
9     opml                     => sub { '/opml/opml' },
10     project_index            => sub { '/legacyuri/project_index' },
11     '(?:summary|heads|tags)' => sub {
12         my($c, $action, $repos) = @_;
13         return "/repository/$action", [$repos];
14     },
15     blob => sub {
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');
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');
24     },
25 );
26
27 sub _legacy_uri {
28     my($self, $c, $repos, $action) = @_;
29
30     return
31         unless $action;
32
33     my @result  = grep { $action =~ /^$_$/ } keys %LEGACY_DISPATCH;
34     die "Matched too many actions for '$a' - @result"
35         if @result > 1;
36
37     return $LEGACY_DISPATCH{$result[0]}->($c, $action, $repos)
38         if $result[0];
39 }
40
41 sub handler : Chained('/base') PathPart('legacy') Args() {
42     my ( $self, $c, $repos ) = @_;
43
44     my ($action, $captures, @args) = $self->_legacy_uri($c, $repos, $c->req->param('a'));
45
46     die("Not supported")
47         unless $action;
48
49     $c->res->redirect($c->uri_for_action($action, $captures || [], @args));
50     $c->res->status(301);
51 }
52
53 sub project_index : Chained('/base') Args(0) {
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
62 __PACKAGE__->meta->make_immutable;