Fixed multiple appclass bug
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / LocalRegex.pm
CommitLineData
dcc61a75 1package Catalyst::DispatchType::Regex;
2
3use strict;
4use base qw/Catalyst::DispatchType::Path/;
5use Text::SimpleTable;
6
7=head1 NAME
8
9Catalyst::DispatchType::Regex - Regex DispatchType
10
11=head1 SYNOPSIS
12
13See L<Catalyst>.
14
15=head1 DESCRIPTION
16
17=head1 METHODS
18
19=over 4
20
21=item $self->list($c)
22
23=cut
24
25sub 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
41sub 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
66sub 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->register_path($c, $r, $action);
75 $self->register_regex($c, $r, $action);
76 }
77}
78
79=item $self->register_regex($c, $re, $action)
80
81=cut
82
83sub register_regex {
84 my ( $self, $c, $re, $action) = @_;
85 push(
86 @{ $self->{compiled} }, # and compiled regex for us
87 {
88 re => qr#$re#,
89 action => $action,
90 path => $re,
91 }
92 );
93}
94
95=back
96
97=head1 AUTHOR
98
99Matt S Trout
100Sebastian Riedel, C<sri@cpan.org>
101
102=head1 COPYRIGHT
103
104This program is free software, you can redistribute it and/or modify it under
105the same terms as Perl itself.
106
107=cut
108
1091;