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] plop # New default timestamp format # 2004-02-12T16:59:42 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} = $7; $hash{newnick} =~ s/^as\s*//; } return \%hash; } else { return; } } 1;