Only register private actions when needed
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / Path.pm
1 package Catalyst::DispatchType::Path;
2
3 use strict;
4 use base qw/Catalyst::DispatchType/;
5 use Text::SimpleTable;
6
7 =head1 NAME
8
9 Catalyst::DispatchType::Path - Path DispatchType
10
11 =head1 SYNOPSIS
12
13 See L<Catalyst>.
14
15 =head1 DESCRIPTION
16
17 =head1 METHODS
18
19 =over 4
20
21 =item $self->list($c)
22
23 =cut
24
25 sub list {
26     my ( $self, $c ) = @_;
27     my $paths = Text::SimpleTable->new( [ 36, 'Path' ], [ 37, 'Private' ] );
28     for my $path ( sort keys %{ $self->{paths} } ) {
29         my $action = $self->{paths}->{$path};
30         $paths->row( "/$path", "/$action" );
31     }
32     $c->log->debug( "Loaded Path actions:\n" . $paths->draw )
33       if ( keys %{ $self->{paths} } );
34 }
35
36 =item $self->match( $c, $path )
37
38 =cut
39
40 sub match {
41     my ( $self, $c, $path ) = @_;
42
43     if ( my $action = $self->{paths}->{$path} ) {
44         $c->req->action($path);
45         $c->req->match($path);
46         $c->action($action);
47         $c->namespace( $action->namespace );
48         return 1;
49     }
50
51     return 0;
52 }
53
54 =item $self->register( $c, $action )
55
56 =cut
57
58 sub register {
59     my ( $self, $c, $action ) = @_;
60
61     my $attrs = $action->attributes;
62     my @register;
63
64     foreach my $r ( @{ $attrs->{Path} || [] } ) {
65         unless ($r) {
66             $r = $action->namespace;
67         }
68         elsif ( $r !~ m!^/! ) {    # It's a relative path
69             $r = $action->namespace . "/$r";
70         }
71         push( @register, $r );
72     }
73
74     if ( $attrs->{Global} || $attrs->{Absolute} ) {
75         push( @register, $action->name );    # Register sub name against root
76     }
77
78     if ( $attrs->{Local} || $attrs->{Relative} ) {
79         push( @register, join( '/', $action->namespace, $action->name ) );
80
81         # Register sub name as a relative path
82     }
83
84     $self->register_path( $c, $_, $action ) for @register;
85     return 1 if @register;
86     return 0;
87 }
88
89 =item $self->register_path($c, $path, $action)
90
91 =cut
92
93 sub register_path {
94     my ( $self, $c, $path, $action ) = @_;
95     $path =~ s!^/!!;
96     $self->{paths}{$path} = $action;
97 }
98
99 =back
100
101 =head1 AUTHOR
102
103 Matt S Trout
104 Sebastian Riedel, C<sri@cpan.org>
105
106 =head1 COPYRIGHT
107
108 This program is free software, you can redistribute it and/or modify it under
109 the same terms as Perl itself.
110
111 =cut
112
113 1;