// Copyright 2019 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { ThunkAction, ThunkDispatch } from 'redux-thunk'; import { debounce, omit, reject } from 'lodash'; import type { ReadonlyDeep } from 'type-fest'; import type { StateType as RootStateType } from '../reducer'; import { cleanSearchTerm } from '../../util/cleanSearchTerm'; import { filterAndSortConversationsByRecent } from '../../util/filterAndSortConversations'; import type { ClientSearchResultMessageType, ClientInterface, } from '../../sql/Interface'; import dataInterface from '../../sql/Client'; import { makeLookup } from '../../util/makeLookup'; import type { ConversationType, ConversationUnloadedActionType, MessageDeletedActionType, MessageType, RemoveAllConversationsActionType, TargetedConversationChangedActionType, ShowArchivedConversationsActionType, } from './conversations'; import { getQuery, getSearchConversation } from '../selectors/search'; import { getAllConversations } from '../selectors/conversations'; import { getIntl, getRegionCode, getUserConversationId, } from '../selectors/user'; import { strictAssert } from '../../util/assert'; import { CONVERSATION_UNLOADED, TARGETED_CONVERSATION_CHANGED, } from './conversations'; const { searchMessages: dataSearchMessages, searchMessagesInConversation, }: ClientInterface = dataInterface; // State export type MessageSearchResultType = ReadonlyDeep< MessageType & { snippet?: string; } >; export type MessageSearchResultLookupType = ReadonlyDeep<{ [id: string]: MessageSearchResultType; }>; export type SearchStateType = ReadonlyDeep<{ startSearchCounter: number; searchConversationId?: string; globalSearch?: boolean; contactIds: Array; conversationIds: Array; query: string; messageIds: Array; // We do store message data to pass through the selector messageLookup: MessageSearchResultLookupType; targetedMessage?: string; // Loading state discussionsLoading: boolean; messagesLoading: boolean; }>; // Actions type SearchMessagesResultsFulfilledActionType = ReadonlyDeep<{ type: 'SEARCH_MESSAGES_RESULTS_FULFILLED'; payload: { messages: Array; query: string; }; }>; type SearchDiscussionsResultsFulfilledActionType = ReadonlyDeep<{ type: 'SEARCH_DISCUSSIONS_RESULTS_FULFILLED'; payload: { conversationIds: Array; contactIds: Array; query: string; }; }>; type UpdateSearchTermActionType = ReadonlyDeep<{ type: 'SEARCH_UPDATE'; payload: { query: string; }; }>; type StartSearchActionType = ReadonlyDeep<{ type: 'SEARCH_START'; payload: { globalSearch: boolean }; }>; type ClearSearchActionType = ReadonlyDeep<{ type: 'SEARCH_CLEAR'; payload: null; }>; type ClearConversationSearchActionType = ReadonlyDeep<{ type: 'CLEAR_CONVERSATION_SEARCH'; payload: null; }>; type SearchInConversationActionType = ReadonlyDeep<{ type: 'SEARCH_IN_CONVERSATION'; payload: { searchConversationId: string }; }>; export type SearchActionType = ReadonlyDeep< | SearchMessagesResultsFulfilledActionType | SearchDiscussionsResultsFulfilledActionType | UpdateSearchTermActionType | StartSearchActionType | ClearSearchActionType | ClearConversationSearchActionType | SearchInConversationActionType | MessageDeletedActionType | RemoveAllConversationsActionType | TargetedConversationChangedActionType | ShowArchivedConversationsActionType | ConversationUnloadedActionType >; // Action Creators export const actions = { startSearch, clearSearch, clearConversationSearch, searchInConversation, updateSearchTerm, }; function startSearch(): StartSearchActionType { return { type: 'SEARCH_START', payload: { globalSearch: true }, }; } function clearSearch(): ClearSearchActionType { return { type: 'SEARCH_CLEAR', payload: null, }; } function clearConversationSearch(): ClearConversationSearchActionType { return { type: 'CLEAR_CONVERSATION_SEARCH', payload: null, }; } function searchInConversation( searchConversationId: string ): SearchInConversationActionType { return { type: 'SEARCH_IN_CONVERSATION', payload: { searchConversationId }, }; } function updateSearchTerm( query: string ): ThunkAction { return (dispatch, getState) => { dispatch({ type: 'SEARCH_UPDATE', payload: { query }, }); const state = getState(); const ourConversationId = getUserConversationId(state); strictAssert( ourConversationId, 'updateSearchTerm our conversation is missing' ); doSearch({ dispatch, allConversations: getAllConversations(state), regionCode: getRegionCode(state), noteToSelf: getIntl(state)('noteToSelf').toLowerCase(), ourConversationId, query: getQuery(state), searchConversationId: getSearchConversation(state)?.id, }); }; } const doSearch = debounce( ({ dispatch, allConversations, regionCode, noteToSelf, ourConversationId, query, searchConversationId, }: Readonly<{ dispatch: ThunkDispatch< RootStateType, unknown, | SearchMessagesResultsFulfilledActionType | SearchDiscussionsResultsFulfilledActionType >; allConversations: ReadonlyArray; noteToSelf: string; regionCode: string | undefined; ourConversationId: string; query: string; searchConversationId: undefined | string; }>) => { if (!query) { return; } void (async () => { dispatch({ type: 'SEARCH_MESSAGES_RESULTS_FULFILLED', payload: { messages: await queryMessages(query, searchConversationId), query, }, }); })(); if (!searchConversationId) { void (async () => { const { conversationIds, contactIds } = await queryConversationsAndContacts(query, { ourConversationId, noteToSelf, regionCode, allConversations, }); dispatch({ type: 'SEARCH_DISCUSSIONS_RESULTS_FULFILLED', payload: { conversationIds, contactIds, query, }, }); })(); } }, 200 ); async function queryMessages( query: string, searchConversationId?: string ): Promise> { try { const normalized = cleanSearchTerm(query); if (normalized.length === 0) { return []; } if (searchConversationId) { return searchMessagesInConversation(normalized, searchConversationId); } return dataSearchMessages(normalized); } catch (e) { return []; } } async function queryConversationsAndContacts( query: string, options: { ourConversationId: string; noteToSelf: string; regionCode: string | undefined; allConversations: ReadonlyArray; } ): Promise<{ contactIds: Array; conversationIds: Array; }> { const { ourConversationId, noteToSelf, regionCode, allConversations } = options; const searchResults: Array = filterAndSortConversationsByRecent(allConversations, query, regionCode); // Split into two groups - active conversations and items just from address book let conversationIds: Array = []; let contactIds: Array = []; const max = searchResults.length; for (let i = 0; i < max; i += 1) { const conversation = searchResults[i]; if (conversation.type === 'direct' && !conversation.lastMessage) { contactIds.push(conversation.id); } else { conversationIds.push(conversation.id); } } // Inject synthetic Note to Self entry if query matches localized 'Note to Self' if (noteToSelf.indexOf(query.toLowerCase()) !== -1) { // ensure that we don't have duplicates in our results contactIds = contactIds.filter(id => id !== ourConversationId); conversationIds = conversationIds.filter(id => id !== ourConversationId); contactIds.unshift(ourConversationId); } return { conversationIds, contactIds }; } // Reducer export function getEmptyState(): SearchStateType { return { startSearchCounter: 0, query: '', messageIds: [], messageLookup: {}, conversationIds: [], contactIds: [], discussionsLoading: false, messagesLoading: false, }; } export function reducer( state: Readonly = getEmptyState(), action: Readonly ): SearchStateType { if (action.type === 'SHOW_ARCHIVED_CONVERSATIONS') { return getEmptyState(); } if (action.type === 'SEARCH_START') { return { ...state, searchConversationId: undefined, globalSearch: true, startSearchCounter: state.startSearchCounter + 1, }; } if (action.type === 'SEARCH_CLEAR') { return { ...getEmptyState(), startSearchCounter: state.startSearchCounter, }; } if (action.type === 'SEARCH_UPDATE') { const { payload } = action; const { query } = payload; const hasQuery = Boolean(query); const isWithinConversation = Boolean(state.searchConversationId); return { ...state, query, messagesLoading: hasQuery, ...(hasQuery ? { messageIds: [], messageLookup: {}, discussionsLoading: !isWithinConversation, contactIds: [], conversationIds: [], } : {}), }; } if (action.type === 'SEARCH_IN_CONVERSATION') { const { payload } = action; const { searchConversationId } = payload; if (searchConversationId === state.searchConversationId) { return { ...state, startSearchCounter: state.startSearchCounter + 1, }; } return { ...getEmptyState(), searchConversationId, startSearchCounter: state.startSearchCounter + 1, }; } if (action.type === 'CLEAR_CONVERSATION_SEARCH') { const { searchConversationId } = state; return { ...getEmptyState(), searchConversationId, }; } if (action.type === 'SEARCH_MESSAGES_RESULTS_FULFILLED') { const { payload } = action; const { messages, query } = payload; // Reject if the associated query is not the most recent user-provided query if (state.query !== query) { return state; } const messageIds = messages.map(message => message.id); return { ...state, query, messageIds, messageLookup: makeLookup(messages, 'id'), messagesLoading: false, }; } if (action.type === 'SEARCH_DISCUSSIONS_RESULTS_FULFILLED') { const { payload } = action; const { contactIds, conversationIds, query } = payload; // Reject if the associated query is not the most recent user-provided query if (state.query !== query) { return state; } return { ...state, contactIds, conversationIds, discussionsLoading: false, }; } if (action.type === 'CONVERSATIONS_REMOVE_ALL') { return getEmptyState(); } if (action.type === TARGETED_CONVERSATION_CHANGED) { const { payload } = action; const { conversationId, messageId } = payload; const { searchConversationId } = state; if (searchConversationId && searchConversationId !== conversationId) { return getEmptyState(); } return { ...state, targetedMessage: messageId, }; } if (action.type === CONVERSATION_UNLOADED) { const { payload } = action; const { conversationId } = payload; const { searchConversationId } = state; if (searchConversationId && searchConversationId === conversationId) { return getEmptyState(); } return state; } if (action.type === 'MESSAGE_DELETED') { const { messageIds, messageLookup } = state; if (!messageIds || messageIds.length < 1) { return state; } const { payload } = action; const { id } = payload; return { ...state, messageIds: reject(messageIds, messageId => id === messageId), messageLookup: omit(messageLookup, id), }; } return state; }