From: Dan Boger Date: Wed, 13 Jan 2010 19:22:19 +0000 (-0800) Subject: Add some additional evals to avoid lost terminal issues on twitter call failures X-Git-Url: https://git.sommitrealweird.co.uk//gitweb/?p=twirssi-net-twitter-lite.git;a=commitdiff_plain;h=b7891f5d621a37490844913a219b47b2feb23ea4 Add some additional evals to avoid lost terminal issues on twitter call failures --- diff --git a/twirssi.pl b/twirssi.pl index 5234372..5295231 100644 --- a/twirssi.pl +++ b/twirssi.pl @@ -430,7 +430,9 @@ sub cmd_logout { return unless $data = &valid_username($data); ¬ice("Logging out $data..."); - $twits{$data}->end_session(); + eval { + $twits{$data}->end_session(); + }; delete $twits{$data}; undef $twit; if ( keys %twits ) { @@ -541,10 +543,19 @@ sub cmd_login { } unless ( $twit->authorized ) { + eval { + my $url = $twit->get_authorization_url; + }; + + if ($@) { + ¬ice("ERROR: Failed to get OAuth authorization_url. Try again later."); + return; + } + ¬ice("Twirssi not autorized to access $service for $user."); ¬ice("Please authorize at the following url, then enter the pin "); ¬ice("supplied with /twirssi_oauth $user\@$service "); - ¬ice($twit->get_authorization_url); + ¬ice($url); $oauth{pending}{"$user\@$service"} = $twit; return; @@ -1043,11 +1054,13 @@ sub get_updates { sub do_updates { my ( $fh, $username, $obj, $cache ) = @_; - my $rate_limit = $obj->rate_limit_status(); - if ( $rate_limit and $rate_limit->{remaining_hits} < 1 ) { - ¬ice("Rate limit exceeded for $username"); - return undef; - } + eval { + my $rate_limit = $obj->rate_limit_status(); + if ( $rate_limit and $rate_limit->{remaining_hits} < 1 ) { + ¬ice("Rate limit exceeded for $username"); + return undef; + } + }; print scalar localtime, " - Polling for updates for $username" if &debug; my $tweets;