Browse Source

oer bot logfile support by EQU <equ@equnet.org>

Morten Brix Pedersen 24 years ago
parent
commit
b3e44b4ad1
1 changed files with 98 additions and 0 deletions
  1. 98 0
      modules/Pisg/Parser/Format/oer.pm

+ 98 - 0
modules/Pisg/Parser/Format/oer.pm

@@ -0,0 +1,98 @@
+package Pisg::Parser::Format::oer;
+
+# Documentation for the Pisg::Parser::Format modules is found in Template.pm
+
+use strict;
+use POSIX qw(strftime);
+$^W = 1;
+
+sub new
+{
+    my ($type, %args) = @_;
+    my $self = {
+        cfg => $args{cfg},
+
+        normalline => '^(\d+)\s+:([^!]+)[^ ]+ PRIVMSG (\#[^ ]+) :([^\001].*)',
+        actionline => '^(\d+)\s+:([^!]+)[^ ]+ PRIVMSG (\#[^ ]+) :\001ACTION (.*)',
+        thirdline  => '^(\d+)\s+:([^!]+)[^ ]+ ([A-Z]+) (.*)',
+    };
+
+    bless($self, $type);
+    return $self;
+}
+
+sub normalline
+{
+    my ($self, $line, $lines) = @_;
+    my %hash;
+
+    if ($line =~ /$self->{normalline}/o && lc($3) eq lc($self->{cfg}->{channel})) {
+
+        $hash{hour}   = strftime "%H", localtime($1);
+        $hash{nick}   = $2;
+        $hash{saying} = $4;
+
+        return \%hash;
+    } else {
+        return;
+    }
+}
+
+sub actionline
+{
+    my ($self, $line, $lines) = @_;
+    my %hash;
+
+    if ($line =~ /$self->{actionline}/o && lc($3) eq lc($self->{cfg}->{channel})) {
+
+        $hash{hour}   = strftime "%H", localtime($1);
+        $hash{nick}   = $2;
+        $hash{saying} = $4;
+
+        return \%hash;
+    } else {
+        return;
+    }
+}
+
+sub thirdline
+{
+    my ($self, $line, $lines) = @_;
+    my %hash;
+    my $tmp;
+    
+    if ($line =~ /$self->{thirdline}/o) {
+
+        $hash{hour} = strftime "%H", localtime($1);
+        $hash{min}  = strftime "%M", localtime($1);
+        $hash{nick} = $2;
+
+        my @arr = split(" ", $4);
+        if ($3 eq 'KICK' && lc($arr[0]) eq lc($self->{cfg}->{channel})) {
+            $hash{kicker} = $hash{nick};
+            $hash{nick} = $arr[1];
+
+        } elsif ($3 eq 'TOPIC' && lc($arr[0]) eq lc($self->{cfg}->{channel})) {
+            $tmp = join(" ", @arr[1..@arr]);
+            $tmp =~ s/^://;
+            $hash{newtopic} = $tmp;
+
+        } elsif ($3 eq 'MODE' && lc($arr[0]) eq lc($self->{cfg}->{channel})) {
+            $hash{newmode} = $arr[1];
+
+        } elsif ($3 eq 'JOIN' && lc($arr[0]) eq ":".lc($self->{cfg}->{channel})) {
+            $hash{newjoin} = $3;
+
+        } elsif ($3 eq 'NICK') {
+            $arr[0] =~ s/^://;
+            $hash{newnick} = $arr[0];
+        }
+
+        return \%hash;
+
+    } else {
+        return;
+    }
+}
+
+1;