3 class ArvadosModel < ActiveRecord::Base
4 self.abstract_class = true
6 include CurrentApiClient # current_user, current_api_client, etc.
9 attr_protected :created_at
10 attr_protected :modified_by_user_uuid
11 attr_protected :modified_by_client_uuid
12 attr_protected :modified_at
13 after_initialize :log_start_state
14 before_save :ensure_permission_to_save
15 before_save :ensure_owner_uuid_is_permitted
16 before_save :ensure_ownership_path_leads_to_user
17 before_destroy :ensure_owner_uuid_is_permitted
18 before_destroy :ensure_permission_to_destroy
19 before_create :update_modified_by_fields
20 before_update :maybe_update_modified_by_fields
21 after_create :log_create
22 after_update :log_update
23 after_destroy :log_destroy
24 after_find :convert_serialized_symbols_to_strings
25 before_validation :normalize_collection_uuids
26 before_validation :set_default_owner
27 validate :ensure_serialized_attribute_type
28 validate :ensure_valid_uuids
30 # Note: This only returns permission links. It does not account for
31 # permissions obtained via user.is_admin or
32 # user.uuid==object.owner_uuid.
33 has_many :permissions, :foreign_key => :head_uuid, :class_name => 'Link', :primary_key => :uuid, :conditions => "link_class = 'permission'"
35 class PermissionDeniedError < StandardError
41 class AlreadyLockedError < StandardError
47 class UnauthorizedError < StandardError
53 class UnresolvableContainerError < StandardError
59 def self.kind_class(kind)
60 kind.match(/^arvados\#(.+)$/)[1].classify.safe_constantize rescue nil
64 "#{current_api_base}/#{self.class.to_s.pluralize.underscore}/#{self.uuid}"
67 def self.selectable_attributes(template=:user)
68 # Return an array of attribute name strings that can be selected
69 # in the given template.
70 api_accessible_attributes(template).map { |attr_spec| attr_spec.first.to_s }
73 def self.searchable_columns operator
74 textonly_operator = !operator.match(/[<=>]/)
75 self.columns.select do |col|
79 when :datetime, :integer, :boolean
87 def self.attribute_column attr
88 self.columns.select { |col| col.name == attr.to_s }.first
91 def self.attributes_required_columns
92 # This method returns a hash. Each key is the name of an API attribute,
93 # and it's mapped to a list of database columns that must be fetched
94 # to generate that attribute.
95 # This implementation generates a simple map of attributes to
96 # matching column names. Subclasses can override this method
97 # to specify that method-backed API attributes need to fetch
98 # specific columns from the database.
99 all_columns = columns.map(&:name)
100 api_column_map = Hash.new { |hash, key| hash[key] = [] }
101 methods.grep(/^api_accessible_\w+$/).each do |method_name|
102 next if method_name == :api_accessible_attributes
103 send(method_name).each_pair do |api_attr_name, col_name|
104 col_name = col_name.to_s
105 if all_columns.include?(col_name)
106 api_column_map[api_attr_name.to_s] |= [col_name]
113 def self.ignored_select_attributes
114 ["href", "kind", "etag"]
117 def self.columns_for_attributes(select_attributes)
118 if select_attributes.empty?
119 raise ArgumentError.new("Attribute selection list cannot be empty")
121 api_column_map = attributes_required_columns
123 select_attributes.each do |s|
124 next if ignored_select_attributes.include? s
125 if not s.is_a? String or not api_column_map.include? s
129 if not invalid_attrs.empty?
130 raise ArgumentError.new("Invalid attribute(s): #{invalid_attrs.inspect}")
132 # Given an array of attribute names to select, return an array of column
133 # names that must be fetched from the database to satisfy the request.
134 select_attributes.flat_map { |attr| api_column_map[attr] }.uniq
137 def self.default_orders
138 ["#{table_name}.modified_at desc", "#{table_name}.uuid"]
141 def self.unique_columns
145 # If current user can manage the object, return an array of uuids of
146 # users and groups that have permission to write the object. The
147 # first two elements are always [self.owner_uuid, current user's
150 # If current user can write but not manage the object, return
151 # [self.owner_uuid, current user's uuid].
153 # If current user cannot write this object, just return
156 return [owner_uuid] if not current_user
157 unless (owner_uuid == current_user.uuid or
158 current_user.is_admin or
159 (current_user.groups_i_can(:manage) & [uuid, owner_uuid]).any?)
160 if ((current_user.groups_i_can(:write) + [current_user.uuid]) &
161 [uuid, owner_uuid]).any?
162 return [owner_uuid, current_user.uuid]
167 [owner_uuid, current_user.uuid] + permissions.collect do |p|
168 if ['can_write', 'can_manage'].index p.name
174 # Return a query with read permissions restricted to the union of of the
175 # permissions of the members of users_list, i.e. if something is readable by
176 # any user in users_list, it will be readable in the query returned by this
178 def self.readable_by(*users_list)
179 # Get rid of troublesome nils
182 # Load optional keyword arguments, if they exist.
183 if users_list.last.is_a? Hash
184 kwargs = users_list.pop
189 # Check if any of the users are admin. If so, we're done.
190 if users_list.select { |u| u.is_admin }.any?
194 # Collect the uuids for each user and any groups readable by each user.
195 user_uuids = users_list.map { |u| u.uuid }
196 uuid_list = user_uuids + users_list.flat_map { |u| u.groups_i_can(:read) }
199 sql_table = kwargs.fetch(:table_name, table_name)
202 # This row is owned by a member of users_list, or owned by a group
203 # readable by a member of users_list
205 # This row uuid is the uuid of a member of users_list
207 # A permission link exists ('write' and 'manage' implicitly include
208 # 'read') from a member of users_list, or a group readable by users_list,
209 # to this row, or to the owner of this row (see join() below).
210 sql_conds += ["#{sql_table}.uuid in (?)"]
211 sql_params += [user_uuids]
214 sql_conds += ["#{sql_table}.owner_uuid in (?)"]
215 sql_params += [uuid_list]
217 sanitized_uuid_list = uuid_list.
218 collect { |uuid| sanitize(uuid) }.join(', ')
219 permitted_uuids = "(SELECT head_uuid FROM links WHERE link_class='permission' AND tail_uuid IN (#{sanitized_uuid_list}))"
220 sql_conds += ["#{sql_table}.uuid IN #{permitted_uuids}"]
223 if sql_table == "links" and users_list.any?
224 # This row is a 'permission' or 'resources' link class
225 # The uuid for a member of users_list is referenced in either the head
226 # or tail of the link
227 sql_conds += ["(#{sql_table}.link_class in (#{sanitize 'permission'}, #{sanitize 'resources'}) AND (#{sql_table}.head_uuid IN (?) OR #{sql_table}.tail_uuid IN (?)))"]
228 sql_params += [user_uuids, user_uuids]
231 if sql_table == "logs" and users_list.any?
232 # Link head points to the object described by this row
233 sql_conds += ["#{sql_table}.object_uuid IN #{permitted_uuids}"]
235 # This object described by this row is owned by this user, or owned by a group readable by this user
236 sql_conds += ["#{sql_table}.object_owner_uuid in (?)"]
237 sql_params += [uuid_list]
240 # Link head points to this row, or to the owner of this row (the
243 # Link tail originates from this user, or a group that is readable
244 # by this user (the identity with authorization to read)
246 # Link class is 'permission' ('write' and 'manage' implicitly
248 where(sql_conds.join(' OR '), *sql_params)
251 def logged_attributes
252 attributes.except *Rails.configuration.unlogged_attributes
255 def self.full_text_searchable_columns
256 self.columns.select do |col|
257 col.type == :string or col.type == :text
261 def self.full_text_tsvector
262 parts = full_text_searchable_columns.collect do |column|
263 "coalesce(#{column},'')"
265 # We prepend a space to the tsvector() argument here. Otherwise,
266 # it might start with a column that has its own (non-full-text)
267 # index, which causes Postgres to use the column index instead of
268 # the tsvector index, which causes full text queries to be just as
269 # slow as if we had no index at all.
270 "to_tsvector('english', ' ' || #{parts.join(" || ' ' || ")})"
275 def ensure_ownership_path_leads_to_user
276 if new_record? or owner_uuid_changed?
277 uuid_in_path = {owner_uuid => true, uuid => true}
279 while (owner_class = ArvadosModel::resource_class_for_uuid(x)) != User
282 # Test for cycles with the new version, not the DB contents
284 elsif !owner_class.respond_to? :find_by_uuid
285 raise ActiveRecord::RecordNotFound.new
287 x = owner_class.find_by_uuid(x).owner_uuid
289 rescue ActiveRecord::RecordNotFound => e
290 errors.add :owner_uuid, "is not owned by any user: #{e}"
295 errors.add :owner_uuid, "would create an ownership cycle"
297 errors.add :owner_uuid, "has an ownership cycle"
301 uuid_in_path[x] = true
307 def set_default_owner
308 if new_record? and current_user and respond_to? :owner_uuid=
309 self.owner_uuid ||= current_user.uuid
313 def ensure_owner_uuid_is_permitted
314 raise PermissionDeniedError if !current_user
316 if self.owner_uuid.nil?
317 errors.add :owner_uuid, "cannot be nil"
318 raise PermissionDeniedError
321 rsc_class = ArvadosModel::resource_class_for_uuid owner_uuid
322 unless rsc_class == User or rsc_class == Group
323 errors.add :owner_uuid, "must be set to User or Group"
324 raise PermissionDeniedError
327 # Verify "write" permission on old owner
328 # default fail unless one of:
329 # owner_uuid did not change
330 # previous owner_uuid is nil
331 # current user is the old owner
332 # current user is this object
333 # current user can_write old owner
334 unless !owner_uuid_changed? or
335 owner_uuid_was.nil? or
336 current_user.uuid == self.owner_uuid_was or
337 current_user.uuid == self.uuid or
338 current_user.can? write: self.owner_uuid_was
339 logger.warn "User #{current_user.uuid} tried to modify #{self.class.to_s} #{uuid} but does not have permission to write old owner_uuid #{owner_uuid_was}"
340 errors.add :owner_uuid, "cannot be changed without write permission on old owner"
341 raise PermissionDeniedError
344 # Verify "write" permission on new owner
345 # default fail unless one of:
346 # current_user is this object
347 # current user can_write new owner, or this object if owner unchanged
348 if new_record? or owner_uuid_changed? or is_a?(ApiClientAuthorization)
349 write_target = owner_uuid
353 unless current_user == self or current_user.can? write: write_target
354 logger.warn "User #{current_user.uuid} tried to modify #{self.class.to_s} #{uuid} but does not have permission to write new owner_uuid #{owner_uuid}"
355 errors.add :owner_uuid, "cannot be changed without write permission on new owner"
356 raise PermissionDeniedError
362 def ensure_permission_to_save
363 unless (new_record? ? permission_to_create : permission_to_update)
364 raise PermissionDeniedError
368 def permission_to_create
369 current_user.andand.is_active
372 def permission_to_update
374 logger.warn "Anonymous user tried to update #{self.class.to_s} #{self.uuid_was}"
377 if !current_user.is_active
378 logger.warn "Inactive user #{current_user.uuid} tried to update #{self.class.to_s} #{self.uuid_was}"
381 return true if current_user.is_admin
382 if self.uuid_changed?
383 logger.warn "User #{current_user.uuid} tried to change uuid of #{self.class.to_s} #{self.uuid_was} to #{self.uuid}"
389 def ensure_permission_to_destroy
390 raise PermissionDeniedError unless permission_to_destroy
393 def permission_to_destroy
397 def maybe_update_modified_by_fields
398 update_modified_by_fields if self.changed? or self.new_record?
402 def update_modified_by_fields
403 current_time = db_current_time
404 self.updated_at = current_time
405 self.owner_uuid ||= current_default_owner if self.respond_to? :owner_uuid=
406 self.modified_at = current_time
407 self.modified_by_user_uuid = current_user ? current_user.uuid : nil
408 self.modified_by_client_uuid = current_api_client ? current_api_client.uuid : nil
412 def self.has_symbols? x
415 return true if has_symbols?(k) or has_symbols?(v)
419 return true if has_symbols?(k)
424 return true if x.start_with?(':') && !x.start_with?('::')
429 def self.recursive_stringify x
431 Hash[x.collect do |k,v|
432 [recursive_stringify(k), recursive_stringify(v)]
436 recursive_stringify k
440 elsif x.is_a? String and x.start_with?(':') and !x.start_with?('::')
447 def ensure_serialized_attribute_type
448 # Specifying a type in the "serialize" declaration causes rails to
449 # raise an exception if a different data type is retrieved from
450 # the database during load(). The validation preventing such
451 # crash-inducing records from being inserted in the database in
452 # the first place seems to have been left as an exercise to the
454 self.class.serialized_attributes.each do |colname, attr|
456 if self.attributes[colname].class != attr.object_class
457 self.errors.add colname.to_sym, "must be a #{attr.object_class.to_s}, not a #{self.attributes[colname].class.to_s}"
458 elsif self.class.has_symbols? attributes[colname]
459 self.errors.add colname.to_sym, "must not contain symbols: #{attributes[colname].inspect}"
465 def convert_serialized_symbols_to_strings
466 # ensure_serialized_attribute_type should prevent symbols from
467 # getting into the database in the first place. If someone managed
468 # to get them into the database (perhaps using an older version)
469 # we'll convert symbols to strings when loading from the
470 # database. (Otherwise, loading and saving an object with existing
471 # symbols in a serialized field will crash.)
472 self.class.serialized_attributes.each do |colname, attr|
473 if self.class.has_symbols? attributes[colname]
474 attributes[colname] = self.class.recursive_stringify attributes[colname]
475 self.send(colname + '=',
476 self.class.recursive_stringify(attributes[colname]))
481 def foreign_key_attributes
482 attributes.keys.select { |a| a.match /_uuid$/ }
485 def skip_uuid_read_permission_check
486 %w(modified_by_client_uuid)
489 def skip_uuid_existence_check
493 def normalize_collection_uuids
494 foreign_key_attributes.each do |attr|
495 attr_value = send attr
496 if attr_value.is_a? String and
497 attr_value.match /^[0-9a-f]{32,}(\+[@\w]+)*$/
499 send "#{attr}=", Collection.normalize_uuid(attr_value)
501 # TODO: abort instead of silently accepting unnormalizable value?
507 @@prefixes_hash = nil
508 def self.uuid_prefixes
509 unless @@prefixes_hash
511 Rails.application.eager_load!
512 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k|
513 if k.respond_to?(:uuid_prefix)
514 @@prefixes_hash[k.uuid_prefix] = k
521 def self.uuid_like_pattern
522 "_____-#{uuid_prefix}-_______________"
526 %r/[a-z0-9]{5}-#{uuid_prefix}-[a-z0-9]{15}/
529 def ensure_valid_uuids
530 specials = [system_user_uuid]
532 foreign_key_attributes.each do |attr|
533 if new_record? or send (attr + "_changed?")
534 next if skip_uuid_existence_check.include? attr
535 attr_value = send attr
536 next if specials.include? attr_value
538 if (r = ArvadosModel::resource_class_for_uuid attr_value)
539 unless skip_uuid_read_permission_check.include? attr
540 r = r.readable_by(current_user)
542 if r.where(uuid: attr_value).count == 0
543 errors.add(attr, "'#{attr_value}' not found")
560 def self.readable_by (*u)
565 [{:uuid => u[:uuid]}]
569 def self.resource_class_for_uuid(uuid)
570 if uuid.is_a? ArvadosModel
573 unless uuid.is_a? String
578 uuid.match HasUuid::UUID_REGEX do |re|
579 return uuid_prefixes[re[1]] if uuid_prefixes[re[1]]
582 if uuid.match /.+@.+/
589 # ArvadosModel.find_by_uuid needs extra magic to allow it to return
590 # an object in any class.
591 def self.find_by_uuid uuid
592 if self == ArvadosModel
593 # If called directly as ArvadosModel.find_by_uuid rather than via subclass,
594 # delegate to the appropriate subclass based on the given uuid.
595 self.resource_class_for_uuid(uuid).find_by_uuid(uuid)
602 @old_attributes = Marshal.load(Marshal.dump(attributes))
603 @old_logged_attributes = Marshal.load(Marshal.dump(logged_attributes))
606 def log_change(event_type)
607 log = Log.new(event_type: event_type).fill_object(self)
614 log_change('create') do |log|
615 log.fill_properties('old', nil, nil)
621 log_change('update') do |log|
622 log.fill_properties('old', etag(@old_attributes), @old_logged_attributes)
628 log_change('destroy') do |log|
629 log.fill_properties('old', etag(@old_attributes), @old_logged_attributes)