| WWW-Shorten-PunyURL documentation | Contained in the WWW-Shorten-PunyURL distribution. |
WWW::Shorten::PunyURL - An interface to SAPO's URL shortening service
Version 0.03
PunyURL is a URL shortening service provided by SAPO (http://sapo.pt/). Given a URL, it replies with two versions of the short URL, one using Unicode and RFC3492-compliant (Punycode) and an ASCII-equivalent (lowercase).
You can also provide the shortened URL and get back the original one.
use WWW::Shorten::PunyURL;
my $punyurl = WWW::Shorten::PunyURL->new( url => $long );
$punyurl->shorten;
# or
my $punyurl = WWW::Shorten::PunyURL->new( url => $short );
$punyurl->long;
Optionally, you can give the constructor a timeout value (which defaults to 10 seconds):
my $punyurl = WWW::Shorten::PunyURL->new(
url => $long,
timeout => 5
);
* Write conditional network tests
* Report/fix bug in Regexp::Common::URI (doesn't handle Unicode) UNTIL THIS IS FIXED, REQUESTING THE URL CORRESPONDING TO A PUNYCODE SHORTENED ONE WILL BREAK HORRIBLY AND PROBABLY DESTROY THE WORLD. USE THE ASCII SHORT VERSION FOR NOW.
The service endpoint for PunyURL
This function will return the PunyURL corresponding to the original URL.
This function does the reverse, finding the long URL corresponding to a PunyURL.
Create a new WWW::Shorten::PunyURL object. Takes a string (containing a URL) as the argument (may also take an optional timeout, see SYNOPSIS):
my $punyurl = WWW::Shorten::PunyURL->new( $url );
Give it a long url and you will get two shortened URLs, one using Unicode and its equivalent in lowercase ASCII. Returns undef on failure.
my $result = $punyurl->shorten;
if ( $result ) {
print $punyurl->url, "is now:\n";
print "\t", $punyurl->puny, "\n";
print "\t", $punyurl->ascii, "\n";
print "\t", $punyurl->preview, "\n";
} else {
print STDERR "Error:\n";
print STDERR $punyurl->errstr, "(", $punyurl->error, "\n";
}
Given a short URL (that you previously got through shorten() or any other means), returns the original URL, or undef in case of failure.
$punyurl->long;
Pedro Figueiredo, <me at pedrofigueiredo.org>
Please report any bugs or feature requests to bug-www-shorten-punyurl at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Shorten-PunyURL. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc WWW::Shorten::PunyURL
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=WWW-Shorten-PunyURL
Copyright 2009 Pedro Figueiredo, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| WWW-Shorten-PunyURL documentation | Contained in the WWW-Shorten-PunyURL distribution. |
package WWW::Shorten::PunyURL; use 5.006;
our $VERSION = '0.03';
use Mouse; extends 'WWW::Shorten::generic'; extends 'Exporter'; our @EXPORT = qw( makeashorterlink makealongerlink ); use Mouse::Util::TypeConstraints; use Carp; use Regexp::Common qw/ URI /; use URI::Escape qw/ uri_escape_utf8 /; use LWP::UserAgent; use XML::LibXML; use XML::LibXML::XPathContext; subtype 'URL' => as 'Str' => where { /$RE{URI}/ }; has 'url' => ( is => 'ro', isa => 'URL', required => 1, ); has 'puny' => ( is => 'rw', isa => 'Str', default => '', ); has 'ascii' => ( is => 'rw', isa => 'URL', ); has 'preview' => ( is => 'rw', isa => 'URL', ); has 'original' => ( is => 'rw', isa => 'Str', default => '', ); has 'browser' => ( is => 'rw', isa => 'LWP::UserAgent', lazy_build => 1 ); has 'timeout' => ( is => 'rw', isa => 'Int', default => 10, ); has 'error' => ( is => 'rw', isa => 'Str', default => '', ); has 'errstr' => ( is => 'rw', isa => 'Str', default => '', ); has 'parser' => ( is => 'rw', isa => 'XML::LibXML', lazy_build => 1, ); no Mouse; no Mouse::Util::TypeConstraints; __PACKAGE__->meta->make_immutable;
use constant ENDPOINT => 'http://services.sapo.pt/PunyURL';
sub makeashorterlink { my $url = shift or croak 'No URL passed to makeashorterlink()'; my $puny = __PACKAGE__->new( $url ); return $puny->shorten->ascii; }
sub makealongerlink { my $puny = shift or croak 'No PunyURL passed to makealongerlink()'; my $url = __PACKAGE__->new( $puny ); return $url->long->original; }
sub shorten { my $self = shift; my $request = ENDPOINT.'/GetCompressedURLByURL?url='.$self->_urlencode; my $xml = $self->_do_http( $request ); return undef unless $xml; my $xpc = $self->_get_xpc( $xml ); my $puny = $xpc->findvalue( '//p:puny' ); my $ascii = $xpc->findvalue( '//p:ascii' ); my $preview = $xpc->findvalue( '//p:preview' ); $self->puny( $puny ); $self->ascii( $ascii ); $self->preview( $preview ); return $self; }
sub long { my $self = shift; my $request = ENDPOINT.'/GetURLByCompressedURL?url='.$self->_urlencode; my $xml = $self->_do_http( $request ); return undef unless $xml; my $xpc = $self->_get_xpc( $xml ); my $original = $xpc->findvalue( '//p:url' ); $self->original( $original ); return $self; }
sub _do_http { my $self = shift; my $uri = shift; my $response = $self->browser->get( $uri ); if ( ! $response->is_success ) { $self->error( $response->code ); $self->errstr( $response->status_line ); return undef; } if ( $response->content_type ne 'text/xml' ) { $self->error( '501' ); $self->errstr( 'Wrong Content-Type received: ' . $response->content_type ); return undef; } return $response->content; }
sub _get_xpc { my $self = shift; my $xml = shift; my $doc = $self->parser->parse_string( $xml ); my $xpc = XML::LibXML::XPathContext->new( $doc ); $xpc->registerNs( 'p', 'http://services.sapo.pt/Metadata/PunyURL' ); return $xpc; }
sub _urlencode { my $self = shift; return uri_escape_utf8( $self->url, '^A-Za-z0-9_-' ); }
sub _build_browser { my $self = shift; my $ua = LWP::UserAgent->new; $ua->timeout( $self->timeout ); $ua->env_proxy; return $ua; }
sub _build_parser { return XML::LibXML->new; }
1; # End of WWW::Shorten::PunyURL