5. Change the badwords interface to be the same as baddx, badspotter et al.
[spider.git] / perl / AnnTalk.pm
1 #
2 # Announce and Talk Handling routines
3 #
4 # Copyright (c) 2000 Dirk Koopman
5 #
6 # $Id$
7 #
8
9 package AnnTalk;
10
11 use strict;
12
13 use DXUtil;
14 use DXDebug;
15 use DXDupe;
16 use DXVars;
17
18 use vars qw(%dup $duplth $dupage $filterdef);
19
20 $duplth = 60;                                   # the length of text to use in the deduping
21 $dupage = 5*24*3600;                    # the length of time to hold spot dups
22 $filterdef = bless ([
23                           # tag, sort, field, priv, special parser 
24                           ['by', 'c', 0],
25                           ['dest', 'c', 1],
26                           ['info', 't', 2],
27                           ['group', 't', 3],
28                           ['origin', 'c', 4],
29                           ['wx', 't', 5],
30                           ['channel', 'c', 6],
31                           ['by_dxcc', 'nc', 7],
32                           ['by_itu', 'ni', 8],
33                           ['by_zone', 'nz', 9],
34                           ['origin_dxcc', 'nc', 10],
35                           ['origin_itu', 'ni', 11],
36                           ['origin_zone', 'nz', 12],
37                          ], 'Filter::Cmd');
38
39 use vars qw($VERSION $BRANCH);
40 $VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
41 $BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0;
42 $main::build += $VERSION;
43 $main::branch += $BRANCH;
44
45 # enter the spot for dup checking and return true if it is already a dup
46 sub dup
47 {
48         my ($call, $to, $text) = @_; 
49
50         chomp $text;
51         unpad($text);
52         $text =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg;
53         $text = substr($text, 0, $duplth) if length $text > $duplth; 
54         $text = pack("C*", map {$_ & 127} unpack("C*", $text));
55         $text =~ s/[^a-zA-Z0-9]//g;
56         my $dupkey = "A$to|\L$text";
57         return DXDupe::check($dupkey, $main::systime + $dupage);
58 }
59
60 sub listdups
61 {
62         return DXDupe::listdups('A', $dupage, @_);
63 }
64
65 # is this text field a likely announce to talk substitution?
66 # this may involve all sorts of language dependant heuristics, but 
67 # then again, it might not
68 sub is_talk_candidate
69 {
70         my ($from, $text) = @_;
71         my $call;
72         ($call) = $text =~ /^\s*(?:[Xx]|[Tt][Oo]?)\s+([\w-]+)/;
73         ($call) = $text =~ /^\s*>\s*([\w-]+)\b/ unless $call;
74         ($call) = $text =~ /^\s*([\w-]+):?\b/ unless $call;
75         if ($call) {
76                 $call = uc $call;
77                 return is_callsign($call);
78         }
79     return undef;
80 }
81 1; 
82