| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package Pisg::Parser::Format::supy;
- # pisg log parser for supybot bot
- # http://supybot.com/
- # Copyright Jerome Kerdreux / Licence GPL
- # contact Jerome.Kerdreux@finix.eu.org for more information
- # This module supports both the old and new logformat (after 1.8.7)
- use strict;
- $^W = 1;
- sub new
- {
- my ($type, %args) = @_;
- my $timestamp = '\d+-[\d\w]+-\d+[ T](\d+):\d+:\d+';
- my $thirdtimestamp = '\d+-[\d\w]+-\d+[ T](\d+):(\d+):\d+';
- my $self = {
- cfg => $args{cfg},
- # Old default timestamp format
- # [12-Feb-2004 16:59:42] <philipss> plop
- # New default timestamp format
- # 2004-02-12T16:59:42 <philipss> plop
- normalline => '^\[?'.$timestamp.']? <(\S+)> (.*)',
- # [05-Mar-2004 17:28:10] * Jkx|home bon je vais pas trainer ..
- actionline => '^\[?'.$timestamp.']? \* (\S+) (.*)',
- # [17-Feb-2004 08:13:47] *** Jkx changes topic to "Oh my god of topic"
- thirdline => '\[?'.$thirdtimestamp.']? \*\*\* (\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;
-
-
- # print "*** 1/$1 2/$2 3/$3 4/$4 5/$5 6/$6 7/$7 ***\n";
- if (($4.$5) eq 'waskicked') {
- $hash{kicker} = $7;
- ($hash{kicktext} = $hash{kicker}) =~ s/\S+\s*//;
- $hash{kicker} =~ s/\s.*//;
- $hash{kicktext} =~ s/^\((.*)\)$/$1/;
- } elsif (($4.$5) eq 'changestopic') {
- $hash{newtopic} = $7;
- } elsif (($4.$5) eq 'setsmode:') {
- $hash{newmode} = $6;
- $hash{modechanges} = $7;
- } elsif (($4.$5) eq 'hasjoined') {
- $hash{newjoin} = $3;
- } elsif (($5,$6) eq 'nowknown') {
- $hash{newnick} = $6;
- $hash{newnick} =~ s/^as\s*//;
- }
-
-
- # print %hash;
- # print "\n";
- return \%hash;
- } else {
- return;
- }
- }
- 1;
|