man Apache2::URI () - Perl API for manipulating URIs
NAME
Apache2::URI - Perl API for manipulating URIs
Synopsis
use Apache2::URI ();
$hostport = $r->construct_server(); $hostport = $r->construct_server($hostname); $hostport = $r->construct_server($hostname, $port); $hostport = $r->construct_server($hostname, $port, $pool);
$url = $r->construct_url(); $url = $r->construct_url($rel_uri); $url = $r->construct_url($rel_uri, $pool);
$parsed_uri = $r->parse_uri($uri);
$parsed_uri = $r->parsed_uri();
$url = join '%20', qw(one two three); Apache2::URI::unescape_url($url);
Description
While CWAPR::URI provides a generic API to dissect, adjust and put together any given URI string, CWApache2::URI provides an API specific to Apache, by taking the information directly from the CW$r object. Therefore when manipulating the URI of the current HTTP request usually methods from both classes are used.
API
CWApache2::URI provides the following functions and methods: Construct a string made of hostname and port
$hostport = $r->construct_server(); $hostport = $r->construct_server($hostname); $hostport = $r->construct_server($hostname, $port); $hostport = $r->construct_server($hostname, $port, $pool);The current request object The hostname of the server. If that argument is not passed, CW$r->get_server_name is used. The port the server is running on. If that argument is not passed, CW$r->get_server_port is used. The pool to allocate the string from. If that argument is not passed, CW$r->pool is used. The server's hostport string
- since: 2.0.00
Examples:
- •
-
Assuming that:
$r->get_server_name == "localhost"; $r->get_server_port == 8001;
The code:$hostport = $r->construct_server();
returns a string:localhost:8001
- •
-
The following code sets the values explicitly:
$hostport = $r->construct_server("my.example.com", 8888);
and it returns a string:my.example.com:8888
Build a fully qualified URL from the uri and information in the request rec:
$url = $r->construct_url(); $url = $r->construct_url($rel_uri); $url = $r->construct_url($rel_uri, $pool);The current request object The path to the requested file (it may include a concatenation of path, query and fragment components). If that argument is not passed, CW$r->uri is used. The pool to allocate the URL from If that argument is not passed, CW$r->pool is used. A fully qualified URL
- since: 2.0.00
Examples:
- •
-
Assuming that the request was
http://localhost.localdomain:8529/test?args
The code:my $url = $r->construct_url;
returns the string:http://localhost.localdomain:8529/test
notice that the query (args) component is not in the string. You need to append it manually if it's needed. - •
-
Assuming that the request was
http://localhost.localdomain:8529/test?args
The code:my $rel_uri = "/foo/bar?tar"; my $url = $r->construct_url($rel_uri);
returns the string:http://localhost.localdomain:8529/foo/bar?tar
Break apart URI (affecting the current request's uri components)
$r->parse_uri($uri);The current request object The uri to break apart
- ret: no return value
- warning:
- This method has several side-effects explained below
- since: 2.0.00
This method call has the following side-effects:
- 1
- sets CW$r->args to the rest after CW'?' if such exists in the passed CW$uri, otherwise sets it to CWundef.
- 2
- sets CW$r->uri to the passed CW$uri without the CW$r->args part.
- 3
- sets CW$r->hostname (if not set already) using the (CWscheme://host:port) parts of the passed CW$uri. Get the current request's parsed uri object
my $uri = $r->parsed_uri();The current request object The parsed uri
- since: 2.0.00
- This object is suitable for using with CWAPR::URI::rpath Unescape URLs
Apache2::URI::unescape_url($url);The URL to unescape
- ret: no return value
- The argument CW$url is now unescaped
- since: 2.0.00
Example:
my $url = join '%20', qw(one two three); Apache2::URI::unescape_url($url);
CW$url now contains the string:
"one two three";
See Also
CWAPR::URI, mod_perl 2.0 documentation.
Copyright
mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0.
Authors
The mod_perl development team and numerous contributors.