Youtube: remove COOKIE metadata
[videosite.git] / videosite / WimpGrabber.pm
index c4f259f..e9b14ff 100644 (file)
@@ -8,7 +8,6 @@ package videosite::WimpGrabber;
 use videosite::GrabberBase;
 @ISA = qw(videosite::GrabberBase);
 
-use LWP::Simple qw(!get);
 use MIME::Base64;
 use HTML::Parser;
 use Data::Dumper;
@@ -20,6 +19,8 @@ sub new {
     my $self = $class->SUPER::new();
 
     $self->{'NAME'} = 'wimp';
+    $self->{_SELFTESTURL} = 'http://www.wimp.com/insanebuilding/';
+    $self->{_SELFTESTTITLE} = 'Insane building.';
     $self->{'PATTERNS'} = ['(http://(?:[-a-zA-Z0-9_.]+\.)*wimp.com/([^/]+)/?)'];
 
     bless($self, $class);
@@ -50,7 +51,7 @@ sub _parse {
     $metadata->{'TITLE'} = undef;
     $metadata->{'DLURL'} = undef;
 
-    unless(defined($content = LWP::Simple::get(sprintf('http://www.wimp.com/%s', $2)))) {
+    unless(defined($content = $self->simple_get(sprintf('http://www.wimp.com/%s', $2)))) {
         $self->error('Could not download %s', $url);
         return undef;
     }