X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/facb17a2885e6b6d3e998e15862a3c6e970e8cf1..21598295f38998d8028aaa117f192de6b5758808:/apps/workbench/app/models/arvados_base.rb diff --git a/apps/workbench/app/models/arvados_base.rb b/apps/workbench/app/models/arvados_base.rb index 7d8603782e..6250daa06a 100644 --- a/apps/workbench/app/models/arvados_base.rb +++ b/apps/workbench/app/models/arvados_base.rb @@ -1,6 +1,7 @@ class ArvadosBase < ActiveRecord::Base self.abstract_class = true attr_accessor :attribute_sortkey + attr_accessor :create_params def self.arvados_api_client ArvadosApiClient.new_or_current @@ -29,8 +30,9 @@ class ArvadosBase < ActiveRecord::Base end end - def initialize raw_params={} + def initialize raw_params={}, create_params={} super self.class.permit_attribute_params(raw_params) + @create_params = create_params @attribute_sortkey ||= { 'id' => nil, 'name' => '000', @@ -51,10 +53,11 @@ class ArvadosBase < ActiveRecord::Base 'modified_by_client_uuid' => '203', 'uuid' => '999', } + @loaded_attributes = {} end def self.columns - return @columns unless @columns.nil? + return @columns if @columns.andand.any? @columns = [] @attribute_info ||= {} schema = arvados_api_client.discovery[:schemas][self.to_s.to_sym] @@ -72,6 +75,14 @@ class ArvadosBase < ActiveRecord::Base @columns << column(k, :text) serialize k, coldef[:type].constantize end + define_method k do + unless new_record? or @loaded_attributes.include? k.to_s + Rails.logger.debug "BUG: access non-loaded attribute #{k}" + # We should... + # raise ActiveModel::MissingAttributeError, "missing attribute: #{k}" + end + super() + end @attribute_info[k] = coldef end end @@ -109,6 +120,10 @@ class ArvadosBase < ActiveRecord::Base new.private_reload(hash) end + def self.find?(*args) + find(*args) rescue nil + end + def self.order(*args) ArvadosResourceList.new(self).order(*args) end @@ -125,12 +140,20 @@ class ArvadosBase < ActiveRecord::Base ArvadosResourceList.new(self).limit(*args) end + def self.select(*args) + ArvadosResourceList.new(self).select(*args) + end + + def self.distinct(*args) + ArvadosResourceList.new(self).distinct(*args) + end + def self.eager(*args) ArvadosResourceList.new(self).eager(*args) end - def self.all(*args) - ArvadosResourceList.new(self).all(*args) + def self.all + ArvadosResourceList.new(self) end def self.permit_attribute_params raw_params @@ -144,8 +167,10 @@ class ArvadosBase < ActiveRecord::Base ActionController::Parameters.new(raw_params).permit! end - def self.create raw_params={} - super(permit_attribute_params(raw_params)) + def self.create raw_params={}, create_params={} + x = super(permit_attribute_params(raw_params)) + x.create_params = create_params + x end def update_attributes raw_params={} @@ -155,7 +180,16 @@ class ArvadosBase < ActiveRecord::Base def save obdata = {} self.class.columns.each do |col| - obdata[col.name.to_sym] = self.send(col.name.to_sym) + # Non-nil serialized values must be sent because we can't tell + # whether they've changed. Other than that, any given attribute + # is either unchanged (in which case there's no need to send its + # old value in the update/create command) or has been added to + # #changed by ActiveRecord's #attr= method. + if changed.include? col.name or + (self.class.serialized_attributes.include? col.name and + @loaded_attributes[col.name]) + obdata[col.name.to_sym] = self.send col.name + end end obdata.delete :id postdata = { self.class.to_s.underscore => obdata } @@ -164,6 +198,7 @@ class ArvadosBase < ActiveRecord::Base obdata.delete :uuid resp = arvados_api_client.api(self.class, '/' + uuid, postdata) else + postdata.merge!(@create_params) if @create_params resp = arvados_api_client.api(self.class, '', postdata) end return false if !resp[:etag] || !resp[:uuid] @@ -179,6 +214,7 @@ class ArvadosBase < ActiveRecord::Base end end + changes_applied @new_record = false self @@ -247,6 +283,7 @@ class ArvadosBase < ActiveRecord::Base hash = arvados_api_client.api(self.class, '/' + uuid_or_hash) end hash.each do |k,v| + @loaded_attributes[k.to_s] = true if self.respond_to?(k.to_s + '=') self.send(k.to_s + '=', v) else @@ -261,6 +298,7 @@ class ArvadosBase < ActiveRecord::Base end end @all_links = nil + changes_applied @new_record = false self end @@ -269,8 +307,9 @@ class ArvadosBase < ActiveRecord::Base uuid end - def dup - super.forget_uuid! + def initialize_copy orig + super + forget_uuid! end def attributes_for_display @@ -282,11 +321,30 @@ class ArvadosBase < ActiveRecord::Base end def class_for_display - self.class.to_s + self.class.to_s.underscore.humanize + end + + def self.class_for_display + self.to_s.underscore.humanize + end + + # Array of strings that are names of attributes that should be rendered as textile. + def textile_attributes + [] end def self.creatable? - current_user + current_user.andand.is_active && api_exists?(:create) + end + + def self.goes_in_projects? + false + end + + # can this class of object be copied into a project? + # override to false on indivudal model classes for which this should not be true + def self.copies_to_projects? + self.goes_in_projects? end def editable? @@ -294,16 +352,35 @@ class ArvadosBase < ActiveRecord::Base (current_user.is_admin or current_user.uuid == self.owner_uuid or new_record? or - (writable_by.include? current_user.uuid rescue false))) + (respond_to?(:writable_by) ? + writable_by.include?(current_user.uuid) : + (ArvadosBase.find(owner_uuid).writable_by.include? current_user.uuid rescue false)))) or false + end + + def deletable? + editable? + end + + def self.api_exists?(method) + arvados_api_client.discovery[:resources][self.to_s.underscore.pluralize.to_sym].andand[:methods].andand[method] + end + + # Array of strings that are the names of attributes that can be edited + # with X-Editable. + def editable_attributes + self.class.columns.map(&:name) - + %w(created_at modified_at modified_by_user_uuid modified_by_client_uuid updated_at) end - def attribute_editable?(attr) - if "created_at modified_at modified_by_user_uuid modified_by_client_uuid updated_at".index(attr.to_s) + def attribute_editable?(attr, ever=nil) + if not editable_attributes.include?(attr.to_s) false elsif not (current_user.andand.is_active) false elsif attr == 'uuid' current_user.is_admin + elsif ever + true else editable? end @@ -338,8 +415,12 @@ class ArvadosBase < ActiveRecord::Base resource_class end - def friendly_link_name - (name if self.respond_to? :name) || uuid + def resource_param_name + self.class.to_s.underscore + end + + def friendly_link_name lookup=nil + (name if self.respond_to? :name) || default_name end def content_summary @@ -350,6 +431,27 @@ class ArvadosBase < ActiveRecord::Base friendly_link_name end + def self.default_name + self.to_s.underscore.humanize + end + + def controller + (self.class.to_s.pluralize + 'Controller').constantize + end + + def controller_name + self.class.to_s.tableize + end + + # Placeholder for name when name is missing or empty + def default_name + if self.respond_to? :name + "New #{class_for_display.downcase}" + else + uuid + end + end + def owner ArvadosBase.find(owner_uuid) rescue nil end