/usr/share/perl5/WWW/Search/AltaVista.pm is in libwww-search-perl 2.51.30-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | # AltaVista.pm
# by John Heidemann
# Copyright (C) 1996-1998 by USC/ISI
# $Id: AltaVista.pm,v 2.905 2008/01/21 02:04:11 Daddy Exp $
#
# Complete copyright notice follows below.
=head1 NAME
WWW::Search::AltaVista - class for searching www.altavista.com
=head1 SYNOPSIS
require WWW::Search;
$search = new WWW::Search('AltaVista');
=head1 DESCRIPTION
This class is an AltaVista specialization of WWW::Search.
It handles making and interpreting AltaVista searches
F<http://www.altavista.com>.
This class exports no public interface; all interaction should
be done through WWW::Search objects.
=head1 OPTIONS
The default is "any of these words" (OR of query terms).
=over 8
=item aqa=all+of+these+words
Add the AND of these words to the query.
=item aqp=this+exact+phrase
Add "this exact phrase" to the query.
=item aqo=any+of+these+words
Add the OR of these words to the query.
This is where the query is placed by default.
=item aqn=none+of+these+words
Add NOT these words to the query.
=item aqb=(boolean+AND+expression)+NEAR+entry
Add a boolean expression to the query.
Operators are AND, OR, AND NOT, and NEAR.
In the browser interface, the boolean expression can not be combined with any other query types listed above.
You should probably build the boolean expression with parentheses and spaces and urlescape it.
=item aqs=these+words
Pages containing "these words" will be ranked highest.
=item kgs=[0,1]
To restrict the search to U.S. websites, set kgs=1.
The default is world-wide, kgs=0.
=item kls=[0,1]
To restrict the search to pages in English and Spanish, set kls=1.
The default is no language restrictions, kls=0.
=item filetype=[html,pdf]
To restrict the search to HTML pages only, set filetype=html.
To restrict the search to PDF pages only, set filetype=pdf.
The default is no restriction on page type, filetype=.
=item rc=dmn&swd=net+org+or.jp
To restrict the search to pages from certain domains,
set rc=dmn and set swd to a list of desired toplevel domains.
=item rc=url&lh=www.sandcrawler.com/SWB
To restrict the search to pages from a particular site,
set rc=url and set lh to the site name and path.
Leave off the http:// from the site.
=back
=head1 PUBLIC METHODS
=cut
#####################################################################
package WWW::Search::AltaVista;
use strict;
use warnings;
use Carp ();
use Date::Manip;
use WWW::Search qw( generic_option strip_tags unescape_query );
use WWW::Search::Result;
use base 'WWW::Search';
our $MAINTAINER = 'Martin Thurn <mthurn@cpan.org>';
our
$VERSION = do { my @r = (q$Revision: 2.905 $ =~ /\d+/g); sprintf "%d."."%03d" x $#r, @r };
sub _undef_to_emptystring
{
return defined($_[0]) ? $_[0] : "";
} # _undef_to_emptystring
=head2 gui_query
Call this instead of native_query() if you want to get the same results as your average Joe web surfer.
=cut
sub gui_query
{
my ($self, $sQuery, $rh) = @_;
$self->{'_options'} = {
'search_host' => 'http://www.altavista.com',
'search_path' => '/web/results',
'q' => $sQuery,
'kls' => 0,
avkw => 'qtrp',
};
return $self->native_query($sQuery, $rh);
} # gui_query
=head1 PRIVATE METHODS
=head2 native_setup_search
This private method does the heavy lifting after you call native_query()
or gui_query().
=cut
sub native_setup_search
{
my ($self, $native_query, $native_options_ref) = @_;
$self->user_agent('user');
$self->{_next_to_retrieve} = 0;
if (!defined($self->{_options}))
{
$self->{_options} = {
'pg' => 'aq',
'avkw' => 'qtrp',
'aqmode' => 's',
'aqo' => $native_query,
'kgs' => 0,
'kls' => 0,
# 'dt' => 'dtrange',
'rc' => 'dmn',
'nbq' => '50',
'search_host' => 'http://www.altavista.com',
'search_path' => '/web/results',
};
if ((my $s = $self->date_from) ne '')
{
$s = &UnixDate($s, '%m/%d/%y');
$self->{_options}->{d0} = $s;
$self->{_options}->{dt} = 'dtrange';
} # if
if ((my $s = $self->date_to) ne '')
{
$s = &UnixDate($s, '%m/%d/%y');
$self->{_options}->{d1} = $s;
$self->{_options}->{dt} = 'dtrange';
} # if
} # if
my($options_ref) = $self->{_options};
if (defined($native_options_ref))
{
# Copy in new options.
foreach (keys %$native_options_ref)
{
$options_ref->{$_} = $native_options_ref->{$_};
} # foreach
} # if
# Process the options.
my $options = '';
# For Intranet search to work, mss option must be first:
if (exists $options_ref->{'mss'})
{
$options .= 'mss=' . $options_ref->{'mss'} . '&';
} # if
foreach my $key (keys %$options_ref)
{
# printf STDERR "option: $_ is " . $options_ref->{$_} . "\n";
next if (generic_option($key));
next if $key eq 'mss';
$options .= $key . '=' . $options_ref->{$key} . '&';
} # foreach
chop $options;
$self->{_debug} = $options_ref->{'search_debug'};
$self->{_debug} = 2 if ($options_ref->{'search_parse_debug'});
$self->{_debug} = 0 if (!defined($self->{_debug}));
# Finally figure out the url.
$self->{_base_url} =
$self->{_next_url} =
$self->{_options}{'search_host'} . $self->{_options}{'search_path'} .'?'. $options;
# print STDERR $self->{_base_url} . "\n" if ($self->{_debug});
} # native_setup_search
sub _count_pattern
{
# Pattern for matching result-count in many languages.
# Language-specific subclasses might need to override this.
return qr{\b(?:found|fand)
\s+
([0-9.,]+)
\s+
# This covers English and German:
(?:result|headline|Ergebnisse)
}x;
} # _count_pattern
sub _preprocess_results_page
{
my $self = shift;
my $sPage = shift;
# return $sPage;
# For debugging only. Print the page contents and abort.
print STDERR '='x 25, "\n\n", $sPage, "\n\n", '='x 25;
exit 88;
} # _preprocess_results_page
=head2 parse_tree
This private method does the hard work of parsing the results out of the HTML.
=cut
sub parse_tree
{
my $self = shift;
my $tree = shift;
my $iHits = 0;
my $iCountSpoof = 0;
my $WS = q{[\t\r\n\240\ ]};
# Only try to parse the hit count if we haven't done so already:
print STDERR " + start, approx_h_c is ==", $self->approximate_hit_count(), "==\n" if 2 <= $self->{_debug};
if ($self->approximate_hit_count() < 1)
{
# Sometimes the hit count is inside a <DIV> tag:
my @aoDIV = $tree->look_down('_tag' => 'div',
'class' => 'xs',
);
# Sometimes the hit count is inside a <SPAN> tag:
push @aoDIV, $tree->look_down('_tag' => 'span',
'class' => 'y',
);
my $qrCount = $self->_count_pattern;
DIV_TAG:
foreach my $oDIV (@aoDIV)
{
next unless ref $oDIV;
print STDERR " + try DIV ==", $oDIV->as_HTML if 2 <= $self->{_debug};
my $s = $oDIV->as_text;
print STDERR " + TEXT ==$s==\n" if 2 <= $self->{_debug};
if ($s =~ m!$qrCount!i)
{
my $iCount = $1 || '';
$iCount =~ tr!.,!!d;
$self->approximate_result_count($iCount);
print STDERR " + found approx_h_c is ==", $self->approximate_hit_count(), "==\n" if (2 <= $self->{_debug});
last DIV_TAG;
} # if
} # foreach DIV_TAG
} # if
# Get the hits:
my @aoA = $tree->look_down(
'_tag' => 'a',
'class' => 'res',
);
A_TAG:
foreach my $oA (@aoA)
{
# <a class="res" href="/r?ck_sm=4bf6b336&ci=4939&av_tc=null&q=%7Cvirus+%7Cprotease&rpos=1&rpge=1&rsrc=U&ref=200020080&uid=1da8cd3e47b05cd0&r=http%3A%2F%2Fwww.mcafee.com%2F" onmouseout="status=''; return true;" onmouseover="status='http://www.mcafee.com/'; return true;">McAfee Security - Computer Virus Software and Internet Security For Your PC</a>
next unless ref $oA;
my $sA = $oA->as_HTML;
print STDERR " + found A==$sA==\n" if (2 <= $self->{_debug});
my $sURL = $self->absurl($self->{'_prev_url'}, $oA->attr('href'));
print STDERR " + the URL is ==$sURL==\n" if (2 <= $self->{_debug});
# Ignore advertising links:
next if ($sURL =~ m!//rc10\.overture\.com!);
my $sTitle = $oA->as_text;
print STDERR " + the title is ==$sTitle==\n" if (2 <= $self->{_debug});
my $oSPAN = $oA;
FIND_SPAN:
while (1)
{
last FIND_SPAN if ! ref $oSPAN;
last FIND_SPAN if ($oSPAN->tag eq 'span');
$oSPAN = $oSPAN->right;
} # while
if (ref $oSPAN)
{
# $oSPAN now is <span class=s> which contains the description
# and the URL:
print STDERR " + found SPAN==", $oSPAN->as_HTML, "==\n" if (2 <= $self->{_debug});
my $oHit = new WWW::Search::Result;
$oHit->add_url($sURL);
$oHit->title($sTitle);
$oHit->description(&WWW::Search::strip_tags($oSPAN->as_text));
push(@{$self->{cache}}, $oHit);
$self->{'_num_hits'}++;
$iHits++;
} # if
$oA->detach;
$oA->delete;
} # foreach A_TAG
# Find the 'next page' link:
@aoA = $tree->look_down('_tag' => 'a',
);
NEXT_TAG:
foreach my $oA (@aoA)
{
next NEXT_TAG unless ref $oA;
# Multilingual version:
next NEXT_TAG unless $oA->as_text =~ m!\s>>\Z!;
# English-only version:
# next NEXT_TAG unless $oA->as_text eq q{Next >>};
$self->{_next_url} = $self->absurl($self->{'_prev_url'}, $oA->attr('href'));
last NEXT_TAG;
} # foreach
return $iHits;
} # parse_tree
=head1 BUGS
=over
=item Not all of the above options have been tested.
=item Please report bugs and send feature requests via email to
C<bug-WWW-Search-AltaVista@rt.cpan.org>, or via the web interface at
L<https://rt.cpan.org/NoAuth/Bugs.html?Dist=WWW-Search-AltaVista>.
=back
=head1 SEE ALSO
To make new back-ends, see L<WWW::Search>,
or the specialized AltaVista searches described in options.
=head1 AUTHOR
Written by John Heidemann, C<johnh@isi.edu>;
maintained by Martin Thurn, C<mthurn@cpan.org>.
=head1 LICENSE
This software is released under the same license as Perl itself.
=head1 COPYRIGHT
Copyright (c) 1996-1998 University of Southern California.
All rights reserved.
Redistribution and use in source and binary forms are permitted
provided that the above copyright notice and this paragraph are
duplicated in all such forms and that any documentation, advertising
materials, and other materials related to such distribution and use
acknowledge that the software was developed by the University of
Southern California, Information Sciences Institute. The name of the
University may not be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
=cut
1;
__END__
advanced search results:
full URL, as of 2005-12 = http://www.altavista.com/web/results?itag=ody&pg=aq&aqmode=s&aqa=all&aqp=this+phrase&aqo=any&aqn=none&aqb=&kgs=1&kls=0&d2=0&dt=dtrange&dfr%5Bd%5D=1&dfr%5Bm%5D=1&dfr%5By%5D=1980&dto%5Bd%5D=14&dto%5Bm%5D=12&dto%5By%5D=1995&filetype=&rc=dmn&swd=&lh=&nbq=10
http://www.altavista.com/web/results?pg=aq&avkw=qtrp&aqmode=s&aqa=&aqp=&aqo=martin+thurn&aqn=&aqb=&aqs=&kgs=0&kls=0&dt=tmperiod&d2=0&d0=&d1=&filetype=&rc=dmn&swd=&lh=&nbq=50
gui query results:
http://www.altavista.com/web/results?q=Rhonda+Thurn&kgs=0&kls=0&avkw=qtrp
|