- Made Action accessor names more consistent (namespace -> class, prefix -> namespace)
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / Regex.pm
1 package Catalyst::DispatchType::Regex;
2
3 use strict;
4 use base qw/Catalyst::DispatchType::Path/;
5 use Text::ASCIITable;
6
7 =head1 NAME
8
9 Catalyst::DispatchType::Regex - Regex 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 $re = Text::ASCIITable->new;
28     $re->setCols( 'Regex', 'Private' );
29     $re->setColWidth( 'Regex',   36, 1 );
30     $re->setColWidth( 'Private', 37, 1 );
31     for my $regex ( @{ $self->{compiled} } ) {
32         my $compiled = $regex->{re};
33         my $action   = $regex->{action};
34         $re->addRow( $compiled, "/$action" );
35     }
36     $c->log->debug( "Loaded Regex actions:\n" . $re->draw )
37       if ( @{ $re->{tbl_rows} } );
38 }
39
40 =item $self->match( $c, $path )
41
42 =cut
43
44 sub match {
45     my ( $self, $c, $path ) = @_;
46
47     return if $self->SUPER::match( $c, $path );
48
49     # Check path against plain text first
50
51     foreach my $compiled ( @{ $self->{compiled} || [] } ) {
52         if ( my @snippets = ( $path =~ $compiled->{re} ) ) {
53             $c->req->action( $compiled->{path} );
54             $c->req->match($path);
55             $c->req->snippets( \@snippets );
56             $c->action( $compiled->{action} );
57             $c->namespace( $compiled->{action}->namespace );
58             return 1;
59         }
60     }
61
62     return 0;
63 }
64
65 =item $self->register( $c, $action )
66
67 =cut
68
69 sub register {
70     my ( $self, $c, $action ) = @_;
71     my $attrs = $action->attributes;
72     my @register = map { @{ $_ || [] } } @{$attrs}{ 'Regex', 'Regexp' };
73     foreach my $r (@register) {
74         $self->{paths}{$r} = $action;    # Register path for superclass
75         push(
76             @{ $self->{compiled} },      # and compiled regex for us
77             {
78                 re     => qr#$r#,
79                 action => $action,
80                 path   => $r,
81             }
82         );
83     }
84 }
85
86 =back
87
88 =head1 AUTHOR
89
90 Matt S Trout
91 Sebastian Riedel, C<sri@cpan.org>
92
93 =head1 COPYRIGHT
94
95 This program is free software, you can redistribute it and/or modify it under
96 the same terms as Perl itself.
97
98 =cut
99
100 1;