fix quoting in AsyncWgetFileGetter again
[videosite.git] / videosite / CollegeHumorGrabber.pm
1 # Grabber for collegehumor.com
2 #
3 # (c) 2007 by Ralf Ertzinger <ralf@camperquake.de>
4 # licensed under GNU GPL v2
5
6 package videosite::CollegeHumorGrabber;
7
8 use videosite::GrabberBase;
9 @ISA = qw(videosite::GrabberBase);
10
11 use videosite::HTMLHelper;
12 use XML::Simple;
13 use Data::Dumper;
14
15 use strict;
16
17 sub new {
18     my $class = shift;
19     my $self = $class->SUPER::new(
20         NAME => 'collegehumor',
21         _SELFTESTURL => 'http://www.collegehumor.com/video/5635400/pixar-intro-parody',
22         _SELFTESTTITLE => 'Pixar Intro Parody',
23         PATTERNS => ['(http://www.collegehumor.com/video:(\d+))',
24                      '(http://www.collegehumor.com/video/(\d+))'],
25         @_,
26     );
27
28     return bless($self, $class);
29 }
30
31 sub _parse {
32     my $self = shift;
33     my $url = shift;
34     my $pattern = shift;
35     my $content;
36     my $metadata = {};
37     my $p = XML::Simple->new();
38     my @accum;
39     my $t;
40
41     $url =~ m|$pattern|;
42     $url = $1;
43
44     $metadata->{'URL'} = $url;
45     $metadata->{'ID'} = $2;
46     $metadata->{'TYPE'} = 'video';
47     $metadata->{'SOURCE'} = $self->{'NAME'};
48     $metadata->{'TITLE'} = undef;
49     $metadata->{'DLURL'} = undef;
50
51     # Get the XML file containing the video metadata
52     unless(defined($content = $self->simple_get(sprintf('http://www.collegehumor.com/moogaloop/video/%s', $2)))) {
53         $self->error('Could not download XML metadata');
54         return undef;
55     }
56
57     unless(defined($t = $p->XMLin($content))) {
58         $self->error('Could not parse XML metadata');
59         return undef;
60     }
61
62     $metadata->{'DLURL'} = $t->{'video'}->{'file'};
63     $metadata->{'TITLE'} = $t->{'video'}->{'caption'};
64
65     unless(defined($metadata->{'DLURL'}) && defined($metadata->{'TITLE'})) {
66         $self->error('Could not extract download URL and title');
67         return undef;
68     }
69
70     return $metadata;
71 }
72
73 1;