package URI::FromHash; use strict; use warnings; use base 'Exporter'; use vars qw( $VERSION @EXPORT_OK ); $VERSION = '0.02'; @EXPORT_OK = qw( uri uri_object ); use Params::Validate qw( validate SCALAR HASHREF ); use URI; use URI::QueryParam; my %BaseParams = ( scheme => { type => SCALAR, optional => 1 }, username => { type => SCALAR, optional => 1 }, password => { type => SCALAR, default => '' }, host => { type => SCALAR, optional => 1 }, port => { type => SCALAR, optional => 1 }, path => { type => SCALAR, optional => 1 }, query => { type => HASHREF, default => {} }, fragment => { type => SCALAR, optional => 1 }, ); sub uri_object { my %p = validate( @_, \%BaseParams ); _check_required(\%p); my $uri = URI->new(); $uri->scheme( $p{scheme} ) if grep { defined && length } $p{scheme}; if ( grep { defined && length } $p{username}, $p{password} ) { $p{username} ||= ''; $p{password} ||= ''; if ( $uri->can('user') && $uri->can('password') ) { $uri->user( $p{username} ); $uri->password( $p{password} ); } else { $uri->userinfo( "$p{username}:$p{password}" ); } } $uri->host( $p{host} ) if grep { defined && length } $p{host}; $uri->port( $p{port} ) if grep { defined && length } $p{port}; $uri->path( $p{path} ) if grep { defined && length } $p{path}; while ( my ( $k, $v ) = each %{ $p{query} } ) { $uri->query_param( $k => $v ); } $uri->fragment( $p{fragment} ) if grep { defined && length } $p{fragment} ; return $uri; } sub uri { my %p = validate( @_, { %BaseParams, query_separator => { type => SCALAR, default => ';' }, }, ); _check_required(\%p); my $sep = delete $p{query_separator}; my $uri = uri_object(%p); if ( $sep ne '&' && $uri->query() ) { my $query = $uri->query(); $query =~ s/&/$sep/g; $uri->query($query); } # force stringification return $uri->canonical() . ''; } sub _check_required { my $p = shift; unless ( ( grep { defined and length } map { $p->{$_} } qw( host path fragment ) ) || keys %{ $p->{query} } ) { require Carp; local $Carp::CarpLevel = 1; Carp::croak( 'None of the required parameters ' . '(host, path, fragment, or query) were given' ); } } 1; __END__ =head1 NAME URI::FromHash - The fantastic new URI::FromHash! =head1 SYNOPSIS Perhaps a little code snippet. use URI::FromHash; my $foo = URI::FromHash->new; =head1 DESCRIPTION This module provides a simple functional "named parameters" style interface for creating URIs. Underneath the hood it uses C, though because of the simplified interface it may not support all possible options for all types of URIs. It was created for the common case where you simply want to have a simple interface for creating syntactically correct URIs from known components (like a path and query string). Doing this using the native C interface is rather tedious, requiring a number of method calls, which is particularly ugly when done inside a templating system such as Mason or TT2. =head1 FUNCTIONS This module provides two functions both of which are I exportable: =over 4 =item * uri( ... ) =item * uri_object( ... ) Both of these functions accept the same set of parameters, except for one additional parameter allowed when calling C. The C function simply returns a string representing a canonicalized URI based on the provided parameters. The C function returns new a C object based on the given parameters. These parameters are: =over 8 =item o scheme The URI's scheme. This is optional, and if none is given you will create a schemeless URI. This is useful if you want to create a URI to a path on the same server (as is commonly done in C<< >> tags). =item o host =item o port =item o path =item o username =item o password =item o fragment All of these are optional strings which can be used to specify that part of the URI. =item o query This should be a hash reference of query parameters. The values for each key may be a scalar or array reference. Use an array reference to provide multiple values for one key. =item o query_separator This option is can I be provided when calling C. By default, it is a semi-colon (;). =back =back =head1 AUTHOR Dave Rolsky, =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 COPYRIGHT & LICENSE Copyright 2006 Dave Rolsky, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut