Centralize notification logic
This commit is contained in:
parent
46bf933e72
commit
c9c16e17e2
5 changed files with 193 additions and 132 deletions
|
|
@ -1,77 +0,0 @@
|
|||
// Copyright 2023 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { ConversationModel } from '../models/conversations';
|
||||
import type { ReadonlyMessageAttributesType } from '../model-types.d';
|
||||
import * as log from '../logging/log';
|
||||
import { DataReader } from '../sql/Client';
|
||||
import { isGroup } from './whatTypeOfConversation';
|
||||
import { isMessageUnread } from './isMessageUnread';
|
||||
|
||||
export async function shouldReplyNotifyUser(
|
||||
messageAttributes: Pick<
|
||||
ReadonlyMessageAttributesType,
|
||||
'readStatus' | 'storyId'
|
||||
>,
|
||||
conversation: ConversationModel
|
||||
): Promise<boolean> {
|
||||
// Don't notify if the message has already been read
|
||||
if (!isMessageUnread(messageAttributes)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const { storyId } = messageAttributes;
|
||||
|
||||
// If this is not a reply to a story, always notify.
|
||||
if (storyId == null) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Always notify if this is not a group
|
||||
if (!isGroup(conversation.attributes)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
const matchedStory = window.reduxStore
|
||||
.getState()
|
||||
.stories.stories.find(story => {
|
||||
return story.messageId === storyId;
|
||||
});
|
||||
|
||||
// If we can't find the story, don't notify
|
||||
if (matchedStory == null) {
|
||||
log.warn("Couldn't find story for reply");
|
||||
return false;
|
||||
}
|
||||
|
||||
const ourAci = window.textsecure.storage.user.getAci();
|
||||
const storySourceAci = matchedStory.sourceServiceId;
|
||||
|
||||
const currentUserIdSource = storySourceAci === ourAci;
|
||||
|
||||
// If the story is from the current user, always notify
|
||||
if (currentUserIdSource) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// If the story is from a different user, only notify if the user has
|
||||
// replied or reacted to the story
|
||||
|
||||
const replies = await DataReader.getOlderMessagesByConversation({
|
||||
conversationId: conversation.id,
|
||||
limit: 9000,
|
||||
storyId,
|
||||
includeStoryReplies: true,
|
||||
});
|
||||
|
||||
const prevCurrentUserReply = replies.find(replyMessage => {
|
||||
return replyMessage.type === 'outgoing';
|
||||
});
|
||||
|
||||
if (prevCurrentUserReply != null) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Otherwise don't notify
|
||||
return false;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue