2017-06-13 05:32:21 -04:00
|
|
|
module Users
|
|
|
|
class UpdateService < BaseService
|
2017-08-25 19:15:43 -04:00
|
|
|
include NewUserNotifier
|
|
|
|
|
2017-06-23 05:34:07 -04:00
|
|
|
def initialize(user, params = {})
|
2017-06-13 05:32:21 -04:00
|
|
|
@user = user
|
|
|
|
@params = params.dup
|
|
|
|
end
|
|
|
|
|
2017-06-23 05:34:07 -04:00
|
|
|
def execute(validate: true, &block)
|
2017-06-23 11:11:31 -04:00
|
|
|
yield(@user) if block_given?
|
|
|
|
|
2017-06-23 05:34:07 -04:00
|
|
|
assign_attributes(&block)
|
2017-06-13 05:32:21 -04:00
|
|
|
|
2017-08-25 19:15:43 -04:00
|
|
|
user_exists = @user.persisted?
|
|
|
|
|
2017-06-22 10:54:54 -04:00
|
|
|
if @user.save(validate: validate)
|
2017-08-25 19:15:43 -04:00
|
|
|
notify_new_user(@user, nil) unless user_exists
|
|
|
|
|
2017-06-13 05:32:21 -04:00
|
|
|
success
|
|
|
|
else
|
2017-06-14 09:32:25 -04:00
|
|
|
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)
|
2017-06-14 05:35:58 -04:00
|
|
|
|
2017-06-23 05:34:07 -04:00
|
|
|
raise ActiveRecord::RecordInvalid.new(@user) unless result[:status] == :success
|
2017-06-22 06:10:28 -04:00
|
|
|
|
|
|
|
true
|
2017-06-14 05:35:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-06-23 05:34:07 -04:00
|
|
|
def assign_attributes(&block)
|
2017-06-14 05:35:58 -04:00
|
|
|
@user.assign_attributes(params) if params.any?
|
|
|
|
end
|
2017-06-13 05:32:21 -04:00
|
|
|
end
|
|
|
|
end
|