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