You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
641 B
23 lines
641 B
# frozen_string_literal: true |
|
|
|
class UnfavouriteService < BaseService |
|
include Payloadable |
|
|
|
def call(account, status) |
|
favourite = Favourite.find_by!(account: account, status: status) |
|
favourite.destroy! |
|
create_notification(favourite) if !status.account.local? && status.account.activitypub? |
|
favourite |
|
end |
|
|
|
private |
|
|
|
def create_notification(favourite) |
|
status = favourite.status |
|
ActivityPub::DeliveryWorker.perform_async(build_json(favourite), favourite.account_id, status.account.inbox_url) |
|
end |
|
|
|
def build_json(favourite) |
|
Oj.dump(serialize_payload(favourite, ActivityPub::UndoLikeSerializer)) |
|
end |
|
end
|
|
|