Class: IronWorkerNG::CLI

Inherits:
Object
  • Object
show all
Defined in:
lib/iron_worker_ng/cli.rb

Constant Summary collapse

LOG_ENTRY =
'        '
LOG_GROUP =
'------> '

Instance Method Summary collapse

Constructor Details

#initializeCLI

Returns a new instance of CLI.



6
7
8
9
10
11
12
13
# File 'lib/iron_worker_ng/cli.rb', line 6

def initialize
  @client = nil

  @config = nil
  @env = nil
  @project_id = nil
  @token = nil
end

Instance Method Details

#beta?Boolean

Returns:

  • (Boolean)


15
16
17
18
19
# File 'lib/iron_worker_ng/cli.rb', line 15

def beta?
  beta = ENV['IRON_BETA']

  beta == '1' || beta == 1 || beta == 'true' || beta == true || beta == 'beta'
end

#clientObject



53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/iron_worker_ng/cli.rb', line 53

def client
  if @client.nil?
    log_group "Creating client"

    @client = IronWorkerNG::Client.new(:config => @config, :env => @env, :project_id => @project_id, :token => @token)

    project = client.projects.get

    log "Project '#{project.name}' with id='#{project._id}'"
  end

  @client
end

#config=(config) ⇒ Object



21
22
23
24
25
# File 'lib/iron_worker_ng/cli.rb', line 21

def config=(config)
  @client = nil

  @config = config
end

#display_table(t) ⇒ Object



309
310
311
312
313
# File 'lib/iron_worker_ng/cli.rb', line 309

def display_table(t)
  t.each do |r|
    log sprintf('%-16s %s', r[0], r[1])
  end
end

#env=(env) ⇒ Object



27
28
29
30
31
# File 'lib/iron_worker_ng/cli.rb', line 27

def env=(env)
  @client = nil

  @env = env
end

#getlog(task_id, params, options) ⇒ Object



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/iron_worker_ng/cli.rb', line 163

def getlog(task_id, params, options)
  client

  wait = options[:wait] || options['wait']

  log_group "Getting log for task with id='#{task_id}'"

  log = ''

  if wait
    begin
      log = client.tasks.log(task_id)
    rescue
    end
  else
    log = client.tasks.log(task_id)
  end

  print log

  if wait
    client.tasks.wait_for(task_id) do |task|
      if task.status == 'running'
        begin
          next_log = client.tasks.log(task_id)
          print next_log[log.length .. - 1]
          log = next_log
        rescue
        end
      end
    end

    begin
      next_log = client.tasks.log(task_id)
      print next_log[log.length .. - 1]
    rescue
    end
  end
end

#info_code(name, params, options) ⇒ Object



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/iron_worker_ng/cli.rb', line 232

def info_code(name, params, options)
  client

  log_group 'Getting code package info'

  codes = client.codes.list({:all => true})
  code = codes.find { |code| code.name == name }

  unless code
    log "Code package with name='#{name}' not found"
    exit 1
  end

  data = []
  data << ['id', code._id]
  data << ['name', code.name]
  data << ['revision', code.rev]
  data << ['uploaded', parse_time(code.latest_change) || '-']
  data << ['max concurrency', code.max_concurrency || '-']
  data << ['retries', code.retries || '-']
  data << ['retries delay', code.retries_delay || '-']
  data << ['info', "https://hud.iron.io/tq/projects/#{client.api.project_id}/code/#{code._id}"]
  data << ['tasks info', "https://hud.iron.io/tq/projects/#{client.api.project_id}/jobs/#{code._id}/activity"]

  display_table(data)
end

#info_schedule(schedule_id, params, options) ⇒ Object



281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
# File 'lib/iron_worker_ng/cli.rb', line 281

def info_schedule(schedule_id, params, options)
  client

  log_group 'Getting schedule info'

  schedule = client.schedules.get(schedule_id)

  data = []
  data << ['id', schedule._id]
  data << ['code package', schedule.code_name]
  data << ['status', schedule.status]
  data << ['created', parse_time(schedule.created_at) || '-']
  data << ['next start', parse_time(schedule.next_start) || '-']
  data << ['run count', schedule.run_count || '-']
  data << ['payload', schedule.payload]
  data << ['info', "https://hud.iron.io/tq/projects/#{client.api.project_id}/scheduled_jobs/#{schedule._id}"]

  display_table(data)
end

#info_task(task_id, params, options) ⇒ Object



259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# File 'lib/iron_worker_ng/cli.rb', line 259

def info_task(task_id, params, options)
  client

  log_group 'Getting task info'

  task = client.tasks.get(task_id)

  data = []
  data << ['id', task._id]
  data << ['code package', task.code_name]
  data << ['code revision', task.code_rev]
  data << ['status', task.status]
  data << ['priority', task.priority || 2]
  data << ['queued', parse_time(task.created_at) || '-']
  data << ['started', parse_time(task.start_time) || '-']
  data << ['finished', parse_time(task.end_time) || '-']
  data << ['payload', task.payload]
  data << ['info', "https://hud.iron.io/tq/projects/#{client.api.project_id}/jobs/#{task._id}"]

  display_table(data)
end

#install(name, params, options) ⇒ Object



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

def install(name, params, options)
  log_group "Installing dependencies for code package with name='#{name}'"

  code = IronWorkerNG::Code::Base.new(name)

  code.install
end

#log(msg) ⇒ Object



45
46
47
# File 'lib/iron_worker_ng/cli.rb', line 45

def log(msg)
  IronCore::Logger.info 'IronWorkerNG', msg
