mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-13 02:12:52 +00:00
27965ce5ed
* Add trending statuses * Fix dangling items with stale scores in localized sets * Various fixes and improvements - Change approve_all/reject_all to approve_accounts/reject_accounts - Change Trends::Query methods to not mutate the original query - Change Trends::Query#skip to offset - Change follow recommendations to be refreshed in a transaction * Add tests for trending statuses filtering behaviour * Fix not applying filtering scope in controller
50 lines
1.3 KiB
Ruby
50 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class FavouriteService < BaseService
|
|
include Authorization
|
|
include Payloadable
|
|
|
|
# Favourite a status and notify remote user
|
|
# @param [Account] account
|
|
# @param [Status] status
|
|
# @return [Favourite]
|
|
def call(account, status)
|
|
authorize_with account, status, :favourite?
|
|
|
|
favourite = Favourite.find_by(account: account, status: status)
|
|
|
|
return favourite unless favourite.nil?
|
|
|
|
favourite = Favourite.create!(account: account, status: status)
|
|
|
|
Trends.statuses.register(status)
|
|
|
|
create_notification(favourite)
|
|
bump_potential_friendship(account, status)
|
|
|
|
favourite
|
|
end
|
|
|
|
private
|
|
|
|
def create_notification(favourite)
|
|
status = favourite.status
|
|
|
|
if status.account.local?
|
|
NotifyService.new.call(status.account, :favourite, favourite)
|
|
elsif status.account.activitypub?
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(favourite), favourite.account_id, status.account.inbox_url)
|
|
end
|
|
end
|
|
|
|
def bump_potential_friendship(account, status)
|
|
ActivityTracker.increment('activity:interactions')
|
|
return if account.following?(status.account_id)
|
|
PotentialFriendshipTracker.record(account.id, status.account_id, :favourite)
|
|
end
|
|
|
|
def build_json(favourite)
|
|
Oj.dump(serialize_payload(favourite, ActivityPub::LikeSerializer))
|
|
end
|
|
end
|