Class: Lolcommits::LolYammer

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

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, #initialize, #puts, #valid_configuration?

Constructor Details

This class inherits a constructor from Lolcommits::Plugin

Class Method Details

.nameObject



13
14
15
# File 'lib/lolcommits/plugins/lol_yammer.rb', line 13

def self.name
  'yammer'
end

Instance Method Details

#configure_access_tokenObject



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/lolcommits/plugins/lol_yammer.rb', line 21

def configure_access_token
  print "Open the URL below and copy the `code` param from query after redirected, enter it as `access_token`:\n"
  print "https://www.yammer.com/dialog/oauth?client_id=#{YAMMER_CLIENT_ID}&response_type=code\n"
  print 'Enter code param from the redirected URL, then press enter: '
  code = STDIN.gets.to_s.strip

  url = "#{YAMMER_ACCESS_TOKEN_URL}"
  debug "access_token url: #{url}"
  params = {
    'client_id' => YAMMER_CLIENT_ID,
    'client_secret' => YAMMER_CLIENT_SECRET,
    'code' => code
  }
  debug "params : #{params.inspect}"
  result = JSON.parse(RestClient.post(url, params))
  debug "response : #{result.inspect}"
  # no need for 'return', last line is always the return value
  { 'access_token' => result['access_token']['token'] }
end

#configure_options!Object



41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/lolcommits/plugins/lol_yammer.rb', line 41

def configure_options!
  options = super
  if options['enabled'] == true
    auth_config = configure_access_token
    if auth_config
      options.merge!(auth_config)
    else
      return
    end
  end
  options
end

#configured?Boolean



17
18
19
# File 'lib/lolcommits/plugins/lol_yammer.rb', line 17

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

#runObject



54
55
56
57
58
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
# File 'lib/lolcommits/plugins/lol_yammer.rb', line 54

def run
  return unless valid_configuration?

  commit_msg = self.runner.message
  post = "#{commit_msg} #lolcommits"
  puts "Yammer post: #{post}" unless self.runner.capture_stealth

  Yammer.configure do |c|
    c.client_id = YAMMER_CLIENT_ID
    c.client_secret = YAMMER_CLIENT_SECRET
  end

  client = Yammer::Client.new(:access_token  => configuration['access_token'])

  retries = YAMMER_RETRY_COUNT
  begin
    lolimage = File.new(self.runner.main_image)
    response = client.create_message(post, :attachment1 => lolimage)
    debug response.body.inspect
    if response
      puts "\t--> Status posted!" unless self.runner.capture_stealth
    end
  rescue => e
    retries -= 1
    retry if retries > 0
    puts "Status not posted - #{e.message}"
    puts 'Try running config again:'
    puts "\tlolcommits --config --plugin yammer"
  end
end