Adding routes to follow, unfollow, favourite and reblog (locally known models)
This commit is contained in:
parent
aab330eb2d
commit
c605b828b5
4 changed files with 57 additions and 1 deletions
19
app/services/favourite_service.rb
Normal file
19
app/services/favourite_service.rb
Normal file
|
@ -0,0 +1,19 @@
|
|||
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])
|
||||
return favourite if status.local?
|
||||
send_interaction_service.(favourite.stream_entry, status.account)
|
||||
favourite
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def send_interaction_service
|
||||
@send_interaction_service ||= SendInteractionService.new
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue