| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- # This is a template for creating your own logfile parser. You can also look
- # in the other .pm files in this directory as good examples.
- package Pisg::Parser::Format::pircbot;
- use strict;
- $^W = 1;
- # The 3 variables in the new subrountine, 'normalline', 'actionline' and
- # 'thirdline' represents regular expressions for extracting information from
- # the logfile. normalline is for lines where the person merely said
- # something, actionline is for lines where the person performed an action,
- # and thirdline matches everything else, including things like kicks, nick
- # changes, and op grants. See the thirdline subroutine for a list of
- # everything it should match.
- sub new
- {
- my ($type, %args) = @_;
- my $ctcpchr = chr(1);
- my $self = {
- cfg => $args{cfg},
- normalline => '^(\d+)\s:([^!]+)![^@]+@\S+\sPRIVMSG\s(#\S+)\s:([^' . $ctcpchr . '].*)$'
- . '|' .
- '^(\d+)\s(>>>)PRIVMSG\s(#\S+)\s:([^' . $ctcpchr . '].*)$',
- actionline => '^(\d+)\s:([^!]+)!([^@]+)@(\S+)\sPRIVMSG\s(#\S+)\s:' . $ctcpchr . 'ACTION (.+)' . $ctcpchr . '\s*$'
- . '|' .
- '^(\d+)\s(>>>)PRIVMSG\s(#\S+)\s:' . $ctcpchr . 'ACTION (.+)' . $ctcpchr . '\s*$',
- thirdline => '^(\d+)\s:([^!]+)![^@]+@\S+\s(.+)$'
- . '|' .
- '^(\d+)\s(>>>)([^P]\S+)\s+(.+)$',
- };
- bless($self, $type);
- return $self;
- }
- # Parse a normal line - returns a hash with 'hour', 'nick' and 'saying'
- sub normalline
- {
- my ($self, $line, $lines) = @_;
- my %hash;
- if ($line =~ /$self->{normalline}/o) {
- if (defined($8)) {
- return unless (lc($7) eq lc($self->{cfg}->{channel}));
- my @time = localtime($5 / 1000);
- $hash{hour} = $time[2];
- $hash{nick} = $6;
- $hash{saying} = $8;
- } else {
- return unless (lc($3) eq lc($self->{cfg}->{channel}));
- my @time = localtime($1 / 1000);
- $hash{hour} = $time[2];
- $hash{nick} = $2;
- $hash{saying} = $4;
- }
- $hash{nick} = $self->{cfg}->{maintainer}
- if ($hash{nick} eq '>>>');
- return \%hash;
- } else {
- return;
- }
- }
- # Parse an action line - returns a hash with 'hour', 'nick' and 'saying'
- sub actionline
- {
- my ($self, $line, $lines) = @_;
- my %hash;
- if ($line =~ /$self->{actionline}/o) {
- if (defined($8)) {
- return unless (lc($7) eq lc($self->{cfg}->{channel}));
- my @time = localtime($5 / 1000);
- $hash{hour} = $time[2];
- $hash{nick} = $6;
- $hash{saying} = $8;
- } else {
- return unless (lc($3) eq lc($self->{cfg}->{channel}));
- my @time = localtime($1 / 1000);
- $hash{hour} = $time[2];
- $hash{nick} = $2;
- $hash{saying} = $4;
- }
- $hash{nick} = $self->{cfg}->{maintainer}
- if ($hash{nick} eq '>>>');
- return \%hash;
- } else {
- return;
- }
- }
- # Parses the 'third' line - (the third line is everything else, like
- # topic changes, mode changes, kicks, etc.)
- # thirdline() has to return a hash with the following keys, for
- # every format:
- # hour - the hour we're in (for timestamp logging)
- # min - the minute we're in (for timestamp logging)
- # nick - the nick
- # kicker - the nick which kicked somebody (if any)
- # newtopic - the new topic (if any)
- # newmode - deops or ops, must be '+o' or '-o', or '+ooo'
- # newjoin - a new nick which has joined the channel
- # newnick - a person has changed nick and this is the new nick
- #
- # The hash may also have a "repeated" key indicating the number of times
- # the line was repeated. (Used by eggdrops log for example.)
- sub thirdline
- {
- my ($self, $line, $lines) = @_;
- my %hash;
- if ($line =~ /$self->{thirdline}/o) {
- my ($time, @line);
- if (defined($6)) {
- my @time = localtime($4 / 1000);
- $hash{hour} = $time[2];
- $hash{min} = $time[1];
- $hash{nick} = $self->{cfg}->{maintainer};
- @line = split(/\s+/, $6);
- } else {
- my @time = localtime($1 / 1000);
- $hash{hour} = $time[2];
- $hash{min} = $time[1];
- $hash{nick} = $2;
- @line = split(/\s+/, $3);
- }
- if ($line[0] eq 'KICK') {
- return unless (lc($line[1]) eq lc($self->{cfg}->{channel}));
- $hash{kicker} = $hash{nick};
- $hash{nick} = $line[2];
- } elsif ($line[0] eq 'TOPIC') {
- return unless (lc($line[1]) eq lc($self->{cfg}->{channel}));
- $hash{newtopic} = join(' ', @line[2..$#line]);
- $hash{newtopic} =~ s/^://;
- } elsif ($line[0] eq 'MODE') {
- return unless (lc($line[1]) eq lc($self->{cfg}->{channel}));
- $hash{newmode} = join(' ', @line[2..$#line]);
- } elsif ($line[0] eq 'JOIN') {
- return unless (lc($line[1]) eq ':' . lc($self->{cfg}->{channel}));
- $hash{newjoin} = $hash{nick};
- } elsif ($line[0] eq 'NICK') {
- $hash{newnick} = $line[1];
- $hash{newnick} =~ s/^://;
- }
- return \%hash;
- } else {
- return;
- }
- }
- 1;
|