Module: VMC::Cli::ManifestHelper
- Includes:
- ServicesHelper
- Included in:
- Command::Apps, Command::Manifest
- Defined in:
- lib/cli/manifest_helper.rb
Constant Summary collapse
- DEFAULTS =
{ "url" => "${name}.${target-base}", "mem" => "128M", "instances" => 1 }
- MANIFEST =
"manifest.yml"
- YES_SET =
Set.new(["y", "Y", "yes", "YES"])
Instance Method Summary collapse
- #bind_services(user_services, chosen = 0) ⇒ Object
- #configure_app(many = false) ⇒ Object
- #configure_service(vendor) ⇒ Object
- #create_services(services) ⇒ Object
-
#detect_framework(prompt_ok = true) ⇒ Object
Detect the appropriate framework.
-
#each_app(panic = true) ⇒ Object
take a block and call it once for each app to push/update.
- #interact(many = false) ⇒ Object
- #save_manifest(save_to = nil) ⇒ Object
- #set(what, *where) ⇒ Object
- #target_manifest ⇒ Object
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
Instance Method Details
#bind_services(user_services, chosen = 0) ⇒ Object
187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/cli/manifest_helper.rb', line 187 def bind_services(user_services, chosen = 0) svcname = ask( "Which one?", :indexed => true, :choices => user_services.collect { |p| p[:name] }) svc = user_services.find { |p| p[:name] == svcname } set svc[:vendor], "services", svcname, "type" if chosen + 1 < user_services.size && ask("Bind another?", :default => false) bind_services(user_services, chosen + 1) end end |
#configure_app(many = false) ⇒ Object
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 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 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/cli/manifest_helper.rb', line 81 def configure_app(many=false) name = manifest("name") || set(ask("Application Name", :default => manifest("name")), "name") url_template = manifest("url") || DEFAULTS["url"] url_resolved = url_template.dup resolve_lexically(url_resolved) url = ask("Application Deployed URL", :default => url_resolved) url = url_template if url == url_resolved # common error case is for prompted users to answer y or Y or yes or # YES to this ask() resulting in an unintended URL of y. Special # case this common error url = DEFAULTS["url"] if YES_SET.member? url set url, "url" unless manifest "framework" framework = detect_framework set framework.name, "framework", "name" set( { "mem" => framework.mem, "description" => framework.description, "exec" => framework.exec }, "framework", "info" ) end set ask( "Memory reservation", :default => manifest("mem") || manifest("framework", "info", "mem") || DEFAULTS["mem"], :choices => ["128M", "256M", "512M", "1G", "2G"] ), "mem" set ask( "How many instances?", :default => manifest("instances") || DEFAULTS["instances"] ), "instances" unless manifest "services" user_services = client.services user_services.sort! {|a, b| a[:name] <=> b[:name] } unless user_services.empty? if ask "Bind existing services to '#{name}'?", :default => false bind_services(user_services) end end services = client.services_info unless services.empty? if ask "Create services to bind to '#{name}'?", :default => false create_services(services.values.collect(&:keys).flatten) end end end if many and ask("Configure for another application?", :default => false) @application = ask "Application path?" configure_app end end |
#configure_service(vendor) ⇒ Object
218 219 220 221 222 223 |
# File 'lib/cli/manifest_helper.rb', line 218 def configure_service(vendor) default_name = random_service_name(vendor) name = ask "Specify the name of the service", :default => default_name set vendor, "services", name, "type" end |
#create_services(services) ⇒ Object
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
# File 'lib/cli/manifest_helper.rb', line 202 def create_services(services) svcs = services.collect(&:to_s).sort! configure_service( ask( "What kind of service?", :indexed => true, :choices => svcs ) ) if ask "Create another?", :default => false create_services(services) end end |
#detect_framework(prompt_ok = true) ⇒ Object
Detect the appropriate framework.
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
# File 'lib/cli/manifest_helper.rb', line 167 def detect_framework(prompt_ok = true) framework = VMC::Cli::Framework.detect(@application, frameworks_info) framework_correct = ask("Detected a #{framework}, is this correct?", :default => true) if prompt_ok && framework if prompt_ok && (framework.nil? || !framework_correct) display "#{"[WARNING]".yellow} Can't determine the Application Type." unless framework framework = nil if !framework_correct framework = VMC::Cli::Framework.lookup( ask( "Select Application Type", :indexed => true, :default => framework, :choices => VMC::Cli::Framework.known_frameworks ) ) display "Selected #{framework}" end framework end |
#each_app(panic = true) ⇒ Object
take a block and call it once for each app to push/update. with @application and @app_info set appropriately
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 55 56 57 58 59 60 |
# File 'lib/cli/manifest_helper.rb', line 18 def each_app(panic=true) if @manifest and all_apps = @manifest["applications"] where = File.(@path) single = false all_apps.each do |path, info| app = File.("../" + path, manifest_file) if where.start_with?(app) @application = app @app_info = info yield info["name"] single = true break end end unless single if where == File.("../", manifest_file) ordered_by_deps(all_apps).each do |path, info| app = File.("../" + path, manifest_file) @application = app @app_info = info yield info["name"] end else err "Path '#{@path}' is not known to manifest '#{manifest_file}'." end end else @application = @path @app_info = @manifest if @app_info yield @app_info["name"] elsif panic err "No applications." end end nil ensure @application = nil @app_info = nil end |
#interact(many = false) ⇒ Object
62 63 64 65 |
# File 'lib/cli/manifest_helper.rb', line 62 def interact(many=false) @manifest ||= {} configure_app(many) end |
#save_manifest(save_to = nil) ⇒ Object
71 72 73 74 75 76 77 78 79 |
# File 'lib/cli/manifest_helper.rb', line 71 def save_manifest(save_to = nil) save_to ||= target_manifest File.open(save_to, "w") do |f| f.write @manifest.to_yaml end say "Manifest written to #{save_to}." end |
#set(what, *where) ⇒ Object
151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'lib/cli/manifest_helper.rb', line 151 def set(what, *where) where.unshift "applications", @application which = @manifest where.each_with_index do |k, i| if i + 1 == where.size which[k] = what else which = (which[k] ||= {}) end end what end |