Merge branch 'wtsi/13809-root_url-protocol-port-configuration'
[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       @read_auths += ApiClientAuthorization
349         .includes(:user)
350         .where('api_token IN (?) AND
351                 (expires_at IS NULL OR expires_at > CURRENT_TIMESTAMP)',
352                params[:reader_tokens])
353         .all
354     end
355     @read_auths.select! { |auth| auth.scopes_allow_request? request }
356     @read_users = @read_auths.map(&:user).uniq
357   end
358
359   def require_login
360     if not current_user
361       respond_to do |format|
362         format.json { send_error("Not logged in", status: 401) }
363         format.html { redirect_to '/auth/joshid' }
364       end
365       false
366     end
367   end
368
369   def admin_required
370     unless current_user and current_user.is_admin
371       send_error("Forbidden", status: 403)
372     end
373   end
374
375   def require_auth_scope
376     unless current_user && @read_auths.any? { |auth| auth.user.andand.uuid == current_user.uuid }
377       if require_login != false
378         send_error("Forbidden", status: 403)
379       end
380       false
381     end
382   end
383
384   def set_current_request_id
385     req_id = request.headers['X-Request-Id']
386     if !req_id || req_id.length < 1 || req_id.length > 1024
387       # Client-supplied ID is either missing or too long to be
388       # considered friendly.
389       req_id = "req-" + Random::DEFAULT.rand(2**128).to_s(36)[0..19]
390     end
391     response.headers['X-Request-Id'] = Thread.current[:request_id] = req_id
392     Rails.logger.tagged(req_id) do
393       yield
394     end
395     Thread.current[:request_id] = nil
396   end
397
398   def append_info_to_payload(payload)
399     super
400     payload[:request_id] = response.headers['X-Request-Id']
401     payload[:client_ipaddr] = @remote_ip
402     payload[:client_auth] = current_api_client_authorization.andand.uuid || nil
403   end
404
405   def disable_api_methods
406     if Rails.configuration.disable_api_methods.
407         include?(controller_name + "." + action_name)
408       send_error("Disabled", status: 404)
409     end
410   end
411
412   def set_cors_headers
413     response.headers['Access-Control-Allow-Origin'] = '*'
414     response.headers['Access-Control-Allow-Methods'] = 'GET, HEAD, PUT, POST, DELETE'
415     response.headers['Access-Control-Allow-Headers'] = 'Authorization, Content-Type'
416     response.headers['Access-Control-Max-Age'] = '86486400'
417   end
418
419   def respond_with_json_by_default
420     html_index = request.accepts.index(Mime::HTML)
421     if html_index.nil? or request.accepts[0...html_index].include?(Mime::JSON)
422       request.format = :json
423     end
424   end
425
426   def model_class
427     controller_name.classify.constantize
428   end
429
430   def resource_name             # params[] key used by client
431     controller_name.singularize
432   end
433
434   def table_name
435     controller_name
436   end
437
438   def find_object_by_uuid
439     if params[:id] and params[:id].match(/\D/)
440       params[:uuid] = params.delete :id
441     end
442     @where = { uuid: params[:uuid] }
443     @offset = 0
444     @limit = 1
445     @orders = []
446     @filters = []
447     @objects = nil
448     find_objects_for_index
449     @object = @objects.first
450   end
451
452   def reload_object_before_update
453     # This is necessary to prevent an ActiveRecord::ReadOnlyRecord
454     # error when updating an object which was retrieved using a join.
455     if @object.andand.readonly?
456       @object = model_class.find_by_uuid(@objects.first.uuid)
457     end
458   end
459
460   def load_json_value(hash, key, must_be_class=nil)
461     if hash[key].is_a? String
462       hash[key] = SafeJSON.load(hash[key])
463       if must_be_class and !hash[key].is_a? must_be_class
464         raise TypeError.new("parameter #{key.to_s} must be a #{must_be_class.to_s}")
465       end
466     end
467   end
468
469   def self.accept_attribute_as_json(attr, must_be_class=nil)
470     before_filter lambda { accept_attribute_as_json attr, must_be_class }
471   end
472   accept_attribute_as_json :properties, Hash
473   accept_attribute_as_json :info, Hash
474   def accept_attribute_as_json(attr, must_be_class)
475     if params[resource_name] and resource_attrs.is_a? Hash
476       if resource_attrs[attr].is_a? Hash
477         # Convert symbol keys to strings (in hashes provided by
478         # resource_attrs)
479         resource_attrs[attr] = resource_attrs[attr].
480           with_indifferent_access.to_hash
481       else
482         load_json_value(resource_attrs, attr, must_be_class)
483       end
484     end
485   end
486
487   def self.accept_param_as_json(key, must_be_class=nil)
488     prepend_before_filter lambda { load_json_value(params, key, must_be_class) }
489   end
490   accept_param_as_json :reader_tokens, Array
491
492   def object_list(model_class:)
493     if @objects.respond_to?(:except)
494       limit_database_read(model_class: model_class)
495     end
496     list = {
497       :kind  => "arvados##{(@response_resource_name || resource_name).camelize(:lower)}List",
498       :etag => "",
499       :self_link => "",
500       :offset => @offset,
501       :limit => @limit,
502       :items => @objects.as_api_response(nil, {select: @select})
503     }
504     if @extra_included
505       list[:included] = @extra_included.as_api_response(nil, {select: @select})
506     end
507     case params[:count]
508     when nil, '', 'exact'
509       if @objects.respond_to? :except
510         list[:items_available] = @objects.
511           except(:limit).except(:offset).
512           count(:id, distinct: true)
513       end
514     when 'none'
515     else
516       raise ArgumentError.new("count parameter must be 'exact' or 'none'")
517     end
518     list
519   end
520
521   def render_list
522     send_json object_list(model_class: self.model_class)
523   end
524
525   def remote_ip
526     # Caveat: this is highly dependent on the proxy setup. YMMV.
527     if request.headers.key?('HTTP_X_REAL_IP') then
528       # We're behind a reverse proxy
529       @remote_ip = request.headers['HTTP_X_REAL_IP']
530     else
531       # Hopefully, we are not!
532       @remote_ip = request.env['REMOTE_ADDR']
533     end
534   end
535
536   def load_required_parameters
537     (self.class.send "_#{params[:action]}_requires_parameters" rescue {}).
538       each do |key, info|
539       if info[:required] and not params.include?(key)
540         raise ArgumentError.new("#{key} parameter is required")
541       elsif info[:type] == 'boolean'
542         # Make sure params[key] is either true or false -- not a
543         # string, not nil, etc.
544         if not params.include?(key)
545           params[key] = info[:default]
546         elsif [false, 'false', '0', 0].include? params[key]
547           params[key] = false
548         elsif [true, 'true', '1', 1].include? params[key]
549           params[key] = true
550         else
551           raise TypeError.new("#{key} parameter must be a boolean, true or false")
552         end
553       end
554     end
555     true
556   end
557
558   def self._create_requires_parameters
559     {
560       ensure_unique_name: {
561         type: "boolean",
562         description: "Adjust name to ensure uniqueness instead of returning an error on (owner_uuid, name) collision.",
563         location: "query",
564         required: false,
565         default: false
566       }
567     }
568   end
569
570   def self._update_requires_parameters
571     {}
572   end
573
574   def self._index_requires_parameters
575     {
576       filters: { type: 'array', required: false },
577       where: { type: 'object', required: false },
578       order: { type: 'array', required: false },
579       select: { type: 'array', required: false },
580       distinct: { type: 'boolean', required: false },
581       limit: { type: 'integer', required: false, default: DEFAULT_LIMIT },
582       offset: { type: 'integer', required: false, default: 0 },
583       count: { type: 'string', required: false, default: 'exact' },
584     }
585   end
586
587   def client_accepts_plain_text_stream
588     (request.headers['Accept'].split(' ') &
589      ['text/plain', '*/*']).count > 0
590   end
591
592   def render *opts
593     if opts.first
594       response = opts.first[:json]
595       if response.is_a?(Hash) &&
596           params[:_profile] &&
597           Thread.current[:request_starttime]
598         response[:_profile] = {
599           request_time: Time.now - Thread.current[:request_starttime]
600         }
601       end
602     end
603     super(*opts)
604   end
605 end