X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FBadWords.pm;h=df6a15571e112f14864960723aafacf621d19ec2;hb=6c8062c1356fe49974da2df121852b41971f7b77;hp=db33d7a1c4ebaeb34127c79bb1f5c1463dc35463;hpb=985363e6626057fc4efb8b75a94a18aeeae73e54;p=spider.git diff --git a/perl/BadWords.pm b/perl/BadWords.pm index db33d7a1..df6a1557 100644 --- a/perl/BadWords.pm +++ b/perl/BadWords.pm @@ -17,21 +17,21 @@ 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"; use vars qw($VERSION $BRANCH); $VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ ); -$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0; +$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ || (0,0)); $main::build += $VERSION; $main::branch += $BRANCH; @@ -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*\#/; @@ -75,12 +74,18 @@ sub create_regex # and repeated characters in it my $w = uc $_; my @l = 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 $e = join '+[\s\W]*', @l; + $s .= "push \@out, \$1 if \$str =~ /\\b($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;