File Coverage

blib/lib/WWW/Scraper/ISBN/PickABook_Driver.pm
Criterion Covered Total %
statement 68 68 100.0
branch 9 18 50.0
condition 11 21 52.3
subroutine 8 8 100.0
pod 1 1 100.0
total 97 116 83.6


line stmt bran cond sub pod time code
1             package WWW::Scraper::ISBN::PickABook_Driver;
2              
3 6     6   128248 use strict;
  6         16  
  6         267  
4 6     6   31 use warnings;
  6         10  
  6         439  
5              
6 6     6   29 use vars qw($VERSION @ISA);
  6         14  
  6         532  
7             $VERSION = '0.07';
8              
9             #--------------------------------------------------------------------------
10              
11             =head1 NAME
12              
13             WWW::Scraper::ISBN::PickABook_Driver - Search driver for the Pick-A-Book online book catalog.
14              
15             =head1 SYNOPSIS
16              
17             See parent class documentation (L)
18              
19             =head1 DESCRIPTION
20              
21             Searches for book information from the Pick-A-Book online book catalog.
22              
23             =cut
24              
25             #--------------------------------------------------------------------------
26              
27             ###########################################################################
28             # Inheritence
29              
30 6     6   30 use base qw(WWW::Scraper::ISBN::Driver);
  6         8  
  6         3733  
31              
32             ###########################################################################
33             # Modules
34              
35 6     6   10780 use WWW::Mechanize;
  6         885773  
  6         330  
36              
37             ###########################################################################
38             # Constants
39              
40 6     6   65 use constant REFERER => 'http://www.pickabook.co.uk/';
  6         9  
  6         477  
41 6     6   26 use constant SEARCH => 'http://www.pickabook.co.uk/%s.aspx?ToSearch=TRUE';
  6         8  
  6         5602  
42             my ($URL1,$URL2) = ('http://www.PickABook.co.uk/book/','/[^?]+\?b=\-3\&t=\-26\#Bibliographicdata\-26');
43              
44             #--------------------------------------------------------------------------
45              
46             ###########################################################################
47             # Public Interface
48              
49             =head1 METHODS
50              
51             =over 4
52              
53             =item C
54              
55             Creates a query string, then passes the appropriate form fields to the
56             Book Depository server.
57              
58             The returned page should be the correct catalog page for that ISBN. If not the
59             function returns zero and allows the next driver in the chain to have a go. If
60             a valid page is returned, the following fields are returned via the book hash:
61              
62             isbn (now returns isbn13)
63             isbn10
64             isbn13
65             ean13 (industry name)
66             author
67             title
68             book_link
69             image_link
70             thumb_link
71             description
72             pubdate
73             publisher
74             binding (if known)
75             pages (if known)
76              
77             The book_link, image_link and thumb_link all refer back to the Pick-A-Book
78             website.
79              
80             =back
81              
82             =cut
83              
84             sub search {
85 4     4 1 16469 my $self = shift;
86 4         9 my $isbn = shift;
87 4         18 $self->found(0);
88 4         53 $self->book(undef);
89              
90             # validate and convert into EAN13 format
91 4         36 my $ean = $self->convert_to_ean13($isbn);
92 4 50 66     191 return $self->handler("Invalid ISBN specified")
      33        
      66        
      33        
93             if(!$ean || (length $isbn == 13 && $isbn ne $ean)
94             || (length $isbn == 10 && $isbn ne $self->convert_to_isbn10($ean)));
95              
96 4         99 my $mech = WWW::Mechanize->new();
97 4         19524 $mech->agent_alias( 'Windows IE 6' );
98 4         303 $mech->add_header( 'Accept-Encoding' => undef );
99 4         57 $mech->add_header( 'Referer' => REFERER );
100              
101 4         56 my $search = sprintf SEARCH , $ean;
102             #print STDERR "\n# search=[$search]\n";
103              
104 4         9 eval { $mech->get( $search ) };
  4         27  
105 4 50 66     283171133 return $self->handler("The Pick-A-Book website appears to be unavailable.")
      66        
106             if($@ || !$mech->success() || !$mech->content());
107              
108             # The Book page
109 1         77 my $html = $mech->content();
110              
111 1 50 33     3914 return $self->handler("Failed to find that book on the Pick-A-Book website. [$isbn]")
112             if(!$html || $html =~ m!Your search for "ISBN = \d+"\s+has produced 0 results.!si);
113              
114 1         735 $html =~ s/&/&/g;
115             #print STDERR "\n# content2=[\n$html\n]\n";
116              
117 1         7 my $data;
118 1         4909 ($data->{author},$data->{title})
119             = $html =~ m!]*>([^<]+)!si;
120 1         2849 ($data->{binding}) = $html =~ m!]*>([^<]+)!si;
121 1         2871 ($data->{isbn13}) = $html =~ m!]*>([^<]+)!si;
122 1         2986 ($data->{isbn10}) = $html =~ m!]*>([^<]+)!si;
123 1         2938 ($data->{publisher}) = $html =~ m!]*>([^<]+)!si;
124 1         2981 ($data->{pubdate}) = $html =~ m!]*>([^<]+)!si;
125 1         2862 ($data->{pages}) = $html =~ m!]*>([^<]+)!si;
126 1         2449 ($data->{description}) = $html =~ m!]*>([^<]+)!si;
127 1         2808 ($data->{isbn10}) = $html =~ m!]*>([^<]+)!si;
128 1         6629 ($data->{image}) = $html =~ m!]*>!si;
129              
130 1 50       12 if($data->{image}) {
131 1         9 $data->{image} = REFERER . $data->{image};
132 1         5 $data->{thumb} = $data->{image};
133             }
134 1 50       16 $data->{author} =~ s/.*?\s+by\s+// if($data->{author});
135 1 50       8 $data->{publisher} =~ s/�?39;/'/g if($data->{publisher});
136 1         3 for(qw(title author publisher)) {
137 3 50       10 next unless($data->{$_});
138 3         74 $data->{$_} =~ s/([\w']+)/\u\L$1/g;
139             }
140              
141             #use Data::Dumper;
142             #print STDERR "\n# " . Dumper($data);
143              
144 1 50       6 return $self->handler("Could not extract data from the Pick-A-Book result page.")
145             unless(defined $data);
146              
147             # trim top and tail
148 1         6 foreach (keys %$data) {
149 11 50       16 next unless(defined $data->{$_});
150 11         15 $data->{$_} =~ s! ! !g;
151 11         15 $data->{$_} =~ s/^\s+//;
152 11         31 $data->{$_} =~ s/\s+$//;
153             }
154              
155 1         13 my $url = $mech->uri();
156              
157 1         54 my $bk = {
158             'ean13' => $data->{isbn13},
159             'isbn13' => $data->{isbn13},
160             'isbn10' => $data->{isbn10},
161             'isbn' => $data->{isbn13},
162             'author' => $data->{author},
163             'title' => $data->{title},
164             'book_link' => "$url",
165             'image_link' => $data->{image},
166             'thumb_link' => $data->{thumb},
167             'description' => $data->{description},
168             'pubdate' => $data->{pubdate},
169             'publisher' => $data->{publisher},
170             'binding' => $data->{binding},
171             'pages' => $data->{pages},
172             'html' => $html
173             };
174              
175             #use Data::Dumper;
176             #print STDERR "\n# book=".Dumper($bk);
177              
178 1         35 $self->book($bk);
179 1         19 $self->found(1);
180 1         8 return $self->book;
181             }
182              
183             1;
184              
185             __END__