Class: Azuki::Command::Addons

Inherits:
Base
  • Object
show all
Includes:
Helpers::AzukiPostgresql
Defined in:
lib/azuki/command/addons.rb

Overview

manage addon resources

Instance Attribute Summary

Attributes inherited from Base

#args, #options

Instance Method Summary collapse

Methods included from Helpers::AzukiPostgresql

#app_attachments, #app_config_vars, #find_database_url_real_attachment, #forget_config!, #hpg_addon_name, #hpg_databases, #hpg_resolve, #hpg_translate_fork_and_follow, #match_attachments_by_name, #resource_url

Methods included from Helpers

#action, #ask, #confirm, #confirm_billing, #confirm_command, #create_git_remote, #deprecate, #display, #display_header, #display_object, #display_row, #display_table, #error, error_with_failure, error_with_failure=, extended, extended_into, #fail, #format_bytes, #format_date, #format_error, #format_with_bang, #get_terminal_environment, #git, #has_git?, #home_directory, #hprint, #hputs, included, included_into, #json_decode, #json_encode, #launchy, #line_formatter, #longest, #output_with_bang, #quantify, #redisplay, #retry_on_exception, #run_command, #running_on_a_mac?, #running_on_windows?, #set_buffer, #shell, #spinner, #status, #string_distance, #styled_array, #styled_error, #styled_hash, #styled_header, #suggestion, #time_ago, #truncate, #with_tty

Methods inherited from Base

#api, #app, #azuki, #initialize, namespace

Constructor Details

This class inherits a constructor from Azuki::Command::Base

Instance Method Details

#addObject

addons:add ADDON

install an addon



62
63
64
65
66
# File 'lib/azuki/command/addons.rb', line 62

def add
  configure_addon('Adding') do |addon, config|
    azuki.install_addon(app, addon, config)
  end
end

#docsObject

addons:docs ADDON

open an addon’s documentation in your browser



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/azuki/command/addons.rb', line 109

def docs
  unless addon = shift_argument
    error("Usage: azuki addons:docs ADDON\nMust specify ADDON to open docs for.")
  end
  validate_arguments!

  addon_names = api.get_addons.body.map {|a| a['name']}
  addon_types = addon_names.map {|name| name.split(':').first}.uniq

  name_matches = addon_names.select {|name| name =~ /^#{addon}/}
  type_matches = addon_types.select {|name| name =~ /^#{addon}/}

  if name_matches.include?(addon) || type_matches.include?(addon)
    type_matches = [addon]
  end

  case type_matches.length
  when 0 then
    error([
      "`#{addon}` is not a azuki add-on.",
      suggestion(addon, addon_names + addon_types),
      "See `azuki addons:list` for all available addons."
    ].compact.join("\n"))
  when 1
    addon_type = type_matches.first
    launchy("Opening #{addon_type} docs", addon_docs_url(addon_type))
  else
    error("Ambiguous addon name: #{addon}\nPerhaps you meant #{name_matches[0...-1].map {|match| "`#{match}`"}.join(', ')} or `#{name_matches.last}`.\n")
  end
end

#downgradeObject

addons:downgrade ADDON

downgrade an existing addon



82
83
84
85
86
# File 'lib/azuki/command/addons.rb', line 82

def downgrade
  configure_addon('Downgrading to') do |addon, config|
    azuki.upgrade_addon(app, addon, config)
  end
end

#indexObject

addons

list installed addons



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/azuki/command/addons.rb', line 16

def index
  validate_arguments!

  installed = api.get_addons(app).body
  if installed.empty?
    display("#{app} has no add-ons.")
  else
    available, pending = installed.partition { |a| a['configured'] }

    unless available.empty?
      styled_header("#{app} Configured Add-ons")
      styled_array(available.map do |a|
        [a['name'], a['attachment_name'] || '']
      end)
    end

    unless pending.empty?
      styled_header("#{app} Add-ons to Configure")
      styled_array(pending.map do |a|
        [a['name'], app_addon_url(a['name'])]
      end)
    end
  end
end

#listObject

addons:list

list all available addons



45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/azuki/command/addons.rb', line 45

def list
  addons = azuki.addons
  if addons.empty?
    display "No addons available currently"
  else
    partitioned_addons = partition_addons(addons)
    partitioned_addons.each do |key, addons|
      partitioned_addons[key] = format_for_display(addons)
    end
    display_object(partitioned_addons)
  end
end

#openObject

addons:open ADDON

open an addon’s dashboard in your browser



144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/azuki/command/addons.rb', line 144

def open
  unless addon = shift_argument
    error("Usage: azuki addons:open ADDON\nMust specify ADDON to open.")
  end
  validate_arguments!

  app_addons = api.get_addons(app).body.map {|a| a['name']}
  matches = app_addons.select {|a| a =~ /^#{addon}/}.sort

  case matches.length
  when 0 then
    addon_names = api.get_addons.body.map {|a| a['name']}
    if addon_names.any? {|name| name =~ /^#{addon}/}
      error("Addon not installed: #{addon}")
    else
      error([
        "`#{addon}` is not a azuki add-on.",
        suggestion(addon, addon_names + addon_names.map {|name| name.split(':').first}.uniq),
        "See `azuki addons:list` for all available addons."
      ].compact.join("\n"))
    end
  when 1 then
    addon_to_open = matches.first
    launchy("Opening #{addon_to_open} for #{app}", app_addon_url(addon_to_open))
  else
    error("Ambiguous addon name: #{addon}\nPerhaps you meant #{matches[0...-1].map {|match| "`#{match}`"}.join(', ')} or `#{matches.last}`.\n")
  end
end

#removeObject

addons:remove ADDON1 [ADDON2 …]

uninstall one or more addons



92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/azuki/command/addons.rb', line 92

def remove
  return unless confirm_command

  args.each do |name|
    messages = nil
    action("Removing #{name} on #{app}") do
      messages = addon_run { azuki.uninstall_addon(app, name, :confirm => app) }
    end
    display(messages[:attachment]) if messages[:attachment]
    display(messages[:message]) if messages[:message]
  end
end

#upgradeObject

addons:upgrade ADDON

upgrade an existing addon



72
73
74
75
76
# File 'lib/azuki/command/addons.rb', line 72

def upgrade
  configure_addon('Upgrading to') do |addon, config|
    azuki.upgrade_addon(app, addon, config)
  end
end