2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-06 20:51:55 +09:00
|
|
|
class FavouriteService < BaseService
|
2017-05-30 01:22:22 +09:00
|
|
|
include Authorization
|
|
|
|
|
2016-03-06 20:51:55 +09:00
|
|
|
# Favourite a status and notify remote user
|
|
|
|
# @param [Account] account
|
|
|
|
# @param [Status] status
|
|
|
|
# @return [Favourite]
|
|
|
|
def call(account, status)
|
2017-05-30 01:22:22 +09:00
|
|
|
authorize_with account, status, :show?
|
2016-12-30 04:33:26 +09:00
|
|
|
|
2017-06-08 22:07:39 +09:00
|
|
|
favourite = Favourite.find_by(account: account, status: status)
|
|
|
|
|
|
|
|
return favourite unless favourite.nil?
|
|
|
|
|
2016-03-06 20:51:55 +09:00
|
|
|
favourite = Favourite.create!(account: account, status: status)
|
2016-11-28 21:36:47 +09:00
|
|
|
|
2016-03-20 03:20:07 +09:00
|
|
|
if status.local?
|
2016-12-30 04:33:26 +09:00
|
|
|
NotifyService.new.call(favourite.status.account, favourite)
|
2016-03-20 03:20:07 +09:00
|
|
|
else
|
2017-02-12 08:48:53 +09:00
|
|
|
NotificationWorker.perform_async(build_xml(favourite), account.id, status.account_id)
|
2016-03-20 03:20:07 +09:00
|
|
|
end
|
|
|
|
|
2016-03-06 20:51:55 +09:00
|
|
|
favourite
|
|
|
|
end
|
2017-02-12 08:48:53 +09:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build_xml(favourite)
|
2017-07-19 08:37:26 +09:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.favourite_salmon(favourite))
|
2017-02-12 08:48:53 +09:00
|
|
|
end
|
2016-03-06 20:51:55 +09:00
|
|
|
end
|