Merged master
[arvados.git] / services / api / app / models / link.rb
1 class Link < ArvadosModel
2   include AssignUuid
3   include KindAndEtag
4   include CommonApiTemplate
5   serialize :properties, Hash
6   before_create :permission_to_attach_to_objects
7   before_update :permission_to_attach_to_objects
8   after_update :maybe_invalidate_permissions_cache
9   after_create :maybe_invalidate_permissions_cache
10   after_destroy :maybe_invalidate_permissions_cache
11
12   attr_accessor :head
13   attr_accessor :tail
14
15   api_accessible :user, extend: :common do |t|
16     t.add :tail_uuid
17     t.add :link_class
18     t.add :name
19     t.add :head_uuid
20     t.add :head, :if => :head
21     t.add :tail, :if => :tail
22     t.add :properties
23   end
24
25   def properties
26     @properties ||= Hash.new
27     super
28   end
29
30   protected
31
32   def permission_to_attach_to_objects
33     # Anonymous users cannot write links
34     return false if !current_user
35
36     # All users can write links that don't affect permissions
37     return true if self.link_class != 'permission'
38
39     # Administrators can grant permissions
40     return true if current_user.is_admin
41
42     # All users can grant permissions on objects they own
43     head_obj = self.class.
44       kind_class(self.head_uuid).
45       where('uuid=?',head_uuid).
46       first
47     if head_obj
48       return true if head_obj.owner_uuid == current_user.uuid
49     end
50
51     # Users with "can_grant" permission on an object can grant
52     # permissions on that object
53     has_grant_permission = self.class.
54       where('link_class=? AND name=? AND tail_uuid=? AND head_uuid=?',
55             'permission', 'can_grant', current_user.uuid, self.head_uuid).
56       count > 0
57     return true if has_grant_permission
58
59     # Default = deny.
60     false
61   end
62
63   def maybe_invalidate_permissions_cache
64     if self.link_class == 'permission'
65       # Clearing the entire permissions cache can generate many
66       # unnecessary queries if many active users are not affected by
67       # this change. In such cases it would be better to search cached
68       # permissions for head_uuid and tail_uuid, and invalidate the
69       # cache for only those users. (This would require a browseable
70       # cache.)
71       User.invalidate_permissions_cache
72     end
73   end
74 end