/usr/share/perl5/Plack/App/URLMap.pm is in libplack-perl 1.0042-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | package Plack::App::URLMap;
use strict;
use warnings;
use parent qw(Plack::Component);
use constant DEBUG => $ENV{PLACK_URLMAP_DEBUG};
use Carp ();
sub mount { shift->map(@_) }
sub map {
my $self = shift;
my($location, $app) = @_;
my $host;
if ($location =~ m!^https?://(.*?)(/.*)!) {
$host = $1;
$location = $2;
}
if ($location !~ m!^/!) {
Carp::croak("Paths need to start with /");
}
$location =~ s!/$!!;
push @{$self->{_mapping}}, [ $host, $location, qr/^\Q$location\E/, $app ];
}
sub prepare_app {
my $self = shift;
# sort by path length
$self->{_sorted_mapping} = [
map { [ @{$_}[2..5] ] }
sort { $b->[0] <=> $a->[0] || $b->[1] <=> $a->[1] }
map { [ ($_->[0] ? length $_->[0] : 0), length($_->[1]), @$_ ] } @{$self->{_mapping}},
];
}
sub call {
my ($self, $env) = @_;
my $path_info = $env->{PATH_INFO};
my $script_name = $env->{SCRIPT_NAME};
my($http_host, $server_name) = @{$env}{qw( HTTP_HOST SERVER_NAME )};
if ($http_host and my $port = $env->{SERVER_PORT}) {
$http_host =~ s/:$port$//;
}
for my $map (@{ $self->{_sorted_mapping} }) {
my($host, $location, $location_re, $app) = @$map;
my $path = $path_info; # copy
no warnings 'uninitialized';
DEBUG && warn "Matching request (Host=$http_host Path=$path) and the map (Host=$host Path=$location)\n";
next unless not defined $host or
$http_host eq $host or
$server_name eq $host;
next unless $location eq '' or $path =~ s!$location_re!!;
next unless $path eq '' or $path =~ m!^/!;
DEBUG && warn "-> Matched!\n";
my $orig_path_info = $env->{PATH_INFO};
my $orig_script_name = $env->{SCRIPT_NAME};
$env->{PATH_INFO} = $path;
$env->{SCRIPT_NAME} = $script_name . $location;
return $self->response_cb($app->($env), sub {
$env->{PATH_INFO} = $orig_path_info;
$env->{SCRIPT_NAME} = $orig_script_name;
});
}
DEBUG && warn "All matching failed.\n";
return [404, [ 'Content-Type' => 'text/plain' ], [ "Not Found" ]];
}
1;
__END__
=head1 NAME
Plack::App::URLMap - Map multiple apps in different paths
=head1 SYNOPSIS
use Plack::App::URLMap;
my $app1 = sub { ... };
my $app2 = sub { ... };
my $app3 = sub { ... };
my $urlmap = Plack::App::URLMap->new;
$urlmap->map("/" => $app1);
$urlmap->map("/foo" => $app2);
$urlmap->map("http://bar.example.com/" => $app3);
my $app = $urlmap->to_app;
=head1 DESCRIPTION
Plack::App::URLMap is a PSGI application that can dispatch multiple
applications based on URL path and host names (a.k.a "virtual hosting")
and takes care of rewriting C<SCRIPT_NAME> and C<PATH_INFO> (See
L</"HOW THIS WORKS"> for details). This module is inspired by
Ruby's Rack::URLMap.
=head1 METHODS
=over 4
=item map
$urlmap->map("/foo" => $app);
$urlmap->map("http://bar.example.com/" => $another_app);
Maps URL path or an absolute URL to a PSGI application. The match
order is sorted by host name length and then path length (longest strings
first).
URL paths need to match from the beginning and should match completely
until the path separator (or the end of the path). For example, if you
register the path C</foo>, it I<will> match with the request C</foo>,
C</foo/> or C</foo/bar> but it I<won't> match with C</foox>.
Mapping URLs with host names is also possible, and in that case the URL
mapping works like a virtual host.
Mappings will nest. If $app is already mapped to C</baz> it will
match a request for C</foo/baz> but not C</foo>. See L</"HOW THIS
WORKS"> for more details.
=item mount
Alias for C<map>.
=item to_app
my $handler = $urlmap->to_app;
Returns the PSGI application code reference. Note that the
Plack::App::URLMap object is callable (by overloading the code
dereference), so returning the object itself as a PSGI application
should also work.
=back
=head1 PERFORMANCE
If you C<map> (or C<mount> with Plack::Builder) N applications,
Plack::App::URLMap will need to at most iterate through N paths to
match incoming requests.
It is a good idea to use C<map> only for a known, limited amount of
applications, since mounting hundreds of applications could affect
runtime request performance.
=head1 DEBUGGING
You can set the environment variable C<PLACK_URLMAP_DEBUG> to see how
this application matches with the incoming request host names and
paths.
=head1 HOW THIS WORKS
This application works by I<fixing> C<SCRIPT_NAME> and C<PATH_INFO>
before dispatching the incoming request to the relocated
applications.
Say you have a Wiki application that takes C</index> and C</page/*>
and makes a PSGI application C<$wiki_app> out of it, using one of
supported web frameworks, you can put the whole application under
C</wiki> by:
# MyWikiApp looks at PATH_INFO and handles /index and /page/*
my $wiki_app = sub { MyWikiApp->run(@_) };
use Plack::App::URLMap;
my $app = Plack::App::URLMap->new;
$app->mount("/wiki" => $wiki_app);
When a request comes in with C<PATH_INFO> set to C</wiki/page/foo>,
the URLMap application C<$app> strips the C</wiki> part from
C<PATH_INFO> and B<appends> that to C<SCRIPT_NAME>.
That way, if the C<$app> is mounted under the root
(i.e. C<SCRIPT_NAME> is C<"">) with standalone web servers like
L<Starman>, C<SCRIPT_NAME> is now locally set to C</wiki> and
C<PATH_INFO> is changed to C</page/foo> when C<$wiki_app> gets called.
=head1 AUTHOR
Tatsuhiko Miyagawa
=head1 SEE ALSO
L<Plack::Builder>
=cut
|