1 class ArvadosBase < ActiveRecord::Base
2 self.abstract_class = true
3 attr_accessor :attribute_sortkey
5 def self.uuid_infix_object_kind
6 @@uuid_infix_object_kind ||=
9 $arvados_api_client.discovery[:schemas].each do |name, schema|
10 if schema[:uuidPrefix]
11 infix_kind[schema[:uuidPrefix]] =
12 'arvados#' + name.to_s.camelcase(:lower)
16 # Recognize obsolete types.
18 merge('mxsvm' => 'arvados#pipelineTemplate', # Pipeline
19 'uo14g' => 'arvados#pipelineInstance', # PipelineInvocation
20 'ldvyl' => 'arvados#group') # Project
26 @attribute_sortkey ||= {
29 'owner_uuid' => '001',
30 'created_at' => '002',
31 'modified_at' => '003',
32 'modified_by_user_uuid' => '004',
33 'modified_by_client_uuid' => '005',
40 'updated_at' => 'zzz-999'
45 return @columns unless @columns.nil?
47 @attribute_info ||= {}
48 return @columns if $arvados_api_client.arvados_schema[self.to_s.to_sym].nil?
49 $arvados_api_client.arvados_schema[self.to_s.to_sym].each do |coldef|
50 k = coldef[:name].to_sym
51 if coldef[:type] == coldef[:type].downcase
52 @columns << column(k, coldef[:type].to_sym)
54 @columns << column(k, :text)
55 serialize k, coldef[:type].constantize
58 @attribute_info[k] = coldef
65 def self.column(name, sql_type = nil, default = nil, null = true)
66 ActiveRecord::ConnectionAdapters::Column.new(name.to_s, default, sql_type.to_s, null)
69 def self.attribute_info
74 def self.find(uuid, opts={})
75 if uuid.class != String or uuid.length < 27 then
76 raise 'argument to find() must be a uuid string. Acceptable formats: warehouse locator or string with format xxxxx-xxxxx-xxxxxxxxxxxxxxx'
79 # Only do one lookup on the API side per {class, uuid, workbench
80 # request} unless {cache: false} is given via opts.
81 cache_key = "request_#{Thread.current.object_id}_#{self.to_s}_#{uuid}"
82 if opts[:cache] == false
83 Rails.cache.write cache_key, $arvados_api_client.api(self, '/' + uuid)
85 hash = Rails.cache.fetch cache_key do
86 $arvados_api_client.api(self, '/' + uuid)
88 new.private_reload(hash)
92 ArvadosResourceList.new(self).order(*args)
96 ArvadosResourceList.new(self).where(*args)
100 ArvadosResourceList.new(self).limit(*args)
103 def self.eager(*args)
104 ArvadosResourceList.new(self).eager(*args)
108 ArvadosResourceList.new(self).all(*args)
113 self.class.columns.each do |col|
114 obdata[col.name.to_sym] = self.send(col.name.to_sym)
117 postdata = { self.class.to_s.underscore => obdata }
119 postdata['_method'] = 'PUT'
121 resp = $arvados_api_client.api(self.class, '/' + uuid, postdata)
123 resp = $arvados_api_client.api(self.class, '', postdata)
125 return false if !resp[:etag] || !resp[:uuid]
127 # set read-only non-database attributes
131 # these attrs can be modified by "save" -- we should update our copies
132 %w(uuid owner_uuid created_at
133 modified_at modified_by_user_uuid modified_by_client_uuid
135 if self.respond_to? "#{attr}=".to_sym
136 self.send(attr + '=', resp[attr.to_sym])
146 self.save or raise Exception.new("Save failed")
151 postdata = { '_method' => 'DELETE' }
152 resp = $arvados_api_client.api(self.class, '/' + uuid, postdata)
153 resp[:etag] && resp[:uuid] && resp
161 o.merge!(args.pop) if args[-1].is_a? Hash
162 o[:link_class] ||= args.shift
163 o[:name] ||= args.shift
164 o[:head_kind] ||= args.shift
165 o[:tail_kind] = self.kind
166 o[:tail_uuid] = self.uuid
168 return all_links.select do |m|
173 if (v.respond_to?(:uuid) ? v.uuid : v.to_s) != (test_v.respond_to?(:uuid) ? test_v.uuid : test_v.to_s)
181 @links = $arvados_api_client.api Link, '', { _method: 'GET', where: o, eager: true }
182 @links = $arvados_api_client.unpack_api_response(@links)
186 return @all_links if @all_links
187 res = $arvados_api_client.api Link, '', {
190 tail_kind: self.kind,
195 @all_links = $arvados_api_client.unpack_api_response(res)
199 private_reload(self.uuid)
202 def private_reload(uuid_or_hash)
203 raise "No such object" if !uuid_or_hash
204 if uuid_or_hash.is_a? Hash
207 hash = $arvados_api_client.api(self.class, '/' + uuid_or_hash)
210 if self.respond_to?(k.to_s + '=')
211 self.send(k.to_s + '=', v)
213 # When ArvadosApiClient#schema starts telling us what to expect
214 # in API responses (not just the server side database
215 # columns), this sort of awfulness can be avoided:
216 self.instance_variable_set('@' + k.to_s, v)
217 if !self.respond_to? k
218 singleton = class << self; self end
219 singleton.send :define_method, k, lambda { instance_variable_get('@' + k.to_s) }
236 def attributes_for_display
237 self.attributes.reject { |k,v|
238 attribute_sortkey.has_key?(k) and !attribute_sortkey[k]
240 attribute_sortkey[k] or k
249 (current_user and current_user.is_active and
250 (current_user.is_admin or
251 current_user.uuid == self.owner_uuid))
254 def attribute_editable?(attr)
255 if "created_at modified_at modified_by_user_uuid modified_by_client_uuid updated_at".index(attr.to_s)
257 elsif not (current_user.andand.is_active)
259 elsif "uuid owner_uuid".index(attr.to_s) or current_user.is_admin
260 current_user.is_admin
262 current_user.uuid == self.owner_uuid or current_user.uuid == self.uuid
266 def self.resource_class_for_uuid(uuid, opts={})
267 if uuid.is_a? ArvadosBase
270 unless uuid.is_a? String
273 if opts[:class].is_a? Class
276 if uuid.match /^[0-9a-f]{32}(\+[^,]+)*(,[0-9a-f]{32}(\+[^,]+)*)*$/
280 uuid.match /^[0-9a-z]{5}-([0-9a-z]{5})-[0-9a-z]{15}$/ do |re|
281 resource_class ||= $arvados_api_client.
282 kind_class(self.uuid_infix_object_kind[re[1]])
284 if opts[:referring_object] and
285 opts[:referring_attr] and
286 opts[:referring_attr].match /_uuid$/
287 resource_class ||= $arvados_api_client.
288 kind_class(opts[:referring_object].
289 attributes[opts[:referring_attr].
290 sub(/_uuid$/, '_kind')])
295 def friendly_link_name
296 (name if self.respond_to? :name) || uuid
311 def self.current_user
312 Thread.current[:user] ||= User.current if Thread.current[:arvados_api_token]
313 Thread.current[:user]
316 self.class.current_user