Sha256: 0a0fd431cd09f601ba2785c853b7235b63011e814ec86aaacf72a85ad3ed4214

Contents?: true

Size: 1.48 KB

Versions: 3

Compression:

Stored size: 1.48 KB

Contents

#!/usr/bin/env ruby

# Trap interrupts to quit cleanly. See
# https://twitter.com/mitchellh/status/283014103189053442
Signal.trap('INT') { abort }

require 'oauth'
require 't'
require 'twitter'

# Output message to $stderr, prefixed with the program name
def pute(*args)
  first = args.shift.dup
  first.insert(0, "#{$PROGRAM_NAME}: ")
  args.unshift(first)
  abort(args.join("\n"))
end

begin
  T::CLI.start(ARGV)
rescue Interrupt
  pute 'Quitting...'
rescue OAuth::Unauthorized
  pute 'Authorization failed'
rescue Twitter::Error::TooManyRequests => error
  pute error.message, "The rate limit for this request will reset in #{error.rate_limit.reset_in} #{error.rate_limit.reset_in == 1 ? 'second' : 'seconds'}."
rescue Twitter::Error::BadRequest => error
  pute error.message, 'Run `t authorize` to authorize.'
rescue Twitter::Error::Forbidden, Twitter::Error::Unauthorized => error
  if error.message == 'Error processing your OAuth request: Read-only application cannot POST' ||
     error.message == 'This application is not allowed to access or delete your direct messages'
    $stderr.puts(%q(Make sure to set your Twitter application's Access Level to "Read, Write and Access direct messages".))
    require 'thor'
    Thor::Shell::Basic.new.ask 'Press [Enter] to open the Twitter Developer site.'
    require 'launchy'
    Launchy.open('https://dev.twitter.com/apps') { |u, _, _| $stderr.puts "Manually open #{u}" }
  else
    pute error.message
  end
rescue Twitter::Error => error
  pute error.message
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
t-3.1.0 bin/t
t-3.0.0 bin/t
t-2.10.0 bin/t