add create method. refs #1406
[arvados.git] / app / controllers / application_controller.rb
1 class ApplicationController < ActionController::Base
2   include CurrentApiClient
3
4   protect_from_forgery
5   before_filter :uncamelcase_params_hash_keys
6   around_filter :thread_with_auth_info, :except => [:render_error, :render_not_found]
7   before_filter :find_object_by_uuid, :except => [:index, :create]
8
9   before_filter :remote_ip
10   before_filter :login_required, :except => :render_not_found
11
12   before_filter :catch_redirect_hint
13   attr_accessor :resource_attrs
14
15   def catch_redirect_hint
16     if !current_user
17       if params.has_key?('redirect_to') then
18         session[:redirect_to] = params[:redirect_to]
19       end
20     end
21   end
22
23   unless Rails.application.config.consider_all_requests_local
24     rescue_from Exception,
25     :with => :render_error
26     rescue_from ActiveRecord::RecordNotFound,
27     :with => :render_not_found
28     rescue_from ActionController::RoutingError,
29     :with => :render_not_found
30     rescue_from ActionController::UnknownController,
31     :with => :render_not_found
32     rescue_from ActionController::UnknownAction,
33     :with => :render_not_found
34   end
35
36   def render_error(e)
37     logger.error e.inspect
38     logger.error e.backtrace.collect { |x| x + "\n" }.join('') if e.backtrace
39     if @object and @object.errors and @object.errors.full_messages
40       errors = @object.errors.full_messages
41     else
42       errors = [e.inspect]
43     end
44     render json: { errors: errors }, status: 422
45   end
46
47   def render_not_found(e=ActionController::RoutingError.new("Path not found"))
48     logger.error e.inspect
49     render json: { errors: ["Path not found"] }, status: 404
50   end
51
52   def index
53     uuid_list = [current_user.uuid, *current_user.groups_i_can(:read)]
54     sanitized_uuid_list = uuid_list.
55       collect { |uuid| model_class.sanitize(uuid) }.join(', ')
56     @objects ||= model_class.
57       joins("LEFT JOIN links permissions ON permissions.head_uuid=#{table_name}.owner AND permissions.tail_uuid in (#{sanitized_uuid_list}) AND permissions.link_class='permission'").
58       where("?=? OR #{table_name}.owner in (?) OR #{table_name}.uuid=? OR permissions.head_uuid IS NOT NULL",
59             true, current_user.is_admin,
60             uuid_list,
61             current_user.uuid)
62     if params[:where]
63       where = params[:where]
64       where = Oj.load(where) if where.is_a?(String)
65       conditions = ['1=1']
66       where.each do |attr,value|
67         if (!value.nil? and
68             attr.to_s.match(/^[a-z][_a-z0-9]+$/) and
69             model_class.columns.collect(&:name).index(attr))
70           if value.is_a? Array
71             conditions[0] << " and #{table_name}.#{attr} in (?)"
72             conditions << value
73           else
74             conditions[0] << " and #{table_name}.#{attr}=?"
75             conditions << value
76           end
77         elsif (!value.nil? and attr == 'any' and
78           value.is_a?(Array) and value[0] == 'contains' and
79           model_class.columns.collect(&:name).index('name')) then
80             conditions[0] << " and #{table_name}.name ilike ?"
81             conditions << "%#{value[1]}%"
82         end
83       end
84       if conditions.length > 1
85         conditions[0].sub!(/^1=1 and /, '')
86         @objects = @objects.
87           where(*conditions)
88       end
89     end
90     if params[:limit]
91       begin
92         @objects = @objects.limit(params[:limit].to_i)
93       rescue
94         raise "invalid argument (limit)"
95       end
96     else
97       @objects = @objects.limit(100)
98     end
99     @objects = @objects.order('modified_at desc')
100     @objects.uniq!(&:id)
101     if params[:eager] and params[:eager] != '0' and params[:eager] != 0 and params[:eager] != ''
102       @objects.each(&:eager_load_associations)
103     end
104     render_list
105   end
106
107   def show
108     if @object
109       render json: @object.as_api_response(:superuser)
110     else
111       render_not_found("object not found")
112     end
113   end
114
115   def create
116     @object = model_class.new resource_attrs
117     @object.save
118     show
119   end
120
121   def update
122     @object.update_attributes resource_attrs
123     show
124   end
125
126   protected
127
128   def resource_attrs
129     return @attrs if @attrs
130     @attrs = params[resource_name]
131     if @attrs.is_a? String
132       @attrs = uncamelcase_hash_keys(Oj.load @attrs)
133     end
134     unless @attrs.is_a? Hash
135       raise "no #{resource_name} (or #{resource_name.camelcase(:lower)}) hash provided with request #{params.inspect}"
136     end
137     %w(created_at modified_by_client modified_by_user modified_at).each do |x|
138       @attrs.delete x
139     end
140     @attrs
141   end
142
143   # Authentication
144   def login_required
145     if !current_user
146       respond_to do |format|
147         format.html  {
148           redirect_to '/auth/joshid'
149         }
150         format.json {
151           render :json => { errors: ['Not logged in'] }.to_json
152         }
153       end
154     end
155   end
156
157   def thread_with_auth_info
158     begin
159       user = nil
160       api_client = nil
161       api_client_auth = nil
162       supplied_token = params[:api_token] || params[:oauth_token]
163       if supplied_token
164         api_client_auth = ApiClientAuthorization.
165           includes(:api_client, :user).
166           where('api_token=?', supplied_token).
167           first
168         if api_client_auth
169           session[:user_id] = api_client_auth.user.id
170           session[:api_client_uuid] = api_client_auth.api_client.uuid
171           session[:api_client_authorization_id] = api_client_auth.id
172           user = api_client_auth.user
173           api_client = api_client_auth.api_client
174         end
175       elsif session[:user_id]
176         user = User.find(session[:user_id]) rescue nil
177         api_client = ApiClient.
178           where('uuid=?',session[:api_client_uuid]).
179           first rescue nil
180         api_client_auth = ApiClientAuthorization.
181           find session[:api_client_authorization_id]
182       end
183       Thread.current[:api_client_trusted] = session[:api_client_trusted]
184       Thread.current[:api_client_ip_address] = remote_ip
185       Thread.current[:api_client_authorization] = api_client_auth
186       Thread.current[:api_client_uuid] = api_client && api_client.uuid
187       Thread.current[:api_client] = api_client
188       Thread.current[:user] = user
189       yield
190     ensure
191       Thread.current[:api_client_trusted] = nil
192       Thread.current[:api_client_ip_address] = nil
193       Thread.current[:api_client_authorization] = nil
194       Thread.current[:api_client_uuid] = nil
195       Thread.current[:api_client] = nil
196       Thread.current[:user] = nil
197     end
198   end
199   # /Authentication
200
201   def model_class
202     controller_name.classify.constantize
203   end
204
205   def resource_name             # params[] key used by client
206     controller_name.singularize
207   end
208
209   def table_name
210     controller_name
211   end
212
213   def find_object_by_uuid
214     if params[:id] and params[:id].match /\D/
215       params[:uuid] = params.delete :id
216     end
217     @object = model_class.where('uuid=?', params[:uuid]).first
218   end
219
220   def self.accept_attribute_as_json(attr, force_class=nil)
221     before_filter lambda { accept_attribute_as_json attr, force_class }
222   end
223   def accept_attribute_as_json(attr, force_class)
224     if params[resource_name].is_a? Hash
225       if params[resource_name][attr].is_a? String
226         params[resource_name][attr] = Oj.load params[resource_name][attr]
227         if force_class and !params[resource_name][attr].is_a? force_class
228           raise TypeError.new("#{resource_name}[#{attr.to_s}] must be a #{force_class.to_s}")
229         end
230       end
231     end
232   end
233
234   def uncamelcase_params_hash_keys
235     self.params = uncamelcase_hash_keys(params)
236   end
237
238   def uncamelcase_hash_keys(h, max_depth=-1)
239     if h.is_a? Hash and max_depth != 0
240       nh = Hash.new
241       h.each do |k,v|
242         if k.class == String
243           nk = k.underscore
244         elsif k.class == Symbol
245           nk = k.to_s.underscore.to_sym
246         else
247           nk = k
248         end
249         nh[nk] = uncamelcase_hash_keys(v, max_depth-1)
250       end
251       h.replace(nh)
252     end
253     h
254   end
255
256   def render_list
257     @object_list = {
258       :kind  => "orvos##{resource_name}List",
259       :etag => "",
260       :self_link => "",
261       :next_page_token => "",
262       :next_link => "",
263       :items => @objects.as_api_response(:superuser)
264     }
265     render json: @object_list
266   end
267
268   def remote_ip
269     # Caveat: this is highly dependent on the proxy setup. YMMV.
270     if request.headers.has_key?('HTTP_X_REAL_IP') then
271       # We're behind a reverse proxy
272       @remote_ip = request.headers['HTTP_X_REAL_IP']
273     else
274       # Hopefully, we are not!
275       @remote_ip = request.env['REMOTE_ADDR']
276     end
277   end
278 end