|
Apache::URI - Perl API for manipulating URIs |
Apache::URI - Perl API for manipulating URIs
use Apache::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); Apache::URI::unescape_url($url);
While APR::URI provides a generic API to dissect, adjust and put
together any given URI string, Apache::URI provides an API specific
to Apache, by taking the information directly from the $r
object. Therefore when manipulating the URI of the current HTTP
request usually methods from both classes are used.
Apache::URI provides the following functions and methods:
construct_serverConstruct 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);
$r
( Apache::RequestRec object|docs::2.0::api::Apache::RequestRec )$hostname ( string )If that argument is not passed,
$r->get_server_name|docs::2.0::api::Apache::RequestUtil/C_get_server_name_
is used.
$port ( string )If that argument is not passed,
$r->get_server_port|docs::2.0::api::Apache::RequestUtil/C_get_server_port_
is used.
$pool
( APR::Pool object|docs::2.0::api::APR::Pool )If that argument is not passed,
$r->pool|docs::2.0::api::Apache::RequestRec/C_pool_ is used.
$hostport ( string )Examples:
$r->get_server_name == "localhost"; $r->get_server_port == 8001;
The code:
$hostport = $r->construct_server();
returns a string:
localhost:8001
$hostport = $r->construct_server("my.example.com", 8888);
and it returns a string:
my.example.com:8888
construct_urlBuild 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);
$r
( Apache::RequestRec object|docs::2.0::api::Apache::RequestRec )$rel_uri ( string )If that argument is not passed,
$r->uri|docs::2.0::api::Apache::RequestRec/C_uri_ is used.
$pool
( APR::Pool object|docs::2.0::api::APR::Pool )If that argument is not passed,
$r->pool|docs::2.0::api::Apache::RequestRec/C_pool_ is used.
$url ( string )Examples:
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.
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
parse_uriBreak apart URI (affecting the current request's uri components)
$r->parse_uri($uri);
$r
( Apache::RequestRec object|docs::2.0::api::Apache::RequestRec )$uri ( string )This method call has the following side-effects:
$r->args|docs::2.0::api::Apache::RequestRec/C_args_ to
the rest after '?' if such exists in the passed $uri, otherwise
sets it to undef.
$r->uri|docs::2.0::api::Apache::RequestRec/C_uri_ to
the passed $uri without the
$r->args|docs::2.0::api::Apache::RequestRec/C_args_ part.
$r->hostname|docs::2.0::api::Apache::RequestRec/C_hostname_
(if not set already) using the (scheme://host:port) parts of the
passed $uri.
parsed_uriGet the current request's parsed uri object
my $uri = $r->parsed_uri();
$r
( Apache::RequestRec object|docs::2.0::api::Apache::RequestRec )$uri
( APR::URI object|docs::2.0::api::APR::URI )META: this object is suitable for a currently non-existing rpath()
method
unescape_urlUnescape URLs
Apache::URI::unescape_url($url);
$url ( string )$url is now unescaped
Example:
my $url = join '%20', qw(one two three); Apache::URI::unescape_url($url);
$url now contains the string:
"one two three";
APR::URI|docs::2.0::api::APR::URI, mod_perl 2.0 documentation.
mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0.
The mod_perl development team and numerous contributors.
|
Apache::URI - Perl API for manipulating URIs |