1 module ApiTemplateOverride
2 def allowed_to_render?(fieldset, field, model, options)
5 options[:select].include? field.to_s
12 class ActsAsApi::ApiTemplate
13 prepend ApiTemplateOverride
17 require 'record_filters'
19 class ApplicationController < ActionController::Base
20 include CurrentApiClient
21 include ThemesForRails::ActionController
28 ERROR_ACTIONS = [:render_error, :render_not_found]
30 before_filter :set_cors_headers
31 before_filter :respond_with_json_by_default
32 before_filter :remote_ip
33 before_filter :load_read_auths
34 before_filter :require_auth_scope, except: ERROR_ACTIONS
36 before_filter :catch_redirect_hint
37 before_filter(:find_object_by_uuid,
38 except: [:index, :create] + ERROR_ACTIONS)
39 before_filter :load_required_parameters
40 before_filter :load_limit_offset_order_params, only: [:index, :contents]
41 before_filter :load_where_param, only: [:index, :contents]
42 before_filter :load_filters_param, only: [:index, :contents]
43 before_filter :find_objects_for_index, :only => :index
44 before_filter :reload_object_before_update, :only => :update
45 before_filter(:render_404_if_no_object,
46 except: [:index, :create] + ERROR_ACTIONS)
50 attr_accessor :resource_attrs
53 rescue_from(Exception,
54 ArvadosModel::PermissionDeniedError,
55 :with => :render_error)
56 rescue_from(ActiveRecord::RecordNotFound,
57 ActionController::RoutingError,
58 ActionController::UnknownController,
59 AbstractController::ActionNotFound,
60 :with => :render_not_found)
63 def default_url_options
64 if Rails.configuration.host
65 {:host => Rails.configuration.host}
72 @objects.uniq!(&:id) if @select.nil? or @select.include? "id"
73 if params[:eager] and params[:eager] != '0' and params[:eager] != 0 and params[:eager] != ''
74 @objects.each(&:eager_load_associations)
80 render json: @object.as_api_response(nil, select: @select)
84 @object = model_class.new resource_attrs
86 if @object.respond_to? :name and params[:ensure_unique_name]
87 # Record the original name. See below.
88 name_stem = @object.name
94 rescue ActiveRecord::RecordNotUnique => rn
95 raise unless params[:ensure_unique_name]
97 # Dig into the error to determine if it is specifically calling out a
98 # (owner_uuid, name) uniqueness violation. In this specific case, and
99 # the client requested a unique name with ensure_unique_name==true,
100 # update the name field and try to save again. Loop as necessary to
101 # discover a unique name. It is necessary to handle name choosing at
102 # this level (as opposed to the client) to ensure that record creation
103 # never fails due to a race condition.
104 raise unless rn.original_exception.is_a? PG::UniqueViolation
106 # Unfortunately ActiveRecord doesn't abstract out any of the
107 # necessary information to figure out if this the error is actually
108 # the specific case where we want to apply the ensure_unique_name
109 # behavior, so the following code is specialized to Postgres.
110 err = rn.original_exception
111 detail = err.result.error_field(PG::Result::PG_DIAG_MESSAGE_DETAIL)
112 raise unless /^Key \(owner_uuid, name\)=\([a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{15}, .*?\) already exists\./.match detail
114 # OK, this exception really is just a unique name constraint
115 # violation, and we've been asked to ensure_unique_name.
118 @object.name = "#{name_stem} (#{counter})"
125 attrs_to_update = resource_attrs.reject { |k,v|
126 [:kind, :etag, :href].index k
128 @object.update_attributes! attrs_to_update
137 def catch_redirect_hint
139 if params.has_key?('redirect_to') then
140 session[:redirect_to] = params[:redirect_to]
145 def render_404_if_no_object
146 render_not_found "Object not found" if !@object
150 logger.error e.inspect
151 if e.respond_to? :backtrace and e.backtrace
152 logger.error e.backtrace.collect { |x| x + "\n" }.join('')
154 if (@object.respond_to? :errors and
155 @object.errors.andand.full_messages.andand.any?)
156 errors = @object.errors.full_messages
157 logger.error errors.inspect
161 status = e.respond_to?(:http_status) ? e.http_status : 422
162 send_error(*errors, status: status)
165 def render_not_found(e=ActionController::RoutingError.new("Path not found"))
166 logger.error e.inspect
167 send_error("Path not found", status: 404)
172 def send_error(*args)
173 if args.last.is_a? Hash
178 err[:errors] ||= args
179 err[:error_token] = [Time.now.utc.to_i, "%08x" % rand(16 ** 8)].join("+")
180 status = err.delete(:status) || 422
181 logger.error "Error #{err[:error_token]}: #{status}"
182 render json: err, status: status
185 def find_objects_for_index
186 @objects ||= model_class.readable_by(*@read_users)
187 apply_where_limit_order_params
190 def apply_filters model_class=nil
191 model_class ||= self.model_class
192 ft = record_filters @filters, model_class
193 if ft[:cond_out].any?
194 @objects = @objects.where('(' + ft[:cond_out].join(') AND (') + ')',
199 def apply_where_limit_order_params *args
202 ar_table_name = @objects.table_name
203 if @where.is_a? Hash and @where.any?
205 @where.each do |attr,value|
206 if attr.to_s == 'any'
207 if value.is_a?(Array) and
208 value.length == 2 and
209 value[0] == 'contains' then
211 model_class.searchable_columns('ilike').each do |column|
212 # Including owner_uuid in an "any column" search will
213 # probably just return a lot of false positives.
214 next if column == 'owner_uuid'
215 ilikes << "#{ar_table_name}.#{column} ilike ?"
216 conditions << "%#{value[1]}%"
219 conditions[0] << ' and (' + ilikes.join(' or ') + ')'
222 elsif attr.to_s.match(/^[a-z][_a-z0-9]+$/) and
223 model_class.columns.collect(&:name).index(attr.to_s)
225 conditions[0] << " and #{ar_table_name}.#{attr} is ?"
227 elsif value.is_a? Array
228 if value[0] == 'contains' and value.length == 2
229 conditions[0] << " and #{ar_table_name}.#{attr} like ?"
230 conditions << "%#{value[1]}%"
232 conditions[0] << " and #{ar_table_name}.#{attr} in (?)"
235 elsif value.is_a? String or value.is_a? Fixnum or value == true or value == false
236 conditions[0] << " and #{ar_table_name}.#{attr}=?"
238 elsif value.is_a? Hash
239 # Not quite the same thing as "equal?" but better than nothing?
242 conditions[0] << " and #{ar_table_name}.#{attr} ilike ?"
243 conditions << "%#{k}%#{v}%"
249 if conditions.length > 1
250 conditions[0].sub!(/^1=1 and /, '')
257 unless action_name.in? %w(create update destroy)
258 # Map attribute names in @select to real column names, resolve
259 # those to fully-qualified SQL column names, and pass the
260 # resulting string to the select method.
261 api_column_map = model_class.attributes_required_columns
262 columns_list = @select.
263 flat_map { |attr| api_column_map[attr] }.
265 map { |s| "#{table_name}.#{ActiveRecord::Base.connection.quote_column_name s}" }
266 @objects = @objects.select(columns_list.join(", "))
269 # This information helps clients understand what they're seeing
270 # (Workbench always expects it), but they can't select it explicitly
271 # because it's not an SQL column. Always add it.
272 # (This is harmless, given that clients can deduce what they're
273 # looking at by the returned UUID anyway.)
276 @objects = @objects.order(@orders.join ", ") if @orders.any?
277 @objects = @objects.limit(@limit)
278 @objects = @objects.offset(@offset)
279 @objects = @objects.uniq(@distinct) if not @distinct.nil?
283 return @attrs if @attrs
284 @attrs = params[resource_name]
285 if @attrs.is_a? String
286 @attrs = Oj.load @attrs, symbol_keys: true
288 unless @attrs.is_a? Hash
289 message = "No #{resource_name}"
290 if resource_name.index('_')
291 message << " (or #{resource_name.camelcase(:lower)})"
293 message << " hash provided with request"
294 raise ArgumentError.new(message)
296 %w(created_at modified_by_client_uuid modified_by_user_uuid modified_at).each do |x|
297 @attrs.delete x.to_sym
299 @attrs = @attrs.symbolize_keys if @attrs.is_a? HashWithIndifferentAccess
306 if current_api_client_authorization
307 @read_auths << current_api_client_authorization
309 # Load reader tokens if this is a read request.
310 # If there are too many reader tokens, assume the request is malicious
312 if request.get? and params[:reader_tokens] and
313 params[:reader_tokens].size < 100
314 @read_auths += ApiClientAuthorization
316 .where('api_token IN (?) AND
317 (expires_at IS NULL OR expires_at > CURRENT_TIMESTAMP)',
318 params[:reader_tokens])
321 @read_auths.select! { |auth| auth.scopes_allow_request? request }
322 @read_users = @read_auths.map { |auth| auth.user }.uniq
327 respond_to do |format|
328 format.json { send_error("Not logged in", status: 401) }
329 format.html { redirect_to '/auth/joshid' }
336 unless current_user and current_user.is_admin
337 send_error("Forbidden", status: 403)
341 def require_auth_scope
342 if @read_auths.empty?
343 if require_login != false
344 send_error("Forbidden", status: 403)
351 response.headers['Access-Control-Allow-Origin'] = '*'
352 response.headers['Access-Control-Allow-Methods'] = 'GET, HEAD, PUT, POST, DELETE'
353 response.headers['Access-Control-Allow-Headers'] = 'Authorization'
354 response.headers['Access-Control-Max-Age'] = '86486400'
357 def respond_with_json_by_default
358 html_index = request.accepts.index(Mime::HTML)
359 if html_index.nil? or request.accepts[0...html_index].include?(Mime::JSON)
360 request.format = :json
365 controller_name.classify.constantize
368 def resource_name # params[] key used by client
369 controller_name.singularize
376 def find_object_by_uuid
377 if params[:id] and params[:id].match /\D/
378 params[:uuid] = params.delete :id
380 @where = { uuid: params[:uuid] }
386 find_objects_for_index
387 @object = @objects.first
390 def reload_object_before_update
391 # This is necessary to prevent an ActiveRecord::ReadOnlyRecord
392 # error when updating an object which was retrieved using a join.
393 if @object.andand.readonly?
394 @object = model_class.find_by_uuid(@objects.first.uuid)
398 def load_json_value(hash, key, must_be_class=nil)
399 if hash[key].is_a? String
400 hash[key] = Oj.load(hash[key], symbol_keys: false)
401 if must_be_class and !hash[key].is_a? must_be_class
402 raise TypeError.new("parameter #{key.to_s} must be a #{must_be_class.to_s}")
407 def self.accept_attribute_as_json(attr, must_be_class=nil)
408 before_filter lambda { accept_attribute_as_json attr, must_be_class }
410 accept_attribute_as_json :properties, Hash
411 accept_attribute_as_json :info, Hash
412 def accept_attribute_as_json(attr, must_be_class)
413 if params[resource_name] and resource_attrs.is_a? Hash
414 if resource_attrs[attr].is_a? Hash
415 # Convert symbol keys to strings (in hashes provided by
417 resource_attrs[attr] = resource_attrs[attr].
418 with_indifferent_access.to_hash
420 load_json_value(resource_attrs, attr, must_be_class)
425 def self.accept_param_as_json(key, must_be_class=nil)
426 prepend_before_filter lambda { load_json_value(params, key, must_be_class) }
428 accept_param_as_json :reader_tokens, Array
432 :kind => "arvados##{(@response_resource_name || resource_name).camelize(:lower)}List",
437 :items => @objects.as_api_response(nil, {select: @select})
439 if @objects.respond_to? :except
440 @object_list[:items_available] = @objects.
441 except(:limit).except(:offset).
442 count(:id, distinct: true)
444 render json: @object_list
448 # Caveat: this is highly dependent on the proxy setup. YMMV.
449 if request.headers.has_key?('HTTP_X_REAL_IP') then
450 # We're behind a reverse proxy
451 @remote_ip = request.headers['HTTP_X_REAL_IP']
453 # Hopefully, we are not!
454 @remote_ip = request.env['REMOTE_ADDR']
458 def load_required_parameters
459 (self.class.send "_#{params[:action]}_requires_parameters" rescue {}).
461 if info[:required] and not params.include?(key)
462 raise ArgumentError.new("#{key} parameter is required")
463 elsif info[:type] == 'boolean'
464 # Make sure params[key] is either true or false -- not a
465 # string, not nil, etc.
466 if not params.include?(key)
467 params[key] = info[:default]
468 elsif [false, 'false', '0', 0].include? params[key]
470 elsif [true, 'true', '1', 1].include? params[key]
473 raise TypeError.new("#{key} parameter must be a boolean, true or false")
480 def self._create_requires_parameters
482 ensure_unique_name: {
484 description: "Adjust name to ensure uniqueness instead of returning an error on (owner_uuid, name) collision.",
492 def self._index_requires_parameters
494 filters: { type: 'array', required: false },
495 where: { type: 'object', required: false },
496 order: { type: 'array', required: false },
497 select: { type: 'array', required: false },
498 distinct: { type: 'boolean', required: false },
499 limit: { type: 'integer', required: false, default: DEFAULT_LIMIT },
500 offset: { type: 'integer', required: false, default: 0 },
504 def client_accepts_plain_text_stream
505 (request.headers['Accept'].split(' ') &
506 ['text/plain', '*/*']).count > 0
511 response = opts.first[:json]
512 if response.is_a?(Hash) &&
514 Thread.current[:request_starttime]
515 response[:_profile] = {
516 request_time: Time.now - Thread.current[:request_starttime]
524 return Rails.configuration.arvados_theme