Gab-Social/app/services/update_account_service.rb
2020-12-15 19:31:30 -05:00

35 lines
959 B
Ruby

# frozen_string_literal: true
class UpdateAccountService < BaseService
def call(account, params, raise_error: false)
was_locked = account.locked
update_method = raise_error ? :update! : :update
# : todo :
# check if link blocking
# set account.is_flagged_as_spam
account.send(update_method, params).tap do |ret|
next unless ret
authorize_all_follow_requests(account) if was_locked && !account.locked
process_hashtags(account)
end
rescue GabSocial::DimensionsValidationError => de
account.errors.add(:avatar, de.message)
false
end
private
def authorize_all_follow_requests(account)
AuthorizeFollowWorker.push_bulk(FollowRequest.where(target_account: account).select(:account_id, :target_account_id)) do |req|
[req.account_id, req.target_account_id]
end
end
def process_hashtags(account)
account.tags_as_strings = Extractor.extract_hashtags(account.note)
end
end