]> git.sommitrealweird.co.uk Git - twirssi-net-twitter-lite.git/blobdiff - twirssi.pl
1.7.3 - r352 - Add an eval when fetching context messages. Demote all error messages...
[twirssi-net-twitter-lite.git] / twirssi.pl
index 7b023467eda60def72092f5b7df2abdd70bd4dc8..b7e17677b0c9798ce9abab55ae6cb808b8b702bd 100644 (file)
@@ -1,7 +1,6 @@
 use strict;
 use Irssi;
 use Irssi::Irc;
 use strict;
 use Irssi;
 use Irssi::Irc;
-use Net::Twitter;
 use HTTP::Date;
 use HTML::Entities;
 use File::Temp;
 use HTTP::Date;
 use HTML::Entities;
 use File::Temp;
@@ -9,10 +8,18 @@ use LWP::Simple;
 use Data::Dumper;
 $Data::Dumper::Indent = 1;
 
 use Data::Dumper;
 $Data::Dumper::Indent = 1;
 
+BEGIN {
+    $ENV{JSON_ANY_ORDER} = "JSON Syck DWIW";
+    require JSON::Any;
+    import JSON::Any;
+    require Net::Twitter;
+    import Net::Twitter;
+}
+
 use vars qw($VERSION %IRSSI);
 
 use vars qw($VERSION %IRSSI);
 
-$VERSION = "1.7.2";
-my ($REV) = '$Rev: 350 $' =~ /(\d+)/;
+$VERSION = "1.7.3";
+my ($REV) = '$Rev: 352 $' =~ /(\d+)/;
 %IRSSI = (
     authors     => 'Dan Boger',
     contact     => 'zigdon@gmail.com',
 %IRSSI = (
     authors     => 'Dan Boger',
     contact     => 'zigdon@gmail.com',
@@ -21,7 +28,7 @@ my ($REV) = '$Rev: 350 $' =~ /(\d+)/;
       . 'Can optionally set your bitlbee /away message to same',
     license => 'GNU GPL v2',
     url     => 'http://tinyurl.com/twirssi',
       . 'Can optionally set your bitlbee /away message to same',
     license => 'GNU GPL v2',
     url     => 'http://tinyurl.com/twirssi',
-    changed => '$Date: 2009-01-06 14:59:49 -0800 (Tue, 06 Jan 2009) $',
+    changed => '$Date: 2009-01-08 13:46:50 -0800 (Thu, 08 Jan 2009) $',
 );
 
 my $window;
 );
 
 my $window;
@@ -564,7 +571,7 @@ sub load_friends {
     };
 
     if ($@) {
     };
 
     if ($@) {
-        print $fh "type:error Error during friends list update.  Aborted.\n";
+        print $fh "type:debug Error during friends list update.  Aborted.\n";
         return;
     }
 
         return;
     }
 
@@ -637,7 +644,7 @@ sub get_updates {
         }
 
         if ($error) {
         }
 
         if ($error) {
-            print $fh "type:error Update encountered errors.  Aborted\n";
+            print $fh "type:debug Update encountered errors.  Aborted\n";
             print $fh $last_poll;
         } else {
             print $fh $new_poll;
             print $fh $last_poll;
         } else {
             print $fh $new_poll;
@@ -659,17 +666,17 @@ sub do_updates {
     };
 
     if ($@) {
     };
 
     if ($@) {
-        print $fh "type:error Error during friends_timeline call.  Aborted.\n";
+        print $fh "type:debug Error during friends_timeline call.  Aborted.\n";
         return 1;
     }
 
     unless ( ref $tweets ) {
         if ( $obj->can("get_error") ) {
         return 1;
     }
 
     unless ( ref $tweets ) {
         if ( $obj->can("get_error") ) {
-            print $fh "type:error API Error during friends_timeline call: ",
+            print $fh "type:debug API Error during friends_timeline call: ",
               JSON::Any->jsonToObj( $obj->get_error() ), "  Aborted.\n";
         } else {
             print $fh
               JSON::Any->jsonToObj( $obj->get_error() ), "  Aborted.\n";
         } else {
             print $fh
-              "type:error API Error during friends_timeline call. Aborted.\n";
+              "type:debug API Error during friends_timeline call. Aborted.\n";
         }
         return 1;
     }
         }
         return 1;
     }
@@ -685,7 +692,11 @@ sub do_updates {
             and not exists $friends{ $t->{in_reply_to_screen_name} } )
         {
             $nicks{ $t->{in_reply_to_screen_name} } = time;
             and not exists $friends{ $t->{in_reply_to_screen_name} } )
         {
             $nicks{ $t->{in_reply_to_screen_name} } = time;
-            my $context = $obj->show_status( $t->{in_reply_to_status_id} );
+            my $context;
+            eval {
+              $context = $obj->show_status( $t->{in_reply_to_status_id} );
+            };
+
             if ($context) {
                 my $ctext = decode_entities( $context->{text} );
                 $ctext =~ s/%/%%/g;
             if ($context) {
                 my $ctext = decode_entities( $context->{text} );
                 $ctext =~ s/%/%%/g;
@@ -694,8 +705,10 @@ sub do_updates {
                   $context->{id}, $username,
                   $context->{user}{screen_name}, $ctext;
                 $reply = "reply";
                   $context->{id}, $username,
                   $context->{user}{screen_name}, $ctext;
                 $reply = "reply";
+            } elsif ($@) {
+                print $fh "type:debug request to get context failed: $@";
             } else {
             } else {
-                print "Failed to get context from $t->{in_reply_to_screen_name}"
+                print $fh "type:debug Failed to get context from $t->{in_reply_to_screen_name}"
                   if &debug;
             }
         }
                   if &debug;
             }
         }
@@ -713,7 +726,7 @@ sub do_updates {
     };
 
     if ($@) {
     };
 
     if ($@) {
-        print $fh "type:error Error during replies call.  Aborted.\n";
+        print $fh "type:debug Error during replies call.  Aborted.\n";
         return 1;
     }
 
         return 1;
     }
 
@@ -736,7 +749,7 @@ sub do_updates {
     };
 
     if ($@) {
     };
 
     if ($@) {
-        print $fh "type:error Error during direct_messages call.  Aborted.\n";
+        print $fh "type:debug Error during direct_messages call.  Aborted.\n";
         return 1;
     }
 
         return 1;
     }
 
@@ -768,7 +781,7 @@ sub monitor_child {
             my %meta;
             foreach my $key (qw/id account nick type/) {
                 if (s/^$key:(\S+)\s*//) {
             my %meta;
             foreach my $key (qw/id account nick type/) {
                 if (s/^$key:(\S+)\s*//) {
-                  $meta{$key} = $1;
+                    $meta{$key} = $1;
                 }
             }
 
                 }
             }
 
@@ -943,9 +956,11 @@ if ($window) {
     Irssi::command_bind(
         "twirssi_version",
         sub {
     Irssi::command_bind(
         "twirssi_version",
         sub {
-            &notice(
-"Twirssi v$VERSION (r$REV);  Net::Twitter v$Net::Twitter::VERSION. "
-                  . "See details at http://tinyurl.com/twirssi" );
+            &notice("Twirssi v$VERSION (r$REV); "
+                  . "Net::Twitter v$Net::Twitter::VERSION. "
+                  . "JSON in use: "
+                  . JSON::Any::handler()
+                  . ".  See details at http://twirssi.com/" );
         }
     );
     Irssi::command_bind(
         }
     );
     Irssi::command_bind(