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