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