use vars qw($VERSION %IRSSI);
-$VERSION = "1.7";
-my ($REV) = '$Rev: 341 $' =~ /(\d+)/;
+$VERSION = "1.7.1";
+my ($REV) = '$Rev: 345 $' =~ /(\d+)/;
%IRSSI = (
authors => 'Dan Boger',
contact => 'zigdon@gmail.com',
. 'Can optionally set your bitlbee /away message to same',
license => 'GNU GPL v2',
url => 'http://tinyurl.com/twirssi',
- changed => 'Mon Dec 1 15:36:01 PST 2008',
+ changed => '$Date: 2009-01-06 07:14:03 -0800 (Tue, 06 Jan 2009) $',
);
my $window;
$away = 1;
} else {
¬ice( "Can't find bitlbee server.",
- "Update bitlbee_server or disalbe tweet_to_away" );
+ "Update bitlbee_server or disable tweet_to_away" );
}
}
my $nick;
$id =~ s/[^\w\d\-:]+//g;
( $nick, $id ) = split /:/, $id;
- unless ( exists $id_map{$nick} ) {
+ unless ( exists $id_map{lc $nick} ) {
¬ice("Can't find a tweet from $nick to reply to!");
return;
}
my $pid = fork();
if ($pid) { # parent
- Irssi::timeout_add_once( 5000, 'monitor_child', [$filename] );
+ Irssi::timeout_add_once( 5000, 'monitor_child', [ $filename, 0 ] );
Irssi::pidwait_add($pid);
} elsif ( defined $pid ) { # child
close STDIN;
my $new_poll = time;
- &do_updates( $fh, $user, $twit );
+ my $error = 0;
+ $error += &do_updates( $fh, $user, $twit );
foreach ( keys %twits ) {
next if $_ eq $user;
- &do_updates( $fh, $_, $twits{$_} );
+ $error += &do_updates( $fh, $_, $twits{$_} );
}
my ( $added, $removed ) = &load_friends($fh);
foreach ( sort keys %friends ) {
print $fh "$_ $friends{$_}\n";
}
- print $fh $new_poll;
+
+ if ($error) {
+ print $fh "type:error Update encountered errors. Aborted\n";
+ print $fh $last_poll;
+ } else {
+ print $fh $new_poll;
+ }
close $fh;
exit;
}
if ($@) {
print $fh "type:error Error during friends_timeline call. Aborted.\n";
- return;
+ return 1;
}
foreach my $t ( reverse @$tweets ) {
if ($@) {
print $fh "type:error Error during replies call. Aborted.\n";
- return;
+ return 1;
}
foreach my $t ( reverse @$tweets ) {
if ($@) {
print $fh "type:error Error during direct_messages call. Aborted.\n";
- return;
+ return 1;
}
foreach my $t ( reverse @$tweets ) {
$t->{id}, $username, $t->{sender_screen_name}, $text;
}
print scalar localtime, " - Done" if &debug;
+
+ return 0;
}
sub monitor_child {
- my $data = shift;
+ my ( $data, $attempt ) = @_;
my $filename = $data->[0];
print scalar localtime, " - checking child log at $filename" if &debug;
} elsif ( $meta{type} eq 'dm' ) {
push @lines, "[$account%B\@$meta{nick}%n (%WDM%n)] $_\n",;
} elsif ( $meta{type} eq 'error' ) {
- push @lines, "debug: $_\n" if &debug,;
+ push @lines, "error: $_\n" if &debug,;
} elsif ( $meta{type} eq 'debug' ) {
push @lines, "debug: $_\n" if &debug,;
}
}
close FILE;
- Irssi::timeout_add_once( 5000, 'monitor_child', [$filename] );
+
+ if ( $attempt < 12 ) {
+ Irssi::timeout_add_once( 5000, 'monitor_child',
+ [ $filename, $attempt + 1 ] );
+ } else {
+ ¬ice("Giving up on polling $filename");
+ unlink $filename unless &debug;
+ }
}
sub debug {