1 class ApplicationController < ActionController::Base
2 include CurrentApiClient
6 around_filter :thread_with_auth_info, :except => [:render_error, :render_not_found]
8 before_filter :remote_ip
9 before_filter :require_auth_scope_all, :except => :render_not_found
10 before_filter :catch_redirect_hint
12 before_filter :load_where_param, :only => :index
13 before_filter :find_objects_for_index, :only => :index
14 before_filter :find_object_by_uuid, :except => [:index, :create,
17 before_filter :reload_object_before_update, :only => :update
18 before_filter :render_404_if_no_object, except: [:index, :create,
22 attr_accessor :resource_attrs
26 if params[:eager] and params[:eager] != '0' and params[:eager] != 0 and params[:eager] != ''
27 @objects.each(&:eager_load_associations)
33 render json: @object.as_api_response
37 @object = model_class.new resource_attrs
41 render_error "Save failed"
46 attrs_to_update = resource_attrs.reject { |k,v|
47 [:kind, :etag, :href].index k
49 if @object.update_attributes attrs_to_update
52 render_error "Update failed"
61 def catch_redirect_hint
63 if params.has_key?('redirect_to') then
64 session[:redirect_to] = params[:redirect_to]
70 rescue_from Exception,
71 :with => :render_error
72 rescue_from ActiveRecord::RecordNotFound,
73 :with => :render_not_found
74 rescue_from ActionController::RoutingError,
75 :with => :render_not_found
76 rescue_from ActionController::UnknownController,
77 :with => :render_not_found
78 rescue_from AbstractController::ActionNotFound,
79 :with => :render_not_found
80 rescue_from ArvadosModel::PermissionDeniedError,
81 :with => :render_error
84 def render_404_if_no_object
85 render_not_found "Object not found" if !@object
89 logger.error e.inspect
90 logger.error e.backtrace.collect { |x| x + "\n" }.join('') if e.backtrace
91 if @object and @object.errors and @object.errors.full_messages and not @object.errors.full_messages.empty?
92 errors = @object.errors.full_messages
96 status = e.respond_to?(:http_status) ? e.http_status : 422
97 render json: { errors: errors }, status: status
100 def render_not_found(e=ActionController::RoutingError.new("Path not found"))
101 logger.error e.inspect
102 render json: { errors: ["Path not found"] }, status: 404
108 if params[:where].nil? or params[:where] == ""
110 elsif params[:where].is_a? Hash
111 @where = params[:where]
112 elsif params[:where].is_a? String
114 @where = Oj.load(params[:where], symbol_keys: true)
116 raise ArgumentError.new("Could not parse \"where\" param as an object")
121 def find_objects_for_index
122 @objects ||= model_class.readable_by(current_user)
125 @where.each do |attr,value|
127 if value.is_a?(Array) and
128 value.length == 2 and
129 value[0] == 'contains' and
130 model_class.columns.collect(&:name).index('name') then
132 model_class.searchable_columns.each do |column|
133 ilikes << "#{table_name}.#{column} ilike ?"
134 conditions << "%#{value[1]}%"
137 conditions[0] << ' and (' + ilikes.join(' or ') + ')'
140 elsif attr.to_s.match(/^[a-z][_a-z0-9]+$/) and
141 model_class.columns.collect(&:name).index(attr.to_s)
143 conditions[0] << " and #{table_name}.#{attr} is ?"
145 elsif value.is_a? Array
146 if value[0] == 'contains' and value.length == 2
147 conditions[0] << " and #{table_name}.#{attr} like ?"
148 conditions << "%#{value[1]}%"
150 conditions[0] << " and #{table_name}.#{attr} in (?)"
153 elsif value.is_a? String or value.is_a? Fixnum or value == true or value == false
154 conditions[0] << " and #{table_name}.#{attr}=?"
156 elsif value.is_a? Hash
157 # Not quite the same thing as "equal?" but better than nothing?
160 conditions[0] << " and #{table_name}.#{attr} ilike ?"
161 conditions << "%#{k}%#{v}%"
167 if conditions.length > 1
168 conditions[0].sub!(/^1=1 and /, '')
175 @objects = @objects.limit(params[:limit].to_i)
177 raise ArgumentError.new("Invalid value for limit parameter")
180 @objects = @objects.limit(100)
184 params[:order].split(',').each do |order|
185 attr, direction = order.strip.split " "
187 if attr.match /^[a-z][_a-z0-9]+$/ and
188 model_class.columns.collect(&:name).index(attr) and
189 ['asc','desc'].index direction.downcase
190 orders << "#{table_name}.#{attr} #{direction.downcase}"
195 orders << "#{table_name}.modified_at desc"
197 @objects = @objects.order(orders.join ", ")
201 return @attrs if @attrs
202 @attrs = params[resource_name]
203 if @attrs.is_a? String
204 @attrs = Oj.load @attrs, symbol_keys: true
206 unless @attrs.is_a? Hash
207 message = "No #{resource_name}"
208 if resource_name.index('_')
209 message << " (or #{resource_name.camelcase(:lower)})"
211 message << " hash provided with request"
212 raise ArgumentError.new(message)
214 %w(created_at modified_by_client_uuid modified_by_user_uuid modified_at).each do |x|
215 @attrs.delete x.to_sym
217 @attrs = @attrs.symbolize_keys if @attrs.is_a? HashWithIndifferentAccess
226 respond_to do |format|
228 render :json => { errors: ['Not logged in'] }.to_json, status: 401
231 redirect_to '/auth/joshid'
239 unless current_user and current_user.is_admin
240 render :json => { errors: ['Forbidden'] }.to_json, status: 403
244 def require_auth_scope_all
245 require_login and require_auth_scope(['all'])
248 def require_auth_scope(ok_scopes)
249 unless current_api_client_auth_has_scope(ok_scopes)
250 render :json => { errors: ['Forbidden'] }.to_json, status: 403
254 def thread_with_auth_info
255 Thread.current[:request_starttime] = Time.now
256 Thread.current[:api_url_base] = root_url.sub(/\/$/,'') + '/arvados/v1'
260 api_client_auth = nil
262 params[:api_token] ||
263 params[:oauth_token] ||
264 request.headers["Authorization"].andand.match(/OAuth2 ([a-z0-9]+)/).andand[1]
266 api_client_auth = ApiClientAuthorization.
267 includes(:api_client, :user).
268 where('api_token=? and (expires_at is null or expires_at > now())', supplied_token).
270 if api_client_auth.andand.user
271 session[:user_id] = api_client_auth.user.id
272 session[:api_client_uuid] = api_client_auth.api_client.andand.uuid
273 session[:api_client_authorization_id] = api_client_auth.id
274 user = api_client_auth.user
275 api_client = api_client_auth.api_client
277 elsif session[:user_id]
278 user = User.find(session[:user_id]) rescue nil
279 api_client = ApiClient.
280 where('uuid=?',session[:api_client_uuid]).
282 if session[:api_client_authorization_id] then
283 api_client_auth = ApiClientAuthorization.
284 find session[:api_client_authorization_id]
287 Thread.current[:api_client_ip_address] = remote_ip
288 Thread.current[:api_client_authorization] = api_client_auth
289 Thread.current[:api_client_uuid] = api_client.andand.uuid
290 Thread.current[:api_client] = api_client
291 Thread.current[:user] = user
293 api_client_auth.last_used_at = Time.now
294 api_client_auth.last_used_by_ip_address = remote_ip
295 api_client_auth.save validate: false
299 Thread.current[:api_client_ip_address] = nil
300 Thread.current[:api_client_authorization] = nil
301 Thread.current[:api_client_uuid] = nil
302 Thread.current[:api_client] = nil
303 Thread.current[:user] = nil
309 controller_name.classify.constantize
312 def resource_name # params[] key used by client
313 controller_name.singularize
320 def find_object_by_uuid
321 if params[:id] and params[:id].match /\D/
322 params[:uuid] = params.delete :id
324 @where = { uuid: params[:uuid] }
325 find_objects_for_index
326 @object = @objects.first
329 def reload_object_before_update
330 # This is necessary to prevent an ActiveRecord::ReadOnlyRecord
331 # error when updating an object which was retrieved using a join.
332 if @object.andand.readonly?
333 @object = model_class.find_by_uuid(@objects.first.uuid)
337 def self.accept_attribute_as_json(attr, force_class=nil)
338 before_filter lambda { accept_attribute_as_json attr, force_class }
340 accept_attribute_as_json :properties, Hash
341 accept_attribute_as_json :info, Hash
342 def accept_attribute_as_json(attr, force_class)
343 if params[resource_name] and resource_attrs.is_a? Hash
344 if resource_attrs[attr].is_a? String
345 resource_attrs[attr] = Oj.load(resource_attrs[attr],
347 if force_class and !resource_attrs[attr].is_a? force_class
348 raise TypeError.new("#{resource_name}[#{attr.to_s}] must be a #{force_class.to_s}")
350 elsif resource_attrs[attr].is_a? Hash
351 # Convert symbol keys to strings (in hashes provided by
353 resource_attrs[attr] = resource_attrs[attr].
354 with_indifferent_access.to_hash
361 :kind => "arvados##{(@response_resource_name || resource_name).camelize(:lower)}List",
364 :next_page_token => "",
366 :items => @objects.as_api_response(nil)
368 if @objects.respond_to? :except
369 @object_list[:items_available] = @objects.except(:limit).count
371 render json: @object_list
375 # Caveat: this is highly dependent on the proxy setup. YMMV.
376 if request.headers.has_key?('HTTP_X_REAL_IP') then
377 # We're behind a reverse proxy
378 @remote_ip = request.headers['HTTP_X_REAL_IP']
380 # Hopefully, we are not!
381 @remote_ip = request.env['REMOTE_ADDR']
385 def self._index_requires_parameters
387 where: { type: 'object', required: false },
388 order: { type: 'string', required: false }
392 def client_accepts_plain_text_stream
393 (request.headers['Accept'].split(' ') &
394 ['text/plain', '*/*']).count > 0
398 response = opts.first[:json]
399 if response.is_a?(Hash) &&
401 Thread.current[:request_starttime]
402 response[:_profile] = {
403 request_time: Time.now - Thread.current[:request_starttime]