3609: Added documentation page. Added to "arv" frontend command. Bug fix to
[arvados.git] / sdk / cli / bin / arv
1 #!/usr/bin/env ruby
2
3 # Arvados cli client
4 #
5 # Ward Vandewege <ward@curoverse.com>
6
7 require 'fileutils'
8
9 if RUBY_VERSION < '1.9.3' then
10   abort <<-EOS
11 #{$0.gsub(/^\.\//,'')} requires Ruby version 1.9.3 or higher.
12   EOS
13 end
14
15 begin
16   require 'curb'
17   require 'rubygems'
18   require 'google/api_client'
19   require 'json'
20   require 'pp'
21   require 'trollop'
22   require 'andand'
23   require 'oj'
24   require 'active_support/inflector'
25   require 'yaml'
26 rescue LoadError
27   abort <<-EOS
28
29 Please install all required gems:
30
31   gem install activesupport andand curb google-api-client json oj trollop yaml
32
33   EOS
34 end
35
36 # Search for 'ENTRY POINT' to see where things get going
37
38 ActiveSupport::Inflector.inflections do |inflect|
39   inflect.irregular 'specimen', 'specimens'
40   inflect.irregular 'human', 'humans'
41 end
42
43 module Kernel
44   def suppress_warnings
45     original_verbosity = $VERBOSE
46     $VERBOSE = nil
47     result = yield
48     $VERBOSE = original_verbosity
49     return result
50   end
51 end
52
53 class Google::APIClient
54  def discovery_document(api, version)
55    api = api.to_s
56    discovery_uri = self.discovery_uri(api, version)
57    discovery_uri_hash = Digest::MD5.hexdigest(discovery_uri)
58    return @discovery_documents[discovery_uri_hash] ||=
59      begin
60        # fetch new API discovery doc if stale
61        cached_doc = File.expand_path "~/.cache/arvados/discovery-#{discovery_uri_hash}.json" rescue nil
62
63        if cached_doc.nil? or not File.exist?(cached_doc) or (Time.now - File.mtime(cached_doc)) > 86400
64          response = self.execute!(:http_method => :get,
65                                   :uri => discovery_uri,
66                                   :authenticated => false)
67
68          begin
69            FileUtils.makedirs(File.dirname cached_doc)
70            File.open(cached_doc, 'w') do |f|
71              f.puts response.body
72            end
73          rescue
74            return JSON.load response.body
75          end
76        end
77
78        File.open(cached_doc) { |f| JSON.load f }
79      end
80  end
81 end
82
83 class ArvadosClient < Google::APIClient
84   def execute(*args)
85     if args.last.is_a? Hash
86       args.last[:headers] ||= {}
87       args.last[:headers]['Accept'] ||= 'application/json'
88     end
89     super(*args)
90   end
91 end
92
93 def init_config
94   # read authentication data from arvados configuration file if present
95   lineno = 0
96   config_file = File.expand_path('~/.config/arvados/settings.conf') rescue nil
97   if not config_file.nil? and File.exist? config_file then
98     File.open(config_file, 'r').each do |line|
99       lineno = lineno + 1
100       # skip comments
101       if line.match('^\s*#') then
102         next
103       end
104       var, val = line.chomp.split('=', 2)
105       # allow environment settings to override config files.
106       if var and val
107         ENV[var] ||= val
108       else
109         warn "#{config_file}: #{lineno}: could not parse `#{line}'"
110       end
111     end
112   end
113 end
114
115 subcommands = %w(keep pipeline run tag ws edit)
116
117 def check_subcommands client, arvados, subcommand, global_opts, remaining_opts
118   case subcommand
119   when 'keep'
120     @sub = remaining_opts.shift
121     if ['get', 'put', 'ls', 'normalize'].index @sub then
122       # Native Arvados
123       exec `which arv-#{@sub}`.strip, *remaining_opts
124     elsif ['less', 'check'].index @sub then
125       # wh* shims
126       exec `which wh#{@sub}`.strip, *remaining_opts
127     elsif @sub == 'docker'
128       exec `which arv-keepdocker`.strip, *remaining_opts
129     else
130       puts "Usage: arv keep [method] [--parameters]\n"
131       puts "Use 'arv keep [method] --help' to get more information about specific methods.\n\n"
132       puts "Available methods: ls, get, put, less, check, docker"
133     end
134     abort
135   when 'pipeline'
136     sub = remaining_opts.shift
137     if sub == 'run'
138       exec `which arv-run-pipeline-instance`.strip, *remaining_opts
139     else
140       puts "Usage: arv pipeline [method] [--parameters]\n"
141       puts "Use 'arv pipeline [method] --help' to get more information about specific methods.\n\n"
142       puts "Available methods: run"
143     end
144     abort
145   when 'run'
146     exec `which arv-run`.strip, *remaining_opts
147   when 'tag'
148     exec `which arv-tag`.strip, *remaining_opts
149   when 'ws'
150     exec `which arv-ws`.strip, *remaining_opts
151   when 'edit'
152     arv_edit client, arvados, global_opts, remaining_opts
153   end
154 end
155
156 def arv_edit_save_tmp tmp
157   FileUtils::cp tmp.path, tmp.path + ".saved"
158   puts "Saved contents to " + tmp.path + ".saved"
159 end
160
161 def arv_edit client, arvados, global_opts, remaining_opts
162   uuid = remaining_opts.shift
163   if uuid.nil? or uuid == "-h" or uuid == "--help"
164     puts head_banner
165     puts "Usage: arv edit [uuid] [fields...]\n\n"
166     puts "Fetch the specified Arvados object, select the specified fields, \n"
167     puts "open an interactive text editor on a text representation (json or\n"
168     puts "yaml, use --format) and then update the object.  Will use 'nano'\n"
169     puts "by default, customize with the EDITOR or VISUAL environment variable.\n"
170     exit 255
171   end
172
173   if not $stdout.tty?
174     puts "Not connected to a TTY, cannot run interactive editor."
175     exit 1
176   end
177
178   # determine controller
179
180   m = /([a-z0-9]{5})-([a-z0-9]{5})-([a-z0-9]{15})/.match uuid
181   if !m
182     if /^[a-f0-9]{32}/.match uuid
183       abort "Arvados collections are not editable."
184     else
185       abort "#{n} does not appear to be an Arvados uuid"
186     end
187   end
188
189   rsc = nil
190   arvados.discovery_document["resources"].each do |k,v|
191     klass = k.singularize.camelize
192     dig = Digest::MD5.hexdigest(klass).to_i(16).to_s(36)[-5..-1]
193     if dig == m[2]
194       rsc = k
195     end
196   end
197
198   if rsc.nil?
199     abort "Could not determine resource type #{m[2]}"
200   end
201
202   api_method = 'arvados.' + rsc + '.get'
203
204   result = client.execute(:api_method => eval(api_method),
205                           :parameters => {"uuid" => uuid},
206                           :authenticated => false,
207                           :headers => {
208                             authorization: 'OAuth2 '+ENV['ARVADOS_API_TOKEN']
209                           })
210   begin
211     results = JSON.parse result.body
212   rescue JSON::ParserError => e
213     abort "Failed to parse server response:\n" + e.to_s
214   end
215
216   if remaining_opts.length > 0
217     results.select! { |k, v| remaining_opts.include? k }
218   end
219
220   content = ""
221
222   case global_opts[:format]
223   when 'json'
224     content = Oj.dump(results, :indent => 1)
225   when 'yaml'
226     content = results.to_yaml
227   end
228
229   require 'tempfile'
230
231   tmp = Tempfile.new([uuid, "." + global_opts[:format]])
232   tmp.write(content)
233   tmp.close
234
235   need_edit = true
236
237   while need_edit
238     pid = Process::fork
239     if pid.nil?
240       editor ||= ENV["VISUAL"]
241       editor ||= ENV["EDITOR"]
242       editor ||= "nano"
243       exec editor, tmp.path
244     else
245       Process.wait pid
246     end
247
248     if $?.exitstatus == 0
249       tmp.open
250       newcontent = tmp.read()
251
252       newobj = {}
253       begin
254         case global_opts[:format]
255         when 'json'
256           newobj = Oj.load(newcontent)
257         when 'yaml'
258           newobj = YAML.load(newcontent)
259         end
260         need_edit = false
261       rescue Exception => e
262         puts "Parse error! " + e.to_s
263         n = 1
264         newcontent.each_line do |line|
265           puts "#{n.to_s.rjust 4}  #{line}"
266           n += 1
267         end
268         puts "\nTry again (y/n)? "
269         yn = "X"
270         while not ["y", "Y", "n", "N"].include?(yn)
271           yn = $stdin.read 1
272         end
273         if yn == 'n' or yn == 'N'
274           arv_edit_save_tmp tmp
275           abort
276         end
277       end
278     else
279       puts "Editor exited with status #{$?.exitstatus}"
280       exit $?.exitstatus
281     end
282   end
283
284   begin
285     if newobj != results
286       api_method = 'arvados.' + rsc + '.update'
287       dumped = Oj.dump(newobj)
288
289       begin
290         result = client.execute(:api_method => eval(api_method),
291                                 :parameters => {"uuid" => uuid},
292                                 :body => { rsc.singularize => dumped },
293                                 :authenticated => false,
294                                 :headers => {
295                                   authorization: 'OAuth2 '+ENV['ARVADOS_API_TOKEN']
296                                 })
297       rescue Exception => e
298         puts "Error communicating with server, error was #{e}"
299         puts "Update body was:"
300         puts dumped
301         arv_edit_save_tmp tmp
302         abort
303       end
304
305       begin
306         results = JSON.parse result.body
307       rescue JSON::ParserError => e
308         abort "Failed to parse server response:\n" + e.to_s
309       end
310
311       if result.response.status != 200
312         puts "Update failed.  Server responded #{result.response.status}: #{results['errors']} "
313         puts "Update body was:"
314         puts dumped
315         arv_edit_save_tmp tmp
316         abort
317       end
318     else
319       puts "Object is unchanged, did not update."
320     end
321   ensure
322     tmp.close(true)
323   end
324
325   exit 0
326 end
327
328 def to_boolean(s)
329   !!(s =~ /^(true|t|yes|y|1)$/i)
330 end
331
332 def head_banner
333   "Arvados command line client\n"
334 end
335
336 def help_methods(discovery_document, resource, method=nil)
337   banner = head_banner
338   banner += "Usage: arv #{resource} [method] [--parameters]\n"
339   banner += "Use 'arv #{resource} [method] --help' to get more information about specific methods.\n\n"
340   banner += "The #{resource} resource supports the following methods:"
341   banner += "\n\n"
342   discovery_document["resources"][resource.pluralize]["methods"].
343     each do |k,v|
344     description = ''
345     if v.include? "description"
346       # add only the first line of the discovery doc description
347       description = '  ' + v["description"].split("\n").first.chomp
348     end
349     banner += "   #{sprintf("%20s",k)}#{description}\n"
350   end
351   banner += "\n"
352   STDERR.puts banner
353
354   if not method.nil? and method != '--help' and method != '-h' then
355     abort "Unknown method #{method.inspect} " +
356                   "for resource #{resource.inspect}"
357   end
358   exit 255
359 end
360
361 def help_resources(option_parser, discovery_document, resource)
362   option_parser.educate
363   exit 255
364 end
365
366 def parse_arguments(discovery_document, subcommands)
367   resource_types = Array.new()
368   discovery_document["resources"].each do |k,v|
369     resource_types << k.singularize
370   end
371
372   resource_types += subcommands
373
374   option_parser = Trollop::Parser.new do
375     version __FILE__
376     banner head_banner
377     banner "Usage: arv [--flags] subcommand|resource [method] [--parameters]"
378     banner ""
379     banner "Available flags:"
380
381     opt :dry_run, "Don't actually do anything", :short => "-n"
382     opt :verbose, "Print some things on stderr"
383     opt :format,
384         "Set the output format. Must be one of json (default), yaml or uuid.",
385         :type => :string,
386         :default => 'json'
387     opt :short, "Return only UUIDs (equivalent to --format=uuid)"
388
389     banner ""
390     banner "Use 'arv subcommand|resource --help' to get more information about a particular command or resource."
391     banner ""
392     banner "Available subcommands: #{subcommands.join(', ')}"
393     banner ""
394
395     banner "Available resources: #{discovery_document['resources'].keys.map { |k| k.singularize }.join(', ')}"
396
397     banner ""
398     banner "Additional options:"
399
400     conflicts :short, :format
401     stop_on resource_types
402   end
403
404   global_opts = Trollop::with_standard_exception_handling option_parser do
405     o = option_parser.parse ARGV
406   end
407
408   unless %w(json yaml uuid).include?(global_opts[:format])
409     $stderr.puts "#{$0}: --format must be one of json, yaml or uuid."
410     $stderr.puts "Use #{$0} --help for more information."
411     abort
412   end
413
414   if global_opts[:short]
415     global_opts[:format] = 'uuid'
416   end
417
418   resource = ARGV.shift
419
420   if not subcommands.include? resource
421     if not resource_types.include?(resource)
422       puts "Resource or subcommand '#{resource}' is not recognized.\n\n" if !resource.nil?
423       help_resources(option_parser, discovery_document, resource)
424     end
425
426     method = ARGV.shift
427     if not (discovery_document["resources"][resource.pluralize]["methods"].
428             include?(method))
429       help_methods(discovery_document, resource, method)
430     end
431
432     discovered_params = discovery_document\
433     ["resources"][resource.pluralize]\
434     ["methods"][method]["parameters"]
435     method_opts = Trollop::options do
436       banner head_banner
437       banner "Usage: arv #{resource} #{method} [--parameters]"
438       banner ""
439       banner "This method supports the following parameters:"
440       banner ""
441       discovered_params.each do |k,v|
442         opts = Hash.new()
443         opts[:type] = v["type"].to_sym if v.include?("type")
444         if [:datetime, :text, :object, :array].index opts[:type]
445           opts[:type] = :string                       # else trollop bork
446         end
447         opts[:default] = v["default"] if v.include?("default")
448         opts[:default] = v["default"].to_i if opts[:type] == :integer
449         opts[:default] = to_boolean(v["default"]) if opts[:type] == :boolean
450         opts[:required] = true if v.include?("required") and v["required"]
451         description = ''
452         description = '  ' + v["description"] if v.include?("description")
453         opt k.to_sym, description, opts
454       end
455
456       body_object = discovery_document["resources"][resource.pluralize]["methods"][method]["request"]
457       if body_object and discovered_params[resource].nil?
458         is_required = true
459         if body_object["required"] == false
460           is_required = false
461         end
462         opt resource.to_sym, "#{resource} (request body)", {
463           required: is_required,
464           type: :string
465         }
466       end
467     end
468
469     discovered_params.each do |k,v|
470       k = k.to_sym
471       if ['object', 'array'].index(v["type"]) and method_opts.has_key? k
472         if method_opts[k].andand.match /^\//
473           method_opts[k] = File.open method_opts[k], 'rb' do |f| f.read end
474         end
475       end
476     end
477   end
478
479   return resource, method, method_opts, global_opts, ARGV
480 end
481
482 #
483 # ENTRY POINT
484 #
485
486 init_config
487
488 ENV['ARVADOS_API_VERSION'] ||= 'v1'
489
490 if not ENV.include?('ARVADOS_API_HOST') or not ENV.include?('ARVADOS_API_TOKEN') then
491   abort <<-EOS
492 ARVADOS_API_HOST and ARVADOS_API_TOKEN need to be defined as environment variables.
493   EOS
494 end
495
496 # do this if you're testing with a dev server and you don't care about SSL certificate checks:
497 if ENV['ARVADOS_API_HOST_INSECURE']
498   suppress_warnings { OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE }
499 end
500
501 begin
502   client = ArvadosClient.new(:host => ENV['ARVADOS_API_HOST'], :application_name => 'arvados-cli', :application_version => '1.0')
503   arvados = client.discovered_api('arvados', ENV['ARVADOS_API_VERSION'])
504 rescue Exception => e
505   puts "Failed to connect to Arvados API server: #{e}"
506   exit 1
507 end
508
509 # Parse arguments here
510 resource_schema, method, method_opts, global_opts, remaining_opts = parse_arguments(arvados.discovery_document, subcommands)
511
512 check_subcommands client, arvados, resource_schema, global_opts, remaining_opts
513
514 controller = resource_schema.pluralize
515
516 api_method = 'arvados.' + controller + '.' + method
517
518 if global_opts[:dry_run]
519   if global_opts[:verbose]
520     $stderr.puts "#{api_method} #{method_opts.inspect}"
521   end
522   exit
523 end
524
525 request_parameters = {_profile:true}.merge(method_opts)
526 resource_body = request_parameters.delete(resource_schema.to_sym)
527 if resource_body
528   request_body = {
529     resource_schema => resource_body
530   }
531 else
532   request_body = nil
533 end
534
535 case api_method
536 when
537   'arvados.jobs.log_tail_follow'
538
539   # Special case for methods that respond with data streams rather
540   # than JSON (TODO: use the discovery document instead of a static
541   # list of methods)
542   uri_s = eval(api_method).generate_uri(request_parameters)
543   Curl::Easy.perform(uri_s) do |curl|
544     curl.headers['Accept'] = 'text/plain'
545     curl.headers['Authorization'] = "OAuth2 #{ENV['ARVADOS_API_TOKEN']}"
546     if ENV['ARVADOS_API_HOST_INSECURE']
547       curl.ssl_verify_peer = false
548       curl.ssl_verify_host = false
549     end
550     if global_opts[:verbose]
551       curl.on_header { |data| $stderr.write data }
552     end
553     curl.on_body { |data| $stdout.write data }
554   end
555   exit 0
556 else
557   result = client.execute(:api_method => eval(api_method),
558                           :parameters => request_parameters,
559                           :body => request_body,
560                           :authenticated => false,
561                           :headers => {
562                             authorization: 'OAuth2 '+ENV['ARVADOS_API_TOKEN']
563                           })
564 end
565
566 begin
567   results = JSON.parse result.body
568 rescue JSON::ParserError => e
569   abort "Failed to parse server response:\n" + e.to_s
570 end
571
572 if results["errors"] then
573   abort "Error: #{results["errors"][0]}"
574 end
575
576 case global_opts[:format]
577 when 'json'
578   puts Oj.dump(results, :indent => 1)
579 when 'yaml'
580   puts results.to_yaml
581 else
582   if results["items"] and results["kind"].match /list$/i
583     results['items'].each do |i| puts i['uuid'] end
584   elsif results['uuid'].nil?
585     abort("Response did not include a uuid:\n" +
586           Oj.dump(results, :indent => 1) +
587           "\n")
588   else
589     puts results['uuid']
590   end
591 end