Morten Brix Pedersen 24 лет назад
Родитель
Сommit
316ec8c5d6
3 измененных файлов с 93 добавлено и 0 удалено
  1. 1 0
      Makefile
  2. 1 0
      docs/Changelog
  3. 91 0
      modules/Pisg/Parser/Format/kvirc.pm

+ 1 - 0
Makefile

@@ -58,6 +58,7 @@ FORMAT_MODULES = $(MODULESDIR)/Pisg/Parser/Format/axur.pm \
 		 $(MODULESDIR)/Pisg/Parser/Format/ircle.pm \
 		 $(MODULESDIR)/Pisg/Parser/Format/infobot.pm \
 		 $(MODULESDIR)/Pisg/Parser/Format/irssi.pm \
+		 $(MODULESDIR)/Pisg/Parser/Format/kvirc.pm \
 		 $(MODULESDIR)/Pisg/Parser/Format/oer.pm \
 		 $(MODULESDIR)/Pisg/Parser/Format/mbot.pm \
 		 $(MODULESDIR)/Pisg/Parser/Format/mIRC.pm \

+ 1 - 0
docs/Changelog

@@ -2,6 +2,7 @@ pisg (x.xx)
    * When ShowMostAtiveByHour was enabled, unitialized values could appear
      which caused the HTML file not to be created. (thanks, Gissehel)
    * RacBot logfile support added (thanks, Hanno Hecker)
+   * kvirc logfile support added (thanks, wwp)
 
 pisg (0.39) - Tue May, 14th 2002
    * ShowFoulLine option added (thanks, Adam Spiers <adam@spiers.net>).

+ 91 - 0
modules/Pisg/Parser/Format/kvirc.pm

@@ -0,0 +1,91 @@
+package Pisg::Parser::Format::kvirc;
+
+# Documentation for the Pisg::Parser::Format modules is found in Template.pm
+
+use strict;
+$^W = 1;
+
+sub new
+{
+    my ($type, %args) = @_;
+    my $self = {
+        cfg => $args{cfg},
+        normalline => '^\[(\d+):\d+[^ ]+ <([^>]+)> (.*)',
+        actionline => '^\[(\d+):\d+[^ ]+ \*\*\* (\S+) (.*)',
+        thirdline => '^\[(\d+):(\d+)[^ ]+ (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (.*)',
+    };
+
+    bless($self, $type);
+    return $self;
+}
+
+sub normalline
+{
+    my ($self, $line, $lines) = @_;
+    my %hash;
+
+    if ($line =~ /$self->{normalline}/o) {
+
+        $hash{hour}   = $1;
+        $hash{nick}   = $2;
+        $hash{saying} = $3;
+
+        return \%hash;
+    } else {
+        return;
+    }
+}
+
+sub actionline
+{
+    my ($self, $line, $lines) = @_;
+    my %hash;
+
+    if ($line =~ /$self->{actionline}/o) {
+
+        $hash{hour}   = $1;
+        $hash{nick}   = $2;
+        $hash{saying} = $3;
+
+        return \%hash;
+    } else {
+        return;
+    }
+}
+
+sub thirdline
+{
+    my ($self, $line, $lines) = @_;
+    my %hash;
+
+    if ($line =~ /$self->{thirdline}/o) {
+
+        $hash{hour} = $1;
+        $hash{min} = $2;
+        $hash{nick} = $3;
+
+        if (($4.$5.$6) eq 'hasbeenkicked') {
+            $hash{kicker} = $10;
+
+        } elsif (($5.$6) eq 'setstopic') {
+            $hash{newtopic} = ($10.' '.$11);
+
+        } elsif (($5.$6) eq 'setsmode') {
+#can't be matched yet
+            $hash{newmode} = substr($7, 1);
+
+        } elsif (($5.$6) eq 'hasjoined') {
+            $hash{newjoin} = $1;
+
+        } elsif (($5.$6.$7) eq 'isnowknown') {
+            $hash{newnick} = $9;
+        }
+
+        return \%hash;
+
+    } else {
+        return;
+    }
+}
+
+1;