This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-06 03:51:55 -08: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-10-05 04:50:21 -07:00
|
|
|
HubPingWorker.perform_async(account.id)
|
2016-03-19 11:20:07 -07:00
|
|
|
|
|
|
|
if status.local?
|
2016-10-03 09:49:52 -07:00
|
|
|
NotificationMailer.favourite(status, account).deliver_later unless status.account.blocking?(account)
|
2016-03-19 11:20:07 -07:00
|
|
|
else
|
2016-03-26 05:42:10 -07:00
|
|
|
NotificationWorker.perform_async(favourite.stream_entry.id, status.account_id)
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
|
|
|
|
2016-03-06 03:51:55 -08:00
|
|
|
favourite
|
|
|
|
end
|
|
|
|
end
|