Class: Morpheus::Cli::Deployments

Inherits:
Object
  • Object
show all
Includes:
CliCommand
Defined in:
lib/morpheus/cli/deployments.rb

Instance Method Summary collapse

Methods included from CliCommand

#build_common_options, included

Constructor Details

#initializeDeployments

Returns a new instance of Deployments.



10
11
12
# File 'lib/morpheus/cli/deployments.rb', line 10

def initialize() 
	@appliance_name, @appliance_url = Morpheus::Cli::Remote.active_appliance	
end

Instance Method Details

#add(args) ⇒ Object



191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# File 'lib/morpheus/cli/deployments.rb', line 191

def add(args)
	deployment_name = args[0]
	options = {}
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus deployments add [name]"
		opts.on( '-d', '--description DESCRIPTION', "Description" ) do |val|
			options[:description] = val
		end
		build_common_options(opts, options, [:options, :json, :remote])
	end
	if args.count < 1
		puts "\n#{optparse.banner}\n\n"
		exit 1
	end
	optparse.parse(args)
	connect(options)

	begin
		payload = {deployment: {name: deployment_name, description: options[:description]}}
		json_response = @deployments_interface.create(payload)
		if options[:json]
				print JSON.pretty_generate(json_response)
		else
			print "\n", cyan, "Deployment #{json_response['deployment']['name']} created successfully", reset, "\n\n"			
		end
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end

#connect(opts) ⇒ Object



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

def connect(opts)
	if opts[:remote]
		@appliance_url = opts[:remote]
		@appliance_name = opts[:remote]
		@access_token = Morpheus::Cli::Credentials.new(@appliance_name,@appliance_url).request_credentials(opts)
	else
		@access_token = Morpheus::Cli::Credentials.new(@appliance_name,@appliance_url).request_credentials(opts)
	end
	@api_client = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url)		
	@deployments_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).deployments
	if @access_token.empty?
		print_red_alert "Invalid Credentials. Unable to acquire access token. Please verify your credentials and try again."
		exit 1
	end
end

#handle(args) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/morpheus/cli/deployments.rb', line 31

def handle(args) 
	if args.empty?
		puts "\nUsage: morpheus deployments [list,add, update,remove, versions]\n\n"
		return 
	end

	case args[0]
		when 'list'
			list(args[1..-1])
		when 'add'
			add(args[1..-1])
		when 'update'
			update(args[1..-1])	
		when 'remove'
			remove(args[1..-1])
		when 'versions'
			list_versions(args[1..-1])
		else
			puts "\nUsage: morpheus deployments [list,add, update,remove, versions]\n\n"
			exit 127
	end
end

#list(args) ⇒ Object



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
89
90
# File 'lib/morpheus/cli/deployments.rb', line 54

def list(args)
	options = {}
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus deployments list [-s] [-o] [-m]"
		build_common_options(opts, options, [:list, :json, :remote])
	end
	optparse.parse(args)
	connect(options)
	begin
		params = {}
		[:phrase, :offset, :max, :sort, :direction].each do |k|
			params[k] = options[k] unless options[k].nil?
		end
		json_response = @deployments_interface.get(params)
		if options[:json]
				puts JSON.pretty_generate(json_response)
		else
			deployments = json_response['deployments']
			print "\n" ,cyan, bold, "Morpheus Deployments\n","====================", reset, "\n\n"
			if deployments.empty?
				puts yellow,"No deployments currently configured.",reset
			else
				print cyan
				deployments_table_data = deployments.collect do |deployment|
					{name: deployment['name'], id: deployment['id'], description: deployment['description'], updated: format_local_dt(deployment['lastUpdated'])}
				end
				tp deployments_table_data, :id, :name, :description, :updated
			end
			print reset,"\n\n"
		end
		
		
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end

#list_versions(args) ⇒ Object



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
# File 'lib/morpheus/cli/deployments.rb', line 92

