30e907c00d470c3b04120db3b6162e14dee2445d
[arvados.git] / services / api / app / models / arvados_model.rb
1 require 'assign_uuid'
2 class ArvadosModel < ActiveRecord::Base
3   self.abstract_class = true
4
5   include CurrentApiClient      # current_user, current_api_client, etc.
6
7   attr_protected :created_at
8   attr_protected :modified_by_user_uuid
9   attr_protected :modified_by_client_uuid
10   attr_protected :modified_at
11   before_create :ensure_permission_to_create
12   before_update :ensure_permission_to_update
13   before_destroy :ensure_permission_to_destroy
14
15   before_validation :maybe_update_modified_by_fields
16   validate :ensure_serialized_attribute_type
17   validate :normalize_collection_uuids
18   validate :ensure_valid_uuids
19
20   has_many :permissions, :foreign_key => :head_uuid, :class_name => 'Link', :primary_key => :uuid, :conditions => "link_class = 'permission'"
21
22   class PermissionDeniedError < StandardError
23     def http_status
24       403
25     end
26   end
27
28   class UnauthorizedError < StandardError
29     def http_status
30       401
31     end
32   end
33
34   def self.kind_class(kind)
35     kind.match(/^arvados\#(.+?)(_list|List)?$/)[1].pluralize.classify.constantize rescue nil
36   end
37
38   def href
39     "#{current_api_base}/#{self.class.to_s.pluralize.underscore}/#{self.uuid}"
40   end
41
42   def self.searchable_columns
43     self.columns.collect do |col|
44       if [:string, :text, :datetime, :integer].index(col.type) && col.name != 'owner_uuid'
45         col.name
46       end
47     end.compact
48   end
49
50   def self.attribute_column attr
51     self.columns.select { |col| col.name == attr.to_s }.first
52   end
53
54   def eager_load_associations
55     self.class.columns.each do |col|
56       re = col.name.match /^(.*)_kind$/
57       if (re and
58           self.respond_to? re[1].to_sym and
59           (auuid = self.send((re[1] + '_uuid').to_sym)) and
60           (aclass = self.class.kind_class(self.send(col.name.to_sym))) and
61           (aobject = aclass.where('uuid=?', auuid).first))
62         self.instance_variable_set('@'+re[1], aobject)
63       end
64     end
65   end
66
67   def self.readable_by user
68     uuid_list = [user.uuid, *user.groups_i_can(:read)]
69     sanitized_uuid_list = uuid_list.
70       collect { |uuid| sanitize(uuid) }.join(', ')
71     or_references_me = ''
72     if self == Link and user
73       or_references_me = "OR (#{table_name}.link_class in (#{sanitize 'permission'}, #{sanitize 'resources'}) AND #{sanitize user.uuid} IN (#{table_name}.head_uuid, #{table_name}.tail_uuid))"
74     end
75     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'").
76       where("?=? OR #{table_name}.owner_uuid in (?) OR #{table_name}.uuid=? OR permissions.head_uuid IS NOT NULL #{or_references_me}",
77             true, user.is_admin,
78             uuid_list,
79             user.uuid)
80   end
81
82   protected
83
84   def ensure_permission_to_create
85     raise PermissionDeniedError unless permission_to_create
86   end
87
88   def permission_to_create
89     current_user.andand.is_active
90   end
91
92   def ensure_permission_to_update
93     raise PermissionDeniedError unless permission_to_update
94   end
95
96   def permission_to_update
97     if !current_user
98       logger.warn "Anonymous user tried to update #{self.class.to_s} #{self.uuid_was}"
99       return false
100     end
101     if !current_user.is_active
102       logger.warn "Inactive user #{current_user.uuid} tried to update #{self.class.to_s} #{self.uuid_was}"
103       return false
104     end
105     return true if current_user.is_admin
106     if self.uuid_changed?
107       logger.warn "User #{current_user.uuid} tried to change uuid of #{self.class.to_s} #{self.uuid_was} to #{self.uuid}"
108       return false
109     end
110     if self.owner_uuid_changed?
111       if current_user.uuid == self.owner_uuid or
112           current_user.can? write: self.owner_uuid
113         # current_user is, or has :write permission on, the new owner
114       else
115         logger.warn "User #{current_user.uuid} tried to change owner_uuid of #{self.class.to_s} #{self.uuid} to #{self.owner_uuid} but does not have permission to write to #{self.owner_uuid}"
116         return false
117       end
118     end
119     if current_user.uuid == self.owner_uuid_was or
120         current_user.uuid == self.uuid or
121         current_user.can? write: self.owner_uuid_was
122       # current user is, or has :write permission on, the previous owner
123       return true
124     else
125       logger.warn "User #{current_user.uuid} tried to modify #{self.class.to_s} #{self.uuid} but does not have permission to write #{self.owner_uuid_was}"
126       return false
127     end
128   end
129
130   def ensure_permission_to_destroy
131     raise PermissionDeniedError unless permission_to_destroy
132   end
133
134   def permission_to_destroy
135     permission_to_update
136   end
137
138   def maybe_update_modified_by_fields
139     update_modified_by_fields if self.changed? or self.new_record?
140   end
141
142   def update_modified_by_fields
143     self.created_at ||= Time.now
144     self.owner_uuid ||= current_default_owner if self.respond_to? :owner_uuid=
145     self.modified_at = Time.now
146     self.modified_by_user_uuid = current_user ? current_user.uuid : nil
147     self.modified_by_client_uuid = current_api_client ? current_api_client.uuid : nil
148   end
149
150   def ensure_serialized_attribute_type
151     # Specifying a type in the "serialize" declaration causes rails to
152     # raise an exception if a different data type is retrieved from
153     # the database during load().  The validation preventing such
154     # crash-inducing records from being inserted in the database in
155     # the first place seems to have been left as an exercise to the
156     # developer.
157     self.class.serialized_attributes.each do |colname, attr|
158       if attr.object_class
159         unless self.attributes[colname].is_a? attr.object_class
160           self.errors.add colname.to_sym, "must be a #{attr.object_class.to_s}"
161         end
162       end
163     end
164   end
165
166   def foreign_key_attributes
167     attributes.keys.select { |a| a.match /_uuid$/ }
168   end
169
170   def normalize_collection_uuids
171     foreign_key_attributes.each do |attr|
172       attr_value = send attr
173       if attr_value.is_a? String and
174           attr_value.match /^[0-9a-f]{32,}(\+[@\w]+)*$/
175         begin
176           send "#{attr}=", Collection.normalize_uuid(attr_value)
177         rescue
178           # TODO: abort instead of silently accepting unnormalizable value?
179         end
180       end
181     end
182   end
183
184   @@UUID_REGEX = /^[0-9a-z]{5}-([0-9a-z]{5})-[0-9a-z]{15}$/
185
186   def ensure_valid_uuids
187     specials = [system_user_uuid, 'd41d8cd98f00b204e9800998ecf8427e+0']
188
189     foreign_key_attributes.each do |attr|
190       begin
191         attr_value = send attr
192         r = ArvadosModel::resource_class_for_uuid attr_value if attr_value
193         if r and r.where(uuid: attr_value).count == 0 and not specials.include? attr_value
194           errors.add(attr, "'#{attr_value}' not found")
195         end
196       rescue Exception => e
197           errors.add(attr, "'#{attr_value}' error #{e}")
198       end
199     end
200   end
201
202   def self.resource_class_for_uuid(uuid)
203     if uuid.is_a? ArvadosModel
204       return uuid.class
205     end
206     unless uuid.is_a? String
207       return nil
208     end
209     if uuid.match /^[0-9a-f]{32}(\+[^,]+)*(,[0-9a-f]{32}(\+[^,]+)*)*$/
210       return Collection
211     end
212     resource_class = nil
213
214     Rails.application.eager_load!
215     uuid.match @@UUID_REGEX do |re|
216       ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k|
217         if k.respond_to?(:uuid_prefix)
218           if k.uuid_prefix == re[1]
219             return k
220           end
221         end
222       end
223     end
224     nil
225   end
226
227 end