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