X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FBadWords.pm;h=7ae0373f436f007edcd259af76b2699f3f210a6d;hb=21ee7b1845f8fc5ab10c6a33a058cfbd11d7a705;hp=dc0a10fc74a7c047a6944ac5644bdea1bfc18e33;hpb=060f09e9e2f1e5d99c9abcc627544b1e04f019ee;p=spider.git diff --git a/perl/BadWords.pm b/perl/BadWords.pm index dc0a10fc..7ae0373f 100644 --- a/perl/BadWords.pm +++ b/perl/BadWords.pm @@ -17,14 +17,14 @@ use DXDebug; use IO::File; -use vars qw($badword @regex); +use vars qw($badword $regexcode); my $oldfn = "$main::data/badwords"; my $regex = "$main::data/badw_regex"; my $bwfn = "$main::data/badword"; # copy issue ones across -filecopy("$regex.issue", $regex) unless -e $regex; +filecopy("$regex.gb.issue", $regex) unless -e $regex; filecopy("$bwfn.issue", $bwfn) unless -e $bwfn; $badword = new DXHash "badword"; @@ -61,11 +61,10 @@ sub load sub create_regex { my @out; - @regex = (); - my $fh = new IO::File $regex; if ($fh) { + my $s = "sub { my \$str = shift; my \@out; \n"; while (<$fh>) { chomp; next if /^\s*\#/; @@ -74,13 +73,19 @@ sub create_regex # create a closure for each word so that it matches stuff with spaces/punctuation # and repeated characters in it my $w = uc $_; - my @l = map { $_ eq 'I' ? '[I1]' : ($_ eq 'O' ? '[O0]' : $_) }split //, $w; - my $e = join '+[\s\W]+', @l; - my $s = eval qq{sub { return \$_[0] =~ /$e+/ ? '$w' : () } }; - push @regex, $s unless $@; - dbg("create_regex: $@") if $@; + my @l = split //, $w; + my $e = join '+[\s\W]*', @l; + $s .= "push \@out, \$1 if \$str =~ /($e)/;\n"; } } + $s .= "return \@out;\n}"; + $regexcode = eval $s; + dbg($s) if isdbg('badword'); + if ($@) { + @out = ($@); + dbg($@); + return @out; + } $fh->close; } else { my $l = "can't open $regex $!"; @@ -96,10 +101,8 @@ sub check { my $s = uc shift; my @out; - - for (@regex) { - push @out, &$_($s); - } + + push @out, &$regexcode($s) if $regexcode; return @out if @out;