summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-01-06 12:53:46 -0600
committerJesse Luehrs <doy@tozt.net>2011-01-06 12:53:46 -0600
commit5cd0eab98e088720e6090e8533b1fb8e52a8a214 (patch)
tree59e663485af84ace1074847c39130c1049714b4b /lib
parent924dce6d566b8334fd7031688796c46cb7ebe696 (diff)
downloadplack-client-5cd0eab98e088720e6090e8533b1fb8e52a8a214.tar.gz
plack-client-5cd0eab98e088720e6090e8533b1fb8e52a8a214.zip
handle env hashes too
this is getting uglier and uglier - need to rethink this i think
Diffstat (limited to 'lib')
-rw-r--r--lib/Plack/Client.pm11
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/Plack/Client.pm b/lib/Plack/Client.pm
index d97f44c..5a2abb4 100644
--- a/lib/Plack/Client.pm
+++ b/lib/Plack/Client.pm
@@ -41,8 +41,15 @@ sub request {
my $scheme = $req->uri->scheme;
my $app;
if ($scheme eq 'psgi-local') {
- $req->uri->path('/') unless length $req->uri->path;
- $app = $self->app_for($req->uri->authority);
+ if ($req->isa('Plack::Request')) {
+ $req->env->{REQUEST_URI} = '/' unless length $req->request_uri;
+ }
+ else {
+ $req->uri->path('/') unless length $req->uri->path;
+ }
+ my $app_name = $req->uri->authority;
+ $app_name =~ s/:.*//;
+ $app = $self->app_for($app_name);
$app = Plack::Middleware::ContentLength->wrap($app);
}
elsif ($scheme eq 'http' || $scheme eq 'https') {