about summary refs log tree commit diff
path: root/app/services/favourite_service.rb
blob: 4a8ecfacbf6e460b8b740bb0dd5b7cc65d81647a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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)
    account.ping!(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url])

    if status.local?
      NotificationMailer.favourite(status, account).deliver_later
    else
      send_interaction_service.(favourite.stream_entry, status.account)
    end

    favourite
  end

  private

  def send_interaction_service
    @send_interaction_service ||= SendInteractionService.new
  end
end