Class: Jenkins::CLI

Inherits:
Thor show all
Includes:
Formatting
Defined in:
lib/jenkins/cli.rb,
lib/jenkins/cli/formatting.rb

Defined Under Namespace

Modules: Formatting

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Formatting

included

Class Method Details

.common_optionsObject



13
14
15
16
# File 'lib/jenkins/cli.rb', line 13

def self.common_options
  method_option :host, :desc => 'connect to jenkins server on this host'
  method_option :port, :desc => 'connect to jenkins server on this port'
end

.help(shell) ⇒ Object



234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'lib/jenkins/cli.rb', line 234

def self.help(shell, *)
  list = printable_tasks
  shell.say <<-USEAGE
Jenkins.rb is a smart set of utilities for making
continuous integration as simple as possible

Usage: jenkins command [arguments] [options]

USEAGE

  shell.say "Commands:"
  shell.print_table(list, :ident => 2, :truncate => true)
  shell.say
  class_options_help(shell)
end

Instance Method Details

#add_node(slave_host) ⇒ Object



206
207
208
209
210
211
212
213
# File 'lib/jenkins/cli.rb', line 206

def add_node(slave_host)
  select_jenkins_server(options)
  if results = Jenkins::Api.add_node({:slave_host => slave_host}.merge(options))
    shell.say "Added slave node '#{results[:name]}' to #{results[:slave_host]}", :green
  else
    error "Failed to add slave node #{slave_host}"
  end
end

#build(project_path = ".") ⇒ Object



92
93
94
95
96
97
98
99
100
101
102
# File 'lib/jenkins/cli.rb', line 92

def build(project_path = ".")
  select_jenkins_server(options)
  FileUtils.chdir(project_path) do
    name = File.basename(FileUtils.pwd)
    if Jenkins::Api.build_job(name)
      shell.say "Build for '#{name}' running now..."
    else
      error "No job '#{name}' on server."
    end
  end
end

#build_details(job_name, build_number) ⇒ Object



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/jenkins/cli.rb', line 147

def build_details(job_name, build_number)
  select_jenkins_server(options)
  if build_details = Jenkins::Api.build_details(job_name, build_number)
    if options[:hash]
      require "ap"
      ap build_details.parsed_response
    elsif options[:json]
      puts build_details.parsed_response.to_json
    elsif options[:yaml]
      require "yaml"
      puts build_details.parsed_response.to_yaml
    else
      error "Select an output format: --json, --yaml, --hash"
    end
  else
    error "Cannot find project '#{job_name}'."
  end
end

#create(project_path) ⇒ Object



47
48
49
50
51
52
53
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
84
85
86
87
88
# File 'lib/jenkins/cli.rb', line 47

def create(project_path)
  select_jenkins_server(options)
  FileUtils.chdir(project_path) do
    unless scm = Jenkins::ProjectScm.discover(options[:scm])
      error "Cannot determine project SCM. Currently supported: #{Jenkins::ProjectScm.supported}"
    end
    unless (options[:template] == "none" || options[:"no-template"]) || File.exists?("Gemfile")
      error "Ruby/Rails projects without a Gemfile are currently unsupported."
    end
    begin
      template = options[:"no-template"] ? 'none' : options[:template]
      job_config = Jenkins::JobConfigBuilder.new(template) do |c|
        c.rubies        = options[:rubies].split(/\s*,\s*/) if options[:rubies]
        c.node_labels   = options[:"node-labels"].split(/\s*,\s*/) if options[:"node-labels"]
        c.scm           = scm.url
        c.scm_branches  = options[:"scm-branches"].split(/\s*,\s*/)
        c.assigned_node = options[:"assigned-node"] if options[:"assigned-node"]
        c.public_scm    = options[:"public-scm"]
      end
      name = File.basename(FileUtils.pwd)
      if Jenkins::Api.create_job(name, job_config, options)
        build_url = "#{@uri}/job/#{name.gsub(/\s/,'%20')}/build"
        shell.say "Added#{' ' + template unless template == 'none'} project '#{name}' to Jenkins.", :green
        unless options[:"no-build"]
          shell.say "Triggering initial build..."
          Jenkins::Api.build_job(name)
          shell.say "Trigger additional builds via:"
        else
          shell.say "Trigger builds via:"
        end
        shell.say "  URL: "; shell.say "#{build_url}", :yellow
        shell.say "  CLI: "; shell.say "#{cmd} build #{name}", :yellow
      else
        error "Failed to create project '#{name}'"
      end
    rescue Jenkins::JobConfigBuilder::InvalidTemplate
      error "Invalid job template '#{template}'."
    rescue Jenkins::Api::JobAlreadyExistsError
      error "Job '#{name}' already exists."
    end
  end
