- Fixed :Path('') which was annihilated in the Text::ASCIITable removal
[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     foreach my $r (@register) {
85         $r =~ s!^/!!;
86         $self->{paths}{$r} = $action;
87     }
88 }
89
90 =back
91
92 =head1 AUTHOR
93
94 Matt S Trout
95 Sebastian Riedel, C<sri@cpan.org>
96
97 =head1 COPYRIGHT
98
99 This program is free software, you can redistribute it and/or modify it under
100 the same terms as Perl itself.
101
102 =cut
103
104 1;