Gab-Social/app/services/process_quote_service.rb

29 lines
800 B
Ruby
Raw Normal View History

2019-08-08 13:25:28 +00:00
# frozen_string_literal: true
class ProcessQuoteService < BaseService
# Create notification for a quote
# @param [Status] status Quoting status
# @return [Status]
def call(status)
create_notification(status)
bump_potential_friendship(status)
end
2019-08-08 13:25:28 +00:00
private
2019-08-08 13:25:28 +00:00
def create_notification(status)
quoted_status = status.quote
if quoted_status.account.local?
LocalNotificationWorker.perform_async(quoted_status.account_id, status.id, status.class.name)
end
end
2019-08-08 13:25:28 +00:00
def bump_potential_friendship(status)
# ActivityTracker.increment('activity:interactions')
2019-08-08 13:25:28 +00:00
return if status.account.following?(status.quote.account_id)
PotentialFriendshipTracker.record(status.account_id, status.quote.account_id, :reblog)
end
2019-08-08 13:25:28 +00:00
end