end

#log_group(msg) ⇒ Object



49
50
51
# File 'lib/iron_worker_ng/cli.rb', line 49

def log_group(msg)
  IronCore::Logger.info 'IronWorkerNG', LOG_GROUP + msg
end

#parse_time(s) ⇒ Object



301
302
303
304
305
306
307
# File 'lib/iron_worker_ng/cli.rb', line 301

def parse_time(s)
  t = Time.parse(s)

  return nil if t == Time.utc(1)

  t
end

#patch(name, params, options) ⇒ Object



110
111
112
113
114
115
116
117
118
119
120
# File 'lib/iron_worker_ng/cli.rb', line 110

def patch(name, params, options)
  client

  log_group "Patching code package '#{name}'"

  code_id = client.codes.patch(name, options)._id
  code_info = client.codes.get(code_id)

  log "Patched code package uploaded with id='#{code_id}' and revision='#{code_info.rev}'"
  log "Check 'https://hud.iron.io/tq/projects/#{client.api.project_id}/code/#{code_id}' for more info"
end

#project_id=(project_id) ⇒ Object



33
34
35
36
37
# File 'lib/iron_worker_ng/cli.rb', line 33

def project_id=(project_id)
  @client = nil

  @project_id = project_id
end

#queue(name, params, options) ⇒ Object



122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/iron_worker_ng/cli.rb', line 122

def queue(name, params, options)
  client

  log_group "Queueing task"

  id = client.tasks.create(name, params[:payload] || params['payload'], options)._id

  log "Code package '#{name}' queued with id='#{id}'"
  log "Check 'https://hud.iron.io/tq/projects/#{client.api.project_id}/jobs/#{id}' for more info"

  if options[:wait] == true
    getlog(id, {}, {:wait => true})
  end
end

#retry(task_id, params, options) ⇒ Object



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

def retry(task_id, params, options)
  client

  log_group "Retrying task with id='#{task_id}'"

  retry_task_id = client.tasks.retry(task_id, options)._id

  log "Task retried with id='#{retry_task_id}'"
  log "Check 'https://hud.iron.io/tq/projects/#{client.api.project_id}/jobs/#{retry_task_id}' for more info"

  if options[:wait] == true
    getlog(retry_task_id, {}, {:wait => true})
  end
end

#run(name, params, options) ⇒ Object



203
204
205
206
207
208
209
210
211
212
213
# File 'lib/iron_worker_ng/cli.rb', line 203

def run(name, params, options)
  log_group "Creating code package"

  code = IronWorkerNG::Code::Base.new(name)

  log "Code package name is '#{code.name}'"

  log_group "Running '#{code.name}'"

  code.run(params[:payload] || params['payload'])
end

#schedule(name, params, options) ⇒ Object



137
138
139
140
141
142
143
144
145
146
# File 'lib/iron_worker_ng/cli.rb', line 137

def schedule(name, params, options)
  client

  log_group "Scheduling task"

  id = client.schedules.create(name, params[:payload] || params['payload'], options)._id

  log "Code package '#{name}' scheduled with id='#{id}'"
  log "Check 'https://hud.iron.io/tq/projects/#{client.api.project_id}/scheduled_jobs/#{id}' for more info"
end

#token=(token) ⇒ Object



39
40
41
42
43
# File 'lib/iron_worker_ng/cli.rb', line 39

def token=(token)
  @client = nil

  @token = token
end

#upload(name, params, options) ⇒ Object



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
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/iron_worker_ng/cli.rb', line 67

def upload(name, params, options)
  client

  log_group "Creating code package"

  code = IronWorkerNG::Code::Base.new(:name => name, :env => @env)

  code.name(params[:name]) unless params[:name].nil?

  code.full_remote_build = params[:full_remote_build] unless params[:full_remote_build].nil?

  log "Code package name is '#{code.name}'"
  log "Max concurrency set to '#{options[:max_concurrency]}'" unless options[:max_concurrency].nil?
  log "Retries set to '#{options[:retries]}'" unless options[:retries].nil?
  log "Retries delay set to '#{options[:retries_delay]}'" unless options[:retries_delay].nil?
  log "Host set to '#{options[:host]}'" unless options[:host].nil?

  if options[:worker_config]
    log "Loading worker_config at #{options[:worker_config]}"
    c = IO.read(options[:worker_config])
    options[:config] = c
  end

  if code.remote_build_command || code.full_remote_build
    log_group "Uploading and building code package '#{code.name}'"
  else
    log_group "Uploading code package '#{code.name}'"
  end

  if (params[:async] || params['async']) && code.remote_build_command
    builder_task_id = client.codes.create_async(code, options)

    log 'Code package is building'
    log "Check 'https://hud.iron.io/tq/projects/#{client.api.project_id}/tasks/#{builder_task_id}' for more info"
  else
    code_id = client.codes.create(code, options)._id
    code_info = client.codes.get(code_id)

    log "Code package uploaded with id='#{code_id}' and revision='#{code_info.rev}'"
    log "Check 'https://hud.iron.io/tq/projects/#{client.api.project_id}/code/#{code_id}' for more info"
  end
end

#webhook(name, params, options) ⇒ Object



223
224
225
226
227
228
229
230
# File 'lib/iron_worker_ng/cli.rb', line 223

def webhook(name, params, options)
  client

  log_group 'Generating code package webhook'

  log 'You can invoke your worker by POSTing to the following URL'
  log client.api.url("projects/#{client.api.project_id}/tasks/webhook?code_name=#{name}&oauth=#{client.api.token}")
end