1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Compare commits

...

4 commits

10 changed files with 37 additions and 35 deletions

View file

@ -60,7 +60,7 @@ export interface BaseNotificationGroupJSON {
interface NotificationGroupWithStatusJSON extends BaseNotificationGroupJSON { interface NotificationGroupWithStatusJSON extends BaseNotificationGroupJSON {
type: NotificationWithStatusType; type: NotificationWithStatusType;
status: ApiStatusJSON; status_id: string;
} }
interface NotificationWithStatusJSON extends BaseNotificationJSON { interface NotificationWithStatusJSON extends BaseNotificationJSON {

View file

@ -49,21 +49,14 @@ export const FilteredNotificationsBanner: React.FC = () => {
<span> <span>
<FormattedMessage <FormattedMessage
id='filtered_notifications_banner.pending_requests' id='filtered_notifications_banner.pending_requests'
defaultMessage='Notifications from {count, plural, =0 {no one} one {one person} other {# people}} you may know' defaultMessage='From {count, plural, =0 {no one} one {one person} other {# people}} you may know'
values={{ count: policy.summary.pending_requests_count }} values={{ count: policy.summary.pending_requests_count }}
/> />
</span> </span>
</div> </div>
<div className='filtered-notifications-banner__badge'> <div className='filtered-notifications-banner__badge'>
<div className='filtered-notifications-banner__badge__badge'> {toCappedNumber(policy.summary.pending_notifications_count)}
{toCappedNumber(policy.summary.pending_notifications_count)}
</div>
<FormattedMessage
id='filtered_notifications_banner.mentions'
defaultMessage='{count, plural, one {mention} other {mentions}}'
values={{ count: policy.summary.pending_notifications_count }}
/>
</div> </div>
</Link> </Link>
); );

View file

@ -300,8 +300,7 @@
"filter_modal.select_filter.subtitle": "Use an existing category or create a new one", "filter_modal.select_filter.subtitle": "Use an existing category or create a new one",
"filter_modal.select_filter.title": "Filter this post", "filter_modal.select_filter.title": "Filter this post",
"filter_modal.title.status": "Filter a post", "filter_modal.title.status": "Filter a post",
"filtered_notifications_banner.mentions": "{count, plural, one {mention} other {mentions}}", "filtered_notifications_banner.pending_requests": "From {count, plural, =0 {no one} one {one person} other {# people}} you may know",
"filtered_notifications_banner.pending_requests": "Notifications from {count, plural, =0 {no one} one {one person} other {# people}} you may know",
"filtered_notifications_banner.title": "Filtered notifications", "filtered_notifications_banner.title": "Filtered notifications",
"firehose.all": "All", "firehose.all": "All",
"firehose.local": "This server", "firehose.local": "This server",

View file

@ -124,9 +124,9 @@ export function createNotificationGroupFromJSON(
case 'mention': case 'mention':
case 'poll': case 'poll':
case 'update': { case 'update': {
const { status, ...groupWithoutStatus } = group; const { status_id: statusId, ...groupWithoutStatus } = group;
return { return {
statusId: status.id, statusId,
sampleAccountIds, sampleAccountIds,
...groupWithoutStatus, ...groupWithoutStatus,
}; };

View file

@ -10171,25 +10171,10 @@ noscript {
} }
&__badge { &__badge {
display: flex; background: $ui-button-background-color;
align-items: center; color: $white;
border-radius: 999px; border-radius: 100px;
background: var(--background-border-color); padding: 2px 8px;
color: $darker-text-color;
padding: 4px;
padding-inline-end: 8px;
gap: 6px;
font-weight: 500;
font-size: 11px;
line-height: 16px;
word-break: keep-all;
&__badge {
background: $ui-button-background-color;
color: $white;
border-radius: 100px;
padding: 2px 8px;
}
} }
} }

View file

@ -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

View file

@ -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

View file

@ -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]

View file

@ -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

View 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