end

#default_hostObject



216
217
218
219
220
221
222
# File 'lib/jenkins/cli.rb', line 216

def default_host
  if select_jenkins_server({})
    display Jenkins::Api.base_uri
  else
    display "No default host yet. Use '--host host --port port' on your first request."
  end
end

#help(*args) ⇒ Object



225
226
227
# File 'lib/jenkins/cli.rb', line 225

def help(*args)
  super(*args)
end

#job(name) ⇒ Object



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/jenkins/cli.rb', line 123

def job(name)
  select_jenkins_server(options)
  if job = Jenkins::Api.job(name)
    if options[:hash]
      require "ap"
      ap job.parsed_response
    elsif options[:json]
      puts job.parsed_response.to_json
    elsif options[:yaml]
      require "yaml"
      puts job.parsed_response.to_yaml
    else
      error "Select an output format: --json, --xml, --yaml, --hash"
    end
  else
    error "Cannot find project '#{name}'."
  end
end

#listObject



168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# File 'lib/jenkins/cli.rb', line 168

def list
  select_jenkins_server(options)
  summary = Jenkins::Api.summary
  unless summary["jobs"].blank?
    shell.say "#{@uri}:", :bold
    summary["jobs"].each do |job|
      bold  = job['color'] =~ /anime/
      color = 'red' if job['color'] =~ /red/
      color = 'green' if job['color'] =~ /(blue|green)/
      color ||= 'yellow' # if color =~ /grey/ || color == 'disabled'
      shell.say "* "; shell.say(shell.set_color(job['name'], color.to_sym, bold), nil, true)
    end
    shell.say ""
  else
    shell.say "#{@uri}: "; shell.say "no jobs", :yellow
  end
end

#nodesObject



188
189
190
191
192
193
194
195
# File 'lib/jenkins/cli.rb', line 188

def nodes
  select_jenkins_server(options)
  nodes = Jenkins::Api.nodes
  nodes["computer"].each do |node|
    color = node["offline"] ? :red : :green
    shell.say node["displayName"], color
  end
end

#remove(project_path) ⇒ Object



106
107
108
109
110
111
112
113
114
115
116
# File 'lib/jenkins/cli.rb', line 106

def remove(project_path)
  select_jenkins_server(options)
  FileUtils.chdir(project_path) do
    name = File.basename(FileUtils.pwd)
    if Jenkins::Api.delete_job(name)
      shell.say "Removed project '#{name}' from Jenkins."
    else
      error "Failed to delete project '#{name}'."
    end
  end
end

#serverObject



25
26
27
28
29
30
31
32
33
# File 'lib/jenkins/cli.rb', line 25

def server
  begin
    require 'jenkins/war'
    Jenkins::War::server(options)
  rescue LoadError
    puts "To run a jenkins server, you need to install the jenkins-war gem. try:"
    puts "gem install jenkins-war"
  end
end

#versionObject



230
231
232
# File 'lib/jenkins/cli.rb', line 230

def version
  shell.say "#{Jenkins::VERSION}"
end