X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e8f91c87ef238ddf6bd96914a196d2d90825e8ee..2bd7edf29bad74e61da31b801afd85b4c33ef7fe:/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 936f823a5e..c663d21d52 100644 --- a/services/api/app/models/arvados_model.rb +++ b/services/api/app/models/arvados_model.rb @@ -23,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 @@ -103,10 +104,27 @@ 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. - api_column_map = attributes_required_columns select_attributes.flat_map { |attr| api_column_map[attr] }.uniq end @@ -114,6 +132,10 @@ class ArvadosModel < ActiveRecord::Base ["#{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 @@ -221,26 +243,25 @@ class ArvadosModel < ActiveRecord::Base end def logged_attributes - attributes + attributes.except *Rails.configuration.unlogged_attributes end def self.full_text_searchable_columns self.columns.select do |col| - if col.type == :string or col.type == :text - true - end + col.type == :string or col.type == :text end.map(&:name) end def self.full_text_tsvector - tsvector_str = "to_tsvector('english', " - first = true - self.full_text_searchable_columns.each do |column| - tsvector_str += " || ' ' || " if not first - tsvector_str += "coalesce(#{column},'')" - first = false + parts = full_text_searchable_columns.collect do |column| + "coalesce(#{column},'')" end - tsvector_str += ")" + # 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 @@ -277,12 +298,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" @@ -385,15 +408,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 @@ -407,6 +431,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