Class: See::Plugins::Circle

Inherits:
Object
  • Object
show all
Defined in:
lib/see/plugins/circle.rb

Instance Method Summary collapse

Instance Method Details

#config_nameObject



11
12
13
# File 'lib/see/plugins/circle.rb', line 11

def config_name
  'circle'
end

#display_nameObject



7
8
9
# File 'lib/see/plugins/circle.rb', line 7

def display_name
  'CircleCi'
end

#run(config, plugin_config) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/see/plugins/circle.rb', line 15

def run(config, plugin_config)
  lines = []
  token = ENV['CIRCLE_CI_ACCESS_TOKEN']
  unless token
    lines << "  You must set CIRCLE_CI_ACCESS_TOKEN env variable".red
    return lines
  end

  CircleCi.configure do |cfg|
    cfg.token = token
  end

  response = CircleCi::Project.recent_builds(plugin_config['account'], plugin_config['repository'])
  if response.errors.length > 0
    lines << "  Errors encountered:".red
    response.errors.each do |error|
      lines << "    - " + "Error #{error.code}:".red + " #{JSON.parse(error.message)['message'].strip}"
    end
    return lines
  end

  lines << "  Latest Builds:".light_blue
  response.body[0..4].each do |thing|
    if thing['committer_date']
      time = "- #{Date.parse(thing['committer_date']).strftime("%b %e,%l:%M %p")}".black
    end
    if thing['status'].match(/failed|not_run/)
      status = thing['status'].red
    else
      status = thing['status'].green
    end
    if thing['committer_name']
      name = "[#{thing['committer_name']}]".cyan
    else
      name = ""
    end
    lines << "    - #{status.capitalize} #{thing["vcs_revision"][0..8].light_yellow} #{("#"+thing['build_num'].to_s).light_green} #{thing['subject']} #{name} #{time}"
  end
  lines
end