def list_versions(args)
	options = {}
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus deployments versions [deployment] [-s] [-o] [-m]"
		build_common_options(opts, options, [:list, :json, :remote])
	end
	optparse.parse(args)
	if args.count < 1
		puts "\n#{optparse.banner}\n\n"
		exit 1
	end
	deployment_name  = args[0]
	connect(options)
	begin
		params = {}
		[:phrase, :offset, :max, :sort, :direction].each do |k|
			params[k] = options[k] unless options[k].nil?
		end
		deployment = find_deployment_by_name_or_code_or_id(deployment_name)
		exit 1 if deployment.nil?

		json_response = @deployments_interface.list_versions(deployment['id'],params)
		if options[:json]
				puts JSON.pretty_generate(json_response)
		else
			versions = json_response['versions']
			print "\n" ,cyan, bold, "Morpheus Deployment Versions\n","=============================", reset, "\n\n"
			if versions.empty?
				puts yellow,"No deployment versions currently exist.",reset
			else
				print cyan
				versions_table_data = versions.collect do |version|
					{version: version['userVersion'], type: version['deployType'], updated: format_local_dt(version['lastUpdated'])}
				end
				tp versions_table_data, :version, :type, :updated
			end
			print reset,"\n\n"
		end
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end

#remove(args) ⇒ Object



222
223
224
225
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
# File 'lib/morpheus/cli/deployments.rb', line 222

def remove(args)
	deployment_name = args[0]
	options = {}
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus deployments remove [deployment]"
		build_common_options(opts, options, [:auto_confirm, :json, :remote])
	end
	if args.count < 1
		puts "\n#{optparse.banner}\n\n"
		exit 1
	end
	optparse.parse(args)
	connect(options)
	begin
		deployment = find_deployment_by_name_or_code_or_id(deployment_name)
		exit 1 if deployment.nil?
		unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the deployment #{deployment['name']}?")
			exit
		end
		json_response = @deployments_interface.destroy(deployment['id'])
		if options[:json]
				print JSON.pretty_generate(json_response)
		else
			print "\n", cyan, "Deployment #{deployment['name']} removed", reset, "\n\n"
		end
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end

#update(args) ⇒ Object



136
137
138
139
140
141
142
143
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# File 'lib/morpheus/cli/deployments.rb', line 136

def update(args)
	deployment_name = args[0]
	options = {}
	 = nil
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus deployments update [deployment] [options]"
		build_common_options(opts, options, [:options, :json, :remote])
	end
	if args.count < 1
		puts "\n#{optparse.banner}\n\n"
		exit 1
	end
	optparse.parse(args)

	connect(options)
	
	begin
		deployment = find_deployment_by_name_or_code_or_id(deployment_name)
		exit 1 if deployment.nil?

		#params = Morpheus::Cli::OptionTypes.prompt(add_user_option_types, options[:options], @api_client, options[:params]) # options[:params] is mysterious
		params = options[:options] || {}

		if params.empty?
			puts "\n#{optparse.banner}\n\n"
			option_lines = update_deployment_option_types().collect {|it| "\t-O #{it['fieldContext'] ? (it['fieldContext'] + '.') : ''}#{it['fieldName']}=\"value\"" }.join("\n")
			puts "\nAvailable Options:\n#{option_lines}\n\n"
			exit 1
		end

		#puts "parsed params is : #{params.inspect}"
		deployment_keys = ['name','description']
		changes_payload = (params.select {|k,v| deployment_keys.include?(k) })
		deployment_payload = deployment
		if changes_payload
			deployment_payload.merge!(changes_payload)
		end


		request_payload = {deployment: deployment_payload}
		response = @deployments_interface.update(deployment['id'], request_payload)
		if options[:json]
			print JSON.pretty_generate(json_response)
			if !response['success']
				exit 1
			end
		else
			print "\n", cyan, "Deployment #{response['deployment']['name']} updated", reset, "\n\n"
		end
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end