X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f5e7711b2b8b7f4d191b8fb47078cddd9c0c6727..e27e7a7e8b03f48e7d512ff714cc79fb60d92ff9:/services/api/app/models/user.rb diff --git a/services/api/app/models/user.rb b/services/api/app/models/user.rb index e87fb3159d..ab8799d6bf 100644 --- a/services/api/app/models/user.rb +++ b/services/api/app/models/user.rb @@ -5,15 +5,19 @@ class User < ArvadosModel serialize :prefs, Hash has_many :api_client_authorizations before_update :prevent_privilege_escalation + before_update :prevent_inactive_admin + before_create :check_auto_admin + after_create AdminNotifier - has_many :authorized_keys, :foreign_key => :authorized_user, :primary_key => :uuid + has_many :authorized_keys, :foreign_key => :authorized_user_uuid, :primary_key => :uuid - api_accessible :superuser, :extend => :common do |t| + api_accessible :user, extend: :common do |t| t.add :email t.add :full_name t.add :first_name t.add :last_name t.add :identity_url + t.add :is_active t.add :is_admin t.add :prefs end @@ -37,10 +41,10 @@ class User < ArvadosModel next if target_uuid == self.uuid next if (group_permissions[target_uuid] and group_permissions[target_uuid][action]) - if target.respond_to? :owner - next if target.owner == self.uuid - next if (group_permissions[target.owner] and - group_permissions[target.owner][action]) + if target.respond_to? :owner_uuid + next if target.owner_uuid == self.uuid + next if (group_permissions[target.owner_uuid] and + group_permissions[target.owner_uuid][action]) end return false end @@ -53,23 +57,56 @@ class User < ArvadosModel protected + def permission_to_update + # users must be able to update themselves (even if they are + # inactive) in order to create sessions + self == current_user or super + end + def permission_to_create - Thread.current[:user] == self or - (Thread.current[:user] and Thread.current[:user].is_admin) + current_user.andand.is_admin or + (self == current_user and + self.is_active == Rails.configuration.new_users_are_active) + end + + def check_auto_admin + if User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and not Rails.configuration.auto_admin_user.nil? + if current_user.email == Rails.configuration.auto_admin_user + self.is_admin = true + self.is_active = true + end + end end def prevent_privilege_escalation - if self.is_admin_changed? and !current_user.is_admin - if current_user.uuid == self.uuid - if self.is_admin != self.is_admin_was - logger.warn "User #{self.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin}" - self.is_admin = self.is_admin_was - end + if current_user.andand.is_admin + return true + end + if self.is_active_changed? + if self.is_active != self.is_active_was + logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}" + self.is_active = self.is_active_was + end + end + if self.is_admin_changed? + if self.is_admin != self.is_admin_was + logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}" + self.is_admin = self.is_admin_was end end true end + def prevent_inactive_admin + if self.is_admin and not self.is_active + # There is no known use case for the strange set of permissions + # that would result from this change. It's safest to assume it's + # a mistake and disallow it outright. + raise "Admin users cannot be inactive" + end + true + end + def group_permissions Rails.cache.fetch "groups_for_user_#{self.uuid}" do permissions_from = {}