This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-06 12:51:55 +01:00
|
|
|
class FavouriteService < BaseService
|
|
|
|
# Favourite a status and notify remote user
|
|
|
|
# @param [Account] account
|
|
|
|
# @param [Status] status
|
|
|
|
# @return [Favourite]
|
|
|
|
def call(account, status)
|
|
|
|
favourite = Favourite.create!(account: account, status: status)
|
2016-11-28 13:36:47 +01:00
|
|
|
|
|
|
|
Pubsubhubbub::DistributionWorker.perform_async(favourite.stream_entry.id)
|
2016-03-19 19:20:07 +01:00
|
|
|
|
|
|
|
if status.local?
|
2016-11-20 00:33:02 +01:00
|
|
|
NotifyService.new.call(status.account, favourite)
|
2016-03-19 19:20:07 +01:00
|
|
|
else
|
2016-03-26 13:42:10 +01:00
|
|
|
NotificationWorker.perform_async(favourite.stream_entry.id, status.account_id)
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
|
|
|
|
2016-03-06 12:51:55 +01:00
|
|
|
favourite
|
|
|
|
end
|
|
|
|
end
|