| APR::URI - Perl API for URI manipulations |
APR::URI - Perl API for URI manipulations
use APR::URI ();
my $url = 'http://user:pass@example.com:80/foo?bar#item5';
# parse and break the url into components
my $parsed = APR::URI->parse($r->pool, $url);
print $parsed->scheme;
print $parsed->user;
print $parsed->password;
print $parsed->hostname;
print $parsed->port;
print $parsed->path;
print $parsed->rpath;
print $parsed->query;
print $parsed->fragment;
# reconstruct the url, after changing some components and completely
# removing other
$parsed->scheme($new_scheme);
$parsed->user(undef);
$parsed->password(undef);
$parsed->hostname($new_hostname);
$parsed->port($new_port);
$parsed->path($new_path);
$parsed->query(undef);
$parsed->fragment(undef);
print $parsed->unparse;
# get the password field too (by default it's not revealed)
use APR::Const -compile => qw(URI_UNP_REVEALPASSWORD);
print $parsed->unparse(APR::Const::URI_UNP_REVEALPASSWORD);
# what the default port for the ftp protocol?
my $ftp_port = APR::URI::port_of_scheme("ftp");
APR::URI allows you to parse URI strings, manipulate each of the
URI elements and deparse them back into URIs.
All APR::URI object accessors accept a string or an undef value
as an argument. Same goes for return value. It's important to
distinguish between an empty string and undef. For example let's
say your code was:
my $uri = 'http://example.com/foo?bar#item5'; my $parsed = APR::URI->parse($r->pool, $uri);
Now you no longer want to the query and fragment components in the final url. If you do:
$parsed->fragment('');
$parsed->query('');
followed by:
my $new_uri = parsed->unparse;
the resulting URI will be:
http://example.com/foo?#
which is probably not something that you've expected. In order to get rid of the separators, you must completely unset the fields you don't want to see. So, if you do:
$parsed->fragment(undef); $parsed->query(undef);
followed by:
my $new_uri = parsed->unparse;
the resulting URI will be:
http://example.com/foo
As mentioned earlier the same goes for return values, so continuing this example:
my $new_fragment = $parsed->fragment(); my $new_query = $parsed->query();
Both values now contain undef, therefore you must be careful when
using the return values, when you use them, as you may get warnings.
Also make sure you read through the unparse()
section|/C_unparse_> as various optional flags affect how the
deparsed URI is rendered.
APR::URI provides the following functions and/or methods:
fragmentGet/set trailing ``#fragment'' string
$oldval = $parsed->fragment($newval);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( string or undef )$oldval ( string or undef )
hostinfoGet/set combined [user[:password]@]host[:port]
$oldval = $parsed->hostinfo($newval);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( string or undef )$oldval ( string or undef )The hostinfo value is set automatically when
parse()|/C_parse_ is called.
It's not updated if any of the individual fields is modified.
It's not used when unparse()|/C_unparse_ is called.
hostnameGet/set hostname
$oldval = $parsed->hostname($newval);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( string or undef )$oldval ( string or undef )
passwordGet/set password (as in http://user:password@host:port/)
$oldval = $parsed->password($newval);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( string or undef )$oldval ( string or undef )
parseParse the URI string into URI components
$parsed = APR::URI->parse($pool, $uri);
$parsed
( APR::URI object or class|docs::2.0::api::APR::URI )$pool ( string )
( APR::Pool object|docs::2.0::api::APR::Pool )$uri ( string )$parsed
( APR::URI object or class|docs::2.0::api::APR::URI )After parsing, if a component existed but was an empty string
(e.g. empty query http://hostname/path?) -- the corresponding
accessor will return an empty string. If a component didn't exist
(e.g. no query part http://hostname/path) -- the corresponding
accessor will return undef.
pathGet/set the request path
$oldval = $parsed->path($newval);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( string or undef )$oldval ( string or undef )"/" if only scheme://host
rpathGets the path minus the
path_info|docs::2.0::api::Apache2::RequestRec/C_path_info_
$rpath = $parsed->rpath();
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( string or undef )$oldval ( string or undef )
portGet/set port number
$oldval = $parsed->port($newval);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( number or string or undef )$oldval ( string or undef )port_of_scheme()|/C_port_of_scheme_ to find out the port
number for the given scheme()|/C_scheme_.
port_of_schemeReturn the default port for a given scheme. The recognized schemes are http, ftp, https, gopher, wais, nntp, snews and prospero.
$port = APR::URI::port_of_scheme($scheme);
$scheme ( string )$port (integer)
queryGet/set the query string (the part starting after '?' and all the
way till the end or the '#fragment' part if the latter exists).
$oldval = $parsed->query($newval);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( string or undef )$oldval ( string or undef )
schemeGet/set the protocol scheme (``http'', ``ftp'', ...)
$oldval = $parsed->scheme($newval);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( string or undef )$oldval ( string or undef )
userGet/set user name (as in http://user:password@host:port/)
$oldval = $parsed->user($newval);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$newval ( string or undef )$oldval ( string or undef )
unparseUnparse the URI components back into a URI string
$new_uri = $parsed->unparse(); $new_uri = $parsed->unparse($flags);
$parsed
( APR::URI object|docs::2.0::api::APR::URI )$flags ( the APR::Const :uri constants )APR::Const::URI_UNP_OMITPASSWORD is passed.
If you need to pass more than one flag use unary |, e.g.:
$flags = APR::Const::URI_UNP_OMITUSER|APR::Const::URI_UNP_OMITPASSWORD;
The valid flags constants are listed next
$new_uri ( string )Valid flags constants:
To import all URI constants you could do:
use APR::Const -compile => qw(:uri);
but there is a significant amount of them, most irrelevant to this
method. Therefore you probably don't want to do that. Instead specify
explicitly the ones that you need. All the relevant to this method
constants start with APR::URI_UNP_.
And the available constants are:
APR::Const::URI_UNP_OMITSITEPARTscheme|/C_scheme_, user|/C_user_,
password|/C_password_, hostname|/C_hostname_ and
port|/C_port_ components (i.e. if you want only the relative
URI)
APR::Const::URI_UNP_OMITUSERuser|/C_user_ component
APR::Const::URI_UNP_OMITPASSWORDpassword|/C_password_ component (the default)
APR::Const::URI_UNP_REVEALPASSWORDpassword|/C_password_ component
APR::Const::URI_UNP_OMITPATHINFOpath|/C_path_, query|/C_query_ and
fragment|/C_fragment_ components
APR::Const::URI_UNP_OMITQUERYquery|/C_query_ and fragment|/C_fragment_
components
Notice that some flags overlap.
If the optional $flags argument is passed and contains no
APR::Const::URI_UNP_OMITPASSWORD and no APR::Const::URI_UNP_REVEALPASSWORD --
the password|/C_password_ part will be rendered as a literal
"XXXXXXXX" string.
If the port|/C_port_ number matches the
port_of_scheme()|/C_port_of_scheme_, the unparsed URI won't
include it and there is no flag to force that port|/C_port_ to
appear. If the port|/C_port_ number is non-standard it will show
up in the unparsed string.
Examples:
Starting with the parsed URL:
use APR::URI (); my $url = 'http://user:pass@example.com:80/foo?bar#item5'; my $parsed = APR::URI->parse($r->pool, $url);
deparse it back including and excluding parts, using different values
for the optional flags argument:
password|/C_password_ fields:
print $parsed->unparse;
Prints:
http://user@example.com/foo?bar#item5
Notice that the port|/C_port_ field is gone too, since it was a
default port|/C_port_of_scheme_ for scheme|/C_scheme_
http://.
password|/C_password_ field (by default it's not revealed)
use APR::Const -compile => qw(URI_UNP_REVEALPASSWORD); print $parsed->unparse(APR::Const::URI_UNP_REVEALPASSWORD);
Prints:
http://user:pass@example.com/foo?bar#item5Show all fields but the last three,
path|/C_path_,
query|/C_query_ and fragment|/C_fragment_:
use APR::Const -compile => qw(URI_UNP_REVEALPASSWORD
APR::Const::URI_UNP_OMITPATHINFO);
print $parsed->unparse(
APR::Const::URI_UNP_REVEALPASSWORD|URI_UNP_OMITPATHINFO);
Prints:
http://user:pass@example.com
Apache2::URI|docs::2.0::api::Apache2::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.
| APR::URI - Perl API for URI manipulations |