| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- 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;
|