1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 require 'can_be_an_owner'
7 class User < ArvadosModel
10 include CommonApiTemplate
12 extend CurrentApiClient
14 serialize :prefs, Hash
15 has_many :api_client_authorizations
18 with: /\A[A-Za-z][A-Za-z0-9]*\z/,
19 message: "must begin with a letter and contain only alphanumerics",
23 validate :must_unsetup_to_deactivate
24 before_update :prevent_privilege_escalation
25 before_update :prevent_inactive_admin
26 before_update :verify_repositories_empty, :if => Proc.new {
27 username.nil? and username_changed?
29 before_update :setup_on_activate
31 before_create :check_auto_admin
32 before_create :set_initial_username, :if => Proc.new {
33 username.nil? and email
35 after_create :after_ownership_change
36 after_create :setup_on_activate
37 after_create :add_system_group_permission_link
38 after_create :auto_setup_new_user, :if => Proc.new {
39 Rails.configuration.Users.AutoSetupNewUsers and
40 (uuid != system_user_uuid) and
41 (uuid != anonymous_user_uuid)
43 after_create :send_admin_notifications
45 before_update :before_ownership_change
46 after_update :after_ownership_change
47 after_update :send_profile_created_notification
48 after_update :sync_repository_names, :if => Proc.new {
49 (uuid != system_user_uuid) and
50 saved_change_to_username? and
51 (not username_before_last_save.nil?)
53 before_destroy :clear_permissions
54 after_destroy :remove_self_from_permissions
56 has_many :authorized_keys, :foreign_key => :authorized_user_uuid, :primary_key => :uuid
57 has_many :repositories, foreign_key: :owner_uuid, primary_key: :uuid
59 default_scope { where('redirect_to_user_uuid is null') }
61 api_accessible :user, extend: :common do |t|
75 ALL_PERMISSIONS = {read: true, write: true, manage: true}
77 # Map numeric permission levels (see lib/create_permission_view.sql)
78 # back to read/write/manage flags.
82 {read: true, write: true},
83 {read: true, write: true, manage: true}]
92 "#{first_name} #{last_name}".strip
97 Rails.configuration.Users.NewUsersAreActive ||
98 self.groups_i_can(:read).select { |x| x.match(/-f+$/) }.first)
101 def groups_i_can(verb)
102 my_groups = self.group_permissions(VAL_FOR_PERM[verb]).keys
104 my_groups << anonymous_group_uuid
110 return true if is_admin
111 actions.each do |action, target|
113 if target.respond_to? :uuid
114 target_uuid = target.uuid
117 target = ArvadosModel.find_by_uuid(target_uuid)
120 next if target_uuid == self.uuid
122 target_owner_uuid = target.owner_uuid if target.respond_to? :owner_uuid
124 user_uuids_subquery = USER_UUIDS_SUBQUERY_TEMPLATE % {user: "$1", perm_level: "$3"}
126 unless ActiveRecord::Base.connection.
128 SELECT 1 FROM #{PERMISSION_VIEW}
129 WHERE user_uuid in (#{user_uuids_subquery}) and
130 ((target_uuid = $2 and perm_level >= $3)
131 or (target_uuid = $4 and perm_level >= $3 and traverse_owned))
133 # "name" arg is a query label that appears in logs:
137 [nil, VAL_FOR_PERM[action]],
138 [nil, target_owner_uuid]]
146 def before_ownership_change
147 if owner_uuid_changed? and !self.owner_uuid_was.nil?
148 MaterializedPermission.where(user_uuid: owner_uuid_was, target_uuid: uuid).delete_all
149 update_permissions self.owner_uuid_was, self.uuid, REVOKE_PERM
153 def after_ownership_change
154 if saved_change_to_owner_uuid?
155 update_permissions self.owner_uuid, self.uuid, CAN_MANAGE_PERM
159 def clear_permissions
160 MaterializedPermission.where("user_uuid = ? and target_uuid != ?", uuid, uuid).delete_all
163 def remove_self_from_permissions
164 MaterializedPermission.where("target_uuid = ?", uuid).delete_all
165 check_permissions_against_full_refresh
168 # Return a hash of {user_uuid: group_perms}
170 # note: this does not account for permissions that a user gains by
171 # having can_manage on another user.
172 def self.all_group_permissions
174 ActiveRecord::Base.connection.
176 SELECT user_uuid, target_uuid, perm_level
177 FROM #{PERMISSION_VIEW}
180 # "name" arg is a query label that appears in logs:
181 "all_group_permissions").
182 rows.each do |user_uuid, group_uuid, max_p_val|
183 all_perms[user_uuid] ||= {}
184 all_perms[user_uuid][group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
189 # Return a hash of {group_uuid: perm_hash} where perm_hash[:read]
190 # and perm_hash[:write] are true if this user can read and write
191 # objects owned by group_uuid.
192 def group_permissions(level=1)
195 user_uuids_subquery = USER_UUIDS_SUBQUERY_TEMPLATE % {user: "$1", perm_level: "$2"}
197 ActiveRecord::Base.connection.
199 SELECT target_uuid, perm_level
200 FROM #{PERMISSION_VIEW}
201 WHERE user_uuid in (#{user_uuids_subquery}) and perm_level >= $2
203 # "name" arg is a query label that appears in logs:
204 "User.group_permissions",
205 # "binds" arg is an array of [col_id, value] for '$1' vars:
208 rows.each do |group_uuid, max_p_val|
209 group_perms[group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
215 def setup(repo_name: nil, vm_uuid: nil)
216 repo_perm = create_user_repo_link repo_name
217 vm_login_perm = create_vm_login_permission_link(vm_uuid, username) if vm_uuid
218 group_perm = create_user_group_link
220 return [repo_perm, vm_login_perm, group_perm, self].compact
223 # delete user signatures, login, repo, and vm perms, and mark as inactive
225 # delete oid_login_perms for this user
227 # note: these permission links are obsolete, they have no effect
228 # on anything and they are not created for new users.
229 Link.where(tail_uuid: self.email,
230 link_class: 'permission',
231 name: 'can_login').destroy_all
233 # delete repo_perms for this user
234 Link.where(tail_uuid: self.uuid,
235 link_class: 'permission',
236 name: 'can_manage').destroy_all
238 # delete vm_login_perms for this user
239 Link.where(tail_uuid: self.uuid,
240 link_class: 'permission',
241 name: 'can_login').destroy_all
243 # delete "All users" group read permissions for this user
244 Link.where(tail_uuid: self.uuid,
245 head_uuid: all_users_group_uuid,
246 link_class: 'permission',
247 name: 'can_read').destroy_all
249 # delete any signatures by this user
250 Link.where(link_class: 'signature',
251 tail_uuid: self.uuid).destroy_all
253 # delete user preferences (including profile)
256 # mark the user as inactive
257 self.is_active = false
261 def must_unsetup_to_deactivate
262 if !self.new_record? &&
263 self.uuid[0..4] == Rails.configuration.Login.LoginCluster &&
264 self.uuid[0..4] != Rails.configuration.ClusterID
265 # OK to update our local record to whatever the LoginCluster
266 # reports, because self-activate is not allowed.
268 elsif self.is_active_changed? &&
269 self.is_active_was &&
272 # When a user is set up, they are added to the "All users"
273 # group. A user that is part of the "All users" group is
274 # allowed to self-activate.
276 # It doesn't make sense to deactivate a user (set is_active =
277 # false) without first removing them from the "All users" group,
278 # because they would be able to immediately reactivate
281 # The 'unsetup' method removes the user from the "All users"
282 # group (and also sets is_active = false) so send a message
283 # explaining the correct way to deactivate a user.
285 if Link.where(tail_uuid: self.uuid,
286 head_uuid: all_users_group_uuid,
287 link_class: 'permission',
288 name: 'can_read').any?
289 errors.add :is_active, "cannot be set to false directly, use the 'Deactivate' button on Workbench, or the 'unsetup' API call"
294 def set_initial_username(requested: false)
295 if !requested.is_a?(String) || requested.empty?
296 email_parts = email.partition("@")
297 local_parts = email_parts.first.partition("+")
298 if email_parts.any?(&:empty?)
300 elsif not local_parts.first.empty?
301 requested = local_parts.first
303 requested = email_parts.first
306 requested.sub!(/^[^A-Za-z]+/, "")
307 requested.gsub!(/[^A-Za-z0-9]/, "")
308 unless requested.empty?
309 self.username = find_usable_username_from(requested)
313 def update_uuid(new_uuid:)
314 if !current_user.andand.is_admin
315 raise PermissionDeniedError
317 if uuid == system_user_uuid || uuid == anonymous_user_uuid
318 raise "update_uuid cannot update system accounts"
320 if self.class != self.class.resource_class_for_uuid(new_uuid)
321 raise "invalid new_uuid #{new_uuid.inspect}"
323 transaction(requires_new: true) do
327 save!(validate: false)
328 change_all_uuid_refs(old_uuid: old_uuid, new_uuid: new_uuid)
329 ActiveRecord::Base.connection.exec_update %{
330 update #{PERMISSION_VIEW} set user_uuid=$1 where user_uuid = $2
332 'User.update_uuid.update_permissions_user_uuid',
335 ActiveRecord::Base.connection.exec_update %{
336 update #{PERMISSION_VIEW} set target_uuid=$1 where target_uuid = $2
338 'User.update_uuid.update_permissions_target_uuid',
344 # Move this user's (i.e., self's) owned items to new_owner_uuid and
345 # new_user_uuid (for things normally owned directly by the user).
347 # If redirect_auth is true, also reassign auth tokens and ssh keys,
348 # and redirect this account to redirect_to_user_uuid, i.e., when a
349 # caller authenticates to this account in the future, the account
350 # redirect_to_user_uuid account will be used instead.
352 # current_user must have admin privileges, i.e., the caller is
353 # responsible for checking permission to do this.
354 def merge(new_owner_uuid:, new_user_uuid:, redirect_to_new_user:)
355 raise PermissionDeniedError if !current_user.andand.is_admin
356 raise "Missing new_owner_uuid" if !new_owner_uuid
357 raise "Missing new_user_uuid" if !new_user_uuid
358 transaction(requires_new: true) do
360 raise "cannot merge an already merged user" if self.redirect_to_user_uuid
362 new_user = User.where(uuid: new_user_uuid).first
363 raise "user does not exist" if !new_user
364 raise "cannot merge to an already merged user" if new_user.redirect_to_user_uuid
366 self.clear_permissions
367 new_user.clear_permissions
369 # If 'self' is a remote user, don't transfer authorizations
370 # (i.e. ability to access the account) to the new user, because
371 # that gives the remote site the ability to access the 'new'
372 # user account that takes over the 'self' account.
374 # If 'self' is a local user, it is okay to transfer
375 # authorizations, even if the 'new' user is a remote account,
376 # because the remote site does not gain the ability to access an
377 # account it could not before.
379 if redirect_to_new_user and self.uuid[0..4] == Rails.configuration.ClusterID
380 # Existing API tokens and ssh keys are updated to authenticate
382 ApiClientAuthorization.
384 update_all(user_id: new_user.id)
387 [AuthorizedKey, :owner_uuid],
388 [AuthorizedKey, :authorized_user_uuid],
394 # Destroy API tokens and ssh keys associated with the old
396 ApiClientAuthorization.where(user_id: id).destroy_all
397 AuthorizedKey.where(owner_uuid: uuid).destroy_all
398 AuthorizedKey.where(authorized_user_uuid: uuid).destroy_all
405 # References to the old user UUID in the context of a user ID
406 # (rather than a "home project" in the project hierarchy) are
407 # updated to point to the new user.
408 user_updates.each do |klass, column|
409 klass.where(column => uuid).update_all(column => new_user.uuid)
412 # Need to update repository names to new username
414 old_repo_name_re = /^#{Regexp.escape(username)}\//
415 Repository.where(:owner_uuid => uuid).each do |repo|
416 repo.owner_uuid = new_user.uuid
417 repo_name_sub = "#{new_user.username}/"
418 name = repo.name.sub(old_repo_name_re, repo_name_sub)
419 while (conflict = Repository.where(:name => name).first) != nil
420 repo_name_sub += "migrated"
421 name = repo.name.sub(old_repo_name_re, repo_name_sub)
428 # References to the merged user's "home project" are updated to
429 # point to new_owner_uuid.
430 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
431 next if [ApiClientAuthorization,
435 Repository].include?(klass)
436 next if !klass.columns.collect(&:name).include?('owner_uuid')
437 klass.where(owner_uuid: uuid).update_all(owner_uuid: new_owner_uuid)
440 if redirect_to_new_user
441 update_attributes!(redirect_to_user_uuid: new_user.uuid, username: nil)
443 skip_check_permissions_against_full_refresh do
444 update_permissions self.uuid, self.uuid, CAN_MANAGE_PERM
445 update_permissions new_user.uuid, new_user.uuid, CAN_MANAGE_PERM
446 update_permissions new_user.owner_uuid, new_user.uuid, CAN_MANAGE_PERM
448 update_permissions self.owner_uuid, self.uuid, CAN_MANAGE_PERM
455 while (uuid = user.redirect_to_user_uuid)
457 nextuser = User.unscoped.find_by_uuid(uuid)
459 raise Exception.new("user uuid #{user.uuid} redirects to nonexistent uuid '#{uuid}'")
464 raise "Starting from #{self.uuid} redirect_to_user_uuid exceeded maximum number of redirects"
470 def self.register info
471 # login info expected fields, all can be optional but at minimum
472 # must supply either 'identity_url' or 'email'
484 identity_url = info['identity_url']
486 if identity_url && identity_url.length > 0
487 # Only local users can create sessions, hence uuid_like_pattern
489 user = User.unscoped.where('identity_url = ? and uuid like ?',
491 User.uuid_like_pattern).first
492 primary_user = user.redirects_to if user
496 # identity url is unset or didn't find matching record.
497 emails = [info['email']] + (info['alternate_emails'] || [])
498 emails.select! {|em| !em.nil? && !em.empty?}
500 User.unscoped.where('email in (?) and uuid like ?',
502 User.uuid_like_pattern).each do |user|
504 primary_user = user.redirects_to
505 elsif primary_user.uuid != user.redirects_to.uuid
506 raise "Ambiguous email address, directs to both #{primary_user.uuid} and #{user.redirects_to.uuid}"
512 # New user registration
513 primary_user = User.new(:owner_uuid => system_user_uuid,
515 :is_active => Rails.configuration.Users.NewUsersAreActive)
517 primary_user.set_initial_username(requested: info['username']) if info['username'] && !info['username'].blank?
518 primary_user.identity_url = info['identity_url'] if identity_url
521 primary_user.email = info['email'] if info['email']
522 primary_user.first_name = info['first_name'] if info['first_name']
523 primary_user.last_name = info['last_name'] if info['last_name']
525 if (!primary_user.email or primary_user.email.empty?) and (!primary_user.identity_url or primary_user.identity_url.empty?)
526 raise "Must have supply at least one of 'email' or 'identity_url' to User.register"
529 act_as_system_user do
538 def change_all_uuid_refs(old_uuid:, new_uuid:)
539 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
540 klass.columns.each do |col|
541 if col.name.end_with?('_uuid')
542 column = col.name.to_sym
543 klass.where(column => old_uuid).update_all(column => new_uuid)
549 def ensure_ownership_path_leads_to_user
553 def permission_to_update
554 if username_changed? || redirect_to_user_uuid_changed? || email_changed?
555 current_user.andand.is_admin
557 # users must be able to update themselves (even if they are
558 # inactive) in order to create sessions
559 self == current_user or super
563 def permission_to_create
564 current_user.andand.is_admin or
565 (self == current_user &&
566 self.redirect_to_user_uuid.nil? &&
567 self.is_active == Rails.configuration.Users.NewUsersAreActive)
571 return if self.uuid.end_with?('anonymouspublic')
572 if (User.where("email = ?",self.email).where(:is_admin => true).count == 0 and
573 !Rails.configuration.Users.AutoAdminUserWithEmail.empty? and self.email == Rails.configuration.Users["AutoAdminUserWithEmail"]) or
574 (User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and
575 Rails.configuration.Users.AutoAdminFirstUser)
577 self.is_active = true
581 def find_usable_username_from(basename)
582 # If "basename" is a usable username, return that.
583 # Otherwise, find a unique username "basenameN", where N is the
584 # smallest integer greater than 1, and return that.
585 # Return nil if a unique username can't be found after reasonable
587 quoted_name = self.class.connection.quote_string(basename)
588 next_username = basename
590 while Rails.configuration.Users.AutoSetupUsernameBlacklist[next_username]
592 next_username = "%s%i" % [basename, next_suffix]
594 0.upto(6).each do |suffix_len|
595 pattern = "%s%s" % [quoted_name, "_" * suffix_len]
597 where("username like '#{pattern}'").
599 order('username asc').
601 if other_user.username > next_username
603 elsif other_user.username == next_username
605 next_username = "%s%i" % [basename, next_suffix]
608 return next_username if (next_username.size <= pattern.size)
613 def prevent_privilege_escalation
614 if current_user.andand.is_admin
617 if self.is_active_changed?
618 if self.is_active != self.is_active_was
619 logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_active_was} to #{self.is_active} for #{self.uuid}"
620 self.is_active = self.is_active_was
623 if self.is_admin_changed?
624 if self.is_admin != self.is_admin_was
625 logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
626 self.is_admin = self.is_admin_was
632 def prevent_inactive_admin
633 if self.is_admin and not self.is_active
634 # There is no known use case for the strange set of permissions
635 # that would result from this change. It's safest to assume it's
636 # a mistake and disallow it outright.
637 raise "Admin users cannot be inactive"
642 def search_permissions(start, graph, merged={}, upstream_mask=nil, upstream_path={})
643 nextpaths = graph[start]
644 return merged if !nextpaths
645 return merged if upstream_path.has_key? start
646 upstream_path[start] = true
647 upstream_mask ||= ALL_PERMISSIONS
648 nextpaths.each do |head, mask|
651 merged[head][k] ||= v if upstream_mask[k]
653 search_permissions(head, graph, merged, upstream_mask.select { |k,v| v && merged[head][k] }, upstream_path)
655 upstream_path.delete start
659 def create_user_repo_link(repo_name)
660 # repo_name is optional
662 logger.warn ("Repository name not given for #{self.uuid}.")
666 repo = Repository.where(owner_uuid: uuid, name: repo_name).first_or_create!
667 logger.info { "repo uuid: " + repo[:uuid] }
668 repo_perm = Link.where(tail_uuid: uuid, head_uuid: repo.uuid,
669 link_class: "permission",
670 name: "can_manage").first_or_create!
671 logger.info { "repo permission: " + repo_perm[:uuid] }
675 # create login permission for the given vm_uuid, if it does not already exist
676 def create_vm_login_permission_link(vm_uuid, repo_name)
677 # vm uuid is optional
678 return if vm_uuid == ""
680 vm = VirtualMachine.where(uuid: vm_uuid).first
682 logger.warn "Could not find virtual machine for #{vm_uuid.inspect}"
683 raise "No vm found for #{vm_uuid}"
686 logger.info { "vm uuid: " + vm[:uuid] }
688 tail_uuid: uuid, head_uuid: vm.uuid,
689 link_class: "permission", name: "can_login",
694 select { |link| link.properties["username"] == repo_name }.
698 create(login_attrs.merge(properties: {"username" => repo_name}))
700 logger.info { "login permission: " + login_perm[:uuid] }
704 # add the user to the 'All users' group
705 def create_user_group_link
706 return (Link.where(tail_uuid: self.uuid,
707 head_uuid: all_users_group_uuid,
708 link_class: 'permission',
709 name: 'can_read').first or
710 Link.create(tail_uuid: self.uuid,
711 head_uuid: all_users_group_uuid,
712 link_class: 'permission',
716 # Give the special "System group" permission to manage this user and
717 # all of this user's stuff.
718 def add_system_group_permission_link
719 return true if uuid == system_user_uuid
720 act_as_system_user do
721 Link.create(link_class: 'permission',
723 tail_uuid: system_group_uuid,
724 head_uuid: self.uuid)
728 # Send admin notifications
729 def send_admin_notifications
730 AdminNotifier.new_user(self).deliver_now
731 if not self.is_active then
732 AdminNotifier.new_inactive_user(self).deliver_now
736 # Automatically setup if is_active flag turns on
737 def setup_on_activate
738 return if [system_user_uuid, anonymous_user_uuid].include?(self.uuid)
740 (new_record? || saved_change_to_is_active? || will_save_change_to_is_active?)
745 # Automatically setup new user during creation
746 def auto_setup_new_user
749 create_vm_login_permission_link(Rails.configuration.Users.AutoSetupNewUsersWithVmUUID,
751 repo_name = "#{username}/#{username}"
752 if Rails.configuration.Users.AutoSetupNewUsersWithRepository and
753 Repository.where(name: repo_name).first.nil?
754 repo = Repository.create!(name: repo_name, owner_uuid: uuid)
755 Link.create!(tail_uuid: uuid, head_uuid: repo.uuid,
756 link_class: "permission", name: "can_manage")
761 # Send notification if the user saved profile for the first time
762 def send_profile_created_notification
763 if saved_change_to_prefs?
764 if prefs_before_last_save.andand.empty? || !prefs_before_last_save.andand['profile']
765 profile_notification_address = Rails.configuration.Users.UserProfileNotificationAddress
766 ProfileNotifier.profile_created(self, profile_notification_address).deliver_now if profile_notification_address and !profile_notification_address.empty?
771 def verify_repositories_empty
772 unless repositories.first.nil?
773 errors.add(:username, "can't be unset when the user owns repositories")
778 def sync_repository_names
779 old_name_re = /^#{Regexp.escape(username_before_last_save)}\//
780 name_sub = "#{username}/"
781 repositories.find_each do |repo|
782 repo.name = repo.name.sub(old_name_re, name_sub)