5 # Ward Vandewege <ward@clinicalfuture.com>
7 if RUBY_VERSION < '1.9.3' then
9 #{$0.gsub(/^\.\//,'')} requires Ruby version 1.9.3 or higher.
16 if ['ls', 'get', 'put', 'less', 'check'].index @sub then
17 exec `which wh#{@sub}`.strip, *ARGV
29 ENV['ARVADOS_API_VERSION'] ||= 'v1'
31 if not ENV.include?('ARVADOS_API_HOST') or not ENV.include?('ARVADOS_API_TOKEN') then
33 ARVADOS_API_HOST and ARVADOS_API_TOKEN need to be defined as environment variables.
39 require 'google/api_client'
45 require 'active_support/inflector'
49 Please install all required gems:
51 gem install google-api-client json trollop andand oj activesupport
56 ActiveSupport::Inflector.inflections do |inflect|
57 inflect.irregular 'specimen', 'specimens'
58 inflect.irregular 'human', 'humans'
63 original_verbosity = $VERBOSE
66 $VERBOSE = original_verbosity
71 # do this if you're testing with a dev server and you don't care about SSL certificate checks:
72 if ENV['ARVADOS_API_HOST_INSECURE']
73 suppress_warnings { OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE }
76 class Google::APIClient
77 def discovery_document(api, version)
79 return @discovery_documents["#{api}:#{version}"] ||= (begin
80 response = self.execute!(
82 :uri => self.discovery_uri(api, version),
83 :authenticated => false
85 response.body.class == String ? JSON.parse(response.body) : response.body
90 client = Google::APIClient.new(:host => ENV['ARVADOS_API_HOST'], :application_name => 'arvados-cli', :application_version => '1.0')
91 arvados = client.discovered_api('arvados', ENV['ARVADOS_API_VERSION'])
94 !!(s =~ /^(true|t|yes|y|1)$/i)
97 def parse_arguments(discovery_document)
98 resource_types = Array.new()
99 resource_types << '--help'
100 discovery_document["resources"].each do |k,v|
101 resource_types << k.singularize
104 global_opts = Trollop::options do
105 banner "arvados cli client"
106 opt :dry_run, "Don't actually do anything", :short => "-n"
107 opt :verbose, "Print some things on stderr", :short => "-v"
108 opt :uuid, "Return the UUIDs of the objects in the response, one per line (default)", :short => nil
109 opt :json, "Return the entire response received from the API server, as a JSON object", :short => "-j"
110 opt :human, "Return the response received from the API server, as a JSON object with whitespace added for human consumption", :short => "-h"
111 opt :pretty, "Synonym of --human", :short => nil
112 stop_on resource_types
116 resource_arg = ARGV.shift
117 if resource_types.include?(resource_arg) and resource_arg != '--help' then
119 # Now see if the method supplied exists
121 if discovery_document["resources"][resource_arg.pluralize]["methods"].include?(method) then
122 # method exists. Collect arguments.
123 discovered_params = discovery_document["resources"][resource_arg.pluralize]["methods"][method]["parameters"]
124 method_opts = Trollop::options do
125 discovered_params.each do |k,v|
127 opts[:type] = v["type"].to_sym if v.include?("type")
128 if [:datetime, :text, :object].index opts[:type]
129 opts[:type] = :string # else trollop bork
131 opts[:default] = v["default"] if v.include?("default")
132 opts[:default] = v["default"].to_i if opts[:type] == :integer
133 opts[:default] = to_boolean(v["default"]) if opts[:type] == :boolean
134 opts[:required] = true if v.include?("required") and v["required"]
136 description = ' ' + v["description"] if v.include?("description")
137 opt k.to_sym, description, opts
140 discovered_params.each do |k,v|
141 if v["type"] == "object" and method_opts.has_key? k
142 method_opts[k] = JSON.parse method_opts[k]
146 banner = "\nThis resource type supports the following methods:\n\n"
147 discovery_document["resources"][resource_arg.pluralize]["methods"].each do |k,v|
149 description = ' ' + v["description"] if v.include?("description")
150 banner += " #{sprintf("%20s",k)}#{description}\n"
156 if not method.nil? and method != '--help' then
157 Trollop::die "Unknown method #{method.to_s} for command #{resource_arg.to_s}"
165 banner = "\nThis Arvados instance supports the following resource types:\n\n"
166 discovery_document["resources"].each do |k,v|
168 if discovery_document["schemas"].include?(k.singularize.capitalize) and
169 discovery_document["schemas"][k.singularize.capitalize].include?('description') then
170 description = ' ' + discovery_document["schemas"][k.singularize.capitalize]["description"]
172 banner += " #{sprintf("%30s",k.singularize)}#{description}\n"
178 if not resource_arg.nil? and resource_arg != '--help' then
179 Trollop::die "Unknown resource type #{resource_arg.inspect}"
185 return resource_arg.pluralize, method, method_opts, global_opts, ARGV
188 controller, method, method_opts, global_opts, remaining_opts = parse_arguments(arvados.discovery_document)
190 api_method = 'arvados.' + controller + '.' + method
192 if global_opts[:dry_run]
193 if global_opts[:verbose]
194 $stderr.puts "#{api_method} #{method_opts.inspect}"
199 result = client.execute :api_method => eval(api_method), :parameters => { :api_token => ENV['ARVADOS_API_TOKEN'] }.merge(method_opts), :authenticated => false
200 results = JSON.parse result.body
202 if results["errors"] then
203 abort "Error: #{results["errors"][0]}"
206 if global_opts[:human] or global_opts[:pretty] then
207 puts Oj.dump(results, :indent => 1)
208 elsif global_opts[:json] then
209 puts Oj.dump(results)
210 elsif results["items"] and results["kind"].match /list$/i
211 results['items'].each do |i| puts i['uuid'] end