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