]> git.donarmstrong.com Git - infobot.git/blob - src/Factoids/Question.pl
- use &hasParam() instead of IsChanConf for more commands
[infobot.git] / src / Factoids / Question.pl
1 ###
2 ### Question.pl: Kevin Lenzo  (c) 1997
3 ###
4
5 ##  doQuestion --
6 ##      if ($query == query) {
7 ##              return $value;
8 ##      } else {
9 ##              return NULL;
10 ##      }
11 ##
12 ##
13
14 if (&IsParam("useStrict")) { use strict; }
15
16 use vars qw($query $reply $finalQMark $nuh $result $talkok $who $nuh);
17 use vars qw(%bots %forked);
18
19 sub doQuestion {
20     # my doesn't allow variables to be inherinted, local does.
21     # following is used in math()...
22     local($query)       = @_;
23     local($reply)       = "";
24     local $finalQMark   = $query =~ s/\?+\s*$//;
25     $finalQMark         += $query =~ s/\?\s*$//;
26     $query              =~ s/^\s+|\s+$//g;
27
28     if (!defined $query or $query =~ /^\s*$/) {
29         return '';
30     }
31
32     my $questionWord    = "";
33
34     if (!$addressed) {
35         return '' unless ($finalQMark);
36         return '' if (&IsParam("minVolunteerLength") == 0);
37         return '' if (length $query < $param{'minVolunteerLength'});
38     } else {
39         ### TODO: this should be caught in Process.pl?
40         return '' unless ($talkok);
41     }
42
43     # dangerous; common preambles should be stripped before here
44     if ($query =~ /^forget /i or $query =~ /^no, /) {
45         return if (exists $bots{$nuh});
46     }
47
48     # convert to canonical reference form
49     my $x;
50     my @query;
51
52     push(@query, $query);       # 1: push original.
53
54     # valid factoid.
55     if ($query =~ s/[!.]$//) {
56         push(@query,$query);
57     }
58
59     $x = &normquery($query);
60     push(@query, $x) if ($x ne $query);
61     $query = $x;
62
63     $x = &switchPerson($query);
64     push(@query, $x) if ($x ne $query);
65     $query = $x;
66
67     $query =~ s/\s+at\s*(\?*)$/$1/;     # where is x at?
68     $query =~ s/^explain\s*(\?*)/$1/i;  # explain x
69     $query = " $query ";                # side whitespaces.
70
71     my $qregex = join '|', keys %{ $lang{'qWord'} };
72
73     # what's whats => what is; who'?s => who is, etc
74     $query =~ s/ ($qregex)\'?s / $1 is /i;
75     if ($query =~ s/\s+($qregex)\s+//i) { # check for question word
76         $questionWord = lc($1);
77     }
78
79     if ($questionWord eq "" and $finalQMark and $addressed) {
80         $questionWord = "where";
81     }
82
83     my @link;
84     for (my$i=0; $i<scalar @query; $i++) {
85         $query  = $query[$i];
86         $result = &getReply($query);
87         next if (!defined $result or $result eq "");
88
89         # 'see also' factoid redirection support.
90
91         while ($result =~ /^see( also)? (.*?)\.?$/) {
92             my $link    = $2;
93
94             if (grep /^$link$/i, @link) {
95                 &status("recursive link found; bailing out.");
96                 last;
97             }
98
99             if (scalar @link >= 5) {
100                 &status("recursive link limit reached.");
101                 last;
102             }
103
104             push(@link, $link);
105             my $newr = &getReply($link);
106             last if (!defined $newr or $newr eq "");
107             $result  = $newr;
108         }
109
110         if (@link) {
111             &status("'$query' linked to: ".join(" => ", @link) );
112         }
113
114         if ($i != 0) {
115             &DEBUG("Question: '$query[0]' did not exist; '$query[$i]' ($i) did");
116         }
117
118         return $result;
119     }
120
121     ### TODO: Use &Forker(); move function to Freshmeat.pl.
122     if (&IsChanConf("freshmeatForFactoid")) {
123         &loadMyModule($myModules{'freshmeat'});
124         $result = &Freshmeat::showPackage($query);
125         return $result if (defined $result);
126     }
127
128     ### TODO: Use &Forker(); move function to Debian.pl
129     if (&IsChanConf("debianForFactoid")) {
130         &loadMyModule($myModules{'debian'});
131         $result = &Debian::DebianFind($query);  # ???
132         ### TODO: debian module should tell, through shm, that it went
133         ###       ok or not.
134 ###     return $result if (defined $result);
135     }
136
137     if ($questionWord ne "" or $finalQMark) {
138         # if it has not been explicitly marked as a question
139         if ($addressed and $reply eq "") {
140             &status("notfound: <$who> ".join(' :: ', @query))
141                                                 if ($finalQMark);
142
143             return '' unless (&IsParam("friendlyBots"));
144
145             foreach (split /\s+/, $param{'friendlyBots'}) {
146                 &msg($_, ":INFOBOT:QUERY <$who> $query");
147             }
148         }
149     }
150
151     return $reply;
152 }
153
154 1;