16007: Remove redundant User#recompute_permissions
[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   before_update :prevent_privilege_escalation
25   before_update :prevent_inactive_admin
26   before_update :verify_repositories_empty, :if => Proc.new { |user|
27     user.username.nil? and user.username_changed?
28   }
29   before_update :setup_on_activate
30
31   before_create :check_auto_admin
32   before_create :set_initial_username, :if => Proc.new { |user|
33     user.username.nil? and user.email
34   }
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 { |user|
39     Rails.configuration.Users.AutoSetupNewUsers and
40     (user.uuid != system_user_uuid) and
41     (user.uuid != anonymous_user_uuid)
42   }
43   after_create :send_admin_notifications
44
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 { |user|
49     (user.uuid != system_user_uuid) and
50     user.username_changed? and
51     (not user.username_was.nil?)
52   }
53   after_destroy :clear_permissions
54
55   has_many :authorized_keys, :foreign_key => :authorized_user_uuid, :primary_key => :uuid
56   has_many :repositories, foreign_key: :owner_uuid, primary_key: :uuid
57
58   default_scope { where('redirect_to_user_uuid is null') }
59
60   api_accessible :user, extend: :common do |t|
61     t.add :email
62     t.add :username
63     t.add :full_name
64     t.add :first_name
65     t.add :last_name
66     t.add :identity_url
67     t.add :is_active
68     t.add :is_admin
69     t.add :is_invited
70     t.add :prefs
71     t.add :writable_by
72   end
73
74   ALL_PERMISSIONS = {read: true, write: true, manage: true}
75
76   # Map numeric permission levels (see lib/create_permission_view.sql)
77   # back to read/write/manage flags.
78   PERMS_FOR_VAL =
79     [{},
80      {read: true},
81      {read: true, write: true},
82      {read: true, write: true, manage: true}]
83
84   VAL_FOR_PERM =
85     {:read => 1,
86      :write => 2,
87      :manage => 3}
88
89
90   def full_name
91     "#{first_name} #{last_name}".strip
92   end
93
94   def is_invited
95     !!(self.is_active ||
96        Rails.configuration.Users.NewUsersAreActive ||
97        self.groups_i_can(:read).select { |x| x.match(/-f+$/) }.first)
98   end
99
100   def groups_i_can(verb)
101     my_groups = self.group_permissions(VAL_FOR_PERM[verb]).keys
102     if verb == :read
103       my_groups << anonymous_group_uuid
104     end
105     my_groups
106   end
107
108   def can?(actions)
109     return true if is_admin
110     actions.each do |action, target|
111       unless target.nil?
112         if target.respond_to? :uuid
113           target_uuid = target.uuid
114         else
115           target_uuid = target
116           target = ArvadosModel.find_by_uuid(target_uuid)
117         end
118       end
119       next if target_uuid == self.uuid
120
121       target_owner_uuid = target.owner_uuid if target.respond_to? :owner_uuid
122
123       unless ActiveRecord::Base.connection.
124         exec_query(%{
125 SELECT 1 FROM #{PERMISSION_VIEW}
126   WHERE user_uuid = $1 and
127         ((target_uuid = $2 and perm_level >= $3)
128          or (target_uuid = $4 and perm_level >= $3 and traverse_owned))
129 },
130                   # "name" arg is a query label that appears in logs:
131                    "user_can_query",
132                    [[nil, self.uuid],
133                     [nil, target_uuid],
134                     [nil, VAL_FOR_PERM[action]],
135                     [nil, target_owner_uuid]]
136                   ).any?
137         return false
138       end
139     end
140     true
141   end
142
143   def before_ownership_change
144     if owner_uuid_changed? and !self.owner_uuid_was.nil?
145       MaterializedPermission.where(user_uuid: owner_uuid_was, target_uuid: uuid).delete_all
146       update_permissions self.owner_uuid_was, self.uuid, 0, false
147     end
148   end
149
150   def after_ownership_change
151     if owner_uuid_changed?
152       update_permissions self.owner_uuid, self.uuid, 3
153     end
154   end
155
156   def clear_permissions
157     MaterializedPermission.where("user_uuid = ? or target_uuid = ?", uuid, uuid).delete_all
158   end
159
160   # Return a hash of {user_uuid: group_perms}
161   def self.all_group_permissions
162     all_perms = {}
163     ActiveRecord::Base.connection.
164       exec_query("SELECT user_uuid, target_uuid, perm_level
165                   FROM #{PERMISSION_VIEW}
166                   WHERE traverse_owned",
167                   # "name" arg is a query label that appears in logs:
168                  "all_group_permissions").
169       rows.each do |user_uuid, group_uuid, max_p_val|
170       all_perms[user_uuid] ||= {}
171       all_perms[user_uuid][group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
172     end
173     all_perms
174   end
175
176   # Return a hash of {group_uuid: perm_hash} where perm_hash[:read]
177   # and perm_hash[:write] are true if this user can read and write
178   # objects owned by group_uuid.
179   def group_permissions(level=1)
180     group_perms = {}
181     ActiveRecord::Base.connection.
182       exec_query(%{
183 SELECT target_uuid, perm_level
184   FROM #{PERMISSION_VIEW}
185   WHERE user_uuid = $1 and perm_level >= $2
186 },
187                   # "name" arg is a query label that appears in logs:
188                   "group_permissions_for_user",
189                   # "binds" arg is an array of [col_id, value] for '$1' vars:
190                   [[nil, uuid],
191                    [nil, level]]).
192       rows.each do |group_uuid, max_p_val|
193       group_perms[group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
194     end
195     group_perms
196   end
197
198   # create links
199   def setup(repo_name: nil, vm_uuid: nil)
200     repo_perm = create_user_repo_link repo_name
201     vm_login_perm = create_vm_login_permission_link(vm_uuid, username) if vm_uuid
202     group_perm = create_user_group_link
203
204     return [repo_perm, vm_login_perm, group_perm, self].compact
205   end
206
207   # delete user signatures, login, repo, and vm perms, and mark as inactive
208   def unsetup
209     # delete oid_login_perms for this user
210     #
211     # note: these permission links are obsolete, they have no effect
212     # on anything and they are not created for new users.
213     Link.where(tail_uuid: self.email,
214                      link_class: 'permission',
215                      name: 'can_login').destroy_all
216
217     # delete repo_perms for this user
218     Link.where(tail_uuid: self.uuid,
219                      link_class: 'permission',
220                      name: 'can_manage').destroy_all
221
222     # delete vm_login_perms for this user
223     Link.where(tail_uuid: self.uuid,
224                      link_class: 'permission',
225                      name: 'can_login').destroy_all
226
227     # delete "All users" group read permissions for this user
228     group = Group.where(name: 'All users').select do |g|
229       g[:uuid].match(/-f+$/)
230     end.first
231     Link.where(tail_uuid: self.uuid,
232                      head_uuid: group[:uuid],
233                      link_class: 'permission',
234                      name: 'can_read').destroy_all
235
236     # delete any signatures by this user
237     Link.where(link_class: 'signature',
238                      tail_uuid: self.uuid).destroy_all
239
240     # delete user preferences (including profile)
241     self.prefs = {}
242
243     # mark the user as inactive
244     self.is_active = false
245     self.save!
246   end
247
248   def must_unsetup_to_deactivate
249     if self.is_active_changed? &&
250        self.is_active_was == true &&
251        !self.is_active
252
253       group = Group.where(name: 'All users').select do |g|
254         g[:uuid].match(/-f+$/)
255       end.first
256
257       # When a user is set up, they are added to the "All users"
258       # group.  A user that is part of the "All users" group is
259       # allowed to self-activate.
260       #
261       # It doesn't make sense to deactivate a user (set is_active =
262       # false) without first removing them from the "All users" group,
263       # because they would be able to immediately reactivate
264       # themselves.
265       #
266       # The 'unsetup' method removes the user from the "All users"
267       # group (and also sets is_active = false) so send a message
268       # explaining the correct way to deactivate a user.
269       #
270       if Link.where(tail_uuid: self.uuid,
271                     head_uuid: group[:uuid],
272                     link_class: 'permission',
273                     name: 'can_read').any?
274         errors.add :is_active, "cannot be set to false directly, use the 'Deactivate' button on Workbench, or the 'unsetup' API call"
275       end
276     end
277   end
278
279   def set_initial_username(requested: false)
280     if !requested.is_a?(String) || requested.empty?
281       email_parts = email.partition("@")
282       local_parts = email_parts.first.partition("+")
283       if email_parts.any?(&:empty?)
284         return
285       elsif not local_parts.first.empty?
286         requested = local_parts.first
287       else
288         requested = email_parts.first
289       end
290     end
291     requested.sub!(/^[^A-Za-z]+/, "")
292     requested.gsub!(/[^A-Za-z0-9]/, "")
293     unless requested.empty?
294       self.username = find_usable_username_from(requested)
295     end
296   end
297
298   def update_uuid(new_uuid:)
299     if !current_user.andand.is_admin
300       raise PermissionDeniedError
301     end
302     if uuid == system_user_uuid || uuid == anonymous_user_uuid
303       raise "update_uuid cannot update system accounts"
304     end
305     if self.class != self.class.resource_class_for_uuid(new_uuid)
306       raise "invalid new_uuid #{new_uuid.inspect}"
307     end
308     transaction(requires_new: true) do
309       reload
310       old_uuid = self.uuid
311       self.uuid = new_uuid
312       save!(validate: false)
313       change_all_uuid_refs(old_uuid: old_uuid, new_uuid: new_uuid)
314     ActiveRecord::Base.connection.exec_update %{
315 update #{PERMISSION_VIEW} set user_uuid=$1 where user_uuid = $2
316 },
317                                              'User.update_uuid.update_permissions_user_uuid',
318                                              [[nil, new_uuid],
319                                               [nil, old_uuid]]
320       ActiveRecord::Base.connection.exec_update %{
321 update #{PERMISSION_VIEW} set target_uuid=$1 where target_uuid = $2
322 },
323                                             'User.update_uuid.update_permissions_target_uuid',
324                                              [[nil, new_uuid],
325                                               [nil, old_uuid]]
326     end
327   end
328
329   # Move this user's (i.e., self's) owned items to new_owner_uuid and
330   # new_user_uuid (for things normally owned directly by the user).
331   #
332   # If redirect_auth is true, also reassign auth tokens and ssh keys,
333   # and redirect this account to redirect_to_user_uuid, i.e., when a
334   # caller authenticates to this account in the future, the account
335   # redirect_to_user_uuid account will be used instead.
336   #
337   # current_user must have admin privileges, i.e., the caller is
338   # responsible for checking permission to do this.
339   def merge(new_owner_uuid:, new_user_uuid:, redirect_to_new_user:)
340     raise PermissionDeniedError if !current_user.andand.is_admin
341     raise "Missing new_owner_uuid" if !new_owner_uuid
342     raise "Missing new_user_uuid" if !new_user_uuid
343     transaction(requires_new: true) do
344       reload
345       raise "cannot merge an already merged user" if self.redirect_to_user_uuid
346
347       new_user = User.where(uuid: new_user_uuid).first
348       raise "user does not exist" if !new_user
349       raise "cannot merge to an already merged user" if new_user.redirect_to_user_uuid
350
351       update_permissions self.owner_uuid, self.uuid, 0
352
353       # If 'self' is a remote user, don't transfer authorizations
354       # (i.e. ability to access the account) to the new user, because
355       # that gives the remote site the ability to access the 'new'
356       # user account that takes over the 'self' account.
357       #
358       # If 'self' is a local user, it is okay to transfer
359       # authorizations, even if the 'new' user is a remote account,
360       # because the remote site does not gain the ability to access an
361       # account it could not before.
362
363       if redirect_to_new_user and self.uuid[0..4] == Rails.configuration.ClusterID
364         # Existing API tokens and ssh keys are updated to authenticate
365         # to the new user.
366         ApiClientAuthorization.
367           where(user_id: id).
368           update_all(user_id: new_user.id)
369
370         user_updates = [
371           [AuthorizedKey, :owner_uuid],
372           [AuthorizedKey, :authorized_user_uuid],
373           [Link, :owner_uuid],
374           [Link, :tail_uuid],
375           [Link, :head_uuid],
376         ]
377       else
378         # Destroy API tokens and ssh keys associated with the old
379         # user.
380         ApiClientAuthorization.where(user_id: id).destroy_all
381         AuthorizedKey.where(owner_uuid: uuid).destroy_all
382         AuthorizedKey.where(authorized_user_uuid: uuid).destroy_all
383         user_updates = [
384           [Link, :owner_uuid],
385           [Link, :tail_uuid]
386         ]
387       end
388
389       # References to the old user UUID in the context of a user ID
390       # (rather than a "home project" in the project hierarchy) are
391       # updated to point to the new user.
392       user_updates.each do |klass, column|
393         klass.where(column => uuid).update_all(column => new_user.uuid)
394       end
395
396       # Need to update repository names to new username
397       if username
398         old_repo_name_re = /^#{Regexp.escape(username)}\//
399         Repository.where(:owner_uuid => uuid).each do |repo|
400           repo.owner_uuid = new_user.uuid
401           repo_name_sub = "#{new_user.username}/"
402           name = repo.name.sub(old_repo_name_re, repo_name_sub)
403           while (conflict = Repository.where(:name => name).first) != nil
404             repo_name_sub += "migrated"
405             name = repo.name.sub(old_repo_name_re, repo_name_sub)
406           end
407           repo.name = name
408           repo.save!
409         end
410       end
411
412       # References to the merged user's "home project" are updated to
413       # point to new_owner_uuid.
414       ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
415         next if [ApiClientAuthorization,
416                  AuthorizedKey,
417                  Link,
418                  Log,
419                  Repository].include?(klass)
420         next if !klass.columns.collect(&:name).include?('owner_uuid')
421         klass.where(owner_uuid: uuid).update_all(owner_uuid: new_owner_uuid)
422       end
423
424       if redirect_to_new_user
425         update_attributes!(redirect_to_user_uuid: new_user.uuid, username: nil)
426       end
427       update_permissions self.owner_uuid, self.uuid, 3
428       update_permissions new_user.owner_uuid, new_user.uuid, 3
429     end
430   end
431
432   def redirects_to
433     user = self
434     redirects = 0
435     while (uuid = user.redirect_to_user_uuid)
436       break if uuid.empty?
437       nextuser = User.unscoped.find_by_uuid(uuid)
438       if !nextuser
439         raise Exception.new("user uuid #{user.uuid} redirects to nonexistent uuid '#{uuid}'")
440       end
441       user = nextuser
442       redirects += 1
443       if redirects > 15
444         raise "Starting from #{self.uuid} redirect_to_user_uuid exceeded maximum number of redirects"
445       end
446     end
447     user
448   end
449
450   def self.register info
451     # login info expected fields, all can be optional but at minimum
452     # must supply either 'identity_url' or 'email'
453     #
454     #   email
455     #   first_name
456     #   last_name
457     #   username
458     #   alternate_emails
459     #   identity_url
460
461     primary_user = nil
462
463     # local database
464     identity_url = info['identity_url']
465
466     if identity_url && identity_url.length > 0
467       # Only local users can create sessions, hence uuid_like_pattern
468       # here.
469       user = User.unscoped.where('identity_url = ? and uuid like ?',
470                                  identity_url,
471                                  User.uuid_like_pattern).first
472       primary_user = user.redirects_to if user
473     end
474
475     if !primary_user
476       # identity url is unset or didn't find matching record.
477       emails = [info['email']] + (info['alternate_emails'] || [])
478       emails.select! {|em| !em.nil? && !em.empty?}
479
480       User.unscoped.where('email in (?) and uuid like ?',
481                           emails,
482                           User.uuid_like_pattern).each do |user|
483         if !primary_user
484           primary_user = user.redirects_to
485         elsif primary_user.uuid != user.redirects_to.uuid
486           raise "Ambiguous email address, directs to both #{primary_user.uuid} and #{user.redirects_to.uuid}"
487         end
488       end
489     end
490
491     if !primary_user
492       # New user registration
493       primary_user = User.new(:owner_uuid => system_user_uuid,
494                               :is_admin => false,
495                               :is_active => Rails.configuration.Users.NewUsersAreActive)
496
497       primary_user.set_initial_username(requested: info['username']) if info['username'] && !info['username'].blank?
498       primary_user.identity_url = info['identity_url'] if identity_url
499     end
500
501     primary_user.email = info['email'] if info['email']
502     primary_user.first_name = info['first_name'] if info['first_name']
503     primary_user.last_name = info['last_name'] if info['last_name']
504
505     if (!primary_user.email or primary_user.email.empty?) and (!primary_user.identity_url or primary_user.identity_url.empty?)
506       raise "Must have supply at least one of 'email' or 'identity_url' to User.register"
507     end
508
509     act_as_system_user do
510       primary_user.save!
511     end
512
513     primary_user
514   end
515
516   protected
517
518   def change_all_uuid_refs(old_uuid:, new_uuid:)
519     ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
520       klass.columns.each do |col|
521         if col.name.end_with?('_uuid')
522           column = col.name.to_sym
523           klass.where(column => old_uuid).update_all(column => new_uuid)
524         end
525       end
526     end
527   end
528
529   def ensure_ownership_path_leads_to_user
530     true
531   end
532
533   def permission_to_update
534     if username_changed? || redirect_to_user_uuid_changed? || email_changed?
535       current_user.andand.is_admin
536     else
537       # users must be able to update themselves (even if they are
538       # inactive) in order to create sessions
539       self == current_user or super
540     end
541   end
542
543   def permission_to_create
544     current_user.andand.is_admin or
545       (self == current_user &&
546        self.redirect_to_user_uuid.nil? &&
547        self.is_active == Rails.configuration.Users.NewUsersAreActive)
548   end
549
550   def check_auto_admin
551     return if self.uuid.end_with?('anonymouspublic')
552     if (User.where("email = ?",self.email).where(:is_admin => true).count == 0 and
553         !Rails.configuration.Users.AutoAdminUserWithEmail.empty? and self.email == Rails.configuration.Users["AutoAdminUserWithEmail"]) or
554        (User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and
555         Rails.configuration.Users.AutoAdminFirstUser)
556       self.is_admin = true
557       self.is_active = true
558     end
559   end
560
561   def find_usable_username_from(basename)
562     # If "basename" is a usable username, return that.
563     # Otherwise, find a unique username "basenameN", where N is the
564     # smallest integer greater than 1, and return that.
565     # Return nil if a unique username can't be found after reasonable
566     # searching.
567     quoted_name = self.class.connection.quote_string(basename)
568     next_username = basename
569     next_suffix = 1
570     while Rails.configuration.Users.AutoSetupUsernameBlacklist[next_username]
571       next_suffix += 1
572       next_username = "%s%i" % [basename, next_suffix]
573     end
574     0.upto(6).each do |suffix_len|
575       pattern = "%s%s" % [quoted_name, "_" * suffix_len]
576       self.class.unscoped.
577           where("username like '#{pattern}'").
578           select(:username).
579           order('username asc').
580           each do |other_user|
581         if other_user.username > next_username
582           break
583         elsif other_user.username == next_username
584           next_suffix += 1
585           next_username = "%s%i" % [basename, next_suffix]
586         end
587       end
588       return next_username if (next_username.size <= pattern.size)
589     end
590     nil
591   end
592
593   def prevent_privilege_escalation
594     if current_user.andand.is_admin
595       return true
596     end
597     if self.is_active_changed?
598       if self.is_active != self.is_active_was
599         logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_active_was} to #{self.is_active} for #{self.uuid}"
600         self.is_active = self.is_active_was
601       end
602     end
603     if self.is_admin_changed?
604       if self.is_admin != self.is_admin_was
605         logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
606         self.is_admin = self.is_admin_was
607       end
608     end
609     true
610   end
611
612   def prevent_inactive_admin
613     if self.is_admin and not self.is_active
614       # There is no known use case for the strange set of permissions
615       # that would result from this change. It's safest to assume it's
616       # a mistake and disallow it outright.
617       raise "Admin users cannot be inactive"
618     end
619     true
620   end
621
622   def search_permissions(start, graph, merged={}, upstream_mask=nil, upstream_path={})
623     nextpaths = graph[start]
624     return merged if !nextpaths
625     return merged if upstream_path.has_key? start
626     upstream_path[start] = true
627     upstream_mask ||= ALL_PERMISSIONS
628     nextpaths.each do |head, mask|
629       merged[head] ||= {}
630       mask.each do |k,v|
631         merged[head][k] ||= v if upstream_mask[k]
632       end
633       search_permissions(head, graph, merged, upstream_mask.select { |k,v| v && merged[head][k] }, upstream_path)
634     end
635     upstream_path.delete start
636     merged
637   end
638
639   def create_user_repo_link(repo_name)
640     # repo_name is optional
641     if not repo_name
642       logger.warn ("Repository name not given for #{self.uuid}.")
643       return
644     end
645
646     repo = Repository.where(owner_uuid: uuid, name: repo_name).first_or_create!
647     logger.info { "repo uuid: " + repo[:uuid] }
648     repo_perm = Link.where(tail_uuid: uuid, head_uuid: repo.uuid,
649                            link_class: "permission",
650                            name: "can_manage").first_or_create!
651     logger.info { "repo permission: " + repo_perm[:uuid] }
652     return repo_perm
653   end
654
655   # create login permission for the given vm_uuid, if it does not already exist
656   def create_vm_login_permission_link(vm_uuid, repo_name)
657     # vm uuid is optional
658     return if vm_uuid == ""
659
660     vm = VirtualMachine.where(uuid: vm_uuid).first
661     if !vm
662       logger.warn "Could not find virtual machine for #{vm_uuid.inspect}"
663       raise "No vm found for #{vm_uuid}"
664     end
665
666     logger.info { "vm uuid: " + vm[:uuid] }
667     login_attrs = {
668       tail_uuid: uuid, head_uuid: vm.uuid,
669       link_class: "permission", name: "can_login",
670     }
671
672     login_perm = Link.
673       where(login_attrs).
674       select { |link| link.properties["username"] == repo_name }.
675       first
676
677     login_perm ||= Link.
678       create(login_attrs.merge(properties: {"username" => repo_name}))
679
680     logger.info { "login permission: " + login_perm[:uuid] }
681     login_perm
682   end
683
684   # add the user to the 'All users' group
685   def create_user_group_link
686     return (Link.where(tail_uuid: self.uuid,
687                        head_uuid: all_users_group[:uuid],
688                        link_class: 'permission',
689                        name: 'can_read').first or
690             Link.create(tail_uuid: self.uuid,
691                         head_uuid: all_users_group[:uuid],
692                         link_class: 'permission',
693                         name: 'can_read'))
694   end
695
696   # Give the special "System group" permission to manage this user and
697   # all of this user's stuff.
698   def add_system_group_permission_link
699     return true if uuid == system_user_uuid
700     act_as_system_user do
701       Link.create(link_class: 'permission',
702                   name: 'can_manage',
703                   tail_uuid: system_group_uuid,
704                   head_uuid: self.uuid)
705     end
706   end
707
708   # Send admin notifications
709   def send_admin_notifications
710     AdminNotifier.new_user(self).deliver_now
711     if not self.is_active then
712       AdminNotifier.new_inactive_user(self).deliver_now
713     end
714   end
715
716   # Automatically setup if is_active flag turns on
717   def setup_on_activate
718     return if [system_user_uuid, anonymous_user_uuid].include?(self.uuid)
719     if is_active && (new_record? || is_active_changed?)
720       setup
721     end
722   end
723
724   # Automatically setup new user during creation
725   def auto_setup_new_user
726     setup
727     if username
728       create_vm_login_permission_link(Rails.configuration.Users.AutoSetupNewUsersWithVmUUID,
729                                       username)
730       repo_name = "#{username}/#{username}"
731       if Rails.configuration.Users.AutoSetupNewUsersWithRepository and
732           Repository.where(name: repo_name).first.nil?
733         repo = Repository.create!(name: repo_name, owner_uuid: uuid)
734         Link.create!(tail_uuid: uuid, head_uuid: repo.uuid,
735                      link_class: "permission", name: "can_manage")
736       end
737     end
738   end
739
740   # Send notification if the user saved profile for the first time
741   def send_profile_created_notification
742     if self.prefs_changed?
743       if self.prefs_was.andand.empty? || !self.prefs_was.andand['profile']
744         profile_notification_address = Rails.configuration.Users.UserProfileNotificationAddress
745         ProfileNotifier.profile_created(self, profile_notification_address).deliver_now if profile_notification_address and !profile_notification_address.empty?
746       end
747     end
748   end
749
750   def verify_repositories_empty
751     unless repositories.first.nil?
752       errors.add(:username, "can't be unset when the user owns repositories")
753       throw(:abort)
754     end
755   end
756
757   def sync_repository_names
758     old_name_re = /^#{Regexp.escape(username_was)}\//
759     name_sub = "#{username}/"
760     repositories.find_each do |repo|
761       repo.name = repo.name.sub(old_name_re, name_sub)
762       repo.save!
763     end
764   end
765 end