21059: Testing email notification WIP
[arvados.git] / services / api / app / models / user.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 require 'can_be_an_owner'
6
7 class User < ArvadosModel
8   include HasUuid
9   include KindAndEtag
10   include CommonApiTemplate
11   include CanBeAnOwner
12   extend CurrentApiClient
13
14   serialize :prefs, Hash
15   has_many :api_client_authorizations
16   validates(:username,
17             format: {
18               with: /\A[A-Za-z][A-Za-z0-9]*\z/,
19               message: "must begin with a letter and contain only alphanumerics",
20             },
21             uniqueness: true,
22             allow_nil: true)
23   validate :must_unsetup_to_deactivate
24   validate :identity_url_nil_if_empty
25   before_update :prevent_privilege_escalation
26   before_update :prevent_inactive_admin
27   before_update :prevent_nonadmin_system_root
28   before_update :verify_repositories_empty, :if => Proc.new {
29     username.nil? and username_changed?
30   }
31   after_update :setup_on_activate
32
33   before_create :check_auto_admin
34   before_create :set_initial_username, :if => Proc.new {
35     username.nil? and email
36   }
37   before_create :active_is_not_nil
38   after_create :after_ownership_change
39   after_create :setup_on_activate
40   after_create :add_system_group_permission_link
41   after_create :auto_setup_new_user, :if => Proc.new {
42     Rails.configuration.Users.AutoSetupNewUsers and
43     (uuid != system_user_uuid) and
44     (uuid != anonymous_user_uuid) and
45     (uuid[0..4] == Rails.configuration.ClusterID)
46   }
47   after_create :send_admin_notifications
48
49   before_update :before_ownership_change
50   after_update :after_ownership_change
51   after_update :send_profile_created_notification
52   after_update :sync_repository_names, :if => Proc.new {
53     (uuid != system_user_uuid) and
54     saved_change_to_username? and
55     (not username_before_last_save.nil?)
56   }
57   before_destroy :clear_permissions
58   after_destroy :remove_self_from_permissions
59
60   has_many :authorized_keys, foreign_key: 'authorized_user_uuid', primary_key: 'uuid'
61   has_many :repositories, foreign_key: 'owner_uuid', primary_key: 'uuid'
62
63   default_scope { where('redirect_to_user_uuid is null') }
64
65   api_accessible :user, extend: :common do |t|
66     t.add :email
67     t.add :username
68     t.add :full_name
69     t.add :first_name
70     t.add :last_name
71     t.add :identity_url
72     t.add :is_active
73     t.add :is_admin
74     t.add :is_invited
75     t.add :prefs
76     t.add :writable_by
77     t.add :can_write
78     t.add :can_manage
79   end
80
81   ALL_PERMISSIONS = {read: true, write: true, manage: true}
82
83   # Map numeric permission levels (see lib/create_permission_view.sql)
84   # back to read/write/manage flags.
85   PERMS_FOR_VAL =
86     [{},
87      {read: true},
88      {read: true, write: true},
89      {read: true, write: true, manage: true}]
90
91   VAL_FOR_PERM =
92     {:read => 1,
93      :write => 2,
94      :unfreeze => 3,
95      :manage => 3}
96
97
98   def full_name
99     "#{first_name} #{last_name}".strip
100   end
101
102   def is_invited
103     !!(self.is_active ||
104        Rails.configuration.Users.NewUsersAreActive ||
105        self.groups_i_can(:read).select { |x| x.match(/-f+$/) }.first)
106   end
107
108   def self.ignored_select_attributes
109     super + ["full_name", "is_invited"]
110   end
111
112   def groups_i_can(verb)
113     my_groups = self.group_permissions(VAL_FOR_PERM[verb]).keys
114     if verb == :read
115       my_groups << anonymous_group_uuid
116     end
117     my_groups
118   end
119
120   def can?(actions)
121     actions.each do |action, target|
122       unless target.nil?
123         if target.respond_to? :uuid
124           target_uuid = target.uuid
125         else
126           target_uuid = target
127           target = ArvadosModel.find_by_uuid(target_uuid)
128         end
129       end
130       next if target_uuid == self.uuid
131
132       if action == :write && target && !target.new_record? &&
133          target.respond_to?(:frozen_by_uuid) &&
134          target.frozen_by_uuid_was
135         # Just an optimization to skip the PERMISSION_VIEW and
136         # FrozenGroup queries below
137         return false
138       end
139
140       target_owner_uuid = target.owner_uuid if target.respond_to? :owner_uuid
141
142       user_uuids_subquery = USER_UUIDS_SUBQUERY_TEMPLATE % {user: "$1", perm_level: "$3"}
143
144       if !is_admin && !ActiveRecord::Base.connection.
145         exec_query(%{
146 SELECT 1 FROM #{PERMISSION_VIEW}
147   WHERE user_uuid in (#{user_uuids_subquery}) and
148         ((target_uuid = $2 and perm_level >= $3)
149          or (target_uuid = $4 and perm_level >= $3 and traverse_owned))
150 },
151                   # "name" arg is a query label that appears in logs:
152                    "user_can_query",
153                    [self.uuid,
154                     target_uuid,
155                     VAL_FOR_PERM[action],
156                     target_owner_uuid]
157                   ).any?
158         return false
159       end
160
161       if action == :write
162         if FrozenGroup.where(uuid: [target_uuid, target_owner_uuid]).any?
163           # self or parent is frozen
164           return false
165         end
166       elsif action == :unfreeze
167         # "unfreeze" permission means "can write, but only if
168         # explicitly un-freezing at the same time" (see
169         # ArvadosModel#ensure_owner_uuid_is_permitted). If the
170         # permission query above passed the permission level of
171         # :unfreeze (which is the same as :manage), and the parent
172         # isn't also frozen, then un-freeze is allowed.
173         if FrozenGroup.where(uuid: target_owner_uuid).any?
174           return false
175         end
176       end
177     end
178     true
179   end
180
181   def before_ownership_change
182     if owner_uuid_changed? and !self.owner_uuid_was.nil?
183       MaterializedPermission.where(user_uuid: owner_uuid_was, target_uuid: uuid).delete_all
184       update_permissions self.owner_uuid_was, self.uuid, REVOKE_PERM
185     end
186   end
187
188   def after_ownership_change
189     if saved_change_to_owner_uuid?
190       update_permissions self.owner_uuid, self.uuid, CAN_MANAGE_PERM
191     end
192   end
193
194   def clear_permissions
195     MaterializedPermission.where("user_uuid = ? and target_uuid != ?", uuid, uuid).delete_all
196   end
197
198   def forget_cached_group_perms
199     @group_perms = nil
200   end
201
202   def remove_self_from_permissions
203     MaterializedPermission.where("target_uuid = ?", uuid).delete_all
204     check_permissions_against_full_refresh
205   end
206
207   # Return a hash of {user_uuid: group_perms}
208   #
209   # note: this does not account for permissions that a user gains by
210   # having can_manage on another user.
211   def self.all_group_permissions
212     all_perms = {}
213     ActiveRecord::Base.connection.
214       exec_query(%{
215 SELECT user_uuid, target_uuid, perm_level
216                   FROM #{PERMISSION_VIEW}
217                   WHERE traverse_owned
218 },
219                   # "name" arg is a query label that appears in logs:
220                  "all_group_permissions").
221       rows.each do |user_uuid, group_uuid, max_p_val|
222       all_perms[user_uuid] ||= {}
223       all_perms[user_uuid][group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
224     end
225     all_perms
226   end
227
228   # Return a hash of {group_uuid: perm_hash} where perm_hash[:read]
229   # and perm_hash[:write] are true if this user can read and write
230   # objects owned by group_uuid.
231   def group_permissions(level=1)
232     @group_perms ||= {}
233     if @group_perms.empty?
234       user_uuids_subquery = USER_UUIDS_SUBQUERY_TEMPLATE % {user: "$1", perm_level: 1}
235
236       ActiveRecord::Base.connection.
237         exec_query(%{
238 SELECT target_uuid, perm_level
239   FROM #{PERMISSION_VIEW}
240   WHERE user_uuid in (#{user_uuids_subquery}) and perm_level >= 1
241 },
242                    # "name" arg is a query label that appears in logs:
243                    "User.group_permissions",
244                    # "binds" arg is an array of [col_id, value] for '$1' vars:
245                    [uuid]).
246         rows.each do |group_uuid, max_p_val|
247         @group_perms[group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
248       end
249     end
250
251     case level
252     when 1
253       @group_perms
254     when 2
255       @group_perms.select {|k,v| v[:write] }
256     when 3
257       @group_perms.select {|k,v| v[:manage] }
258     else
259       raise "level must be 1, 2 or 3"
260     end
261   end
262
263   # create links
264   def setup(repo_name: nil, vm_uuid: nil, send_notification_email: nil)
265     newly_invited = Link.where(tail_uuid: self.uuid,
266                               head_uuid: all_users_group_uuid,
267                               link_class: 'permission').empty?
268
269     # Add can_read link from this user to "all users" which makes this
270     # user "invited", and (depending on config) a link in the opposite
271     # direction which makes this user visible to other users.
272     group_perms = add_to_all_users_group
273
274     # Add git repo
275     repo_perm = if (!repo_name.nil? || Rails.configuration.Users.AutoSetupNewUsersWithRepository) and !username.nil?
276                   repo_name ||= "#{username}/#{username}"
277                   create_user_repo_link repo_name
278                 end
279
280     # Add virtual machine
281     if vm_uuid.nil? and !Rails.configuration.Users.AutoSetupNewUsersWithVmUUID.empty?
282       vm_uuid = Rails.configuration.Users.AutoSetupNewUsersWithVmUUID
283     end
284
285     vm_login_perm = if vm_uuid && username
286                       create_vm_login_permission_link(vm_uuid, username)
287                     end
288
289     # Send welcome email
290     if send_notification_email.nil?
291       send_notification_email = Rails.configuration.Mail.SendUserSetupNotificationEmail
292     end
293
294     if newly_invited and send_notification_email and !Rails.configuration.Users.UserSetupMailText.empty?
295       begin
296         UserNotifier.account_is_setup(self).deliver_now
297       rescue => e
298         logger.warn "Failed to send email to #{self.email}: #{e}"
299       end
300     end
301
302     forget_cached_group_perms
303
304     return [repo_perm, vm_login_perm, *group_perms, self].compact
305   end
306
307   # delete user signatures, login, repo, and vm perms, and mark as inactive
308   def unsetup
309     if self.uuid == system_user_uuid
310       raise "System root user cannot be deactivated"
311     end
312
313     # delete oid_login_perms for this user
314     #
315     # note: these permission links are obsolete anyway: they have no
316     # effect on anything and they are not created for new users.
317     Link.where(tail_uuid: self.email,
318                link_class: 'permission',
319                name: 'can_login').destroy_all
320
321     # Delete all sharing permissions so (a) the user doesn't
322     # automatically regain access to anything if re-setup in future,
323     # (b) the user doesn't appear in "currently shared with" lists
324     # shown to other users.
325     #
326     # Notably this includes the can_read -> "all users" group
327     # permission.
328     Link.where(tail_uuid: self.uuid,
329                link_class: 'permission').destroy_all
330
331     # delete any signatures by this user
332     Link.where(link_class: 'signature',
333                tail_uuid: self.uuid).destroy_all
334
335     # delete tokens for this user
336     ApiClientAuthorization.where(user_id: self.id).destroy_all
337     # delete ssh keys for this user
338     AuthorizedKey.where(owner_uuid: self.uuid).destroy_all
339     AuthorizedKey.where(authorized_user_uuid: self.uuid).destroy_all
340
341     # delete user preferences (including profile)
342     self.prefs = {}
343
344     # mark the user as inactive
345     self.is_admin = false  # can't be admin and inactive
346     self.is_active = false
347     forget_cached_group_perms
348     self.save!
349   end
350
351   # Called from ArvadosModel
352   def set_default_owner
353     self.owner_uuid = system_user_uuid
354   end
355
356   def must_unsetup_to_deactivate
357     if !self.new_record? &&
358        self.uuid[0..4] == Rails.configuration.Login.LoginCluster &&
359        self.uuid[0..4] != Rails.configuration.ClusterID
360       # OK to update our local record to whatever the LoginCluster
361       # reports, because self-activate is not allowed.
362       return
363     elsif self.is_active_changed? &&
364        self.is_active_was &&
365        !self.is_active
366
367       # When a user is set up, they are added to the "All users"
368       # group.  A user that is part of the "All users" group is
369       # allowed to self-activate.
370       #
371       # It doesn't make sense to deactivate a user (set is_active =
372       # false) without first removing them from the "All users" group,
373       # because they would be able to immediately reactivate
374       # themselves.
375       #
376       # The 'unsetup' method removes the user from the "All users"
377       # group (and also sets is_active = false) so send a message
378       # explaining the correct way to deactivate a user.
379       #
380       if Link.where(tail_uuid: self.uuid,
381                     head_uuid: all_users_group_uuid,
382                     link_class: 'permission').any?
383         errors.add :is_active, "cannot be set to false directly, use the 'Deactivate' button on Workbench, or the 'unsetup' API call"
384       end
385     end
386   end
387
388   def set_initial_username(requested: false)
389     if (!requested.is_a?(String) || requested.empty?) and email
390       email_parts = email.partition("@")
391       local_parts = email_parts.first.partition("+")
392       if email_parts.any?(&:empty?)
393         return
394       elsif not local_parts.first.empty?
395         requested = local_parts.first
396       else
397         requested = email_parts.first
398       end
399     end
400     if requested
401       requested.sub!(/^[^A-Za-z]+/, "")
402       requested.gsub!(/[^A-Za-z0-9]/, "")
403     end
404     unless !requested || requested.empty?
405       self.username = find_usable_username_from(requested)
406     end
407   end
408
409   def active_is_not_nil
410     self.is_active = false if self.is_active.nil?
411     self.is_admin = false if self.is_admin.nil?
412   end
413
414   # Move this user's (i.e., self's) owned items to new_owner_uuid and
415   # new_user_uuid (for things normally owned directly by the user).
416   #
417   # If redirect_auth is true, also reassign auth tokens and ssh keys,
418   # and redirect this account to redirect_to_user_uuid, i.e., when a
419   # caller authenticates to this account in the future, the account
420   # redirect_to_user_uuid account will be used instead.
421   #
422   # current_user must have admin privileges, i.e., the caller is
423   # responsible for checking permission to do this.
424   def merge(new_owner_uuid:, new_user_uuid:, redirect_to_new_user:)
425     raise PermissionDeniedError if !current_user.andand.is_admin
426     raise "Missing new_owner_uuid" if !new_owner_uuid
427     raise "Missing new_user_uuid" if !new_user_uuid
428     transaction(requires_new: true) do
429       reload
430       raise "cannot merge an already merged user" if self.redirect_to_user_uuid
431
432       new_user = User.where(uuid: new_user_uuid).first
433       raise "user does not exist" if !new_user
434       raise "cannot merge to an already merged user" if new_user.redirect_to_user_uuid
435
436       self.clear_permissions
437       new_user.clear_permissions
438
439       # If 'self' is a remote user, don't transfer authorizations
440       # (i.e. ability to access the account) to the new user, because
441       # that gives the remote site the ability to access the 'new'
442       # user account that takes over the 'self' account.
443       #
444       # If 'self' is a local user, it is okay to transfer
445       # authorizations, even if the 'new' user is a remote account,
446       # because the remote site does not gain the ability to access an
447       # account it could not before.
448
449       if redirect_to_new_user and self.uuid[0..4] == Rails.configuration.ClusterID
450         # Existing API tokens and ssh keys are updated to authenticate
451         # to the new user.
452         ApiClientAuthorization.
453           where(user_id: id).
454           update_all(user_id: new_user.id)
455
456         user_updates = [
457           [AuthorizedKey, :owner_uuid],
458           [AuthorizedKey, :authorized_user_uuid],
459           [Link, :owner_uuid],
460           [Link, :tail_uuid],
461           [Link, :head_uuid],
462         ]
463       else
464         # Destroy API tokens and ssh keys associated with the old
465         # user.
466         ApiClientAuthorization.where(user_id: id).destroy_all
467         AuthorizedKey.where(owner_uuid: uuid).destroy_all
468         AuthorizedKey.where(authorized_user_uuid: uuid).destroy_all
469         user_updates = [
470           [Link, :owner_uuid],
471           [Link, :tail_uuid]
472         ]
473       end
474
475       # References to the old user UUID in the context of a user ID
476       # (rather than a "home project" in the project hierarchy) are
477       # updated to point to the new user.
478       user_updates.each do |klass, column|
479         klass.where(column => uuid).update_all(column => new_user.uuid)
480       end
481
482       # Need to update repository names to new username
483       if username
484         old_repo_name_re = /^#{Regexp.escape(username)}\//
485         Repository.where(:owner_uuid => uuid).each do |repo|
486           repo.owner_uuid = new_user.uuid
487           repo_name_sub = "#{new_user.username}/"
488           name = repo.name.sub(old_repo_name_re, repo_name_sub)
489           while (conflict = Repository.where(:name => name).first) != nil
490             repo_name_sub += "migrated"
491             name = repo.name.sub(old_repo_name_re, repo_name_sub)
492           end
493           repo.name = name
494           repo.save!
495         end
496       end
497
498       # References to the merged user's "home project" are updated to
499       # point to new_owner_uuid.
500       ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
501         next if [ApiClientAuthorization,
502                  AuthorizedKey,
503                  Link,
504                  Log,
505                  Repository].include?(klass)
506         next if !klass.columns.collect(&:name).include?('owner_uuid')
507         klass.where(owner_uuid: uuid).update_all(owner_uuid: new_owner_uuid)
508       end
509
510       if redirect_to_new_user
511         update!(redirect_to_user_uuid: new_user.uuid, username: nil)
512       end
513       skip_check_permissions_against_full_refresh do
514         update_permissions self.uuid, self.uuid, CAN_MANAGE_PERM, nil, true
515         update_permissions new_user.uuid, new_user.uuid, CAN_MANAGE_PERM, nil, true
516         update_permissions new_user.owner_uuid, new_user.uuid, CAN_MANAGE_PERM, nil, true
517       end
518       update_permissions self.owner_uuid, self.uuid, CAN_MANAGE_PERM, nil, true
519     end
520   end
521
522   def redirects_to
523     user = self
524     redirects = 0
525     while (uuid = user.redirect_to_user_uuid)
526       break if uuid.empty?
527       nextuser = User.unscoped.find_by_uuid(uuid)
528       if !nextuser
529         raise Exception.new("user uuid #{user.uuid} redirects to nonexistent uuid '#{uuid}'")
530       end
531       user = nextuser
532       redirects += 1
533       if redirects > 15
534         raise "Starting from #{self.uuid} redirect_to_user_uuid exceeded maximum number of redirects"
535       end
536     end
537     user
538   end
539
540   def self.register info
541     # login info expected fields, all can be optional but at minimum
542     # must supply either 'identity_url' or 'email'
543     #
544     #   email
545     #   first_name
546     #   last_name
547     #   username
548     #   alternate_emails
549     #   identity_url
550
551     primary_user = nil
552
553     # local database
554     identity_url = info['identity_url']
555
556     if identity_url && identity_url.length > 0
557       # Only local users can create sessions, hence uuid_like_pattern
558       # here.
559       user = User.unscoped.where('identity_url = ? and uuid like ?',
560                                  identity_url,
561                                  User.uuid_like_pattern).first
562       primary_user = user.redirects_to if user
563     end
564
565     if !primary_user
566       # identity url is unset or didn't find matching record.
567       emails = [info['email']] + (info['alternate_emails'] || [])
568       emails.select! {|em| !em.nil? && !em.empty?}
569
570       User.unscoped.where('email in (?) and uuid like ?',
571                           emails,
572                           User.uuid_like_pattern).each do |user|
573         if !primary_user
574           primary_user = user.redirects_to
575         elsif primary_user.uuid != user.redirects_to.uuid
576           raise "Ambiguous email address, directs to both #{primary_user.uuid} and #{user.redirects_to.uuid}"
577         end
578       end
579     end
580
581     if !primary_user
582       # New user registration
583       primary_user = User.new(:owner_uuid => system_user_uuid,
584                               :is_admin => false,
585                               :is_active => Rails.configuration.Users.NewUsersAreActive)
586
587       primary_user.set_initial_username(requested: info['username']) if info['username'] && !info['username'].blank?
588       primary_user.identity_url = info['identity_url'] if identity_url
589     end
590
591     primary_user.email = info['email'] if info['email']
592     primary_user.first_name = info['first_name'] if info['first_name']
593     primary_user.last_name = info['last_name'] if info['last_name']
594
595     if (!primary_user.email or primary_user.email.empty?) and (!primary_user.identity_url or primary_user.identity_url.empty?)
596       raise "Must have supply at least one of 'email' or 'identity_url' to User.register"
597     end
598
599     act_as_system_user do
600       primary_user.save!
601     end
602
603     primary_user
604   end
605
606   def self.update_remote_user remote_user
607     remote_user = remote_user.symbolize_keys
608     remote_user_prefix = remote_user[:uuid][0..4]
609
610     begin
611       user = User.create_with(email: remote_user[:email],
612                               first_name: remote_user[:first_name],
613                               last_name: remote_user[:last_name],
614       ).find_or_create_by(uuid: remote_user[:uuid])
615     rescue ActiveRecord::RecordNotUnique
616       retry
617     end
618
619     user.with_lock do
620       needupdate = {}
621       [:email, :username, :first_name, :last_name, :prefs].each do |k|
622         v = remote_user[k]
623         if !v.nil? && user.send(k) != v
624           needupdate[k] = v
625         end
626       end
627
628       user.email = needupdate[:email] if needupdate[:email]
629
630       loginCluster = Rails.configuration.Login.LoginCluster
631       if user.username.nil? || user.username == ""
632         # Don't have a username yet, set one
633         needupdate[:username] = user.set_initial_username(requested: remote_user[:username])
634       elsif remote_user_prefix != loginCluster
635         # Upstream is not login cluster, don't try to change the
636         # username once set.
637         needupdate.delete :username
638       end
639
640       if needupdate.length > 0
641         begin
642           user.update!(needupdate)
643         rescue ActiveRecord::RecordInvalid
644           if remote_user_prefix == loginCluster && !needupdate[:username].nil?
645             local_user = User.find_by_username(needupdate[:username])
646             # The username of this record conflicts with an existing,
647             # different user record.  This can happen because the
648             # username changed upstream on the login cluster, or
649             # because we're federated with another cluster with a user
650             # by the same username.  The login cluster is the source
651             # of truth, so change the username on the conflicting
652             # record and retry the update operation.
653             if local_user.uuid != user.uuid
654               new_username = "#{needupdate[:username]}#{rand(99999999)}"
655               Rails.logger.warn("cached username '#{needupdate[:username]}' collision with user '#{local_user.uuid}' - renaming to '#{new_username}' before retrying")
656               local_user.update!({username: new_username})
657               retry
658             end
659           end
660           raise # Not the issue we're handling above
661         end
662       end
663
664       if user.is_invited && (remote_user[:is_invited] == false || remote_user[:is_active] == false)
665         # Remote user is not "invited" or "active" state on their home
666         # cluster, so they should be unsetup, which also makes them
667         # inactive.
668         user.unsetup
669       else
670         if !user.is_invited && remote_user[:is_invited] and
671           (remote_user_prefix == Rails.configuration.Login.LoginCluster or
672            Rails.configuration.Users.AutoSetupNewUsers or
673            Rails.configuration.Users.NewUsersAreActive or
674            Rails.configuration.RemoteClusters[remote_user_prefix].andand["ActivateUsers"])
675           # Remote user is 'invited' and should be set up
676           user.setup
677         end
678
679         if !user.is_active && remote_user[:is_active] && user.is_invited and
680           (remote_user_prefix == Rails.configuration.Login.LoginCluster or
681            Rails.configuration.Users.NewUsersAreActive or
682            Rails.configuration.RemoteClusters[remote_user_prefix].andand["ActivateUsers"])
683           # remote user is active and invited, we need to activate them
684           user.update!(is_active: true)
685         elsif user.is_active && remote_user[:is_active] == false
686           # remote user is not active, we need to de-activate them
687           user.update!(is_active: false)
688         end
689
690         if remote_user_prefix == Rails.configuration.Login.LoginCluster and
691           user.is_active and
692           !remote_user[:is_admin].nil? and
693           user.is_admin != remote_user[:is_admin]
694           # Remote cluster controls our user database, including the
695           # admin flag.
696           user.update!(is_admin: remote_user[:is_admin])
697         end
698       end
699     end
700     user
701   end
702
703   protected
704
705   def self.attributes_required_columns
706     super.merge(
707                 'can_write' => ['owner_uuid', 'uuid'],
708                 'can_manage' => ['owner_uuid', 'uuid'],
709                 )
710   end
711
712   def change_all_uuid_refs(old_uuid:, new_uuid:)
713     ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
714       klass.columns.each do |col|
715         if col.name.end_with?('_uuid')
716           column = col.name.to_sym
717           klass.where(column => old_uuid).update_all(column => new_uuid)
718         end
719       end
720     end
721   end
722
723   def ensure_ownership_path_leads_to_user
724     true
725   end
726
727   def permission_to_update
728     if username_changed? || redirect_to_user_uuid_changed? || email_changed?
729       current_user.andand.is_admin
730     else
731       # users must be able to update themselves (even if they are
732       # inactive) in order to create sessions
733       self == current_user or super
734     end
735   end
736
737   def permission_to_create
738     current_user.andand.is_admin or
739       (self == current_user &&
740        self.redirect_to_user_uuid.nil? &&
741        self.is_active == Rails.configuration.Users.NewUsersAreActive)
742   end
743
744   def check_auto_admin
745     return if self.uuid.end_with?('anonymouspublic')
746     if (User.where("email = ?",self.email).where(:is_admin => true).count == 0 and
747         !Rails.configuration.Users.AutoAdminUserWithEmail.empty? and self.email == Rails.configuration.Users["AutoAdminUserWithEmail"]) or
748        (User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and
749         Rails.configuration.Users.AutoAdminFirstUser)
750       self.is_admin = true
751       self.is_active = true
752     end
753   end
754
755   def find_usable_username_from(basename)
756     # If "basename" is a usable username, return that.
757     # Otherwise, find a unique username "basenameN", where N is the
758     # smallest integer greater than 1, and return that.
759     # Return nil if a unique username can't be found after reasonable
760     # searching.
761     quoted_name = self.class.connection.quote_string(basename)
762     next_username = basename
763     next_suffix = 1
764     while Rails.configuration.Users.AutoSetupUsernameBlacklist[next_username]
765       next_suffix += 1
766       next_username = "%s%i" % [basename, next_suffix]
767     end
768     0.upto(6).each do |suffix_len|
769       pattern = "%s%s" % [quoted_name, "_" * suffix_len]
770       self.class.unscoped.
771           where("username like '#{pattern}'").
772           select(:username).
773           order('username asc').
774           each do |other_user|
775         if other_user.username > next_username
776           break
777         elsif other_user.username == next_username
778           next_suffix += 1
779           next_username = "%s%i" % [basename, next_suffix]
780         end
781       end
782       return next_username if (next_username.size <= pattern.size)
783     end
784     nil
785   end
786
787   def prevent_privilege_escalation
788     if current_user.andand.is_admin
789       return true
790     end
791     if self.is_active_changed?
792       if self.is_active != self.is_active_was
793         logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_active_was} to #{self.is_active} for #{self.uuid}"
794         self.is_active = self.is_active_was
795       end
796     end
797     if self.is_admin_changed?
798       if self.is_admin != self.is_admin_was
799         logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
800         self.is_admin = self.is_admin_was
801       end
802     end
803     true
804   end
805
806   def prevent_inactive_admin
807     if self.is_admin and not self.is_active
808       # There is no known use case for the strange set of permissions
809       # that would result from this change. It's safest to assume it's
810       # a mistake and disallow it outright.
811       raise "Admin users cannot be inactive"
812     end
813     true
814   end
815
816   def prevent_nonadmin_system_root
817     if self.uuid == system_user_uuid and self.is_admin_changed? and !self.is_admin
818       raise "System root user cannot be non-admin"
819     end
820     true
821   end
822
823   def search_permissions(start, graph, merged={}, upstream_mask=nil, upstream_path={})
824     nextpaths = graph[start]
825     return merged if !nextpaths
826     return merged if upstream_path.has_key? start
827     upstream_path[start] = true
828     upstream_mask ||= ALL_PERMISSIONS
829     nextpaths.each do |head, mask|
830       merged[head] ||= {}
831       mask.each do |k,v|
832         merged[head][k] ||= v if upstream_mask[k]
833       end
834       search_permissions(head, graph, merged, upstream_mask.select { |k,v| v && merged[head][k] }, upstream_path)
835     end
836     upstream_path.delete start
837     merged
838   end
839
840   def create_user_repo_link(repo_name)
841     # repo_name is optional
842     if not repo_name
843       logger.warn ("Repository name not given for #{self.uuid}.")
844       return
845     end
846
847     repo = Repository.where(owner_uuid: uuid, name: repo_name).first_or_create!
848     logger.info { "repo uuid: " + repo[:uuid] }
849     repo_perm = Link.where(tail_uuid: uuid, head_uuid: repo.uuid,
850                            link_class: "permission",
851                            name: "can_manage").first_or_create!
852     logger.info { "repo permission: " + repo_perm[:uuid] }
853     return repo_perm
854   end
855
856   # create login permission for the given vm_uuid, if it does not already exist
857   def create_vm_login_permission_link(vm_uuid, repo_name)
858     # vm uuid is optional
859     return if vm_uuid == ""
860
861     vm = VirtualMachine.where(uuid: vm_uuid).first
862     if !vm
863       logger.warn "Could not find virtual machine for #{vm_uuid.inspect}"
864       raise "No vm found for #{vm_uuid}"
865     end
866
867     logger.info { "vm uuid: " + vm[:uuid] }
868     login_attrs = {
869       tail_uuid: uuid, head_uuid: vm.uuid,
870       link_class: "permission", name: "can_login",
871     }
872
873     login_perm = Link.
874       where(login_attrs).
875       select { |link| link.properties["username"] == repo_name }.
876       first
877
878     login_perm ||= Link.
879       create(login_attrs.merge(properties: {"username" => repo_name}))
880
881     logger.info { "login permission: " + login_perm[:uuid] }
882     login_perm
883   end
884
885   def add_to_all_users_group
886     resp = [Link.where(tail_uuid: self.uuid,
887                        head_uuid: all_users_group_uuid,
888                        link_class: 'permission',
889                        name: 'can_write').first ||
890             Link.create(tail_uuid: self.uuid,
891                         head_uuid: all_users_group_uuid,
892                         link_class: 'permission',
893                         name: 'can_write')]
894     if Rails.configuration.Users.ActivatedUsersAreVisibleToOthers
895       resp += [Link.where(tail_uuid: all_users_group_uuid,
896                           head_uuid: self.uuid,
897                           link_class: 'permission',
898                           name: 'can_read').first ||
899                Link.create(tail_uuid: all_users_group_uuid,
900                            head_uuid: self.uuid,
901                            link_class: 'permission',
902                            name: 'can_read')]
903     end
904     return resp
905   end
906
907   # Give the special "System group" permission to manage this user and
908   # all of this user's stuff.
909   def add_system_group_permission_link
910     return true if uuid == system_user_uuid
911     act_as_system_user do
912       Link.create(link_class: 'permission',
913                   name: 'can_manage',
914                   tail_uuid: system_group_uuid,
915                   head_uuid: self.uuid)
916     end
917   end
918
919   # Send admin notifications
920   def send_admin_notifications
921     if self.is_invited then
922       AdminNotifier.new_user(self).deliver_now
923     else
924       AdminNotifier.new_inactive_user(self).deliver_now
925     end
926   end
927
928   # Automatically setup if is_active flag turns on
929   def setup_on_activate
930     return if [system_user_uuid, anonymous_user_uuid].include?(self.uuid)
931     if is_active &&
932       (new_record? || saved_change_to_is_active? || will_save_change_to_is_active?)
933       setup
934     end
935   end
936
937   # Automatically setup new user during creation
938   def auto_setup_new_user
939     setup
940   end
941
942   # Send notification if the user saved profile for the first time
943   def send_profile_created_notification
944     if saved_change_to_prefs?
945       if prefs_before_last_save.andand.empty? || !prefs_before_last_save.andand['profile']
946         profile_notification_address = Rails.configuration.Users.UserProfileNotificationAddress
947         ProfileNotifier.profile_created(self, profile_notification_address).deliver_now if profile_notification_address and !profile_notification_address.empty?
948       end
949     end
950   end
951
952   def verify_repositories_empty
953     unless repositories.first.nil?
954       errors.add(:username, "can't be unset when the user owns repositories")
955       throw(:abort)
956     end
957   end
958
959   def sync_repository_names
960     old_name_re = /^#{Regexp.escape(username_before_last_save)}\//
961     name_sub = "#{username}/"
962     repositories.find_each do |repo|
963       repo.name = repo.name.sub(old_name_re, name_sub)
964       repo.save!
965     end
966   end
967
968   def identity_url_nil_if_empty
969     if identity_url == ""
970       self.identity_url = nil
971     end
972   end
973 end