X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/632617ca32cb0be73a0a7cfee5a19b2255c7154c..d28b1cebc8b799ea1e65a50826602392b446ea29:/sdk/cli/bin/arv diff --git a/sdk/cli/bin/arv b/sdk/cli/bin/arv index 259b38ac83..e84150a35d 100755 --- a/sdk/cli/bin/arv +++ b/sdk/cli/bin/arv @@ -56,14 +56,20 @@ class Google::APIClient return @discovery_documents["#{api}:#{version}"] ||= begin # fetch new API discovery doc if stale - cached_doc = File.expand_path '~/.cache/arvados/discovery_uri.json' - if not File.exist?(cached_doc) or (Time.now - File.mtime(cached_doc)) > 86400 + cached_doc = File.expand_path '~/.cache/arvados/discovery_uri.json' rescue nil + + if cached_doc.nil? or not File.exist?(cached_doc) or (Time.now - File.mtime(cached_doc)) > 86400 response = self.execute!(:http_method => :get, :uri => self.discovery_uri(api, version), :authenticated => false) - FileUtils.makedirs(File.dirname cached_doc) - File.open(cached_doc, 'w') do |f| - f.puts response.body + + begin + FileUtils.makedirs(File.dirname cached_doc) + File.open(cached_doc, 'w') do |f| + f.puts response.body + end + rescue + return JSON.load response.body end end @@ -85,8 +91,8 @@ end def init_config # read authentication data from arvados configuration file if present lineno = 0 - config_file = File.expand_path('~/.config/arvados/settings.conf') - if File.exist? config_file then + config_file = File.expand_path('~/.config/arvados/settings.conf') rescue nil + if not config_file.nil? and File.exist? config_file then File.open(config_file, 'r').each do |line| lineno = lineno + 1 # skip comments @@ -143,9 +149,14 @@ def check_subcommands client, arvados, subcommand, global_opts, remaining_opts end end +def arv_edit_save_tmp tmp + FileUtils::cp tmp.path, tmp.path + ".saved" + puts "Saved contents to " + tmp.path + ".saved" +end + def arv_edit client, arvados, global_opts, remaining_opts - n = remaining_opts.shift - if n.nil? or n == "-h" or n == "--help" + uuid = remaining_opts.shift + if uuid.nil? or uuid == "-h" or uuid == "--help" puts head_banner puts "Usage: arv edit [uuid] [fields...]\n\n" puts "Fetch the specified Arvados object, select the specified fields, \n" @@ -162,9 +173,9 @@ def arv_edit client, arvados, global_opts, remaining_opts # determine controller - m = /([a-z0-9]{5})-([a-z0-9]{5})-([a-z0-9]{15})/.match n + m = /([a-z0-9]{5})-([a-z0-9]{5})-([a-z0-9]{15})/.match uuid if !m - if /^[a-f0-9]{32}/.match n + if /^[a-f0-9]{32}/.match uuid abort "Arvados collections are not editable." else abort "#{n} does not appear to be an Arvados uuid" @@ -184,12 +195,10 @@ def arv_edit client, arvados, global_opts, remaining_opts abort "Could not determine resource type #{m[2]}" end - require 'fileutils' - api_method = 'arvados.' + rsc + '.get' result = client.execute(:api_method => eval(api_method), - :parameters => {"uuid" => n}, + :parameters => {"uuid" => uuid}, :authenticated => false, :headers => { authorization: 'OAuth2 '+ENV['ARVADOS_API_TOKEN'] @@ -215,7 +224,7 @@ def arv_edit client, arvados, global_opts, remaining_opts require 'tempfile' - tmp = Tempfile.new([n, "." + global_opts[:format]]) + tmp = Tempfile.new([uuid, "." + global_opts[:format]]) tmp.write(content) tmp.close @@ -258,9 +267,8 @@ def arv_edit client, arvados, global_opts, remaining_opts yn = $stdin.read 1 end if yn == 'n' or yn == 'N' - FileUtils::cp tmp.path, tmp.path + ".saved" - puts "Saved contents to " + tmp.path + ".saved" - exit 1 + arv_edit_save_tmp tmp + abort end end else @@ -276,18 +284,17 @@ def arv_edit client, arvados, global_opts, remaining_opts begin result = client.execute(:api_method => eval(api_method), - :parameters => {"uuid" => n}, + :parameters => {"uuid" => uuid}, :body => { rsc.singularize => dumped }, :authenticated => false, :headers => { authorization: 'OAuth2 '+ENV['ARVADOS_API_TOKEN'] }) rescue Exception => e - FileUtils::cp tmp.path, tmp.path + ".saved" puts "Error communicating with server, error was #{e}" puts "Update body was:" puts dumped - puts "Saved contents to " + tmp.path + ".saved" + arv_edit_save_tmp tmp abort end @@ -298,11 +305,10 @@ def arv_edit client, arvados, global_opts, remaining_opts end if result.response.status != 200 - FileUtils::cp tmp.path, tmp.path + ".saved" puts "Update failed. Server responded #{result.response.status}: #{results['errors']} " puts "Update body was:" puts dumped - puts "Saved contents to " + tmp.path + ".saved" + arv_edit_save_tmp tmp abort end else