Class: VMC::Cli::Command::Apps

Inherits:
Base show all
Includes:
ManifestHelper, ServicesHelper
Defined in:
lib/cli/commands/apps.rb

Constant Summary collapse

SLEEP_TIME =
1
LINE_LENGTH =
80
TICKER_TICKS =

Numerators are in secs

25/SLEEP_TIME
HEALTH_TICKS =
5/SLEEP_TIME
TAIL_TICKS =
45/SLEEP_TIME
GIVEUP_TICKS =
120/SLEEP_TIME

Constants included from ManifestHelper

ManifestHelper::DEFAULTS, ManifestHelper::MANIFEST, ManifestHelper::YES_SET

Constants inherited from Base

Base::MANIFEST

Instance Attribute Summary

Attributes inherited from Base

#no_prompt, #prompt_ok

Instance Method Summary collapse

Methods included from ManifestHelper

#bind_services, #configure_app, #configure_service, #detect_framework, #each_app, #interact, #save_manifest, #set, #target_manifest

Methods included from ServicesHelper

#bind_service_banner, #check_app_for_restart, #create_service_banner, #delete_service_banner, #display_provisioned_services, #display_provisioned_services_table, #display_system_services, #random_service_name, #unbind_service_banner

Methods inherited from Base

#auth_token, #client, #client_info, #find_in_hash, #find_symbol, #frameworks_info, #initialize, #load_manifest, #load_manifest_structure, #manifest, #manifest_file, #merge_manifest, #merge_parent, #resolve_in, #resolve_lexically, #resolve_manifest, #resolve_symbol, #runtimes_info, #target_base, #target_url

Constructor Details

This class inherits a constructor from VMC::Cli::Command::Base

Instance Method Details

#crashes(appname, print_results = true, since = 0) ⇒ Object



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
# File 'lib/cli/commands/apps.rb', line 166

def crashes(appname, print_results=true, since=0)
  crashed = client.app_crashes(appname)[:crashes]
  crashed.delete_if { |c| c[:since] < since }
  instance_map = {}

#      return display JSON.pretty_generate(apps) if @options[:json]


  counter = 0
  crashed = crashed.to_a.sort { |a,b| a[:since] - b[:since] }
  crashed_table = table do |t|
    t.headings = 'Name', 'Instance ID', 'Crashed Time'
    crashed.each do |crash|
      name = "#{appname}-#{counter += 1}"
      instance_map[name] = crash[:instance]
      t << [name, crash[:instance], Time.at(crash[:since]).strftime("%m/%d/%Y %I:%M%p")]
    end
  end

  VMC::Cli::Config.store_instances(instance_map)

  if @options[:json]
    return display JSON.pretty_generate(crashed)
  elsif print_results
    display "\n"
    if crashed.empty?
      display "No crashed instances for [#{appname}]" if print_results
    else
      display crashed_table if print_results
    end
  end

  crashed
end

#crashlogs(appname) ⇒ Object



201
202
203
204
# File 'lib/cli/commands/apps.rb', line 201

def crashlogs(appname)
  instance = @options[:instance] || '0'
  grab_crash_logs(appname, instance)
end

#create(appname = nil) ⇒ Object



282
283
284
285
286
287
288
289
290
291
292
293
# File 'lib/cli/commands/apps.rb', line 282

def create(appname=nil)
  created = false
  each_app(false) do |name|
    display "Creating application '#{name}'..." if name
    do_create(name)
    created = true
  end

  unless created
    do_create(appname)
  end
end

#delete(appname = nil) ⇒ Object



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

def delete(appname=nil)
  force = @options[:force]
  if @options[:all]
    if no_prompt || force || ask("Delete ALL applications and services?", :default => false)
      apps = client.apps
      apps.each { |app| delete_app(app[:name], force) }
    end
  else
    err 'No valid appname given' unless appname
    delete_app(appname, force)
  end
end

#environment(appname) ⇒ Object



320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
# File 'lib/cli/commands/apps.rb', line 320

def environment(appname)
  app = client.app_info(appname)
  env = app[:env] || []
  return display JSON.pretty_generate(env) if @options[:json]
  return display "No Environment Variables" if env.empty?
  etable = table do |t|
    t.headings = 'Variable', 'Value'
    env.each do |e|
      k,v = e.split('=', 2)
      t << [k, v]
    end
  end
  display "\n"
  display etable
end

#environment_add(appname, k, v = nil) ⇒ Object



