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 oid_login_perms = Link.where(tail_uuid: self.email,
157 link_class: 'permission',
159 oid_login_perms.each do |perm|
163 # delete repo_perms for this user
164 repo_perms = Link.where(tail_uuid: self.uuid,
165 link_class: 'permission',
167 repo_perms.each do |perm|
171 # delete vm_login_perms for this user
172 vm_login_perms = Link.where(tail_uuid: self.uuid,
173 link_class: 'permission',
175 vm_login_perms.each do |perm|
179 # delete "All users' group read permissions for this user
180 group = Group.where(name: 'All users').select do |g|
181 g[:uuid].match /-f+$/
183 group_perms = Link.where(tail_uuid: self.uuid,
184 head_uuid: group[:uuid],
185 link_class: 'permission',
187 group_perms.each do |perm|
191 # delete any signatures by this user
192 signed_uuids = Link.where(link_class: 'signature',
193 tail_uuid: self.uuid)
194 signed_uuids.each do |sign|
198 # mark the user as inactive
199 self.is_active = false
205 def ensure_ownership_path_leads_to_user
209 def permission_to_update
210 # users must be able to update themselves (even if they are
211 # inactive) in order to create sessions
212 self == current_user or super
215 def permission_to_create
216 current_user.andand.is_admin or
217 (self == current_user and
218 self.is_active == Rails.configuration.new_users_are_active)
222 if User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and Rails.configuration.auto_admin_user
223 if self.email == Rails.configuration.auto_admin_user
225 self.is_active = true
230 def prevent_privilege_escalation
231 if current_user.andand.is_admin
234 if self.is_active_changed?
235 if self.is_active != self.is_active_was
236 logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
237 self.is_active = self.is_active_was
240 if self.is_admin_changed?
241 if self.is_admin != self.is_admin_was
242 logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
243 self.is_admin = self.is_admin_was
249 def prevent_inactive_admin
250 if self.is_admin and not self.is_active
251 # There is no known use case for the strange set of permissions
252 # that would result from this change. It's safest to assume it's
253 # a mistake and disallow it outright.
254 raise "Admin users cannot be inactive"
259 def search_permissions(start, graph, merged={}, upstream_mask=nil, upstream_path={})
260 nextpaths = graph[start]
261 return merged if !nextpaths
262 return merged if upstream_path.has_key? start
263 upstream_path[start] = true
264 upstream_mask ||= ALL_PERMISSIONS
265 nextpaths.each do |head, mask|
268 merged[head][k] ||= v if upstream_mask[k]
270 search_permissions(head, graph, merged, upstream_mask.select { |k,v| v && merged[head][k] }, upstream_path)
272 upstream_path.delete start
276 def create_oid_login_perm (openid_prefix)
277 login_perm_props = { "identity_url_prefix" => openid_prefix}
279 # Check oid_login_perm
280 oid_login_perms = Link.where(tail_uuid: self.email,
281 link_class: 'permission',
282 name: 'can_login').where("head_uuid = ?", self.uuid)
284 if !oid_login_perms.any?
285 # create openid login permission
286 oid_login_perm = Link.create(link_class: 'permission',
288 tail_uuid: self.email,
289 head_uuid: self.uuid,
290 properties: login_perm_props
292 logger.info { "openid login permission: " + oid_login_perm[:uuid] }
294 oid_login_perm = oid_login_perms.first
297 return oid_login_perm
300 def create_user_repo_link(repo_name)
301 # repo_name is optional
303 logger.warn ("Repository name not given for #{self.uuid}.")
307 # Check for an existing repository with the same name we're about to use.
308 repo = Repository.where(name: repo_name).first
311 logger.warn "Repository exists for #{repo_name}: #{repo[:uuid]}."
313 # Look for existing repository access for this repo
314 repo_perms = Link.where(tail_uuid: self.uuid,
315 head_uuid: repo[:uuid],
316 link_class: 'permission',
319 logger.warn "User already has repository access " +
320 repo_perms.collect { |p| p[:uuid] }.inspect
321 return repo_perms.first
325 # create repo, if does not already exist
326 repo ||= Repository.create(name: repo_name)
327 logger.info { "repo uuid: " + repo[:uuid] }
329 repo_perm = Link.create(tail_uuid: self.uuid,
330 head_uuid: repo[:uuid],
331 link_class: 'permission',
333 logger.info { "repo permission: " + repo_perm[:uuid] }
337 # create login permission for the given vm_uuid, if it does not already exist
338 def create_vm_login_permission_link(vm_uuid, repo_name)
341 # vm uuid is optional
343 vm = VirtualMachine.where(uuid: vm_uuid).first
346 logger.warn "Could not find virtual machine for #{vm_uuid.inspect}"
347 raise "No vm found for #{vm_uuid}"
353 logger.info { "vm uuid: " + vm[:uuid] }
355 login_perms = Link.where(tail_uuid: self.uuid,
356 head_uuid: vm[:uuid],
357 link_class: 'permission',
361 login_perms.each do |perm|
362 if perm.properties['username'] == repo_name
369 login_perm = perm_exists
371 login_perm = Link.create(tail_uuid: self.uuid,
372 head_uuid: vm[:uuid],
373 link_class: 'permission',
375 properties: {'username' => repo_name})
376 logger.info { "login permission: " + login_perm[:uuid] }
383 # add the user to the 'All users' group
384 def create_user_group_link
385 # Look up the "All users" group (we expect uuid *-*-fffffffffffffff).
386 group = Group.where(name: 'All users').select do |g|
387 g[:uuid].match /-f+$/
391 logger.warn "No 'All users' group with uuid '*-*-fffffffffffffff'."
392 raise "No 'All users' group with uuid '*-*-fffffffffffffff' is found"
394 logger.info { "\"All users\" group uuid: " + group[:uuid] }
396 group_perms = Link.where(tail_uuid: self.uuid,
397 head_uuid: group[:uuid],
398 link_class: 'permission',
402 group_perm = Link.create(tail_uuid: self.uuid,
403 head_uuid: group[:uuid],
404 link_class: 'permission',
406 logger.info { "group permission: " + group_perm[:uuid] }
408 group_perm = group_perms.first
415 # Give the special "System group" permission to manage this user and
416 # all of this user's stuff.
418 def add_system_group_permission_link
419 act_as_system_user do
420 Link.create(link_class: 'permission',
422 tail_uuid: system_group_uuid,
423 head_uuid: self.uuid)
427 # Send admin notifications
428 def send_admin_notifications
429 AdminNotifier.new_user(self).deliver
430 if not self.is_active then
431 AdminNotifier.new_inactive_user(self).deliver
435 # Send notification if the user saved profile for the first time
436 def send_profile_created_notification
437 if self.prefs_changed?
438 if self.prefs_was.andand.empty? || !self.prefs_was.andand['profile']
439 profile_notification_address = Rails.configuration.user_profile_notification_address
440 ProfileNotifier.profile_created(self, profile_notification_address).deliver if profile_notification_address