/[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 89 by dpavlin, Fri Mar 7 00:43:45 2008 UTC revision 90 by dpavlin, Fri Mar 7 09:50:53 2008 UTC
# Line 20  Import log from C<dircproxy> to C<irc-lo Line 20  Import log from C<dircproxy> to C<irc-lo
20    
21  =item --log=irc-logger.log  =item --log=irc-logger.log
22    
 Name of log file  
   
 =item --follow=file.log  
   
 Follows new messages in file  
   
23  =back  =back
24    
25  =head1 DESCRIPTION  =head1 DESCRIPTION
# Line 50  my $CHANNEL = '#razmjenavjestina'; Line 44  my $CHANNEL = '#razmjenavjestina';
44  $CHANNEL = '#irc-logger' if ($HOSTNAME =~ m/llin/);  $CHANNEL = '#irc-logger' if ($HOSTNAME =~ m/llin/);
45  my $IRC_ALIAS = "log";  my $IRC_ALIAS = "log";
46    
 # default log to follow and announce messages  
 my $follows_path = 'follows.log';  
   
47  my $DSN = 'DBI:Pg:dbname=' . $NICK;  my $DSN = 'DBI:Pg:dbname=' . $NICK;
48    
49  my $TIMESTAMP = '%Y-%m-%d %H:%M:%S';  my $TIMESTAMP = '%Y-%m-%d %H:%M:%S';
# Line 72  my $url = "http://$HOSTNAME:$http_port"; Line 63  my $url = "http://$HOSTNAME:$http_port";
63    
64  ## END CONFIG  ## END CONFIG
65    
66  use POE qw(Component::IRC Wheel::FollowTail Component::Server::HTTP);  use POE qw(Component::IRC Component::Server::HTTP);
67  use HTTP::Status;  use HTTP::Status;
68  use DBI;  use DBI;
69  use Regexp::Common qw /URI/;  use Regexp::Common qw /URI/;
# Line 97  my $import_dircproxy; Line 88  my $import_dircproxy;
88  my $log_path;  my $log_path;
89  GetOptions(  GetOptions(
90          'import-dircproxy:s' => \$import_dircproxy,          'import-dircproxy:s' => \$import_dircproxy,
         'follows:s' => \$follows_path,  
91          'log:s' => \$log_path,          'log:s' => \$log_path,
92  );  );
93    
# Line 111  sub _log { Line 101  sub _log {
101          print strftime($TIMESTAMP,localtime()) . ' ' . join(" ",@_) . $/;          print strftime($TIMESTAMP,localtime()) . ' ' . join(" ",@_) . $/;
102  }  }
103    
 # LOG following  
   
 my %FOLLOWS =  
   (  
 #   ACCESS => "/var/log/apache/access.log",  
 #   ERROR => "/var/log/apache/error.log",  
   );  
   
 sub add_follow_path {  
         my $path = shift;  
         my $name = $path;  
         $name =~ s/\..*$//;  
         warn "# using $path to announce messages from $name\n";  
         $FOLLOWS{$name} = $path;  
 }  
   
 add_follow_path( $follows_path ) if ( -e $follows_path );  
   
104  # HTML formatters  # HTML formatters
105    
106  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 670  sub rss_fetch { Line 642  sub rss_fetch {
642                  }                  }
643    
644                  my $msg;                  my $msg;
645                  $msg .= prefix( 'From: ' , $feed->title );                  $msg .= prefix( 'From: ' , $args->{name} || $feed->title );
646                  $msg .= prefix( ' by ' , $entry->author );                  $msg .= prefix( ' by ' , $entry->author );
647                  $msg .= prefix( ' -- ' , $entry->link );                  $msg .= prefix( ' -- ' , $entry->link );
648  #               $msg .= prefix( ' id ' , $entry->id );  #               $msg .= prefix( ' id ' , $entry->id );
# Line 719  sub rss_check_updates { Line 691  sub rss_check_updates {
691          my $kernel = shift;          my $kernel = shift;
692          my $last_t = $_rss->{last_poll} || time();          my $last_t = $_rss->{last_poll} || time();
693          my $t = time();          my $t = time();
694          if ( $last_t - $t > $rss_min_delay ) {          if ( $t - $last_t > $rss_min_delay ) {
695                  $_rss->{last_poll} = $t;                  $_rss->{last_poll} = $t;
696                  _log rss_fetch_all( $kernel );                  _log rss_fetch_all( $kernel );
697          }          }
# Line 732  _log rss_fetch_all; Line 704  _log rss_fetch_all;
704  # POE handing part  # POE handing part
705  #  #
706    
 my $SKIPPING = 0;               # if skipping, how many we've done  
 my $SEND_QUEUE;                 # cache  
707  my $ping;                                               # ping stats  my $ping;                                               # ping stats
708    
709  POE::Component::IRC->new($IRC_ALIAS);  POE::Component::IRC->new($IRC_ALIAS);
# Line 925  POE::Session->create( inline_states => { Line 895  POE::Session->create( inline_states => {
895                          $res = rss_fetch_all( $_[KERNEL] );                          $res = rss_fetch_all( $_[KERNEL] );
896                  } elsif ($msg =~ m/^rss-clean/) {                  } elsif ($msg =~ m/^rss-clean/) {
897                          $_rss = undef;                          $_rss = undef;
898                            $dbh->do( qq{ update feeds set last_update = now() - delay } );
899                          $res = "OK, cleaned RSS cache";                          $res = "OK, cleaned RSS cache";
900                  } elsif ($msg =~ m!^rss-(add|remove|stop|start)\s+(http://\S+)\s*(.*)!) {                  } elsif ($msg =~ m!^rss-(add|remove|stop|start)\s+(http://\S+)\s*(.*)!) {
901                          my $sql = {                          my $sql = {
# Line 940  POE::Session->create( inline_states => { Line 911  POE::Session->create( inline_states => {
911                                  eval { $sth->execute( $2, $3 ) };                                  eval { $sth->execute( $2, $3 ) };
912                          }                          }
913    
914                          $res ||= "OK, RSS $1 : $2 - $3";                          $res = "OK, RSS $1 : $2 - $3";
915                  }                  }
916    
917                  if ($res) {                  if ($res) {

Legend:
Removed from v.89  
changed lines
  Added in v.90

  ViewVC Help
Powered by ViewVC 1.1.26