extended uri_for, added uri_for_action to dispatcher
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / Index.pm
1 package Catalyst::DispatchType::Index;
2
3 use strict;
4 use base qw/Catalyst::DispatchType/;
5
6 =head1 NAME
7
8 Catalyst::DispatchType::Index - Index DispatchType
9
10 =head1 SYNOPSIS
11
12 See L<Catalyst>.
13
14 =head1 DESCRIPTION
15
16 =head1 METHODS
17
18 =head2 $self->match( $c, $path )
19
20 Check if there's an index action for a given path, and set it up to use it
21 if there is.
22
23 =cut
24
25 sub match {
26     my ( $self, $c, $path ) = @_;
27     return if @{ $c->req->args };
28     my $result = $c->get_action( 'index', $path );
29
30     if ($result && $result->match($c)) {
31         $c->action($result);
32         $c->namespace( $result->namespace );
33         $c->req->action('index');
34         $c->req->match( $c->req->path );
35         return 1;
36     }
37     return 0;
38 }
39
40 =head2 $self->uri_for_action( $action, $captures )
41
42 get a URI part for an action; always returns undef is $captures is set
43 since index actions don't have captures
44
45 =cut
46
47 sub uri_for_action {
48     my ( $self, $action, $captures ) = @_;
49
50     return undef if @$captures;
51
52     return undef unless $action->name eq 'index';
53
54     return "/".$action->namespace;
55 }
56
57 =head1 AUTHOR
58
59 Sebastian Riedel, C<sri@cpan.org>
60
61 =head1 COPYRIGHT
62
63 This program is free software, you can redistribute it and/or modify it under
64 the same terms as Perl itself.
65
66 =cut
67
68 1;