41 lines
814 B
Ruby
41 lines
814 B
Ruby
|
module Users
|
||
|
class UpdateService < BaseService
|
||
|
include NewUserNotifier
|
||
|
|
||
|
def initialize(user, params = {})
|
||
|
@user = user
|
||
|
@params = params.dup
|
||
|
end
|
||
|
|
||
|
def execute(validate: true, &block)
|
||
|
yield(@user) if block_given?
|
||
|
|
||
|
assign_attributes(&block)
|
||
|
|
||
|
user_exists = @user.persisted?
|
||
|
|
||
|
if @user.save(validate: validate)
|
||
|
notify_new_user(@user, nil) unless user_exists
|
||
|
|
||
|
success
|
||
|
else
|
||
|
error(@user.errors.full_messages.uniq.join('. '))
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def execute!(*args, &block)
|
||
|
result = execute(*args, &block)
|
||
|
|
||
|
raise ActiveRecord::RecordInvalid.new(@user) unless result[:status] == :success
|
||
|
|
||
|
true
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def assign_attributes(&block)
|
||
|
@user.assign_attributes(params) if params.any?
|
||
|
end
|
||
|
end
|
||
|
end
|