336
337
338
339
340
341
342
343
344
345
346
# File 'lib/cli/commands/apps.rb', line 336

def environment_add(appname, k, v=nil)
  app = client.app_info(appname)
  env = app[:env] || []
  k,v = k.split('=', 2) unless v
  env << "#{k}=#{v}"
  display "Adding Environment Variable [#{k}=#{v}]: ", false
  app[:env] = env
  client.update_app(appname, app)
  display 'OK'.green
  restart appname if app[:state] == 'STARTED'
end

#environment_del(appname, variable) ⇒ Object



348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
# File 'lib/cli/commands/apps.rb', line 348

def environment_del(appname, variable)
  app = client.app_info(appname)
  env = app[:env] || []
  deleted_env = nil
  env.each do |e|
    k,v = e.split('=')
    if (k == variable)
      deleted_env = e
      break;
    end
  end
  display "Deleting Environment Variable [#{variable}]: ", false
  if deleted_env
    env.delete(deleted_env)
    app[:env] = env
    client.update_app(appname, app)
    display 'OK'.green
    restart appname if app[:state] == 'STARTED'
  else
    display 'OK'.green
  end
end

#files(appname, path = '/') ⇒ Object



149
150
151
152
153
154
155
156
# File 'lib/cli/commands/apps.rb', line 149

def files(appname, path='/')
  return all_files(appname, path) if @options[:all] && !@options[:instance]
  instance = @options[:instance] || '0'
  content = client.app_files(appname, path, instance)
  display content
rescue VMC::Client::NotFound => e
  err 'No such file or directory'
end

#info(what, default = nil) ⇒ Object



42
43
44
# File 'lib/cli/commands/apps.rb', line 42

def info(what, default=nil)
  @options[what] || (@app_info && @app_info[what.to_s]) || default
end

#instances(appname, num = nil) ⇒ Object



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

def instances(appname, num=nil)
  if num
    change_instances(appname, num)
  else
    get_instances(appname)
  end
end

#listObject Also known as: apps



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/cli/commands/apps.rb', line 14

def list
  apps = client.apps
  apps.sort! {|a, b| a[:name] <=> b[:name] }
  return display JSON.pretty_generate(apps || []) if @options[:json]

  display "\n"
  return display "No Applications" if apps.nil? || apps.empty?

  apps_table = table do |t|
    t.headings = 'Application', '# ', 'Health', 'URLS', 'Services'
    apps.each do |app|
      t << [app[:name], app[:instances], health(app), app[:uris].join(', '), app[:services].join(', ')]
    end
  end
  display apps_table
end

#logs(appname) ⇒ Object



158
159
160
161
162
163
164
# File 'lib/cli/commands/apps.rb', line 158

def logs(appname)
  # Check if we have an app before progressing further
  client.app_info(appname)
  return grab_all_logs(appname) if @options[:all] && !@options[:instance]
  instance = @options[:instance] || '0'
  grab_logs(appname, instance)
end

#map(appname, url) ⇒ Object



116
117
118
119
120
121
122
123
# File 'lib/cli/commands/apps.rb', line 116

def map(appname, url)
  app = client.app_info(appname)
  uris = app[:uris] || []
  uris << url
  app[:uris] = uris
  client.update_app(appname, app)
  display "Successfully mapped url".green
end

#mem(appname, memsize = nil) ⇒ Object



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
109
110
111
112
113
114
# File 'lib/cli/commands/apps.rb', line 84

def mem(appname, memsize=nil)
  app = client.app_info(appname)
  mem = current_mem = mem_quota_to_choice(app[:resources][:memory])
  memsize = normalize_mem(memsize) if memsize

  memsize ||= ask(
    "Update Memory Reservation?",
    :default => current_mem,
    :choices => mem_choices
  )

  mem         = mem_choice_to_quota(mem)
  memsize     = mem_choice_to_quota(memsize)
  current_mem = mem_choice_to_quota(current_mem)

  display "Updating Memory Reservation to #{mem_quota_to_choice(memsize)}: ", false

  # check memsize here for capacity
  check_has_capacity_for((memsize - mem) * app[:instances])

  mem = memsize

  if (mem != current_mem)
    app[:resources][:memory] = mem
    client.update_app(appname, app)
    display 'OK'.green
    restart appname if app[:state] == 'STARTED'
  else
    display 'OK'.green
  end
end

#push(appname = nil) ⇒ Object



