mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 05:06:22 +00:00
26 lines
908 B
Ruby
26 lines
908 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Envía un reporte directamente a la instancia remota
|
||
|
#
|
||
|
# @todo El panel debería ser su propia instancia y firmar sus propios
|
||
|
# mensajes.
|
||
|
# @todo Como la Social Inbox no soporta enviar actividades
|
||
|
# a destinataries que no sean seguidores, enviamos el reporte
|
||
|
# directamente a la instancia.
|
||
|
# @see {https://github.com/hyphacoop/social.distributed.press/issues/14}
|
||
|
class ActivityPub
|
||
|
class RemoteFlagJob < ApplicationJob
|
||
|
self.priority = 30
|
||
|
|
||
|
def perform(remote_flag:)
|
||
|
client = remote_flag.site.social_inbox.client_for(remote_flag.actor.content['inbox'])
|
||
|
response = client.post(endpoint: '', body: remote_flag.content)
|
||
|
|
||
|
raise 'No se pudo enviar el reporte' unless response.ok?
|
||
|
rescue Exception => e
|
||
|
ExceptionNotifier.notify_exception(e, data: { remote_flag: remote_flag.id, response: response.parsed_response })
|
||
|
raise
|
||
|
end
|
||
|
end
|
||
|
end
|