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