Switched to Text::SimpleTable
[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::SimpleTable;
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::SimpleTable->new( [ 36, 'Regex' ], [ 37, 'Private' ] );
28     for my $regex ( @{ $self->{compiled} } ) {
29         my $compiled = $regex->{re};
30         my $action   = $regex->{action};
31         $re->row( $compiled, "/$action" );
32     }
33     $c->log->debug( "Loaded Regex actions:\n" . $re->draw )
34       if ( @{ $self->{compiled} } );
35 }
36
37 =item $self->match( $c, $path )
38
39 =cut
40
41 sub match {
42     my ( $self, $c, $path ) = @_;
43
44     return if $self->SUPER::match( $c, $path );
45
46     # Check path against plain text first
47
48     foreach my $compiled ( @{ $self->{compiled} || [] } ) {
49         if ( my @snippets = ( $path =~ $compiled->{re} ) ) {
50             $c->req->action( $compiled->{path} );
51             $c->req->match($path);
52             $c->req->snippets( \@snippets );
53             $c->action( $compiled->{action} );
54             $c->namespace( $compiled->{action}->namespace );
55             return 1;
56         }
57     }
58
59     return 0;
60 }
61
62 =item $self->register( $c, $action )
63
64 =cut
65
66 sub register {
67     my ( $self, $c, $action ) = @_;
68     my $attrs = $action->attributes;
69     my @register = map { @{ $_ || [] } } @{$attrs}{ 'Regex', 'Regexp' };
70     foreach my $r (@register) {
71         unless ( $r =~ /^\^/ ) {    # Relative regex
72             $r = '^' . $action->namespace . '/' . $r;
73         }
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;