X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/93059e2f0e5ff27bec5e088b822f505863369307..cbe594f580c26381d786d7b43d5227eb1d12620d:/services/api/app/controllers/application_controller.rb diff --git a/services/api/app/controllers/application_controller.rb b/services/api/app/controllers/application_controller.rb index 58d14fd559..c9c78794d6 100644 --- a/services/api/app/controllers/application_controller.rb +++ b/services/api/app/controllers/application_controller.rb @@ -35,7 +35,7 @@ class ApplicationController < ActionController::Base except: [:index, :create] + ERROR_ACTIONS) before_filter :load_limit_offset_order_params, only: [:index, :contents] before_filter :load_where_param, only: [:index, :contents] - before_filter :load_filters_param, only: [:index, :contents, :choose] + before_filter :load_filters_param, only: [:index, :contents] before_filter :find_objects_for_index, :only => :index before_filter :reload_object_before_update, :only => :update before_filter(:render_404_if_no_object, @@ -104,8 +104,11 @@ class ApplicationController < ActionController::Base if e.respond_to? :backtrace and e.backtrace logger.error e.backtrace.collect { |x| x + "\n" }.join('') end - if @object and @object.errors and @object.errors.full_messages and not @object.errors.full_messages.empty? + if (@object and @object.respond_to? :errors and + @object.errors and @object.errors.full_messages and + not @object.errors.full_messages.empty?) errors = @object.errors.full_messages + logger.error errors.inspect else errors = [e.inspect] end @@ -202,7 +205,17 @@ class ApplicationController < ActionController::Base end end - @objects = @objects.select(@select.map { |s| "#{table_name}.#{ActiveRecord::Base.connection.quote_column_name s.to_s}" }.join ", ") if @select + if @select + # Map attribute names in @select to real column names, resolve + # those to fully-qualified SQL column names, and pass the + # resulting string to the select method. + api_column_map = model_class.attributes_required_columns + columns_list = @select. + flat_map { |attr| api_column_map[attr] }. + uniq. + map { |s| "#{table_name}.#{ActiveRecord::Base.connection.quote_column_name s}" } + @objects = @objects.select(columns_list.join(", ")) + end @objects = @objects.order(@orders.join ", ") if @orders.any? @objects = @objects.limit(@limit) @objects = @objects.offset(@offset)