gitlab-org--gitlab-foss/app/services/users/update_service.rb

50 lines
1.1 KiB
Ruby
Raw Normal View History

2017-06-13 05:32:21 -04:00
module Users
class UpdateService < BaseService
include NewUserNotifier
2017-09-27 05:48:33 -04:00
def initialize(current_user, params = {})
2017-09-20 06:00:33 -04:00
@current_user = current_user
2017-09-27 06:08:10 -04:00
@user = params.delete(:user)
2017-06-13 05:32:21 -04:00
@params = params.dup
end
def execute(validate: true, &block)
2017-06-23 11:11:31 -04:00
yield(@user) if block_given?
2017-09-20 06:31:35 -04:00
user_exists = @user.persisted?
assign_attributes(&block)
2017-06-13 05:32:21 -04:00
2017-06-22 10:54:54 -04:00
if @user.save(validate: validate)
2017-09-20 06:31:35 -04:00
notify_success(user_exists)
2017-06-13 05:32:21 -04:00
else
error(@user.errors.full_messages.uniq.join('. '))
2017-06-13 05:32:21 -04:00
end
end
2017-06-22 06:10:28 -04:00
def execute!(*args, &block)
2017-06-22 05:27:37 -04:00
result = execute(*args, &block)
raise ActiveRecord::RecordInvalid.new(@user) unless result[:status] == :success
2017-06-22 06:10:28 -04:00
true
end
private
2017-09-20 06:31:35 -04:00
def notify_success(user_exists)
notify_new_user(@user, nil) unless user_exists
success
end
def assign_attributes(&block)
2017-08-29 04:57:41 -04:00
if @user.user_synced_attributes_metadata
params.except!(*@user.user_synced_attributes_metadata.read_only_attributes)
end
@user.assign_attributes(params) if params.any?
end
2017-06-13 05:32:21 -04:00
end
end