#$Id$ =head1 NAME WWW::Shorten - Interface to URL shortening sites. =head1 SYNOPSIS use WWW::Shorten 'Linkz'; use WWW::Shorten 'MakeAShorterLink'; use WWW::Shorten 'Metamark'; use WWW::Shorten 'NotLong'; use WWW::Shorten 'OneShortLink'; use WWW::Shorten 'Shorl'; use WWW::Shorten 'TinyClick'; use WWW::Shorten 'TinyLink'; use WWW::Shorten 'TinyURL'; # Individual modules have have their # own syntactic variations. # See the documentation for the particular # module you intend to use for details, trips # and traps. $short_url = makeashorterlink($long_url); $long_url = makealongerlink($short_url); # If you don't like the function names: use WWW::Shorten 'Metamark', ':short'; $short_url = short_link( $long_url ); $long_url = long_link( $short_url ); =head1 ABSTRACT A Perl interface to URL shortening sites. These sites maintain databases of long URLs, each of which has a unique identifier. =head1 DESCRIPTION The function C will call the relevant web site passing it your long URL and will return the shorter version. The function C does the reverse. C will accept as an argument either the full shortened URL or just the identifier. If anything goes wrong, then either function will return C. =cut package WWW::Shorten; use 5.006; use strict; use warnings; use base qw(WWW::Shorten::generic); our @EXPORT = qw(makeashorterlink makealongerlink); our $VERSION = '3.00'; our $DEFAULT_SERVICE = 'Metamark'; use Carp; my $style; =head1 Subroutines =head2 import Called when the module is Cd. Loads the correct sub-module =cut sub import { my $class = shift; $style = shift; $style = $DEFAULT_SERVICE unless defined $style; my $package = "${class}::${style}"; eval { my $file = $package; $file =~ s/::/\//g; require "$file.pm"; }; croak $@ if $@; $package->import( @_ ); } 1; __END__ =head2 EXPORT makeashorterlink, makealongerlink Or, if you specify C<:short> on the import line, you instead get C and C. If you explicitly want the default set, use C<:default>. Actually these functions are exported from the relevant subclass. =head1 COMMAND LINE PROGRAM A very simple program called F is supplied in the distribution's F folder. This program takes a URL and gives you a shortened version of it. =head1 EXAMPLES and PROGRAMS Adam Kessel wrote F, a program that uses C to filter a file, converting long URLs to short ones. http://bostoncoop.net/adam/shorlfilter There is also a F directory in this distribution which contains a sample program. =head1 NO LONGER SUPPORTED The URL-shortening industry is pretty volatile. Many sites exist for a while and then go away. The most famous of those is probably Make A Shorter Link (the site that originally inspired this suite of modules). MASL has been acquired by TinyURL.com and no longer exists. Here is a list of sites that were once supported by this module and are no longer with us: =over 4 =item MakeAShorterLink =item BabyURL =item EkDk =item qURL (although the differently capitalised Qurl.com now uses their old domain) =item ShortLink =item SmLnk =item URLjr =item V3 =back See Joshua Schachter's blog entry at L for some very interesting discussion on some problems that can be caused by the volatility of this part of the web industry. =head1 RELATED MODULES =head2 Similar Aim L is what this module was originally based upon. That module is obsoleted by L, one of the many subclasses of L. Of course, with the demise of Make A Shorter Link, neither the obsolete module nor it's replacement are of any use. =head2 Same Area, Different Purpose L provides building blocks for you to create your own URL shortening service. It provides routines to shoretn a URL, lengthen one, and it keeps a store. Nice and easy. =head1 THANKS Dave Cross for L Alex Page for the original LWP hacking on which Dave based his code. Simon Batistoni for giving the C idea to Dave. Eric Hammond for writing the NotLong variant. Shashank Tripathi for providing both SnipURL.com and advice on the module. Kevin Gilbertson (Gilby) supplied information on the TinyURL API. Matt Felsen (mattf) wanted shorter function names. Ask Bjoern Hansen for providing both Metamark.net and advice on the module. Martin Thurn for helping me notice a bug and for a suggestion regarding F. Jon and William (jon and wjr at smlnk.com respectively) for providing SmLnk.com. P J Goodwin for providing the code for L. And especial thanks to all providers of these services. =head1 BUGS, REQUESTS, COMMENTS Support for this module is supplied using the CPAN RT system via the web or email: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Shorten ( shorter URL: http://xrl.us/rfb ) bug-www-shorten@rt.cpan.org This makes it much easier for me to track things and thus means your problem is less likely to be neglected. =head1 LICENCE AND COPYRIGHT WWW::Shorten::NotLong copyright (c) Eric Hammond . Other modules copyright (c) Magnum Solutions Ltd., 2007. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.000 or, at your option, any later version of Perl 5 you may have available. The full text of the licences can be found in the F and F files included with this module, or in L and L as supplied with Perl 5.8.1 and later. =head1 AUTHOR Original Iain Truskett Based on WWW::MakeAShorterLink by Dave Cross In 2004 Dave Cross took over the maintenance of this distribution following the death of Iain Truskett. =head1 SEE ALSO L, L. =cut