package Bot::BasicBot::Pluggable::Module::IMDB; use strict; use Bot::BasicBot::Pluggable::Module; use base qw(Bot::BasicBot::Pluggable::Module); sub said { my ($self, $mess, $pri) = @_; my $body = $mess->{body}; my $who = $mess->{who}; return unless ($pri == 2); return unless $body =~ s!^\s*imdb (for )?!!; my $date = ""; my $url = $body; if ($url =~ s/( \(\d+\))$//) { $date = $1; } $url =~ s/^(The|A|An|Les|Le|Das) (.*)/$2, $1/i; $url = "http://www.imdb.com/M/title-substring?title=$url$date&type=fuzzy"; $url =~ s/ /+/g; return "$body can be found at $url"; } sub help { return "Commands: 'imdb (for ) '"; } 1; =head1 NAME Bot::BasicBot::Pluggable::Module::IMDB - give the url of a search on IMDB =head1 SYNOPSIS This is almost useless but it's provided as part of Infobot backwards compatability. =head1 IRC USAGE imdb (for ) [ ] =head1 AUTHOR Simon Wistow, =head1 COPYRIGHT Copyright 2005, Simon Wistow Distributed under the same terms as Perl itself. =head1 SEE ALSO =cut