Merge branch '14196-api-v2-tokens' refs #14196
[arvados.git] / services / api / app / controllers / application_controller.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 require 'safe_json'
6 require 'request_error'
7
8 module ApiTemplateOverride
9   def allowed_to_render?(fieldset, field, model, options)
10     return false if !super
11     if options[:select]
12       options[:select].include? field.to_s
13     else
14       true
15     end
16   end
17 end
18
19 class ActsAsApi::ApiTemplate
20   prepend ApiTemplateOverride
21 end
22
23 require 'load_param'
24
25 class ApplicationController < ActionController::Base
26   include ThemesForRails::ActionController
27   include CurrentApiClient
28   include LoadParam
29   include DbCurrentTime
30
31   respond_to :json
32   protect_from_forgery
33
34   ERROR_ACTIONS = [:render_error, :render_not_found]
35
36   around_filter :set_current_request_id
37   before_filter :disable_api_methods
38   before_filter :set_cors_headers
39   before_filter :respond_with_json_by_default
40   before_filter :remote_ip
41   before_filter :load_read_auths
42   before_filter :require_auth_scope, except: ERROR_ACTIONS
43
44   before_filter :catch_redirect_hint
45   before_filter(:find_object_by_uuid,
46                 except: [:index, :create] + ERROR_ACTIONS)
47   before_filter :load_required_parameters
48   before_filter :load_limit_offset_order_params, only: [:index, :contents]
49   before_filter :load_where_param, only: [:index, :contents]
50   before_filter :load_filters_param, only: [:index, :contents]
51   before_filter :find_objects_for_index, :only => :index
52   before_filter :reload_object_before_update, :only => :update
53   before_filter(:render_404_if_no_object,
54                 except: [:index, :create] + ERROR_ACTIONS)
55
56   theme Rails.configuration.arvados_theme
57
58   attr_writer :resource_attrs
59
60   begin
61     rescue_from(Exception,
62                 ArvadosModel::PermissionDeniedError,
63                 :with => :render_error)
64     rescue_from(ActiveRecord::RecordNotFound,
65                 ActionController::RoutingError,
66                 ActionController::UnknownController,
67                 AbstractController::ActionNotFound,
68                 :with => :render_not_found)
69   end
70
71   def initialize *args
72     super
73     @object = nil
74     @objects = nil
75     @offset = nil
76     @limit = nil
77     @select = nil
78     @distinct = nil
79     @response_resource_name = nil
80     @attrs = nil
81     @extra_included = nil
82   end
83
84   def default_url_options
85     options = {}
86     if Rails.configuration.host
87       options[:host] = Rails.configuration.host
88     end
89     if Rails.configuration.port
90       options[:port] = Rails.configuration.port
91     end
92     if Rails.configuration.protocol
93       options[:protocol] = Rails.configuration.protocol
94     end
95     options
96   end
97
98   def index
99     if params[:eager] and params[:eager] != '0' and params[:eager] != 0 and params[:eager] != ''
100       @objects.each(&:eager_load_associations)
101     end
102     render_list
103   end
104
105   def show
106     send_json @object.as_api_response(nil, select: @select)
107   end
108
109   def create
110     @object = model_class.new resource_attrs
111
112     if @object.respond_to?(:name) && params[:ensure_unique_name]
113       @object.save_with_unique_name!
114     else
115       @object.save!
116     end
117
118     show
119   end
120
121   def update
122     attrs_to_update = resource_attrs.reject { |k,v|
123       [:kind, :etag, :href].index k
124     }
125     @object.update_attributes! attrs_to_update
126     show
127   end
128
129   def destroy
130     @object.destroy
131     show
132   end
133
134   def catch_redirect_hint
135     if !current_user
136       if params.has_key?('redirect_to') then
137         session[:redirect_to] = params[:redirect_to]
138       end
139     end
140   end
141
142   def render_404_if_no_object
143     render_not_found "Object not found" if !@object
144   end
145
146   def render_error(e)
147     logger.error e.inspect
148     if !e.is_a? RequestError and (e.respond_to? :backtrace and e.backtrace)
149       logger.error e.backtrace.collect { |x| x + "\n" }.join('')
150     end
151     if (@object.respond_to? :errors and
152         @object.errors.andand.full_messages.andand.any?)
153       errors = @object.errors.full_messages
154       logger.error errors.inspect
155     else
156       errors = [e.inspect]
157     end
158     status = e.respond_to?(:http_status) ? e.http_status : 422
159     send_error(*errors, status: status)
160   end
161
162   def render_not_found(e=ActionController::RoutingError.new("Path not found"))
163     logger.error e.inspect
164     send_error("Path not found", status: 404)
165   end
166
167   protected
168
169   def send_error(*args)
170     if args.last.is_a? Hash
171       err = args.pop
172     else
173       err = {}
174     end
175     err[:errors] ||= args
176     err[:error_token] = [Time.now.utc.to_i, "%08x" % rand(16 ** 8)].join("+")
177     status = err.delete(:status) || 422
178     logger.error "Error #{err[:error_token]}: #{status}"
179     send_json err, status: status
180   end
181
182   def send_json response, opts={}
183     # The obvious render(json: ...) forces a slow JSON encoder. See
184     # #3021 and commit logs. Might be fixed in Rails 4.1.
185     render({
186              text: SafeJSON.dump(response).html_safe,
187              content_type: 'application/json'
188            }.merge opts)
189   end
190
191   def find_objects_for_index
192     @objects ||= model_class.readable_by(*@read_users, {:include_trash => (params[:include_trash] || 'untrash' == action_name)})
193     apply_where_limit_order_params
194   end
195
196   def apply_filters model_class=nil
197     model_class ||= self.model_class
198     @objects = model_class.apply_filters(@objects, @filters)
199   end
200
201   def apply_where_limit_order_params model_class=nil
202     model_class ||= self.model_class
203     apply_filters model_class
204
205     ar_table_name = @objects.table_name
206     if @where.is_a? Hash and @where.any?
207       conditions = ['1=1']
208       @where.each do |attr,value|
209         if attr.to_s == 'any'
210           if value.is_a?(Array) and
211               value.length == 2 and
212               value[0] == 'contains' then
213             ilikes = []
214             model_class.searchable_columns('ilike').each do |column|
215               # Including owner_uuid in an "any column" search will
216               # probably just return a lot of false positives.
217               next if column == 'owner_uuid'
218               ilikes << "#{ar_table_name}.#{column} ilike ?"
219               conditions << "%#{value[1]}%"
220             end
221             if ilikes.any?
222               conditions[0] << ' and (' + ilikes.join(' or ') + ')'
223             end
224           end
225         elsif attr.to_s.match(/^[a-z][_a-z0-9]+$/) and
226             model_class.columns.collect(&:name).index(attr.to_s)
227           if value.nil?
228             conditions[0] << " and #{ar_table_name}.#{attr} is ?"
229             conditions << nil
230           elsif value.is_a? Array
231             if value[0] == 'contains' and value.length == 2
232               conditions[0] << " and #{ar_table_name}.#{attr} like ?"
233               conditions << "%#{value[1]}%"
234             else
235               conditions[0] << " and #{ar_table_name}.#{attr} in (?)"
236               conditions << value
237             end
238           elsif value.is_a? String or value.is_a? Fixnum or value == true or value == false
239             conditions[0] << " and #{ar_table_name}.#{attr}=?"
240             conditions << value
241           elsif value.is_a? Hash
242             # Not quite the same thing as "equal?" but better than nothing?
243             value.each do |k,v|
244               if v.is_a? String
245                 conditions[0] << " and #{ar_table_name}.#{attr} ilike ?"
246                 conditions << "%#{k}%#{v}%"
247               end
248             end
249           end
250         end
251       end
252       if conditions.length > 1
253         conditions[0].sub!(/^1=1 and /, '')
254         @objects = @objects.
255           where(*conditions)
256       end
257     end
258
259     if @select
260       unless action_name.in? %w(create update destroy)
261         # Map attribute names in @select to real column names, resolve
262         # those to fully-qualified SQL column names, and pass the
263         # resulting string to the select method.
264         columns_list = model_class.columns_for_attributes(@select).
265           map { |s| "#{ar_table_name}.#{ActiveRecord::Base.connection.quote_column_name s}" }
266         @objects = @objects.select(columns_list.join(", "))
267       end
268
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.)
274       @select |= ["kind"]
275     end
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?
280   end
281
282   # limit_database_read ensures @objects (which must be an
283   # ActiveRelation) does not return too many results to fit in memory,
284   # by previewing the results and calling @objects.limit() if
285   # necessary.
286   def limit_database_read(model_class:)
287     return if @limit == 0 || @limit == 1
288     model_class ||= self.model_class
289     limit_columns = model_class.limit_index_columns_read
290     limit_columns &= model_class.columns_for_attributes(@select) if @select
291     return if limit_columns.empty?
292     model_class.transaction do
293       limit_query = @objects.
294         except(:select, :distinct).
295         select("(%s) as read_length" %
296                limit_columns.map { |s| "octet_length(#{model_class.table_name}.#{s})" }.join(" + "))
297       new_limit = 0
298       read_total = 0
299       limit_query.each do |record|
300         new_limit += 1
301         read_total += record.read_length.to_i
302         if read_total >= Rails.configuration.max_index_database_read
303           new_limit -= 1 if new_limit > 1
304           @limit = new_limit
305           break
306         elsif new_limit >= @limit
307           break
308         end
309       end
310       @objects = @objects.limit(@limit)
311       # Force @objects to run its query inside this transaction.
312       @objects.each { |_| break }
313     end
314   end
315
316   def resource_attrs
317     return @attrs if @attrs
318     @attrs = params[resource_name]
319     if @attrs.is_a? String
320       @attrs = Oj.strict_load @attrs, symbol_keys: true
321     end
322     unless @attrs.is_a? Hash
323       message = "No #{resource_name}"
324       if resource_name.index('_')
325         message << " (or #{resource_name.camelcase(:lower)})"
326       end
327       message << " hash provided with request"
328       raise ArgumentError.new(message)
329     end
330     %w(created_at modified_by_client_uuid modified_by_user_uuid modified_at).each do |x|
331       @attrs.delete x.to_sym
332     end
333     @attrs = @attrs.symbolize_keys if @attrs.is_a? HashWithIndifferentAccess
334     @attrs
335   end
336
337   # Authentication
338   def load_read_auths
339     @read_auths = []
340     if current_api_client_authorization
341       @read_auths << current_api_client_authorization
342     end
343     # Load reader tokens if this is a read request.
344     # If there are too many reader tokens, assume the request is malicious
345     # and ignore it.
346     if request.get? and params[:reader_tokens] and
347       params[:reader_tokens].size < 100
348       secrets = params[:reader_tokens].map { |t|
349         if t.is_a? String and t.starts_with? "v2/"
350           t.split("/")[2]
351         else
352           t
353         end
354       }
355       @read_auths += ApiClientAuthorization
356         .includes(:user)
357         .where('api_token IN (?) AND
358                 (expires_at IS NULL OR expires_at > CURRENT_TIMESTAMP)',
359                secrets)
360         .to_a
361     end
362     @read_auths.select! { |auth| auth.scopes_allow_request? request }
363     @read_users = @read_auths.map(&:user).uniq
364   end
365
366   def require_login
367     if not current_user
368       respond_to do |format|
369         format.json { send_error("Not logged in", status: 401) }
370         format.html { redirect_to '/auth/joshid' }
371       end
372       false
373     end
374   end
375
376   def admin_required
377     unless current_user and current_user.is_admin
378       send_error("Forbidden", status: 403)
379     end
380   end
381
382   def require_auth_scope
383     unless current_user && @read_auths.any? { |auth| auth.user.andand.uuid == current_user.uuid }
384       if require_login != false
385         send_error("Forbidden", status: 403)
386       end
387       false
388     end
389   end
390
391   def set_current_request_id
392     req_id = request.headers['X-Request-Id']
393     if !req_id || req_id.length < 1 || req_id.length > 1024
394       # Client-supplied ID is either missing or too long to be
395       # considered friendly.
396       req_id = "req-" + Random::DEFAULT.rand(2**128).to_s(36)[0..19]
397     end
398     response.headers['X-Request-Id'] = Thread.current[:request_id] = req_id
399     Rails.logger.tagged(req_id) do
400       yield
401     end
402     Thread.current[:request_id] = nil
403   end
404
405   def append_info_to_payload(payload)
406     super
407     payload[:request_id] = response.headers['X-Request-Id']
408     payload[:client_ipaddr] = @remote_ip
409     payload[:client_auth] = current_api_client_authorization.andand.uuid || nil
410   end
411
412   def disable_api_methods
413     if Rails.configuration.disable_api_methods.
414         include?(controller_name + "." + action_name)
415       send_error("Disabled", status: 404)
416     end
417   end
418
419   def set_cors_headers
420     response.headers['Access-Control-Allow-Origin'] = '*'
421     response.headers['Access-Control-Allow-Methods'] = 'GET, HEAD, PUT, POST, DELETE'
422     response.headers['Access-Control-Allow-Headers'] = 'Authorization, Content-Type'
423     response.headers['Access-Control-Max-Age'] = '86486400'
424   end
425
426   def respond_with_json_by_default
427     html_index = request.accepts.index(Mime::HTML)
428     if html_index.nil? or request.accepts[0...html_index].include?(Mime::JSON)
429       request.format = :json
430     end
431   end
432
433   def model_class
434     controller_name.classify.constantize
435   end
436
437   def resource_name             # params[] key used by client
438     controller_name.singularize
439   end
440
441   def table_name
442     controller_name
443   end
444
445   def find_object_by_uuid
446     if params[:id] and params[:id].match(/\D/)
447       params[:uuid] = params.delete :id
448     end
449     @where = { uuid: params[:uuid] }
450     @offset = 0
451     @limit = 1
452     @orders = []
453     @filters = []
454     @objects = nil
455     find_objects_for_index
456     @object = @objects.first
457   end
458
459   def reload_object_before_update
460     # This is necessary to prevent an ActiveRecord::ReadOnlyRecord
461     # error when updating an object which was retrieved using a join.
462     if @object.andand.readonly?
463       @object = model_class.find_by_uuid(@objects.first.uuid)
464     end
465   end
466
467   def load_json_value(hash, key, must_be_class=nil)
468     if hash[key].is_a? String
469       hash[key] = SafeJSON.load(hash[key])
470       if must_be_class and !hash[key].is_a? must_be_class
471         raise TypeError.new("parameter #{key.to_s} must be a #{must_be_class.to_s}")
472       end
473     end
474   end
475
476   def self.accept_attribute_as_json(attr, must_be_class=nil)
477     before_filter lambda { accept_attribute_as_json attr, must_be_class }
478   end
479   accept_attribute_as_json :properties, Hash
480   accept_attribute_as_json :info, Hash
481   def accept_attribute_as_json(attr, must_be_class)
482     if params[resource_name] and resource_attrs.is_a? Hash
483       if resource_attrs[attr].is_a? Hash
484         # Convert symbol keys to strings (in hashes provided by
485         # resource_attrs)
486         resource_attrs[attr] = resource_attrs[attr].
487           with_indifferent_access.to_hash
488       else
489         load_json_value(resource_attrs, attr, must_be_class)
490       end
491     end
492   end
493
494   def self.accept_param_as_json(key, must_be_class=nil)
495     prepend_before_filter lambda { load_json_value(params, key, must_be_class) }
496   end
497   accept_param_as_json :reader_tokens, Array
498
499   def object_list(model_class:)
500     if @objects.respond_to?(:except)
501       limit_database_read(model_class: model_class)
502     end
503     list = {
504       :kind  => "arvados##{(@response_resource_name || resource_name).camelize(:lower)}List",
505       :etag => "",
506       :self_link => "",
507       :offset => @offset,
508       :limit => @limit,
509       :items => @objects.as_api_response(nil, {select: @select})
510     }
511     if @extra_included
512       list[:included] = @extra_included.as_api_response(nil, {select: @select})
513     end
514     case params[:count]
515     when nil, '', 'exact'
516       if @objects.respond_to? :except
517         list[:items_available] = @objects.
518           except(:limit).except(:offset).
519           count(:id, distinct: true)
520       end
521     when 'none'
522     else
523       raise ArgumentError.new("count parameter must be 'exact' or 'none'")
524     end
525     list
526   end
527
528   def render_list
529     send_json object_list(model_class: self.model_class)
530   end
531
532   def remote_ip
533     # Caveat: this is highly dependent on the proxy setup. YMMV.
534     if request.headers.key?('HTTP_X_REAL_IP') then
535       # We're behind a reverse proxy
536       @remote_ip = request.headers['HTTP_X_REAL_IP']
537     else
538       # Hopefully, we are not!
539       @remote_ip = request.env['REMOTE_ADDR']
540     end
541   end
542
543   def load_required_parameters
544     (self.class.send "_#{params[:action]}_requires_parameters" rescue {}).
545       each do |key, info|
546       if info[:required] and not params.include?(key)
547         raise ArgumentError.new("#{key} parameter is required")
548       elsif info[:type] == 'boolean'
549         # Make sure params[key] is either true or false -- not a
550         # string, not nil, etc.
551         if not params.include?(key)
552           params[key] = info[:default]
553         elsif [false, 'false', '0', 0].include? params[key]
554           params[key] = false
555         elsif [true, 'true', '1', 1].include? params[key]
556           params[key] = true
557         else
558           raise TypeError.new("#{key} parameter must be a boolean, true or false")
559         end
560       end
561     end
562     true
563   end
564
565   def self._create_requires_parameters
566     {
567       ensure_unique_name: {
568         type: "boolean",
569         description: "Adjust name to ensure uniqueness instead of returning an error on (owner_uuid, name) collision.",
570         location: "query",
571         required: false,
572         default: false
573       },
574       cluster_id: {
575         type: 'string',
576         description: "Create object on a remote federated cluster instead of the current one.",
577         location: "query",
578         required: false,
579       },
580     }
581   end
582
583   def self._update_requires_parameters
584     {}
585   end
586
587   def self._index_requires_parameters
588     {
589       filters: { type: 'array', required: false },
590       where: { type: 'object', required: false },
591       order: { type: 'array', required: false },
592       select: { type: 'array', required: false },
593       distinct: { type: 'boolean', required: false },
594       limit: { type: 'integer', required: false, default: DEFAULT_LIMIT },
595       offset: { type: 'integer', required: false, default: 0 },
596       count: { type: 'string', required: false, default: 'exact' },
597     }
598   end
599
600   def client_accepts_plain_text_stream
601     (request.headers['Accept'].split(' ') &
602      ['text/plain', '*/*']).count > 0
603   end
604
605   def render *opts
606     if opts.first
607       response = opts.first[:json]
608       if response.is_a?(Hash) &&
609           params[:_profile] &&
610           Thread.current[:request_starttime]
611         response[:_profile] = {
612           request_time: Time.now - Thread.current[:request_starttime]
613         }
614       end
615     end
616     super(*opts)
617   end
618 end