1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
# $Id$
=head1 NAME
WWW::Shorten::TinyURL - Perl interface to tinyurl.com
=head1 SYNOPSIS
use WWW::Shorten::TinyURL;
use WWW::Shorten 'TinyURL';
$short_url = makeashorterlink($long_url);
$long_url = makealongerlink($short_url);
=head1 DESCRIPTION
A Perl interface to the web site tinyurl.com. TinyURL simply maintains
a database of long URLs, each of which has a unique identifier.
=cut
package WWW::Shorten::TinyURL;
use 5.006;
use strict;
use warnings;
use base qw( WWW::Shorten::generic Exporter );
our @EXPORT = qw( makeashorterlink makealongerlink );
our $VERSION = '1.90';
use Carp;
=head1 Functions
=head2 makeashorterlink
The function C<makeashorterlink> will call the TinyURL web site passing
it your long URL and will return the shorter TinyURL version.
=cut
sub makeashorterlink ($)
{
my $url = shift or croak 'No URL passed to makeashorterlink';
my $ua = __PACKAGE__->ua();
my $tinyurl = 'http://tinyurl.com/api-create.php';
my $resp = $ua->post($tinyurl, [
url => $url,
source => "PerlAPI-$VERSION",
]);
return undef unless $resp->is_success;
my $content = $resp->content;
return undef if $content =~ /Error/;
if ($resp->content =~ m!(\Qhttp://tinyurl.com/\E\w+)!x) {
return $1;
}
return;
}
=head2 makealongerlink
The function C<makealongerlink> does the reverse. C<makealongerlink>
will accept as an argument either the full TinyURL URL or just the
TinyURL identifier.
If anything goes wrong, then either function will return C<undef>.
=cut
sub makealongerlink ($)
{
my $tinyurl_url = shift
or croak 'No TinyURL key / URL passed to makealongerlink';
my $ua = __PACKAGE__->ua();
$tinyurl_url = "http://tinyurl.com/$tinyurl_url"
unless $tinyurl_url =~ m!^http://!i;
my $resp = $ua->get($tinyurl_url);
return undef unless $resp->is_redirect;
my $url = $resp->header('Location');
return $url;
}
1;
__END__
=head2 EXPORT
makeashorterlink, makealongerlink
=head1 SUPPORT, LICENCE, THANKS and SUCH
See the main L<WWW::Shorten> docs.
=head1 AUTHOR
Iain Truskett <spoon@cpan.org>
=head1 SEE ALSO
L<WWW::Shorten>, L<perl>, L<http://tinyurl.com/>
=cut
|