X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5bcba288077488791daa43a15d5fd5fb0c6e653c..97d6365ee6a5f5bde1c8571fe1d2f3777a67cc3f:/services/api/app/models/arvados_model.rb diff --git a/services/api/app/models/arvados_model.rb b/services/api/app/models/arvados_model.rb index a170fb9b54..6b6a709d6e 100644 --- a/services/api/app/models/arvados_model.rb +++ b/services/api/app/models/arvados_model.rb @@ -4,6 +4,7 @@ class ArvadosModel < ActiveRecord::Base self.abstract_class = true include CurrentApiClient # current_user, current_api_client, etc. + include DbCurrentTime attr_protected :created_at attr_protected :modified_by_user_uuid @@ -22,6 +23,7 @@ class ArvadosModel < ActiveRecord::Base after_destroy :log_destroy after_find :convert_serialized_symbols_to_strings before_validation :normalize_collection_uuids + before_validation :set_default_owner validate :ensure_serialized_attribute_type validate :ensure_valid_uuids @@ -48,6 +50,12 @@ class ArvadosModel < ActiveRecord::Base end end + class UnresolvableContainerError < StandardError + def http_status + 422 + end + end + def self.kind_class(kind) kind.match(/^arvados\#(.+)$/)[1].classify.safe_constantize rescue nil end @@ -56,6 +64,12 @@ class ArvadosModel < ActiveRecord::Base "#{current_api_base}/#{self.class.to_s.pluralize.underscore}/#{self.uuid}" end + def self.selectable_attributes(template=:user) + # Return an array of attribute name strings that can be selected + # in the given template. + api_accessible_attributes(template).map { |attr_spec| attr_spec.first.to_s } + end + def self.searchable_columns operator textonly_operator = !operator.match(/[<=>]/) self.columns.select do |col| @@ -96,6 +110,38 @@ class ArvadosModel < ActiveRecord::Base api_column_map end + def self.ignored_select_attributes + ["href", "kind", "etag"] + end + + def self.columns_for_attributes(select_attributes) + if select_attributes.empty? + raise ArgumentError.new("Attribute selection list cannot be empty") + end + api_column_map = attributes_required_columns + invalid_attrs = [] + select_attributes.each do |s| + next if ignored_select_attributes.include? s + if not s.is_a? String or not api_column_map.include? s + invalid_attrs << s + end + end + if not invalid_attrs.empty? + raise ArgumentError.new("Invalid attribute(s): #{invalid_attrs.inspect}") + end + # Given an array of attribute names to select, return an array of column + # names that must be fetched from the database to satisfy the request. + select_attributes.flat_map { |attr| api_column_map[attr] }.uniq + end + + def self.default_orders + ["#{table_name}.modified_at desc", "#{table_name}.uuid"] + end + + def self.unique_columns + ["id", "uuid"] + end + # If current user can manage the object, return an array of uuids of # users and groups that have permission to write the object. The # first two elements are always [self.owner_uuid, current user's @@ -107,6 +153,7 @@ class ArvadosModel < ActiveRecord::Base # If current user cannot write this object, just return # [self.owner_uuid]. def writable_by + return [owner_uuid] if not current_user unless (owner_uuid == current_user.uuid or current_user.is_admin or (current_user.groups_i_can(:manage) & [uuid, owner_uuid]).any?) @@ -205,6 +252,24 @@ class ArvadosModel < ActiveRecord::Base attributes end + def self.full_text_searchable_columns + self.columns.select do |col| + col.type == :string or col.type == :text + end.map(&:name) + end + + def self.full_text_tsvector + parts = full_text_searchable_columns.collect do |column| + "coalesce(#{column},'')" + end + # We prepend a space to the tsvector() argument here. Otherwise, + # it might start with a column that has its own (non-full-text) + # index, which causes Postgres to use the column index instead of + # the tsvector index, which causes full text queries to be just as + # slow as if we had no index at all. + "to_tsvector('english', ' ' || #{parts.join(" || ' ' || ")})" + end + protected def ensure_ownership_path_leads_to_user @@ -239,12 +304,14 @@ class ArvadosModel < ActiveRecord::Base true end - def ensure_owner_uuid_is_permitted - raise PermissionDeniedError if !current_user - - if new_record? and respond_to? :owner_uuid= + def set_default_owner + if new_record? and current_user and respond_to? :owner_uuid= self.owner_uuid ||= current_user.uuid end + end + + def ensure_owner_uuid_is_permitted + raise PermissionDeniedError if !current_user if self.owner_uuid.nil? errors.add :owner_uuid, "cannot be nil" @@ -277,8 +344,13 @@ class ArvadosModel < ActiveRecord::Base # Verify "write" permission on new owner # default fail unless one of: # current_user is this object - # current user can_write new owner - unless current_user == self or current_user.can? write: owner_uuid + # current user can_write new owner, or this object if owner unchanged + if new_record? or owner_uuid_changed? or is_a?(ApiClientAuthorization) + write_target = owner_uuid + else + write_target = uuid + end + unless current_user == self or current_user.can? write: write_target 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}" errors.add :owner_uuid, "cannot be changed without write permission on new owner" raise PermissionDeniedError @@ -328,9 +400,10 @@ class ArvadosModel < ActiveRecord::Base end def update_modified_by_fields - self.updated_at = Time.now + current_time = db_current_time + self.updated_at = current_time self.owner_uuid ||= current_default_owner if self.respond_to? :owner_uuid= - self.modified_at = Time.now + self.modified_at = current_time self.modified_by_user_uuid = current_user ? current_user.uuid : nil self.modified_by_client_uuid = current_api_client ? current_api_client.uuid : nil true @@ -341,15 +414,16 @@ class ArvadosModel < ActiveRecord::Base x.each do |k,v| return true if has_symbols?(k) or has_symbols?(v) end - false elsif x.is_a? Array x.each do |k| return true if has_symbols?(k) end - false - else - (x.class == Symbol) + elsif x.is_a? Symbol + return true + elsif x.is_a? String + return true if x.start_with?(':') && !x.start_with?('::') end + false end def self.recursive_stringify x @@ -363,6 +437,8 @@ class ArvadosModel < ActiveRecord::Base end elsif x.is_a? Symbol x.to_s + elsif x.is_a? String and x.start_with?(':') and !x.start_with?('::') + x[1..-1] else x end @@ -432,6 +508,7 @@ class ArvadosModel < ActiveRecord::Base def self.uuid_prefixes unless @@prefixes_hash @@prefixes_hash = {} + Rails.application.eager_load! ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k| if k.respond_to?(:uuid_prefix) @@prefixes_hash[k.uuid_prefix] = k @@ -498,7 +575,6 @@ class ArvadosModel < ActiveRecord::Base end resource_class = nil - Rails.application.eager_load! uuid.match HasUuid::UUID_REGEX do |re| return uuid_prefixes[re[1]] if uuid_prefixes[re[1]] end @@ -523,8 +599,8 @@ class ArvadosModel < ActiveRecord::Base end def log_start_state - @old_etag = etag - @old_attributes = logged_attributes + @old_attributes = Marshal.load(Marshal.dump(attributes)) + @old_logged_attributes = Marshal.load(Marshal.dump(logged_attributes)) end def log_change(event_type) @@ -543,14 +619,14 @@ class ArvadosModel < ActiveRecord::Base def log_update log_change('update') do |log| - log.fill_properties('old', @old_etag, @old_attributes) + log.fill_properties('old', etag(@old_attributes), @old_logged_attributes) log.update_to self end end def log_destroy log_change('destroy') do |log| - log.fill_properties('old', @old_etag, @old_attributes) + log.fill_properties('old', etag(@old_attributes), @old_logged_attributes) log.update_to nil end end