295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
# File 'lib/cli/commands/apps.rb', line 295

def push(appname=nil)
  unless no_prompt || @options[:path]
    proceed = ask(
      'Would you like to deploy from the current directory?',
      :default => true
    )

    unless proceed
      @path = ask('Deployment path')
    end
  end

  pushed = false
  each_app(false) do |name|
    display "Pushing application '#{name}'..." if name
    do_push(name)
    pushed = true
  end

  unless pushed
    @application = @path
    do_push(appname)
  end
end

#rename(appname, newname) ⇒ Object



76
77
78
79
80
81
82
# File 'lib/cli/commands/apps.rb', line 76

def rename(appname, newname)
  app = client.app_info(appname)
  app[:name] = newname
  display 'Renaming Appliction: '
  client.update_app(newname, app)
  display 'OK'.green
end

#restart(appname = nil) ⇒ Object



71
72
73
74
# File 'lib/cli/commands/apps.rb', line 71

def restart(appname=nil)
  stop(appname)
  start(appname)
end

#start(appname = nil, push = false) ⇒ Object



46
47
48
49
50
51
52
53
54
# File 'lib/cli/commands/apps.rb', line 46

def start(appname=nil, push=false)
  if appname
    do_start(appname, push)
  else
    each_app do |name|
      do_start(name, push)
    end
  end
end

#stats(appname = nil) ⇒ Object



214
215
216
217
218
219
220
221
222
223
224
# File 'lib/cli/commands/apps.rb', line 214

def stats(appname=nil)
  if appname
    display "\n", false
    do_stats(appname)
  else
    each_app do |n|
      display "\n#{n}:"
      do_stats(n)
    end
  end
end

#stop(appname = nil) ⇒ Object



56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/cli/commands/apps.rb', line 56

def stop(appname=nil)
  if appname
    do_stop(appname)
  else
    reversed = []
    each_app do |name|
      reversed.unshift name
    end

    reversed.each do |name|
      do_stop(name)
    end
  end
end

#unmap(appname, url) ⇒ Object



125
126
127
128
129
130
131
132
133
134
# File 'lib/cli/commands/apps.rb', line 125

def unmap(appname, url)
  app = client.app_info(appname)
  uris = app[:uris] || []
  url = url.gsub(/^http(s*):\/\//i, '')
  deleted = uris.delete(url)
  err "Invalid url" unless deleted
  app[:uris] = uris
  client.update_app(appname, app)
  display "Successfully unmapped url".green
end

#update(appname = nil) ⇒ Object



263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# File 'lib/cli/commands/apps.rb', line 263

def update(appname=nil)
  if appname
    app = client.app_info(appname)
    if @options[:canary]
      display "[--canary] is deprecated and will be removed in a future version".yellow
    end
    upload_app_bits(appname, @path)
    restart appname if app[:state] == 'STARTED'
  else
    each_app do |name|
      display "Updating application '#{name}'..."

      app = client.app_info(name)
      upload_app_bits(name, @application)
      restart name if app[:state] == 'STARTED'
    end
  end
end

#upload(appname = nil) ⇒ Object



226
227
228
229
230
231
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
258
259
260
261
# File 'lib/cli/commands/apps.rb', line 226

def upload(appname=nil)
  if appname
    app = client.app_info(appname)

    # check deploy status
    deploy = client.app_most_recent_deploy(appname)
    if deploy && deploy[:sha]
      unless has_commit?(app, @path, deploy[:sha])
        unless ask("The last commit in the currently deployed code is:\n  #{deploy[:sha]}\n\nThe current path doesn't include that commit.\nManually uploading may revert changes.\nContinue anyway?", :default => false)
          exit 0
        end
      end
    end

    upload_app_bits(appname, @path)
    restart appname if app[:state] == 'STARTED'
  else
    each_app do |name|
      display "Updating application '#{name}'..."
      app = client.app_info(name)

      # check deploy status
      deploy = client.app_most_recent_deploy(name)
      if deploy && deploy[:sha]
        unless has_commit?(app, @application, deploy[:sha])
          unless ask("The last commit in the currently deployed code is:\n  #{deploy[:sha]}\n\nThe current path doesn't include that commit.\nManually uploading may revert changes.\nContinue anyway?", :default => false)
            exit 0
          end
        end
      end

      upload_app_bits(name, @application)
      restart name if app[:state] == 'STARTED'
    end
  end
end