mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Merge c40cc9e2f8
into a50c8e951f
This commit is contained in:
commit
65ffd7c89b
5 changed files with 27 additions and 2 deletions
|
@ -23,6 +23,9 @@ class Webhook < ApplicationRecord
|
||||||
report.updated
|
report.updated
|
||||||
status.created
|
status.created
|
||||||
status.updated
|
status.updated
|
||||||
|
follow.removed
|
||||||
|
block.removed
|
||||||
|
mute.removed
|
||||||
).freeze
|
).freeze
|
||||||
|
|
||||||
attr_writer :current_account
|
attr_writer :current_account
|
||||||
|
@ -58,10 +61,12 @@ class Webhook < ApplicationRecord
|
||||||
|
|
||||||
def self.permission_for_event(event)
|
def self.permission_for_event(event)
|
||||||
case event
|
case event
|
||||||
when 'account.approved', 'account.created', 'account.updated'
|
when 'account.approved', 'account.created', 'account.updated', 'follow.removed'
|
||||||
:manage_users
|
:manage_users
|
||||||
when 'report.created', 'report.updated'
|
when 'report.created', 'report.updated'
|
||||||
:manage_reports
|
:manage_reports
|
||||||
|
when 'block.removed', 'mute.removed'
|
||||||
|
:manage_blocks
|
||||||
when 'status.created', 'status.updated'
|
when 'status.created', 'status.updated'
|
||||||
:view_devops
|
:view_devops
|
||||||
end
|
end
|
||||||
|
|
|
@ -7,6 +7,9 @@ class UnblockService < BaseService
|
||||||
return unless account.blocking?(target_account)
|
return unless account.blocking?(target_account)
|
||||||
|
|
||||||
unblock = account.unblock!(target_account)
|
unblock = account.unblock!(target_account)
|
||||||
|
|
||||||
|
TriggerWebhookWithObjectWorker.perform_async('block.removed', Oj.to_json({ 'account_id': unblock.account_id, 'target_account_id': unblock.target_account_id, 'id': unblock.id }))
|
||||||
|
|
||||||
create_notification(unblock) if !target_account.local? && target_account.activitypub?
|
create_notification(unblock) if !target_account.local? && target_account.activitypub?
|
||||||
unblock
|
unblock
|
||||||
end
|
end
|
||||||
|
|
|
@ -29,6 +29,8 @@ class UnfollowService < BaseService
|
||||||
|
|
||||||
follow.destroy!
|
follow.destroy!
|
||||||
|
|
||||||
|
TriggerWebhookWithObjectWorker.perform_async('follow.removed', Oj.to_json({ 'account_id': follow.account_id, 'target_account_id': follow.target_account_id, 'id': follow.id }))
|
||||||
|
|
||||||
create_notification(follow) if !@target_account.local? && @target_account.activitypub?
|
create_notification(follow) if !@target_account.local? && @target_account.activitypub?
|
||||||
create_reject_notification(follow) if @target_account.local? && !@source_account.local? && @source_account.activitypub?
|
create_reject_notification(follow) if @target_account.local? && !@source_account.local? && @source_account.activitypub?
|
||||||
UnmergeWorker.perform_async(@target_account.id, @source_account.id) unless @options[:skip_unmerge]
|
UnmergeWorker.perform_async(@target_account.id, @source_account.id) unless @options[:skip_unmerge]
|
||||||
|
|
|
@ -4,7 +4,9 @@ class UnmuteService < BaseService
|
||||||
def call(account, target_account)
|
def call(account, target_account)
|
||||||
return unless account.muting?(target_account)
|
return unless account.muting?(target_account)
|
||||||
|
|
||||||
account.unmute!(target_account)
|
unmute = account.unmute!(target_account)
|
||||||
|
|
||||||
|
TriggerWebhookWithObjectWorker.perform_async('mute.removed', Oj.to_json({ 'account_id': unmute.account_id, 'target_account_id': unmute.target_account_id, 'id': unmute.id }))
|
||||||
|
|
||||||
MergeWorker.perform_async(target_account.id, account.id) if account.following?(target_account)
|
MergeWorker.perform_async(target_account.id, account.id) if account.following?(target_account)
|
||||||
end
|
end
|
||||||
|
|
13
app/workers/trigger_webhook_with_object_worker.rb
Normal file
13
app/workers/trigger_webhook_with_object_worker.rb
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class TriggerWebhookWithObjectWorker
|
||||||
|
include Sidekiq::Worker
|
||||||
|
|
||||||
|
# Triggers a webhook for a destructive event (e.g. an unfollow),
|
||||||
|
# where the object cannot be queried from the database.
|
||||||
|
# @param event [String] type of the event
|
||||||
|
# @param object [String] event payload serialized with JSON
|
||||||
|
def perform(event, object)
|
||||||
|
WebhookService.new.call(event, Oj.load(object))
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue