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