/[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

revision 28 by dpavlin, Fri Jun 16 20:51:32 2006 UTC revision 31 by dpavlin, Sat Jun 17 17:23:26 2006 UTC
# Line 18  log all conversation on irc channel Line 18  log all conversation on irc channel
18    
19  ## CONFIG  ## CONFIG
20    
21  my $NICK = 'irc-logger-dev';  my $NICK = 'irc-logger';
22  my $CONNECT =  my $CONNECT =
23    {Server => 'irc.freenode.net',    {Server => 'irc.freenode.net',
24     Nick => $NICK,     Nick => $NICK,
# Line 44  my $ENCODING = 'ISO-8859-2'; Line 44  my $ENCODING = 'ISO-8859-2';
44  use POE qw(Component::IRC Wheel::FollowTail Component::Server::HTTP);  use POE qw(Component::IRC Wheel::FollowTail Component::Server::HTTP);
45  use HTTP::Status;  use HTTP::Status;
46  use DBI;  use DBI;
47  use Encode qw/from_to/;  use Encode qw/from_to is_utf8/;
48  use Regexp::Common qw /URI/;  use Regexp::Common qw /URI/;
49  use CGI::Simple;  use CGI::Simple;
50  use HTML::TagCloud;  use HTML::TagCloud;
# Line 83  values (?,?,?,?) Line 83  values (?,?,?,?)
83  });  });
84    
85  my $tags;  my $tags;
86    my $tag_regex = '\b([\w-_]+)//';
87    
88  =head2 get_from_log  =head2 get_from_log
89    
# Line 290  POE::Session->create Line 291  POE::Session->create
291    
292                  print "$channel: <$nick> $msg\n";                  print "$channel: <$nick> $msg\n";
293                  $sth->execute($channel, 0, $nick, $msg);                  $sth->execute($channel, 0, $nick, $msg);
294                    add_tag( id => $dbh->last_insert_id(undef,undef,"log",undef),
295                            message => $msg);
296      },      },
297      irc_ctcp_action => sub {      irc_ctcp_action => sub {
298                  my $kernel = $_[KERNEL];                  my $kernel = $_[KERNEL];
# Line 301  POE::Session->create Line 304  POE::Session->create
304    
305                  print "$channel ***$nick $msg\n";                  print "$channel ***$nick $msg\n";
306                  $sth->execute($channel, 1, $nick, $msg);                  $sth->execute($channel, 1, $nick, $msg);
307                    add_tag( id => $dbh->last_insert_id(undef,undef,"log",undef),
308                            message => $msg);
309      },      },
310          irc_msg => sub {          irc_msg => sub {
311                  my $kernel = $_[KERNEL];                  my $kernel = $_[KERNEL];
# Line 494  sub add_tag { Line 499  sub add_tag {
499    
500          return unless ($arg->{id} && $arg->{message});          return unless ($arg->{id} && $arg->{message});
501    
502          while ($arg->{message} =~ s#\b(\S+)//##s) {          my $m = $arg->{message};
503            from_to('UTF-8', 'iso-8859-2', $m) if (is_utf8($m));
504    
505            while ($m =~ s#$tag_regex##s) {
506                  my $tag = $1;                  my $tag = $1;
507                  next if (! $tag || $tag =~ m/https?:/i);                  next if (! $tag || $tag =~ m/https?:/i);
508                  push @{ $tags->{$tag} }, $arg->{id};                  push @{ $tags->{$tag} }, $arg->{id};
509                    warn "+tag $tag: $arg->{id}\n";
510          }          }
511  }  }
512    
# Line 544  p { margin: 0; padding: 0.1em; } Line 553  p { margin: 0; padding: 0.1em; }
553  .col-2 { background: #99ff99 }  .col-2 { background: #99ff99 }
554  .col-3 { background: #ff9999 }  .col-3 { background: #ff9999 }
555  .col-4 { background: #ff66ff }  .col-4 { background: #ff66ff }
556    a:link.tag, a:visited.tag { border: 1px dashed #ccc; backgound: #ccc; text-decoration: none }
557    a:hover.tag { border: 1px solid #eee }
558  _END_OF_STYLE_  _END_OF_STYLE_
559    
560  my $max_color = 4;  my $max_color = 4;
# Line 577  sub root_handler { Line 588  sub root_handler {
588                  <input type="submit" value="search">                  <input type="submit" value="search">
589                  </form>                  </form>
590                  } .                  } .
591                  qq{<div>} . $cloud->html(500) . qq{</div>} .                  $cloud->html(500) .
592                  qq{<p>} .                  qq{<p>} .
593                  join("</p><p>",                  join("</p><p>",
594                          get_from_log(                          get_from_log(
595                                  limit => $q->param('last') || 100,                                  limit => $q->param('last') || 100,
596                                  search => $search || undef,                                  search => $search || undef,
597                                  tag => $q->param('tag'),                                  tag => $q->param('tag') || undef,
598                                  fmt => {                                  fmt => {
599                                          date => '<hr size="1" style="clear: both;"/><div class="date">%s</div> ',                                          date => '<hr size="1" style="clear: both;"/><div class="date">%s</div> ',
600                                          time => '<span class="time">%s</span> ',                                          time => '<span class="time">%s</span> ',
# Line 597  sub root_handler { Line 608  sub root_handler {
608                                                  my $m = shift || return;                                                  my $m = shift || return;
609                                                  $m =~ s/($escape_re)/$escape{$1}/gs;                                                  $m =~ s/($escape_re)/$escape{$1}/gs;
610                                                  $m =~ s#($RE{URI}{HTTP})#<a href="$1">$1</a>#gs;                                                  $m =~ s#($RE{URI}{HTTP})#<a href="$1">$1</a>#gs;
611                                                    $m =~ s#$tag_regex#<a href="?tag=$1" class="tag">$1</a>#g;
612                                                  return $m;                                                  return $m;
613                                          },                                          },
614                                          nick => sub {                                          nick => sub {

Legend:
Removed from v.28  
changed lines
  Added in v.31

  ViewVC Help
Powered by ViewVC 1.1.26