Class: Lolcommits::LolTwitter

Inherits:
Plugin
  • Object
show all
Defined in:
lib/lolcommits/plugins/lol_twitter.rb

Constant Summary collapse

TWITTER_API_ENDPOINT =
'https://api.twitter.com'.freeze
TWITTER_CONSUMER_KEY =
'qc096dJJCxIiqDNUqEsqQ'.freeze
TWITTER_CONSUMER_SECRET =
'rvjNdtwSr1H0TvBvjpk6c4bvrNydHmmbvv7gXZQI'.freeze
TWITTER_RETRIES =
2
TWITTER_PIN_REGEX =

4 or more digits

/^\d{4,}$/
DEFAULT_SUFFIX =
'#lolcommits'.freeze

Instance Attribute Summary

Attributes inherited from Plugin

#options, #runner

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Plugin

#configuration, #debug, #enabled?, #execute_postcapture, #execute_precapture, #initialize, #log_error, #parse_user_input, #puts, #run_precapture, #valid_configuration?

Constructor Details

This class inherits a constructor from Lolcommits::Plugin

Class Method Details

.nameObject



147
148
149
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 147

def self.name
  'twitter'
end

.runner_orderObject



151
152
153
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 151

def self.runner_order
  :postcapture
end

Instance Method Details

#build_tweet(commit_message) ⇒ Object



35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 35

def build_tweet(commit_message)
  prefix = config_with_default('prefix', '')
  suffix = " #{config_with_default('suffix', DEFAULT_SUFFIX)}"
  prefix = "#{prefix} " unless prefix.empty?

  available_commit_msg_size = max_tweet_size - (prefix.length + suffix.length)
  if commit_message.length > available_commit_msg_size
    commit_message = "#{commit_message[0..(available_commit_msg_size - 3)]}..."
  end

  "#{prefix}#{commit_message}#{suffix}"
end

#clientObject



116
117
118
119
120
121
122
123
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 116

def client
  @client ||= Twitter::REST::Client.new do |config|
    config.consumer_key        = TWITTER_CONSUMER_KEY
    config.consumer_secret     = TWITTER_CONSUMER_SECRET
    config.access_token        = configuration['access_token']
    config.access_token_secret = configuration['secret']
  end
end

#config_with_default(key, default = nil) ⇒ Object



135
136
137
138
139
140
141
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 135

def config_with_default(key, default = nil)
  if configuration[key]
    configuration[key].strip.empty? ? default : configuration[key]
  else
    default
  end
end

#configure_auth!Object



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 59

def configure_auth!
  puts '---------------------------'
  puts 'Need to grab twitter tokens'
  puts '---------------------------'

  request_token = oauth_consumer.get_request_token
  rtoken        = request_token.token
  rsecret       = request_token.secret

  print "\n1) Please open this url in your browser to get a PIN for lolcommits:\n\n"
  puts request_token.authorize_url
  print "\n2) Enter PIN, then press enter: "
  twitter_pin = STDIN.gets.strip.downcase.to_s

  unless twitter_pin =~ TWITTER_PIN_REGEX
    puts "\nERROR: '#{twitter_pin}' is not a valid Twitter Auth PIN"
    return
  end

  begin
    debug "Requesting Twitter OAuth Token with PIN: #{twitter_pin}"
    OAuth::RequestToken.new(oauth_consumer, rtoken, rsecret)
    access_token = request_token.get_access_token(:oauth_verifier => twitter_pin)
  rescue OAuth::Unauthorized
    puts "\nERROR: Twitter PIN Auth FAILED!"
    return
  end

  return unless access_token.token && access_token.secret
  puts ''
  puts '------------------------------'
  puts 'Thanks! Twitter Auth Succeeded'
  puts '------------------------------'
  {
    'access_token' => access_token.token,
    'secret'       => access_token.secret
  }
end

#configure_options!Object



48
49
50
51
52
53
54
55
56
57
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 48

def configure_options!
  options = super
  # ask user to configure tokens if enabling
  if options['enabled']
    auth_config = configure_auth!
    return unless auth_config
    options = options.merge(auth_config).merge(configure_prefix_suffix)
  end
  options
end

#configure_prefix_suffixObject



98
99
100
101
102
103
104
105
106
107
108
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 98

def configure_prefix_suffix
  print "\n3) Prefix all tweets with something? e.g. @user (leave blank for no prefix): "
  prefix = STDIN.gets.strip
  print "\n4) End all tweets with something? e.g. #hashtag (leave blank for default suffix #{DEFAULT_SUFFIX}): "
  suffix = STDIN.gets.strip

  config = {}
  config['prefix'] = prefix unless prefix.empty?
  config['suffix'] = suffix unless suffix.empty?
  config
end

#configured?Boolean

Returns:

  • (Boolean)


110
111
112
113
114
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 110

def configured?
  !configuration['enabled'].nil? &&
    configuration['access_token'] &&
    configuration['secret']
end

#max_tweet_sizeObject



143
144
145
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 143

def max_tweet_size
  139 - client.configuration.characters_reserved_per_media
end

#oauth_consumerObject



125
126
127
128
129
130
131
132
133
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 125

def oauth_consumer
  @oauth_consumer ||= OAuth::Consumer.new(
    TWITTER_CONSUMER_KEY,
    TWITTER_CONSUMER_SECRET,
    :site             => TWITTER_API_ENDPOINT,
    :request_endpoint => TWITTER_API_ENDPOINT,
    :sign_in          => true
  )
end

#run_postcaptureObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/lolcommits/plugins/lol_twitter.rb', line 15

def run_postcapture
  return unless valid_configuration?
  tweet = build_tweet(runner.message)

  attempts = 0
  begin
    attempts += 1
    puts "Tweeting: #{tweet}"
    debug "--> Tweeting! (attempt: #{attempts}, tweet length: #{tweet.length} chars)"
    if client.update_with_media(tweet, File.open(runner.main_image, 'r'))
      puts "\t--> Tweet Sent!"
    end
  rescue Twitter::Error::ServerError,
         Twitter::Error::ClientError => e
    debug "Tweet FAILED! #{e.class} - #{e.message}"
    retry if attempts < TWITTER_RETRIES
    puts "ERROR: Tweet FAILED! (after #{attempts} attempts) - #{e.message}"
  end
end