2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FavouriteService < BaseService
|
|
|
|
include Authorization
|
|
|
|
|
|
|
|
# Favourite a status and notify remote user
|
|
|
|
# @param [Account] account
|
|
|
|
# @param [Status] status
|
|
|
|
# @return [Favourite]
|
|
|
|
def call(account, status)
|
|
|
|
authorize_with account, status, :favourite?
|
|
|
|
|
2021-02-10 03:32:24 +00:00
|
|
|
favourite = Favourite.find_or_create_by!(account: account, status: status)
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
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)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def bump_potential_friendship(account, status)
|
2021-02-04 18:48:50 +00:00
|
|
|
# ActivityTracker.increment('activity:interactions')
|
2019-07-02 08:10:25 +01:00
|
|
|
return if account.following?(status.account_id)
|
|
|
|
PotentialFriendshipTracker.record(account.id, status.account_id, :favourite)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|