mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-02 18:19:33 +01:00
100 lines
2.1 KiB
Perl
Executable File
100 lines
2.1 KiB
Perl
Executable File
#!/usr/bin/perl -w -I /home/msmud/lib/lib/perl5/site_perl/5.10.0/
|
|
|
|
# Quick and dirty by :pragma
|
|
|
|
use LWP::UserAgent;
|
|
use HTML::Entities;
|
|
|
|
my ($text);
|
|
|
|
if ($#ARGV <= 0)
|
|
{
|
|
print "Usage: !title nick URL\n";
|
|
exit;
|
|
}
|
|
|
|
my $nick = shift(@ARGV);
|
|
$arguments = join("%20", @ARGV);
|
|
|
|
exit if($arguments =~ m/sprunge.us/i);
|
|
exit if($arguments =~ m/hastebin.com/i);
|
|
exit if($arguments =~ m/lmgtfy.com/i);
|
|
exit if($arguments =~ m/gyazo/i);
|
|
exit if($arguments =~ m/imagebin/i);
|
|
exit if($arguments =~ m/\/wiki\//i);
|
|
exit if($arguments =~ m/github.com/i);
|
|
exit if($arguments =~ m/wiki.osdev.org/i);
|
|
exit if($arguments =~ m/wikipedia.org/i);
|
|
exit if($arguments =~ m/everfall.com/i);
|
|
exit if($arguments =~ m/\/paste\//i);
|
|
exit if($arguments =~ m/paste\./i);
|
|
exit if($arguments =~ m/pastie/i);
|
|
exit if($arguments =~ m/ideone.com/i);
|
|
exit if($arguments =~ m/codepad.org/i);
|
|
exit if($arguments =~ m/^http\:\/\/past(e|ing)\./i);
|
|
exit if($arguments =~ m/paste.*\.(?:com|org|net|ch|ca|uk|info)/i);
|
|
exit if($arguments =~ m/pasting.*\.(?:com|org|net|ca|uk|info|ch)/i);
|
|
|
|
my $ua = LWP::UserAgent->new;
|
|
$ua->agent("Mozilla/5.0");
|
|
$ua->max_size(200 * 1024);
|
|
|
|
my $response = $ua->get("$arguments");
|
|
|
|
if (not $response->is_success)
|
|
{
|
|
#print "Couldn't get link.\n";
|
|
die "Couldn't get link: $arguments";
|
|
}
|
|
|
|
$text = $response->content;
|
|
|
|
if($text =~ m/<title>(.*?)<\/title>/msi)
|
|
{
|
|
$t = $1;
|
|
} else {
|
|
#print "No title for link.\n";
|
|
exit;
|
|
}
|
|
|
|
my $quote = chr(226) . chr(128) . chr(156);
|
|
my $quote2 = chr(226) . chr(128) . chr(157);
|
|
my $dash = chr(226) . chr(128) . chr(147);
|
|
|
|
$t =~ s/\s+/ /g;
|
|
$t =~ s/^\s+//g;
|
|
$t =~ s/\s+$//g;
|
|
$t =~ s/<[^>]+>//g;
|
|
$t =~ s/<\/[^>]+>//g;
|
|
$t =~ s/$quote/"/g;
|
|
$t =~ s/$quote2/"/g;
|
|
$t =~ s/$dash/-/g;
|
|
$t =~ s/"/"/g;
|
|
$t =~ s/“/"/g;
|
|
$t =~ s/”/"/g;
|
|
$t =~ s/&/&/g;
|
|
$t =~ s/&nsb;/ /g;
|
|
$t =~ s/'/'/g;
|
|
$t =~ s/</</g;
|
|
$t =~ s/>/>/g;
|
|
$t =~ s/«/<</g;
|
|
$t =~ s/»/>>/g;
|
|
$t =~ s/>/>/g;
|
|
$t =~ s/•/-/g;
|
|
$t =~ s/<em>//g;
|
|
$t =~ s/<\/em>//g;
|
|
|
|
if(length $t > 150) {
|
|
$t = substr($t, 0, 150);
|
|
$t = "$t [...]";
|
|
}
|
|
|
|
# $nick =~ s/^(.)(.*)/$1|$2/;
|
|
|
|
$t = decode_entities($t);
|
|
|
|
$t =~ s/^\s+//;
|
|
$t =~ s/\s+$//;
|
|
|
|
print "Title of $nick\'s link: $t\n" if length $t;
|