Merge branch 'master' into 15106-trgm-text-search
[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
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   before_update :prevent_privilege_escalation
24   before_update :prevent_inactive_admin
25   before_update :verify_repositories_empty, :if => Proc.new { |user|
26     user.username.nil? and user.username_changed?
27   }
28   before_update :setup_on_activate
29   before_create :check_auto_admin
30   before_create :set_initial_username, :if => Proc.new { |user|
31     user.username.nil? and user.email
32   }
33   after_create :setup_on_activate
34   after_create :add_system_group_permission_link
35   after_create :invalidate_permissions_cache
36   after_create :auto_setup_new_user, :if => Proc.new { |user|
37     Rails.configuration.Users.AutoSetupNewUsers and
38     (user.uuid != system_user_uuid) and
39     (user.uuid != anonymous_user_uuid)
40   }
41   after_create :send_admin_notifications
42   after_update :send_profile_created_notification
43   after_update :sync_repository_names, :if => Proc.new { |user|
44     (user.uuid != system_user_uuid) and
45     user.username_changed? and
46     (not user.username_was.nil?)
47   }
48
49   has_many :authorized_keys, :foreign_key => :authorized_user_uuid, :primary_key => :uuid
50   has_many :repositories, foreign_key: :owner_uuid, primary_key: :uuid
51
52   default_scope { where('redirect_to_user_uuid is null') }
53
54   api_accessible :user, extend: :common do |t|
55     t.add :email
56     t.add :username
57     t.add :full_name
58     t.add :first_name
59     t.add :last_name
60     t.add :identity_url
61     t.add :is_active
62     t.add :is_admin
63     t.add :is_invited
64     t.add :prefs
65     t.add :writable_by
66   end
67
68   ALL_PERMISSIONS = {read: true, write: true, manage: true}
69
70   # Map numeric permission levels (see lib/create_permission_view.sql)
71   # back to read/write/manage flags.
72   PERMS_FOR_VAL =
73     [{},
74      {read: true},
75      {read: true, write: true},
76      {read: true, write: true, manage: true}]
77
78   def full_name
79     "#{first_name} #{last_name}".strip
80   end
81
82   def is_invited
83     !!(self.is_active ||
84        Rails.configuration.Users.NewUsersAreActive ||
85        self.groups_i_can(:read).select { |x| x.match(/-f+$/) }.first)
86   end
87
88   def groups_i_can(verb)
89     my_groups = self.group_permissions.select { |uuid, mask| mask[verb] }.keys
90     if verb == :read
91       my_groups << anonymous_group_uuid
92     end
93     my_groups
94   end
95
96   def can?(actions)
97     return true if is_admin
98     actions.each do |action, target|
99       unless target.nil?
100         if target.respond_to? :uuid
101           target_uuid = target.uuid
102         else
103           target_uuid = target
104           target = ArvadosModel.find_by_uuid(target_uuid)
105         end
106       end
107       next if target_uuid == self.uuid
108       next if (group_permissions[target_uuid] and
109                group_permissions[target_uuid][action])
110       if target.respond_to? :owner_uuid
111         next if target.owner_uuid == self.uuid
112         next if (group_permissions[target.owner_uuid] and
113                  group_permissions[target.owner_uuid][action])
114       end
115       sufficient_perms = case action
116                          when :manage
117                            ['can_manage']
118                          when :write
119                            ['can_manage', 'can_write']
120                          when :read
121                            ['can_manage', 'can_write', 'can_read']
122                          else
123                            # (Skip this kind of permission opportunity
124                            # if action is an unknown permission type)
125                          end
126       if sufficient_perms
127         # Check permission links with head_uuid pointing directly at
128         # the target object. If target is a Group, this is redundant
129         # and will fail except [a] if permission caching is broken or
130         # [b] during a race condition, where a permission link has
131         # *just* been added.
132         if Link.where(link_class: 'permission',
133                       name: sufficient_perms,
134                       tail_uuid: groups_i_can(action) + [self.uuid],
135                       head_uuid: target_uuid).any?
136           next
137         end
138       end
139       return false
140     end
141     true
142   end
143
144   def self.invalidate_permissions_cache(async=false)
145     refresh_permission_view(async)
146   end
147
148   def invalidate_permissions_cache
149     User.invalidate_permissions_cache
150   end
151
152   # Return a hash of {user_uuid: group_perms}
153   def self.all_group_permissions
154     all_perms = {}
155     ActiveRecord::Base.connection.
156       exec_query("SELECT user_uuid, target_owner_uuid, perm_level, trashed
157                   FROM #{PERMISSION_VIEW}
158                   WHERE target_owner_uuid IS NOT NULL",
159                   # "name" arg is a query label that appears in logs:
160                   "all_group_permissions",
161                   ).rows.each do |user_uuid, group_uuid, max_p_val, trashed|
162       all_perms[user_uuid] ||= {}
163       all_perms[user_uuid][group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
164     end
165     all_perms
166   end
167
168   # Return a hash of {group_uuid: perm_hash} where perm_hash[:read]
169   # and perm_hash[:write] are true if this user can read and write
170   # objects owned by group_uuid.
171   def group_permissions
172     group_perms = {self.uuid => {:read => true, :write => true, :manage => true}}
173     ActiveRecord::Base.connection.
174       exec_query("SELECT target_owner_uuid, perm_level, trashed
175                   FROM #{PERMISSION_VIEW}
176                   WHERE user_uuid = $1
177                   AND target_owner_uuid IS NOT NULL",
178                   # "name" arg is a query label that appears in logs:
179                   "group_permissions for #{uuid}",
180                   # "binds" arg is an array of [col_id, value] for '$1' vars:
181                   [[nil, uuid]],
182                 ).rows.each do |group_uuid, max_p_val, trashed|
183       group_perms[group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
184     end
185     group_perms
186   end
187
188   # create links
189   def setup(openid_prefix:, repo_name: nil, vm_uuid: nil)
190     oid_login_perm = create_oid_login_perm openid_prefix
191     repo_perm = create_user_repo_link repo_name
192     vm_login_perm = create_vm_login_permission_link(vm_uuid, username) if vm_uuid
193     group_perm = create_user_group_link
194
195     return [oid_login_perm, repo_perm, vm_login_perm, group_perm, self].compact
196   end
197
198   # delete user signatures, login, repo, and vm perms, and mark as inactive
199   def unsetup
200     # delete oid_login_perms for this user
201     Link.where(tail_uuid: self.email,
202                      link_class: 'permission',
203                      name: 'can_login').destroy_all
204
205     # delete repo_perms for this user
206     Link.where(tail_uuid: self.uuid,
207                      link_class: 'permission',
208                      name: 'can_manage').destroy_all
209
210     # delete vm_login_perms for this user
211     Link.where(tail_uuid: self.uuid,
212                      link_class: 'permission',
213                      name: 'can_login').destroy_all
214
215     # delete "All users" group read permissions for this user
216     group = Group.where(name: 'All users').select do |g|
217       g[:uuid].match(/-f+$/)
218     end.first
219     Link.where(tail_uuid: self.uuid,
220                      head_uuid: group[:uuid],
221                      link_class: 'permission',
222                      name: 'can_read').destroy_all
223
224     # delete any signatures by this user
225     Link.where(link_class: 'signature',
226                      tail_uuid: self.uuid).destroy_all
227
228     # delete user preferences (including profile)
229     self.prefs = {}
230
231     # mark the user as inactive
232     self.is_active = false
233     self.save!
234   end
235
236   def set_initial_username(requested: false)
237     if !requested.is_a?(String) || requested.empty?
238       email_parts = email.partition("@")
239       local_parts = email_parts.first.partition("+")
240       if email_parts.any?(&:empty?)
241         return
242       elsif not local_parts.first.empty?
243         requested = local_parts.first
244       else
245         requested = email_parts.first
246       end
247     end
248     requested.sub!(/^[^A-Za-z]+/, "")
249     requested.gsub!(/[^A-Za-z0-9]/, "")
250     unless requested.empty?
251       self.username = find_usable_username_from(requested)
252     end
253   end
254
255   def update_uuid(new_uuid:)
256     if !current_user.andand.is_admin
257       raise PermissionDeniedError
258     end
259     if uuid == system_user_uuid || uuid == anonymous_user_uuid
260       raise "update_uuid cannot update system accounts"
261     end
262     if self.class != self.class.resource_class_for_uuid(new_uuid)
263       raise "invalid new_uuid #{new_uuid.inspect}"
264     end
265     transaction(requires_new: true) do
266       reload
267       old_uuid = self.uuid
268       self.uuid = new_uuid
269       save!(validate: false)
270       change_all_uuid_refs(old_uuid: old_uuid, new_uuid: new_uuid)
271     end
272   end
273
274   # Move this user's (i.e., self's) owned items into new_owner_uuid.
275   # Also redirect future uses of this account to
276   # redirect_to_user_uuid, i.e., when a caller authenticates to this
277   # account in the future, the account redirect_to_user_uuid account
278   # will be used instead.
279   #
280   # current_user must have admin privileges, i.e., the caller is
281   # responsible for checking permission to do this.
282   def merge(new_owner_uuid:, redirect_to_user_uuid:)
283     raise PermissionDeniedError if !current_user.andand.is_admin
284     raise "not implemented" if !redirect_to_user_uuid
285     transaction(requires_new: true) do
286       reload
287       raise "cannot merge an already merged user" if self.redirect_to_user_uuid
288
289       new_user = User.where(uuid: redirect_to_user_uuid).first
290       raise "user does not exist" if !new_user
291       raise "cannot merge to an already merged user" if new_user.redirect_to_user_uuid
292
293       # Existing API tokens are updated to authenticate to the new
294       # user.
295       ApiClientAuthorization.
296         where(user_id: id).
297         update_all(user_id: new_user.id)
298
299       # References to the old user UUID in the context of a user ID
300       # (rather than a "home project" in the project hierarchy) are
301       # updated to point to the new user.
302       [
303         [AuthorizedKey, :owner_uuid],
304         [AuthorizedKey, :authorized_user_uuid],
305         [Repository, :owner_uuid],
306         [Link, :owner_uuid],
307         [Link, :tail_uuid],
308         [Link, :head_uuid],
309       ].each do |klass, column|
310         klass.where(column => uuid).update_all(column => new_user.uuid)
311       end
312
313       # References to the merged user's "home project" are updated to
314       # point to new_owner_uuid.
315       ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
316         next if [ApiClientAuthorization,
317                  AuthorizedKey,
318                  Link,
319                  Log,
320                  Repository].include?(klass)
321         next if !klass.columns.collect(&:name).include?('owner_uuid')
322         klass.where(owner_uuid: uuid).update_all(owner_uuid: new_owner_uuid)
323       end
324
325       update_attributes!(redirect_to_user_uuid: new_user.uuid)
326       invalidate_permissions_cache
327     end
328   end
329
330   protected
331
332   def change_all_uuid_refs(old_uuid:, new_uuid:)
333     ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
334       klass.columns.each do |col|
335         if col.name.end_with?('_uuid')
336           column = col.name.to_sym
337           klass.where(column => old_uuid).update_all(column => new_uuid)
338         end
339       end
340     end
341   end
342
343   def ensure_ownership_path_leads_to_user
344     true
345   end
346
347   def permission_to_update
348     if username_changed? || redirect_to_user_uuid_changed?
349       current_user.andand.is_admin
350     else
351       # users must be able to update themselves (even if they are
352       # inactive) in order to create sessions
353       self == current_user or super
354     end
355   end
356
357   def permission_to_create
358     current_user.andand.is_admin or
359       (self == current_user &&
360        self.redirect_to_user_uuid.nil? &&
361        self.is_active == Rails.configuration.Users.NewUsersAreActive)
362   end
363
364   def check_auto_admin
365     return if self.uuid.end_with?('anonymouspublic')
366     if (User.where("email = ?",self.email).where(:is_admin => true).count == 0 and
367         !Rails.configuration.Users.AutoAdminUserWithEmail.empty? and self.email == Rails.configuration.Users["AutoAdminUserWithEmail"]) or
368        (User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and
369         Rails.configuration.Users.AutoAdminFirstUser)
370       self.is_admin = true
371       self.is_active = true
372     end
373   end
374
375   def find_usable_username_from(basename)
376     # If "basename" is a usable username, return that.
377     # Otherwise, find a unique username "basenameN", where N is the
378     # smallest integer greater than 1, and return that.
379     # Return nil if a unique username can't be found after reasonable
380     # searching.
381     quoted_name = self.class.connection.quote_string(basename)
382     next_username = basename
383     next_suffix = 1
384     while Rails.configuration.Users.AutoSetupUsernameBlacklist.include?(next_username)
385       next_suffix += 1
386       next_username = "%s%i" % [basename, next_suffix]
387     end
388     0.upto(6).each do |suffix_len|
389       pattern = "%s%s" % [quoted_name, "_" * suffix_len]
390       self.class.unscoped.
391           where("username like '#{pattern}'").
392           select(:username).
393           order('username asc').
394           each do |other_user|
395         if other_user.username > next_username
396           break
397         elsif other_user.username == next_username
398           next_suffix += 1
399           next_username = "%s%i" % [basename, next_suffix]
400         end
401       end
402       return next_username if (next_username.size <= pattern.size)
403     end
404     nil
405   end
406
407   def prevent_privilege_escalation
408     if current_user.andand.is_admin
409       return true
410     end
411     if self.is_active_changed?
412       if self.is_active != self.is_active_was
413         logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_active_was} to #{self.is_active} for #{self.uuid}"
414         self.is_active = self.is_active_was
415       end
416     end
417     if self.is_admin_changed?
418       if self.is_admin != self.is_admin_was
419         logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
420         self.is_admin = self.is_admin_was
421       end
422     end
423     true
424   end
425
426   def prevent_inactive_admin
427     if self.is_admin and not self.is_active
428       # There is no known use case for the strange set of permissions
429       # that would result from this change. It's safest to assume it's
430       # a mistake and disallow it outright.
431       raise "Admin users cannot be inactive"
432     end
433     true
434   end
435
436   def search_permissions(start, graph, merged={}, upstream_mask=nil, upstream_path={})
437     nextpaths = graph[start]
438     return merged if !nextpaths
439     return merged if upstream_path.has_key? start
440     upstream_path[start] = true
441     upstream_mask ||= ALL_PERMISSIONS
442     nextpaths.each do |head, mask|
443       merged[head] ||= {}
444       mask.each do |k,v|
445         merged[head][k] ||= v if upstream_mask[k]
446       end
447       search_permissions(head, graph, merged, upstream_mask.select { |k,v| v && merged[head][k] }, upstream_path)
448     end
449     upstream_path.delete start
450     merged
451   end
452
453   def create_oid_login_perm(openid_prefix)
454     # Check oid_login_perm
455     oid_login_perms = Link.where(tail_uuid: self.email,
456                                  head_uuid: self.uuid,
457                                  link_class: 'permission',
458                                  name: 'can_login')
459
460     if !oid_login_perms.any?
461       # create openid login permission
462       oid_login_perm = Link.create!(link_class: 'permission',
463                                    name: 'can_login',
464                                    tail_uuid: self.email,
465                                    head_uuid: self.uuid,
466                                    properties: {
467                                      "identity_url_prefix" => openid_prefix,
468                                    })
469       logger.info { "openid login permission: " + oid_login_perm[:uuid] }
470     else
471       oid_login_perm = oid_login_perms.first
472     end
473
474     return oid_login_perm
475   end
476
477   def create_user_repo_link(repo_name)
478     # repo_name is optional
479     if not repo_name
480       logger.warn ("Repository name not given for #{self.uuid}.")
481       return
482     end
483
484     repo = Repository.where(owner_uuid: uuid, name: repo_name).first_or_create!
485     logger.info { "repo uuid: " + repo[:uuid] }
486     repo_perm = Link.where(tail_uuid: uuid, head_uuid: repo.uuid,
487                            link_class: "permission",
488                            name: "can_manage").first_or_create!
489     logger.info { "repo permission: " + repo_perm[:uuid] }
490     return repo_perm
491   end
492
493   # create login permission for the given vm_uuid, if it does not already exist
494   def create_vm_login_permission_link(vm_uuid, repo_name)
495     # vm uuid is optional
496     return if vm_uuid == ""
497
498     vm = VirtualMachine.where(uuid: vm_uuid).first
499     if !vm
500       logger.warn "Could not find virtual machine for #{vm_uuid.inspect}"
501       raise "No vm found for #{vm_uuid}"
502     end
503
504     logger.info { "vm uuid: " + vm[:uuid] }
505     login_attrs = {
506       tail_uuid: uuid, head_uuid: vm.uuid,
507       link_class: "permission", name: "can_login",
508     }
509
510     login_perm = Link.
511       where(login_attrs).
512       select { |link| link.properties["username"] == repo_name }.
513       first
514
515     login_perm ||= Link.
516       create(login_attrs.merge(properties: {"username" => repo_name}))
517
518     logger.info { "login permission: " + login_perm[:uuid] }
519     login_perm
520   end
521
522   # add the user to the 'All users' group
523   def create_user_group_link
524     return (Link.where(tail_uuid: self.uuid,
525                        head_uuid: all_users_group[:uuid],
526                        link_class: 'permission',
527                        name: 'can_read').first or
528             Link.create(tail_uuid: self.uuid,
529                         head_uuid: all_users_group[:uuid],
530                         link_class: 'permission',
531                         name: 'can_read'))
532   end
533
534   # Give the special "System group" permission to manage this user and
535   # all of this user's stuff.
536   def add_system_group_permission_link
537     return true if uuid == system_user_uuid
538     act_as_system_user do
539       Link.create(link_class: 'permission',
540                   name: 'can_manage',
541                   tail_uuid: system_group_uuid,
542                   head_uuid: self.uuid)
543     end
544   end
545
546   # Send admin notifications
547   def send_admin_notifications
548     AdminNotifier.new_user(self).deliver_now
549     if not self.is_active then
550       AdminNotifier.new_inactive_user(self).deliver_now
551     end
552   end
553
554   # Automatically setup if is_active flag turns on
555   def setup_on_activate
556     return if [system_user_uuid, anonymous_user_uuid].include?(self.uuid)
557     if is_active && (new_record? || is_active_changed?)
558       setup(openid_prefix: Rails.configuration.default_openid_prefix)
559     end
560   end
561
562   # Automatically setup new user during creation
563   def auto_setup_new_user
564     setup(openid_prefix: Rails.configuration.default_openid_prefix)
565     if username
566       create_vm_login_permission_link(Rails.configuration.Users.AutoSetupNewUsersWithVmUUID,
567                                       username)
568       repo_name = "#{username}/#{username}"
569       if Rails.configuration.Users.AutoSetupNewUsersWithRepository and
570           Repository.where(name: repo_name).first.nil?
571         repo = Repository.create!(name: repo_name, owner_uuid: uuid)
572         Link.create!(tail_uuid: uuid, head_uuid: repo.uuid,
573                      link_class: "permission", name: "can_manage")
574       end
575     end
576   end
577
578   # Send notification if the user saved profile for the first time
579   def send_profile_created_notification
580     if self.prefs_changed?
581       if self.prefs_was.andand.empty? || !self.prefs_was.andand['profile']
582         profile_notification_address = Rails.configuration.Users.UserProfileNotificationAddress
583         ProfileNotifier.profile_created(self, profile_notification_address).deliver_now if profile_notification_address and !profile_notification_address.empty?
584       end
585     end
586   end
587
588   def verify_repositories_empty
589     unless repositories.first.nil?
590       errors.add(:username, "can't be unset when the user owns repositories")
591       throw(:abort)
592     end
593   end
594
595   def sync_repository_names
596     old_name_re = /^#{Regexp.escape(username_was)}\//
597     name_sub = "#{username}/"
598     repositories.find_each do |repo|
599       repo.name = repo.name.sub(old_name_re, name_sub)
600       repo.save!
601     end
602   end
603 end