Check permission before deleting objects
[arvados.git] / services / api / app / models / arvados_model.rb
1 class ArvadosModel < ActiveRecord::Base
2   self.abstract_class = true
3
4   include CurrentApiClient      # current_user, current_api_client, etc.
5
6   attr_protected :created_at
7   attr_protected :modified_by_user_uuid
8   attr_protected :modified_by_client_uuid
9   attr_protected :modified_at
10   before_create :ensure_permission_to_create
11   before_update :ensure_permission_to_update
12   before_destroy :ensure_permission_to_destroy
13   before_create :update_modified_by_fields
14   before_update :maybe_update_modified_by_fields
15   validate :ensure_serialized_attribute_type
16
17   has_many :permissions, :foreign_key => :head_uuid, :class_name => 'Link', :primary_key => :uuid, :conditions => "link_class = 'permission'"
18
19   class PermissionDeniedError < StandardError
20   end
21
22   def self.kind_class(kind)
23     kind.match(/^arvados\#(.+?)(_list|List)?$/)[1].pluralize.classify.constantize rescue nil
24   end
25
26   def href
27     "#{current_api_base}/#{self.class.to_s.pluralize.underscore}/#{self.uuid}"
28   end
29
30   def eager_load_associations
31     self.class.columns.each do |col|
32       re = col.name.match /^(.*)_kind$/
33       if (re and
34           self.respond_to? re[1].to_sym and
35           (auuid = self.send((re[1] + '_uuid').to_sym)) and
36           (aclass = self.class.kind_class(self.send(col.name.to_sym))) and
37           (aobject = aclass.where('uuid=?', auuid).first))
38         self.instance_variable_set('@'+re[1], aobject)
39       end
40     end
41   end
42
43   protected
44
45   def ensure_permission_to_create
46     raise PermissionDeniedError unless permission_to_create
47   end
48
49   def permission_to_create
50     current_user.andand.is_active
51   end
52
53   def ensure_permission_to_update
54     raise PermissionDeniedError unless permission_to_update
55   end
56
57   def permission_to_update
58     if !current_user
59       logger.warn "Anonymous user tried to update #{self.class.to_s} #{self.uuid_was}"
60       return false
61     end
62     if !current_user.is_active
63       logger.warn "Inactive user #{current_user.uuid} tried to update #{self.class.to_s} #{self.uuid_was}"
64       return false
65     end
66     return true if current_user.is_admin
67     if self.uuid_changed?
68       logger.warn "User #{current_user.uuid} tried to change uuid of #{self.class.to_s} #{self.uuid_was} to #{self.uuid}"
69       return false
70     end
71     if self.owner_uuid_changed?
72       if current_user.uuid == self.owner_uuid or
73           current_user.can? write: self.owner_uuid
74         # current_user is, or has :write permission on, the new owner
75       else
76         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}"
77         return false
78       end
79     end
80     if current_user.uuid == self.owner_uuid_was or
81         current_user.uuid == self.uuid or
82         current_user.can? write: self.owner_uuid_was
83       # current user is, or has :write permission on, the previous owner
84       return true
85     else
86       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}"
87       return false
88     end
89   end
90
91   def ensure_permission_to_destroy
92     raise PermissionDeniedError unless permission_to_destroy
93   end
94
95   def permission_to_destroy
96     permission_to_update
97   end
98
99   def maybe_update_modified_by_fields
100     update_modified_by_fields if self.changed?
101   end
102
103   def update_modified_by_fields
104     self.created_at ||= Time.now
105     self.owner_uuid ||= current_default_owner
106     self.modified_at = Time.now
107     self.modified_by_user_uuid = current_user ? current_user.uuid : nil
108     self.modified_by_client_uuid = current_api_client ? current_api_client.uuid : nil
109   end
110
111   def ensure_serialized_attribute_type
112     # Specifying a type in the "serialize" declaration causes rails to
113     # raise an exception if a different data type is retrieved from
114     # the database during load().  The validation preventing such
115     # crash-inducing records from being inserted in the database in
116     # the first place seems to have been left as an exercise to the
117     # developer.
118     self.class.serialized_attributes.each do |colname, attr|
119       if attr.object_class
120         unless self.attributes[colname].is_a? attr.object_class
121           self.errors.add colname.to_sym, "must be a #{attr.object_class.to_s}"
122         end
123       end
124     end
125   end
126 end