1 class ApplicationController < ActionController::Base
2 include CurrentApiClient
5 around_filter :thread_with_auth_info, :except => [:render_error, :render_not_found]
7 before_filter :remote_ip
8 before_filter :require_auth_scope_all, :except => :render_not_found
9 before_filter :catch_redirect_hint
11 before_filter :load_where_param, :only => :index
12 before_filter :find_objects_for_index, :only => :index
13 before_filter :find_object_by_uuid, :except => [:index, :create]
15 attr_accessor :resource_attrs
19 if params[:eager] and params[:eager] != '0' and params[:eager] != 0 and params[:eager] != ''
20 @objects.each(&:eager_load_associations)
27 render json: @object.as_api_response
29 render_not_found("object not found")
34 @object = model_class.new resource_attrs
40 attrs_to_update = resource_attrs.reject { |k,v|
41 [:kind, :etag, :href].index k
43 if @object.update_attributes attrs_to_update
46 render json: { errors: @object.errors.full_messages }, status: 422
55 def catch_redirect_hint
57 if params.has_key?('redirect_to') then
58 session[:redirect_to] = params[:redirect_to]
64 rescue_from Exception,
65 :with => :render_error
66 rescue_from ActiveRecord::RecordNotFound,
67 :with => :render_not_found
68 rescue_from ActionController::RoutingError,
69 :with => :render_not_found
70 rescue_from ActionController::UnknownController,
71 :with => :render_not_found
72 rescue_from AbstractController::ActionNotFound,
73 :with => :render_not_found
74 rescue_from ArvadosModel::PermissionDeniedError,
75 :with => :render_error
79 logger.error e.inspect
80 logger.error e.backtrace.collect { |x| x + "\n" }.join('') if e.backtrace
81 if @object and @object.errors and @object.errors.full_messages and not @object.errors.full_messages.empty?
82 errors = @object.errors.full_messages
86 status = e.respond_to?(:http_status) ? e.http_status : 422
87 render json: { errors: errors }, status: status
90 def render_not_found(e=ActionController::RoutingError.new("Path not found"))
91 logger.error e.inspect
92 render json: { errors: ["Path not found"] }, status: 404
98 if params[:where].nil? or params[:where] == ""
100 elsif params[:where].is_a? Hash
101 @where = params[:where]
102 elsif params[:where].is_a? String
104 @where = Oj.load(params[:where])
106 raise ArgumentError.new("Could not parse \"where\" param as an object")
111 def find_objects_for_index
112 uuid_list = [current_user.uuid, *current_user.groups_i_can(:read)]
113 sanitized_uuid_list = uuid_list.
114 collect { |uuid| model_class.sanitize(uuid) }.join(', ')
115 or_references_me = ''
116 if model_class == Link and current_user
117 or_references_me = "OR (#{table_name}.link_class in (#{model_class.sanitize 'permission'}, #{model_class.sanitize 'resources'}) AND #{model_class.sanitize current_user.uuid} IN (#{table_name}.head_uuid, #{table_name}.tail_uuid))"
119 @objects ||= model_class.
120 joins("LEFT JOIN links permissions ON permissions.head_uuid in (#{table_name}.owner_uuid, #{table_name}.uuid) AND permissions.tail_uuid in (#{sanitized_uuid_list}) AND permissions.link_class='permission'").
121 where("?=? OR #{table_name}.owner_uuid in (?) OR #{table_name}.uuid=? OR permissions.head_uuid IS NOT NULL #{or_references_me}",
122 true, current_user.is_admin,
127 @where.each do |attr,value|
128 if attr == 'any' or attr == :any
129 if value.is_a?(Array) and
130 value[0] == 'contains' and
131 model_class.columns.collect(&:name).index('name') then
132 conditions[0] << " and #{table_name}.name ilike ?"
133 conditions << "%#{value[1]}%"
135 elsif attr.to_s.match(/^[a-z][_a-z0-9]+$/) and
136 model_class.columns.collect(&:name).index(attr.to_s)
138 conditions[0] << " and #{table_name}.#{attr} is ?"
140 elsif value.is_a? Array
141 conditions[0] << " and #{table_name}.#{attr} in (?)"
143 elsif value.is_a? String or value.is_a? Fixnum or value == true or value == false
144 conditions[0] << " and #{table_name}.#{attr}=?"
146 elsif value.is_a? Hash
147 # Not quite the same thing as "equal?" but better than nothing?
150 conditions[0] << " and #{table_name}.#{attr} ilike ?"
151 conditions << "%#{k}%#{v}%"
157 if conditions.length > 1
158 conditions[0].sub!(/^1=1 and /, '')
165 @objects = @objects.limit(params[:limit].to_i)
167 raise ArgumentError.new("Invalid value for limit parameter")
170 @objects = @objects.limit(100)
174 params[:order].split(',').each do |order|
175 attr, direction = order.strip.split " "
177 if attr.match /^[a-z][_a-z0-9]+$/ and
178 model_class.columns.collect(&:name).index(attr) and
179 ['asc','desc'].index direction.downcase
180 orders << "#{table_name}.#{attr} #{direction.downcase}"
185 orders << "#{table_name}.modified_at desc"
187 @objects = @objects.order(orders.join ", ")
191 return @attrs if @attrs
192 @attrs = params[resource_name]
193 if @attrs.is_a? String
194 @attrs = Oj.load @attrs
196 unless @attrs.is_a? Hash
197 message = "No #{resource_name}"
198 if resource_name.index('_')
199 message << " (or #{resource_name.camelcase(:lower)})"
201 message << " hash provided with request"
202 raise ArgumentError.new(message)
204 %w(created_at modified_by_client_uuid modified_by_user_uuid modified_at).each do |x|
215 respond_to do |format|
217 render :json => { errors: ['Not logged in'] }.to_json, status: 401
220 redirect_to '/auth/joshid'
228 unless current_user and current_user.is_admin
229 render :json => { errors: ['Forbidden'] }.to_json, status: 403
233 def require_auth_scope_all
234 require_login and require_auth_scope(['all'])
237 def require_auth_scope(ok_scopes)
238 unless current_api_client_auth_has_scope(ok_scopes)
239 render :json => { errors: ['Forbidden'] }.to_json, status: 403
243 def thread_with_auth_info
244 Thread.current[:api_url_base] = root_url.sub(/\/$/,'') + '/arvados/v1'
248 api_client_auth = nil
250 params[:api_token] ||
251 params[:oauth_token] ||
252 request.headers["Authorization"].andand.match(/OAuth2 ([a-z0-9]+)/).andand[1]
254 api_client_auth = ApiClientAuthorization.
255 includes(:api_client, :user).
256 where('api_token=? and (expires_at is null or expires_at > now())', supplied_token).
258 if api_client_auth.andand.user
259 session[:user_id] = api_client_auth.user.id
260 session[:api_client_uuid] = api_client_auth.api_client.andand.uuid
261 session[:api_client_authorization_id] = api_client_auth.id
262 user = api_client_auth.user
263 api_client = api_client_auth.api_client
265 elsif session[:user_id]
266 user = User.find(session[:user_id]) rescue nil
267 api_client = ApiClient.
268 where('uuid=?',session[:api_client_uuid]).
270 if session[:api_client_authorization_id] then
271 api_client_auth = ApiClientAuthorization.
272 find session[:api_client_authorization_id]
275 Thread.current[:api_client_ip_address] = remote_ip
276 Thread.current[:api_client_authorization] = api_client_auth
277 Thread.current[:api_client_uuid] = api_client.andand.uuid
278 Thread.current[:api_client] = api_client
279 Thread.current[:user] = user
281 api_client_auth.last_used_at = Time.now
282 api_client_auth.last_used_by_ip_address = remote_ip
283 api_client_auth.save validate: false
287 Thread.current[:api_client_ip_address] = nil
288 Thread.current[:api_client_authorization] = nil
289 Thread.current[:api_client_uuid] = nil
290 Thread.current[:api_client] = nil
291 Thread.current[:user] = nil
297 controller_name.classify.constantize
300 def resource_name # params[] key used by client
301 controller_name.singularize
308 def find_object_by_uuid
309 if params[:id] and params[:id].match /\D/
310 params[:uuid] = params.delete :id
312 @object = model_class.where('uuid=?', params[:uuid]).first
315 def self.accept_attribute_as_json(attr, force_class=nil)
316 before_filter lambda { accept_attribute_as_json attr, force_class }
318 def accept_attribute_as_json(attr, force_class)
319 if params[resource_name].is_a? Hash
320 if params[resource_name][attr].is_a? String
321 params[resource_name][attr] = Oj.load params[resource_name][attr]
322 if force_class and !params[resource_name][attr].is_a? force_class
323 raise TypeError.new("#{resource_name}[#{attr.to_s}] must be a #{force_class.to_s}")
331 :kind => "arvados##{resource_name}List",
334 :next_page_token => "",
336 :items => @objects.as_api_response(nil)
338 render json: @object_list
342 # Caveat: this is highly dependent on the proxy setup. YMMV.
343 if request.headers.has_key?('HTTP_X_REAL_IP') then
344 # We're behind a reverse proxy
345 @remote_ip = request.headers['HTTP_X_REAL_IP']
347 # Hopefully, we are not!
348 @remote_ip = request.env['REMOTE_ADDR']
352 def self._index_requires_parameters
354 where: { type: 'object', required: false },
355 order: { type: 'string', required: false }
359 def client_accepts_plain_text_stream
360 (request.headers['Accept'].split(' ') &
361 ['text/plain', '*/*']).count > 0