Fix Path actions debug screen to display number of arguments
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / Path.pm
CommitLineData
6b239949 1package Catalyst::DispatchType::Path;
2
3c0186f2 3use Moose;
3c0186f2 4extends 'Catalyst::DispatchType';
5
e8b9f2a9 6use Text::SimpleTable;
39fc2ce1 7use Catalyst::Utils;
e8b9f2a9 8use URI;
3c0186f2 9
36dbb986 10has _paths => (
11 is => 'rw',
12 isa => 'HashRef',
13 required => 1,
14 default => sub { +{} },
15 );
16
0fc2d522 17no Moose;
18
2633d7dc 19=head1 NAME
20
21Catalyst::DispatchType::Path - Path DispatchType
22
23=head1 SYNOPSIS
24
26dc649a 25See L<Catalyst::DispatchType>.
2633d7dc 26
27=head1 DESCRIPTION
28
26dc649a 29Dispatch type managing full path matching behaviour. For more information on
30dispatch types, see:
31
32=over 4
33
b9b89145 34=item * L<Catalyst::Manual::Intro> for how they affect application authors
26dc649a 35
36=item * L<Catalyst::DispatchType> for implementation information.
37
38=back
39
2633d7dc 40=head1 METHODS
41
b5ecfcf0 42=head2 $self->list($c)
a9cbd748 43
4ab87e27 44Debug output for Path dispatch points
45
a9cbd748 46=cut
47
48sub list {
49 my ( $self, $c ) = @_;
48d435ba 50 my $avail_width = Catalyst::Utils::term_width() - 9;
51 my $col1_width = ($avail_width * .50) < 35 ? 35 : int($avail_width * .50);
52 my $col2_width = $avail_width - $col1_width;
b0ad47c1 53 my $paths = Text::SimpleTable->new(
48d435ba 54 [ $col1_width, 'Path' ], [ $col2_width, 'Private' ]
39fc2ce1 55 );
36dbb986 56 foreach my $path ( sort keys %{ $self->_paths } ) {
36dbb986 57 foreach my $action ( @{ $self->_paths->{$path} } ) {
fb495632 58 my $args = $action->attributes->{Args}->[0];
59 my $parts = defined($args) ? '/*' x $args : '/...';
60
61 my $display_path = "/$path/$parts";
62 $display_path =~ s{/{1,}}{/}g;
63
e8b9f2a9 64 $paths->row( $display_path, "/$action" );
0bd5f8a2 65 }
a9cbd748 66 }
e8b9f2a9 67 $c->log->debug( "Loaded Path actions:\n" . $paths->draw . "\n" )
36dbb986 68 if ( keys %{ $self->_paths } );
a9cbd748 69}
70
b5ecfcf0 71=head2 $self->match( $c, $path )
2633d7dc 72
b2b90ec2 73For each action registered to this exact path, offers the action a chance to
74match the path (in the order in which they were registered). Succeeds on the
75first action that matches, if any; if not, returns 0.
4ab87e27 76
2633d7dc 77=cut
78
79sub match {
80 my ( $self, $c, $path ) = @_;
6b239949 81
2f381252 82 $path = '/' if !defined $path || !length $path;
0bd5f8a2 83
91955398 84 my @actions = @{ $self->_paths->{$path} || [] };
85
86 foreach my $action ( @actions ) {
0bd5f8a2 87 next unless $action->match($c);
6b239949 88 $c->req->action($path);
89 $c->req->match($path);
90 $c->action($action);
11bd4e3e 91 $c->namespace( $action->namespace );
6b239949 92 return 1;
93 }
94
95 return 0;
96}
97
b5ecfcf0 98=head2 $self->register( $c, $action )
2633d7dc 99
b2b90ec2 100Calls register_path for every Path attribute for the given $action.
4ab87e27 101
2633d7dc 102=cut
103
104sub register {
6b239949 105 my ( $self, $c, $action ) = @_;
22f3a8dd 106
27708fc5 107 my @register = @{ $action->attributes->{Path} || [] };
6b239949 108
694d15f1 109 $self->register_path( $c, $_, $action ) for @register;
5b707014 110
694d15f1 111 return 1 if @register;
112 return 0;
081def36 113}
114
b5ecfcf0 115=head2 $self->register_path($c, $path, $action)
081def36 116
b2b90ec2 117Registers an action at a given path.
4ab87e27 118
081def36 119=cut
120
121sub register_path {
694d15f1 122 my ( $self, $c, $path, $action ) = @_;
081def36 123 $path =~ s!^/!!;
0ba80bce 124 $path = '/' unless length $path;
595f3872 125 $path = URI->new($path)->canonical;
5299fff8 126 $path =~ s{(?<=[^/])/+\z}{};
27708fc5 127
91955398 128 $self->_paths->{$path} = [
cb3d811c 129 sort { $a->compare($b) } ($action, @{ $self->_paths->{$path} || [] })
91955398 130 ];
05b47f2e 131
0bd5f8a2 132 return 1;
6b239949 133}
134
ea0e58d9 135=head2 $self->uri_for_action($action, $captures)
136
137get a URI part for an action; always returns undef is $captures is set
138since Path actions don't have captures
139
140=cut
141
142sub uri_for_action {
143 my ( $self, $action, $captures ) = @_;
144
145 return undef if @$captures;
146
147 if (my $paths = $action->attributes->{Path}) {
148 my $path = $paths->[0];
149 $path = '/' unless length($path);
150 $path = "/${path}" unless ($path =~ m/^\//);
151 $path = URI->new($path)->canonical;
152 return $path;
153 } else {
154 return undef;
155 }
156}
157
2f381252 158=head1 AUTHORS
2633d7dc 159
2f381252 160Catalyst Contributors, see Catalyst.pm
2633d7dc 161
162=head1 COPYRIGHT
163
536bee89 164This library is free software. You can redistribute it and/or modify it under
2633d7dc 165the same terms as Perl itself.
166
167=cut
168
e5ecd5bc 169__PACKAGE__->meta->make_immutable;
170
6b239949 1711;