1 require 'can_be_an_owner'
3 class User < ArvadosModel
6 include CommonApiTemplate
10 has_many :api_client_authorizations
11 before_update :prevent_privilege_escalation
12 before_update :prevent_inactive_admin
13 before_create :check_auto_admin
14 after_create :add_system_group_permission_link
15 after_create :send_admin_notifications
16 after_update :send_profile_created_notification
19 has_many :authorized_keys, :foreign_key => :authorized_user_uuid, :primary_key => :uuid
21 api_accessible :user, extend: :common do |t|
33 ALL_PERMISSIONS = {read: true, write: true, manage: true}
36 "#{first_name} #{last_name}".strip
41 Rails.configuration.new_users_are_active ||
42 self.groups_i_can(:read).select { |x| x.match /-f+$/ }.first)
45 def groups_i_can(verb)
46 my_groups = self.group_permissions.select { |uuid, mask| mask[verb] }.keys
48 my_groups << anonymous_group_uuid
54 return true if is_admin
55 actions.each do |action, target|
57 if target.respond_to? :uuid
58 target_uuid = target.uuid
61 target = ArvadosModel.find_by_uuid(target_uuid)
64 next if target_uuid == self.uuid
65 next if (group_permissions[target_uuid] and
66 group_permissions[target_uuid][action])
67 if target.respond_to? :owner_uuid
68 next if target.owner_uuid == self.uuid
69 next if (group_permissions[target.owner_uuid] and
70 group_permissions[target.owner_uuid][action])
77 def self.invalidate_permissions_cache
78 Rails.cache.delete_matched(/^groups_for_user_/)
81 # Return a hash of {group_uuid: perm_hash} where perm_hash[:read]
82 # and perm_hash[:write] are true if this user can read and write
83 # objects owned by group_uuid.
85 # The permission graph is built by repeatedly enumerating all
86 # permission links reachable from self.uuid, and then calling
89 Rails.cache.fetch "groups_for_user_#{self.uuid}" do
91 todo = {self.uuid => true}
93 # Build the equivalence class of permissions starting with
94 # self.uuid. On each iteration of this loop, todo contains
95 # the next set of uuids in the permission equivalence class
98 lookup_uuids = todo.keys
99 lookup_uuids.each do |uuid| done[uuid] = true end
102 # include all groups owned by the current set of uuids.
103 Group.where('owner_uuid in (?)', lookup_uuids).each do |group|
104 newgroups << [group.owner_uuid, group.uuid, 'can_manage']
106 # add any permission links from the current lookup_uuids to a
108 Link.where('tail_uuid in (?) and link_class = ? and (head_uuid like ? or head_uuid like ?)',
111 Group.uuid_like_pattern,
112 User.uuid_like_pattern).each do |link|
113 newgroups << [link.tail_uuid, link.head_uuid, link.name]
115 newgroups.each do |tail_uuid, head_uuid, perm_name|
116 unless done.has_key? head_uuid
117 todo[head_uuid] = true
119 link_permissions = {}
122 link_permissions = {read:true}
124 link_permissions = {read:true,write:true}
126 link_permissions = ALL_PERMISSIONS
128 permissions_from[tail_uuid] ||= {}
129 permissions_from[tail_uuid][head_uuid] ||= {}
130 link_permissions.each do |k,v|
131 permissions_from[tail_uuid][head_uuid][k] ||= v
135 search_permissions(self.uuid, permissions_from)
139 def self.setup(user, openid_prefix, repo_name=nil, vm_uuid=nil)
140 return user.setup_repo_vm_links(repo_name, vm_uuid, openid_prefix)
144 def setup_repo_vm_links(repo_name, vm_uuid, openid_prefix)
145 oid_login_perm = create_oid_login_perm openid_prefix
146 repo_perm = create_user_repo_link repo_name
147 vm_login_perm = create_vm_login_permission_link vm_uuid, repo_name
148 group_perm = create_user_group_link
150 return [oid_login_perm, repo_perm, vm_login_perm, group_perm, self].compact
153 # delete user signatures, login, repo, and vm perms, and mark as inactive
155 # delete oid_login_perms for this user
156 Link.destroy_all(tail_uuid: self.email,
157 link_class: 'permission',
160 # delete repo_perms for this user
161 Link.destroy_all(tail_uuid: self.uuid,
162 link_class: 'permission',
165 # delete vm_login_perms for this user
166 Link.destroy_all(tail_uuid: self.uuid,
167 link_class: 'permission',
170 # delete "All users' group read permissions for this user
171 group = Group.where(name: 'All users').select do |g|
172 g[:uuid].match /-f+$/
174 Link.destroy_all(tail_uuid: self.uuid,
175 head_uuid: group[:uuid],
176 link_class: 'permission',
179 # delete any signatures by this user
180 Link.destroy_all(link_class: 'signature',
181 tail_uuid: self.uuid)
183 # mark the user as inactive
184 self.is_active = false
190 def ensure_ownership_path_leads_to_user
194 def permission_to_update
195 # users must be able to update themselves (even if they are
196 # inactive) in order to create sessions
197 self == current_user or super
200 def permission_to_create
201 current_user.andand.is_admin or
202 (self == current_user and
203 self.is_active == Rails.configuration.new_users_are_active)
207 if User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and Rails.configuration.auto_admin_user
208 if self.email == Rails.configuration.auto_admin_user
210 self.is_active = true
215 def prevent_privilege_escalation
216 if current_user.andand.is_admin
219 if self.is_active_changed?
220 if self.is_active != self.is_active_was
221 logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
222 self.is_active = self.is_active_was
225 if self.is_admin_changed?
226 if self.is_admin != self.is_admin_was
227 logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
228 self.is_admin = self.is_admin_was
234 def prevent_inactive_admin
235 if self.is_admin and not self.is_active
236 # There is no known use case for the strange set of permissions
237 # that would result from this change. It's safest to assume it's
238 # a mistake and disallow it outright.
239 raise "Admin users cannot be inactive"
244 def search_permissions(start, graph, merged={}, upstream_mask=nil, upstream_path={})
245 nextpaths = graph[start]
246 return merged if !nextpaths
247 return merged if upstream_path.has_key? start
248 upstream_path[start] = true
249 upstream_mask ||= ALL_PERMISSIONS
250 nextpaths.each do |head, mask|
253 merged[head][k] ||= v if upstream_mask[k]
255 search_permissions(head, graph, merged, upstream_mask.select { |k,v| v && merged[head][k] }, upstream_path)
257 upstream_path.delete start
261 def create_oid_login_perm (openid_prefix)
262 login_perm_props = { "identity_url_prefix" => openid_prefix}
264 # Check oid_login_perm
265 oid_login_perms = Link.where(tail_uuid: self.email,
266 link_class: 'permission',
267 name: 'can_login').where("head_uuid = ?", self.uuid)
269 if !oid_login_perms.any?
270 # create openid login permission
271 oid_login_perm = Link.create(link_class: 'permission',
273 tail_uuid: self.email,
274 head_uuid: self.uuid,
275 properties: login_perm_props
277 logger.info { "openid login permission: " + oid_login_perm[:uuid] }
279 oid_login_perm = oid_login_perms.first
282 return oid_login_perm
285 def create_user_repo_link(repo_name)
286 # repo_name is optional
288 logger.warn ("Repository name not given for #{self.uuid}.")
292 # Check for an existing repository with the same name we're about to use.
293 repo = Repository.where(name: repo_name).first
296 logger.warn "Repository exists for #{repo_name}: #{repo[:uuid]}."
298 # Look for existing repository access for this repo
299 repo_perms = Link.where(tail_uuid: self.uuid,
300 head_uuid: repo[:uuid],
301 link_class: 'permission',
304 logger.warn "User already has repository access " +
305 repo_perms.collect { |p| p[:uuid] }.inspect
306 return repo_perms.first
310 # create repo, if does not already exist
311 repo ||= Repository.create(name: repo_name)
312 logger.info { "repo uuid: " + repo[:uuid] }
314 repo_perm = Link.create(tail_uuid: self.uuid,
315 head_uuid: repo[:uuid],
316 link_class: 'permission',
318 logger.info { "repo permission: " + repo_perm[:uuid] }
322 # create login permission for the given vm_uuid, if it does not already exist
323 def create_vm_login_permission_link(vm_uuid, repo_name)
326 # vm uuid is optional
328 vm = VirtualMachine.where(uuid: vm_uuid).first
331 logger.warn "Could not find virtual machine for #{vm_uuid.inspect}"
332 raise "No vm found for #{vm_uuid}"
338 logger.info { "vm uuid: " + vm[:uuid] }
340 login_perms = Link.where(tail_uuid: self.uuid,
341 head_uuid: vm[:uuid],
342 link_class: 'permission',
346 login_perms.each do |perm|
347 if perm.properties['username'] == repo_name
354 login_perm = perm_exists
356 login_perm = Link.create(tail_uuid: self.uuid,
357 head_uuid: vm[:uuid],
358 link_class: 'permission',
360 properties: {'username' => repo_name})
361 logger.info { "login permission: " + login_perm[:uuid] }
368 # add the user to the 'All users' group
369 def create_user_group_link
370 # Look up the "All users" group (we expect uuid *-*-fffffffffffffff).
371 group = Group.where(name: 'All users').select do |g|
372 g[:uuid].match /-f+$/
376 logger.warn "No 'All users' group with uuid '*-*-fffffffffffffff'."
377 raise "No 'All users' group with uuid '*-*-fffffffffffffff' is found"
379 logger.info { "\"All users\" group uuid: " + group[:uuid] }
381 group_perms = Link.where(tail_uuid: self.uuid,
382 head_uuid: group[:uuid],
383 link_class: 'permission',
387 group_perm = Link.create(tail_uuid: self.uuid,
388 head_uuid: group[:uuid],
389 link_class: 'permission',
391 logger.info { "group permission: " + group_perm[:uuid] }
393 group_perm = group_perms.first
400 # Give the special "System group" permission to manage this user and
401 # all of this user's stuff.
403 def add_system_group_permission_link
404 act_as_system_user do
405 Link.create(link_class: 'permission',
407 tail_uuid: system_group_uuid,
408 head_uuid: self.uuid)
412 # Send admin notifications
413 def send_admin_notifications
414 AdminNotifier.new_user(self).deliver
415 if not self.is_active then
416 AdminNotifier.new_inactive_user(self).deliver
420 # Send notification if the user saved profile for the first time
421 def send_profile_created_notification
422 if self.prefs_changed?
423 if self.prefs_was.andand.empty? || !self.prefs_was.andand['profile']
424 profile_notification_address = Rails.configuration.user_profile_notification_address
425 ProfileNotifier.profile_created(self, profile_notification_address).deliver if profile_notification_address