/[irc-logger]/trunk/bin/irc-logger.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/bin/irc-logger.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/irc-logger.pl revision 41 by dpavlin, Tue Oct 24 12:51:49 2006 UTC trunk/bin/irc-logger.pl revision 52 by dpavlin, Sun Mar 18 16:45:18 2007 UTC
# Line 18  irc-logger.pl Line 18  irc-logger.pl
18    
19  Import log from C<dircproxy> to C<irc-logger> database  Import log from C<dircproxy> to C<irc-logger> database
20    
21    =item --log=irc-logger.log
22    
23    Name of log file
24    
25    =back
26    
27  =head1 DESCRIPTION  =head1 DESCRIPTION
28    
29  log all conversation on irc channel  log all conversation on irc channel
# Line 67  use POSIX qw/strftime/; Line 73  use POSIX qw/strftime/;
73  use HTML::CalendarMonthSimple;  use HTML::CalendarMonthSimple;
74  use Getopt::Long;  use Getopt::Long;
75  use DateTime;  use DateTime;
76    use Data::Dump qw/dump/;
77    
78  my $import_dircproxy;  my $import_dircproxy;
79    my $log_path;
80  GetOptions(  GetOptions(
81          'import-dircproxy:s' => \$import_dircproxy,          'import-dircproxy:s' => \$import_dircproxy,
82            'log:s' => \$log_path,
83  );  );
84    
85  my $dbh = DBI->connect($DSN,"","", { RaiseError => 1, AutoCommit => 1 }) || die $DBI::errstr;  open(STDOUT, '>', $log_path) || warn "can't redirect log to $log_path: $!";
86    
87  eval {  sub _log {
88          $dbh->do(qq{ select count(*) from log });          print strftime($TIMESTAMP,localtime()), ' ', join(" ",@_), $/;
89  };  }
90    
91  if ($@) {  my $dbh = DBI->connect($DSN,"","", { RaiseError => 1, AutoCommit => 1 }) || die $DBI::errstr;
         warn "creating database table in $DSN\n";  
         $dbh->do(<<'_SQL_SCHEMA_');  
92    
93    my $sql_schema = {
94            log => '
95  create table log (  create table log (
96          id serial,          id serial,
97          time timestamp default now(),          time timestamp default now(),
# Line 96  create table log ( Line 105  create table log (
105  create index log_time on log(time);  create index log_time on log(time);
106  create index log_channel on log(channel);  create index log_channel on log(channel);
107  create index log_nick on log(nick);  create index log_nick on log(nick);
108            ',
109            meta => '
110    create table meta (
111            nick text not null,
112            channel text not null,
113            name text not null,
114            value text,
115            changed timestamp default now(),
116            primary key(nick,channel,name)
117    );
118            ',
119    };
120    
121    foreach my $table ( keys %$sql_schema ) {
122    
123            eval {
124                    $dbh->do(qq{ select count(*) from $table });
125            };
126    
127            if ($@) {
128                    warn "creating database table $table in $DSN\n";
129                    $dbh->do( $sql_schema->{ $table } );
130            }
131    }
132    
133    
134    =head2 meta
135    
136    Set or get some meta data into database
137    
138            meta('nick','channel','var_name', $var_value );
139    
140            $var_value = meta('nick','channel','var_name');
141            ( $var_value, $changed ) = meta('nick','channel','var_name');
142    
143    =cut
144    
145    sub meta {
146            my ($nick,$channel,$name,$value) = @_;
147    
148            # normalize channel name
149            $channel =~ s/^#//;
150    
151            if (defined($value)) {
152    
153                    my $sth = $dbh->prepare(qq{ update meta set value = ?, changed = now() where nick = ? and channel = ? and name = ? });
154    
155                    eval { $sth->execute( $value, $nick, $channel, $name ) };
156    
157                    # error or no result
158                    if ( $@ || ! $sth->rows ) {
159                            $sth = $dbh->prepare(qq{ insert into meta (value,nick,channel,name,changed) values (?,?,?,?,now()) });
160                            $sth->execute( $value, $nick, $channel, $name );
161                            _log "created $nick/$channel/$name = $value";
162                    } else {
163                            _log "updated $nick/$channel/$name = $value ";
164                    }
165    
166                    return $value;
167    
168            } else {
169    
170                    my $sth = $dbh->prepare(qq{ select value,changed from meta where nick = ? and channel = ? and name = ? });
171                    $sth->execute( $nick, $channel, $name );
172                    my ($v,$c) = $sth->fetchrow_array;
173                    _log "fetched $nick/$channel/$name = $v [$c]";
174                    return ($v,$c) if wantarray;
175                    return $v;
176    
177  _SQL_SCHEMA_          }
178  }  }
179    
180    
181    
182  my $sth = $dbh->prepare(qq{  my $sth = $dbh->prepare(qq{
183  insert into log  insert into log
184          (channel, me, nick, message, time)          (channel, me, nick, message, time)
185  values (?,?,?,?,?)  values (?,?,?,?,?)
186  });  });
187    
188    
189  my $tags;  my $tags;
190  my $tag_regex = '\b([\w-_]+)//';  my $tag_regex = '\b([\w-_]+)//';
191    
# Line 128  my $tag_regex = '\b([\w-_]+)//'; Line 208  my $tag_regex = '\b([\w-_]+)//';
208                  }                  }
209          },          },
210          context => 5,          context => 5,
211            full_rows => 1,
212   );   );
213    
214  Order is important. Fields are first passed through C<filter> (if available) and  Order is important. Fields are first passed through C<filter> (if available) and
# Line 135  then throgh C<< sprintf($fmt->{message}, Line 216  then throgh C<< sprintf($fmt->{message},
216    
217  C<context> defines number of messages around each search hit for display.  C<context> defines number of messages around each search hit for display.
218    
219    C<full_rows> will return database rows for each result with C<date>, C<time>, C<channel>,
220    C<me>, C<nick> and C<message> keys.
221    
222  =cut  =cut
223    
224  sub get_from_log {  sub get_from_log {
# Line 181  sub get_from_log { Line 265  sub get_from_log {
265                  $search =~ s/^\s+//;                  $search =~ s/^\s+//;
266                  $search =~ s/\s+$//;                  $search =~ s/\s+$//;
267                  $sth->execute( ( '%' . $search . '%' ) x 2 );                  $sth->execute( ( '%' . $search . '%' ) x 2 );
268                  warn "search for '$search' returned ", $sth->rows, " results ", $context || '', "\n";                  _log "search for '$search' returned ", $sth->rows, " results ", $context || '';
269          } elsif (my $tag = $args->{tag}) {          } elsif (my $tag = $args->{tag}) {
270                  $sth->execute();                  $sth->execute();
271                  warn "tag '$tag' returned ", $sth->rows, " results ", $context || '', "\n";                  _log "tag '$tag' returned ", $sth->rows, " results ", $context || '';
272          } elsif (my $date = $args->{date}) {          } elsif (my $date = $args->{date}) {
273                  $sth->execute($date);                  $sth->execute($date);
274                  warn "found ", $sth->rows, " messages for date $date ", $context || '', "\n";                  _log "found ", $sth->rows, " messages for date $date ", $context || '';
275          } else {          } else {
276                  $sth->execute();                  $sth->execute();
277          }          }
# Line 204  sub get_from_log { Line 288  sub get_from_log {
288                  unshift @rows, $row;                  unshift @rows, $row;
289          }          }
290    
291            # normalize nick names
292            map {
293                    $_->{nick} =~ s/^_*(.*?)_*$/$1/
294            } @rows;
295    
296            return @rows if ($args->{full_rows});
297    
298          my @msgs = (          my @msgs = (
299                  "Showing " . ($#rows + 1) . " messages..."                  "Showing " . ($#rows + 1) . " messages..."
300          );          );
# Line 260  sub get_from_log { Line 351  sub get_from_log {
351                  my $append = 1;                  my $append = 1;
352    
353                  my $nick = $row->{nick};                  my $nick = $row->{nick};
354                  if ($nick =~ s/^_*(.*?)_*$/$1/) {  #               if ($nick =~ s/^_*(.*?)_*$/$1/) {
355                          $row->{nick} = $nick;  #                       $row->{nick} = $nick;
356                  }  #               }
357    
358                  if ($last_row->{nick} ne $nick) {                  if ($last_row->{nick} ne $nick) {
359                          # obfu way to find format for me_nick if needed or fallback to default                          # obfu way to find format for me_nick if needed or fallback to default
# Line 367  sub save_message { Line 458  sub save_message {
458          $a->{me} ||= 0;          $a->{me} ||= 0;
459          $a->{time} ||= strftime($TIMESTAMP,localtime());          $a->{time} ||= strftime($TIMESTAMP,localtime());
460    
461          print          _log
                 $a->{time}, " ",  
462                  $a->{channel}, " ",                  $a->{channel}, " ",
463                  $a->{me} ? "***" . $a->{nick} : "<" . $a->{nick} . ">",                  $a->{me} ? "***" . $a->{nick} : "<" . $a->{nick} . ">",
464                  " " . $a->{msg} . "\n";                  " " . $a->{msg};
465    
466          from_to($a->{msg}, 'UTF-8', $ENCODING);          from_to($a->{msg}, 'UTF-8', $ENCODING);
467    
# Line 380  sub save_message { Line 470  sub save_message {
470                  message => $a->{msg});                  message => $a->{msg});
471  }  }
472    
473    
474  if ($import_dircproxy) {  if ($import_dircproxy) {
475          open(my $l, $import_dircproxy) || die "can't open $import_dircproxy: $!";          open(my $l, $import_dircproxy) || die "can't open $import_dircproxy: $!";
476          warn "importing $import_dircproxy...\n";          warn "importing $import_dircproxy...\n";
# Line 406  if ($import_dircproxy) { Line 497  if ($import_dircproxy) {
497                          ) if ($nick !~ m/^-/);                          ) if ($nick !~ m/^-/);
498    
499                  } else {                  } else {
500                          warn "can't parse: $_\n";                          _log "can't parse: $_";
501                  }                  }
502          }          }
503          close($l);          close($l);
# Line 421  if ($import_dircproxy) { Line 512  if ($import_dircproxy) {
512    
513  my $SKIPPING = 0;               # if skipping, how many we've done  my $SKIPPING = 0;               # if skipping, how many we've done
514  my $SEND_QUEUE;                 # cache  my $SEND_QUEUE;                 # cache
515    my $ping;                                               # ping stats
516    
517  POE::Component::IRC->new($IRC_ALIAS);  POE::Component::IRC->new($IRC_ALIAS);
518    
# Line 443  POE::Session->create( inline_states => Line 535  POE::Session->create( inline_states =>
535                  my $msg = $_[ARG2];                  my $msg = $_[ARG2];
536    
537                  save_message( channel => $channel, me => 0, nick => $nick, msg => $msg);                  save_message( channel => $channel, me => 0, nick => $nick, msg => $msg);
538                    meta( $nick, $channel, 'last-msg', $msg );
539      },      },
540      irc_ctcp_action => sub {      irc_ctcp_action => sub {
541                  my $kernel = $_[KERNEL];                  my $kernel = $_[KERNEL];
# Line 451  POE::Session->create( inline_states => Line 544  POE::Session->create( inline_states =>
544                  my $msg = $_[ARG2];                  my $msg = $_[ARG2];
545    
546                  save_message( channel => $channel, me => 1, nick => $nick, msg => $msg);                  save_message( channel => $channel, me => 1, nick => $nick, msg => $msg);
547    
548                    if ( my $twitter = ( $nick, $channel, 'twitter' ) ) {
549                            _log("FIXME: send twitter for $nick on $channel [$twitter]");
550                    }
551    
552      },      },
553            irc_ping => sub {
554                    warn "pong ", $_[ARG0], $/;
555                    $ping->{ $_[ARG0] }++;
556            },
557            irc_invite => sub {
558                    my $kernel = $_[KERNEL];
559                    my $nick = (split /!/, $_[ARG0])[0];
560                    my $channel = $_[ARG1];
561    
562                    warn "invited to $channel by $nick";
563    
564                    $_[KERNEL]->post( $IRC_ALIAS => privmsg => $nick, "how nice of you to invite me to $channel, I'll be right there..." );
565                    $_[KERNEL]->post($IRC_ALIAS => join => $channel);
566    
567            },
568          irc_msg => sub {          irc_msg => sub {
569                  my $kernel = $_[KERNEL];                  my $kernel = $_[KERNEL];
570                  my $nick = (split /!/, $_[ARG0])[0];                  my $nick = (split /!/, $_[ARG0])[0];
571                  my $msg = $_[ARG2];                  my $msg = $_[ARG2];
572                    my $channel = $_[ARG1]->[0];
573                  from_to($msg, 'UTF-8', $ENCODING);                  from_to($msg, 'UTF-8', $ENCODING);
574    
575                  my $res = "unknown command '$msg', try /msg $NICK help!";                  my $res = "unknown command '$msg', try /msg $NICK help!";
576                  my @out;                  my @out;
577    
578                  print "<< $msg\n";                  _log "<< $msg";
579    
580                  if ($msg =~ m/^help/i) {                  if ($msg =~ m/^help/i) {
581    
# Line 469  POE::Session->create( inline_states => Line 583  POE::Session->create( inline_states =>
583    
584                  } elsif ($msg =~ m/^msg\s+(\S+)\s+(.*)$/i) {                  } elsif ($msg =~ m/^msg\s+(\S+)\s+(.*)$/i) {
585    
586                          print ">> /msg $1 $2\n";                          _log ">> /msg $1 $2";
587                          $_[KERNEL]->post( $IRC_ALIAS => privmsg => $1, $2 );                          $_[KERNEL]->post( $IRC_ALIAS => privmsg => $1, $2 );
588                          $res = '';                          $res = '';
589    
# Line 496  POE::Session->create( inline_states => Line 610  POE::Session->create( inline_states =>
610                          $res .= join(" | ", @users);                          $res .= join(" | ", @users);
611                  } elsif ($msg =~ m/^last.*?\s*(\d*)/i) {                  } elsif ($msg =~ m/^last.*?\s*(\d*)/i) {
612    
613                          foreach my $res (get_from_log( limit => ($1 || 100) )) {                          my $limit = $1 || meta( $nick, $channel, 'last-size' ) || 10;
614                                  print "last: $res\n";  
615                            foreach my $res (get_from_log( limit => $limit )) {
616                                    _log "last: $res";
617                                  from_to($res, $ENCODING, 'UTF-8');                                  from_to($res, $ENCODING, 'UTF-8');
618                                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => $nick, $res );                                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => $nick, $res );
619                          }                          }
# Line 512  POE::Session->create( inline_states => Line 628  POE::Session->create( inline_states =>
628                                          limit => 20,                                          limit => 20,
629                                          search => $what,                                          search => $what,
630                                  )) {                                  )) {
631                                  print "search [$what]: $res\n";                                  _log "search [$what]: $res";
632                                  from_to($res, $ENCODING, 'UTF-8');                                  from_to($res, $ENCODING, 'UTF-8');
633                                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => $nick, $res );                                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => $nick, $res );
634                          }                          }
635    
636                          $res = '';                          $res = '';
637    
638                    } elsif ($msg =~ m/^(?:count|poll)\s+(.*)(?:\s+(\d+))?\s*$/i) {
639    
640                            my ($what,$limit) = ($1,$2);
641                            $limit ||= 100;
642    
643                            my $stat;
644    
645                            foreach my $res (get_from_log(
646                                            limit => $limit,
647                                            search => $what,
648                                            full_rows => 1,
649                                    )) {
650                                    while ($res->{message} =~ s/\Q$what\E(\+|\-)//) {
651                                            $stat->{vote}->{$1}++;
652                                            $stat->{from}->{ $res->{nick} }++;
653                                    }
654                            }
655    
656                            my @nicks;
657                            foreach my $nick (sort { $stat->{from}->{$a} <=> $stat->{from}->{$b} } keys %{ $stat->{from} }) {
658                                    push @nicks, $nick . ( $stat->{from}->{$nick} == 1 ? '' :
659                                            "(" . $stat->{from}->{$nick} . ")"
660                                    );
661                            }
662    
663                            $res =
664                                    "$what ++ " . ( $stat->{vote}->{'+'} || 0 ) .
665                                    " : " . ( $stat->{vote}->{'-'} || 0 ) . " --" .
666                                    " from " . ( join(", ", @nicks) || 'nobody' );
667    
668                            $_[KERNEL]->post( $IRC_ALIAS => notice => $nick, $res );
669    
670                    } elsif ($msg =~ m/^ping/) {
671                            $res = "ping = " . dump( $ping );
672                    } elsif ($msg =~ m/^conf(?:ig)*\s*(last-size|twitter)*\s*(.*)/) {
673                            if ( ! defined( $1 ) ) {
674                                    my $sth = $dbh->prepare(qq{ select name,value,changed from meta where nick = ? and channel = ? });
675                                    $sth->execute( $nick, $channel );
676                                    $res = "config for $nick on $channel";
677                                    while ( my ($n,$v) = $sth->fetchrow_array ) {
678                                            $res .= " | $n = $v";
679                                    }
680                            } elsif ( ! $2 ) {
681                                    my $val = meta( $nick, $channel, $1 );
682                                    $res = "current $1 = " . ( $val ? $val : 'undefined' );
683                            } else {
684                                    my $validate = {
685                                            'last-size' => qr/^\d+/,
686                                            'twitter' => qr/^\w+\s+\w+/,
687                                    };
688    
689                                    my ( $op, $val ) = ( $1, $2 );
690    
691                                    if ( my $regex = $validate->{$op} ) {
692                                            if ( $val =~ $regex ) {
693                                                    meta( $nick, $channel, $op, $val );
694                                                    $res = "saved $op = $val";
695                                            } else {
696                                                    $res = "config option $op = $val doesn't validate against $regex";
697                                            }
698                                    } else {
699                                            $res = "config option $op doesn't exist";
700                                    }
701                            }
702                  }                  }
703    
704                  if ($res) {                  if ($res) {
705                          print ">> [$nick] $res\n";                          _log ">> [$nick] $res";
706                          from_to($res, $ENCODING, 'UTF-8');                          from_to($res, $ENCODING, 'UTF-8');
707                          $_[KERNEL]->post( $IRC_ALIAS => privmsg => $nick, $res );                          $_[KERNEL]->post( $IRC_ALIAS => privmsg => $nick, $res );
708                  }                  }
709    
710          },          },
711          irc_477 => sub {          irc_477 => sub {
712                  print "# irc_477: ",$_[ARG1], "\n";                  _log "# irc_477: ",$_[ARG1];
713                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "register $NICK" );                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "register $NICK" );
714          },          },
715          irc_505 => sub {          irc_505 => sub {
716                  print "# irc_505: ",$_[ARG1], "\n";                  _log "# irc_505: ",$_[ARG1];
717                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "register $NICK" );                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "register $NICK" );
718  #               $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "set hide email on" );  #               $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "set hide email on" );
719  #               $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "set email dpavlin\@rot13.org" );  #               $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "set email dpavlin\@rot13.org" );
720          },          },
721          irc_registered => sub {          irc_registered => sub {
722                  warn "## indetify $NICK\n";                  _log "## registrated $NICK";
723                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "IDENTIFY $NICK" );                  $_[KERNEL]->post( $IRC_ALIAS => privmsg => 'nickserv', "IDENTIFY $NICK" );
724          },          },
725          irc_disconnected => sub {          irc_disconnected => sub {
726                  warn "## disconnected, reconnecting again\n";                  _log "## disconnected, reconnecting again";
727                  $_[KERNEL]->post($IRC_ALIAS => connect => $CONNECT);                  $_[KERNEL]->post($IRC_ALIAS => connect => $CONNECT);
728          },          },
729          irc_socketerr => sub {          irc_socketerr => sub {
730                  warn "## socket error... sleeping for $sleep_on_error seconds and retry";                  _log "## socket error... sleeping for $sleep_on_error seconds and retry";
731                  sleep($sleep_on_error);                  sleep($sleep_on_error);
732                  $_[KERNEL]->post($IRC_ALIAS => connect => $CONNECT);                  $_[KERNEL]->post($IRC_ALIAS => connect => $CONNECT);
733          },          },
# Line 558  POE::Session->create( inline_states => Line 738  POE::Session->create( inline_states =>
738  #       },  #       },
739      _child => sub {},      _child => sub {},
740      _default => sub {      _default => sub {
741                  printf "%s #%s %s %s\n",                  _log sprintf "sID:%s %s %s",
742                          strftime($TIMESTAMP,localtime()), $_[SESSION]->ID, $_[ARG0],                          $_[SESSION]->ID, $_[ARG0],
743                          ref($_[ARG1]) eq "ARRAY"        ?       join(",", map { ref($_) eq "ARRAY" ? join(";", @{$_}) : $_ } @{ $_[ARG1] })     :                          ref($_[ARG1]) eq "ARRAY"        ?       join(",", map { ref($_) eq "ARRAY" ? join(";", @{$_}) : $_ } @{ $_[ARG1] })     :
744                          $_[ARG1]                                        ?       $_[ARG1]                                        :                          $_[ARG1]                                        ?       $_[ARG1]                                        :
745                          "";                          "";

Legend:
Removed from v.41  
changed lines
  Added in v.52

  ViewVC Help
Powered by ViewVC 1.1.26