]> git.donarmstrong.com Git - infobot.git/blob - src/Modules/W3Search.pl
9935c05be7e8c1fba9c9c9fc57dccb44e71f2003
[infobot.git] / src / Modules / W3Search.pl
1 # WWWSearch backend, with queries updating the is-db (optionally)
2 # Uses WWW::Search::Google and WWW::Search
3 # originally Google.pl, drastically altered.
4
5 package W3Search;
6
7 use strict;
8 use vars qw(@W3Search_engines $W3Search_regex);
9 @W3Search_engines = qw(AltaVista Dejanews Excite Gopher HotBot Infoseek
10                 Lycos Magellan PLweb SFgate Simple Verity Google z);
11 $W3Search_regex = join '|', @W3Search_engines;
12
13 my $maxshow     = 5;
14
15 sub W3Search {
16     my ($where, $what, $type) = @_;
17     my $retval = "$where can't find \002$what\002";
18     my $Search;
19
20     my @matches = grep { lc($_) eq lc($where) ? $_ : undef } @W3Search_engines;
21     if (@matches) {
22         $where = shift @matches;
23     } else {
24         &::msg($::who, "i don't know how to check '$where'");
25         return;
26     }
27
28     return unless &::loadPerlModule("WWW::Search");
29
30     eval {
31         $Search = new WWW::Search($where, agent_name => 'Mozilla/4.5');
32     };
33
34     if (!defined $Search) {
35         &::msg($::who, "$where is invalid search.");
36         return;
37     }
38
39     my $Query   = WWW::Search::escape_query($what);
40     $Search->native_query($Query,
41         {
42                 num => 10,
43 #               search_debug => 2,
44 #               search_parse_debug => 2,
45         }
46     );
47     $Search->http_proxy($::param{'httpProxy'}) if (&::IsParam('httpProxy'));
48     #my $max = $Search->maximum_to_retrieve(10);        # DOES NOT WORK.
49
50     my (@results, $count, $r);
51         $retval = "$where says \002$what\002 is at ";
52     while ($r = $Search->next_result()) {
53         my $url = $r->url();
54         $retval .= ' or ' if ($count > 0);
55         $retval .= $url;
56         last if ++$count >= $maxshow;
57     }
58
59     &::performStrictReply($retval);
60 }
61
62 1;