2021-01-04 19:46:24 +00:00
|
|
|
// Copyright 2020-2021 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-03-31 20:03:38 +00:00
|
|
|
// Captures the globals put in place by preload.js, background.js and others
|
|
|
|
|
2021-06-16 00:44:14 +00:00
|
|
|
import { DeepPartial, Store } from 'redux';
|
2020-07-10 18:28:49 +00:00
|
|
|
import * as Backbone from 'backbone';
|
|
|
|
import * as Underscore from 'underscore';
|
2021-01-20 01:19:00 +00:00
|
|
|
import moment from 'moment';
|
|
|
|
import PQueue from 'p-queue/dist';
|
2021-09-22 20:59:54 +00:00
|
|
|
import { Ref } from 'react';
|
2021-01-20 01:19:00 +00:00
|
|
|
import { imageToBlurHash } from './util/imageToBlurHash';
|
2021-10-07 23:28:47 +00:00
|
|
|
import type { ParsedUrlQuery } from 'querystring';
|
2020-10-16 18:31:57 +00:00
|
|
|
import * as Util from './util';
|
2020-07-10 18:28:49 +00:00
|
|
|
import {
|
|
|
|
ConversationModelCollectionType,
|
|
|
|
MessageModelCollectionType,
|
2020-09-24 20:57:54 +00:00
|
|
|
MessageAttributesType,
|
2021-05-13 19:10:20 +00:00
|
|
|
ReactionAttributesType,
|
2020-07-10 18:28:49 +00:00
|
|
|
} from './model-types.d';
|
2021-07-14 23:39:52 +00:00
|
|
|
import { TextSecureType } from './textsecure.d';
|
2021-06-15 00:09:37 +00:00
|
|
|
import { Storage } from './textsecure/Storage';
|
2021-05-06 00:09:29 +00:00
|
|
|
import {
|
|
|
|
ChallengeHandler,
|
|
|
|
IPCRequest as IPCChallengeRequest,
|
|
|
|
} from './challenge';
|
2020-04-13 17:37:29 +00:00
|
|
|
import { WebAPIConnectType } from './textsecure/WebAPI';
|
2020-09-04 18:27:12 +00:00
|
|
|
import { CallingClass } from './services/calling';
|
2020-10-06 17:06:34 +00:00
|
|
|
import * as Groups from './groups';
|
2020-04-13 17:37:29 +00:00
|
|
|
import * as Crypto from './Crypto';
|
2021-04-16 23:13:13 +00:00
|
|
|
import * as Curve from './Curve';
|
2020-09-09 23:07:58 +00:00
|
|
|
import * as RemoteConfig from './RemoteConfig';
|
2021-01-20 01:19:00 +00:00
|
|
|
import * as OS from './OS';
|
2021-02-04 19:54:03 +00:00
|
|
|
import { getEnvironment } from './environment';
|
2020-10-06 17:06:34 +00:00
|
|
|
import * as zkgroup from './util/zkgroup';
|
2020-11-03 01:19:52 +00:00
|
|
|
import { LocalizerType, BodyRangesType, BodyRangeType } from './types/Util';
|
2021-08-20 01:56:39 +00:00
|
|
|
import * as EmbeddedContact from './types/EmbeddedContact';
|
2021-07-14 23:39:52 +00:00
|
|
|
import * as Errors from './types/errors';
|
2020-07-10 18:28:49 +00:00
|
|
|
import { ConversationController } from './ConversationController';
|
2020-09-09 22:50:44 +00:00
|
|
|
import { ReduxActions } from './state/types';
|
2020-10-30 17:52:21 +00:00
|
|
|
import { createStore } from './state/createStore';
|
2021-06-14 19:01:00 +00:00
|
|
|
import { createApp } from './state/roots/createApp';
|
2021-05-28 16:15:17 +00:00
|
|
|
import { createChatColorPicker } from './state/roots/createChatColorPicker';
|
2021-01-29 21:19:24 +00:00
|
|
|
import { createConversationDetails } from './state/roots/createConversationDetails';
|
2021-04-27 22:35:35 +00:00
|
|
|
import { createForwardMessageModal } from './state/roots/createForwardMessageModal';
|
2021-01-29 21:19:24 +00:00
|
|
|
import { createGroupLinkManagement } from './state/roots/createGroupLinkManagement';
|
2020-12-01 16:42:35 +00:00
|
|
|
import { createGroupV1MigrationModal } from './state/roots/createGroupV1MigrationModal';
|
2021-01-29 22:16:48 +00:00
|
|
|
import { createGroupV2JoinModal } from './state/roots/createGroupV2JoinModal';
|
2021-01-29 21:19:24 +00:00
|
|
|
import { createGroupV2Permissions } from './state/roots/createGroupV2Permissions';
|
2020-10-30 17:52:21 +00:00
|
|
|
import { createLeftPane } from './state/roots/createLeftPane';
|
2021-03-24 22:06:12 +00:00
|
|
|
import { createMessageDetail } from './state/roots/createMessageDetail';
|
2021-08-05 12:35:33 +00:00
|
|
|
import { createConversationNotificationsSettings } from './state/roots/createConversationNotificationsSettings';
|
2021-01-29 21:19:24 +00:00
|
|
|
import { createPendingInvites } from './state/roots/createPendingInvites';
|
2020-10-30 17:52:21 +00:00
|
|
|
import { createSafetyNumberViewer } from './state/roots/createSafetyNumberViewer';
|
|
|
|
import { createShortcutGuideModal } from './state/roots/createShortcutGuideModal';
|
|
|
|
import { createStickerManager } from './state/roots/createStickerManager';
|
|
|
|
import { createStickerPreviewModal } from './state/roots/createStickerPreviewModal';
|
2021-06-14 19:01:00 +00:00
|
|
|
import * as appDuck from './state/ducks/app';
|
2020-10-30 17:52:21 +00:00
|
|
|
import * as callingDuck from './state/ducks/calling';
|
|
|
|
import * as conversationsDuck from './state/ducks/conversations';
|
|
|
|
import * as emojisDuck from './state/ducks/emojis';
|
|
|
|
import * as expirationDuck from './state/ducks/expiration';
|
|
|
|
import * as itemsDuck from './state/ducks/items';
|
2021-04-27 22:35:35 +00:00
|
|
|
import * as linkPreviewsDuck from './state/ducks/linkPreviews';
|
2020-10-30 17:52:21 +00:00
|
|
|
import * as networkDuck from './state/ducks/network';
|
|
|
|
import * as updatesDuck from './state/ducks/updates';
|
|
|
|
import * as userDuck from './state/ducks/user';
|
|
|
|
import * as searchDuck from './state/ducks/search';
|
|
|
|
import * as stickersDuck from './state/ducks/stickers';
|
|
|
|
import * as conversationsSelectors from './state/selectors/conversations';
|
|
|
|
import * as searchSelectors from './state/selectors/search';
|
2020-09-09 02:25:05 +00:00
|
|
|
import AccountManager from './textsecure/AccountManager';
|
2021-04-08 16:24:21 +00:00
|
|
|
import { SendOptionsType } from './textsecure/SendMessage';
|
2020-07-07 00:56:56 +00:00
|
|
|
import Data from './sql/Client';
|
2020-09-24 20:57:54 +00:00
|
|
|
import { UserMessage } from './types/Message';
|
|
|
|
import { PhoneNumberFormat } from 'google-libphonenumber';
|
|
|
|
import { MessageModel } from './models/messages';
|
|
|
|
import { ConversationModel } from './models/conversations';
|
|
|
|
import { combineNames } from './util';
|
|
|
|
import { BatcherType } from './util/batcher';
|
2021-01-20 01:19:00 +00:00
|
|
|
import { AttachmentList } from './components/conversation/AttachmentList';
|
|
|
|
import { CaptionEditor } from './components/CaptionEditor';
|
2021-05-28 16:15:17 +00:00
|
|
|
import { ChatColorPicker } from './components/ChatColorPicker';
|
2021-04-27 19:29:59 +00:00
|
|
|
import { ConfirmationDialog } from './components/ConfirmationDialog';
|
2021-01-20 01:19:00 +00:00
|
|
|
import { ContactDetail } from './components/conversation/ContactDetail';
|
|
|
|
import { ContactModal } from './components/conversation/ContactModal';
|
2020-10-06 17:06:34 +00:00
|
|
|
import { ErrorModal } from './components/ErrorModal';
|
2021-01-20 01:19:00 +00:00
|
|
|
import { Lightbox } from './components/Lightbox';
|
|
|
|
import { MediaGallery } from './components/conversation/media-gallery/MediaGallery';
|
|
|
|
import { MessageDetail } from './components/conversation/MessageDetail';
|
2020-10-06 17:06:34 +00:00
|
|
|
import { ProgressModal } from './components/ProgressModal';
|
2021-01-20 01:19:00 +00:00
|
|
|
import { Quote } from './components/conversation/Quote';
|
|
|
|
import { StagedLinkPreview } from './components/conversation/StagedLinkPreview';
|
2021-06-25 23:52:56 +00:00
|
|
|
import { DisappearingTimeDialog } from './components/DisappearingTimeDialog';
|
2021-10-23 00:41:45 +00:00
|
|
|
import { WhatsNewLink } from './components/WhatsNewLink';
|
2021-01-29 21:19:24 +00:00
|
|
|
import { MIMEType } from './types/MIME';
|
2021-07-14 23:39:52 +00:00
|
|
|
import { DownloadedAttachmentType } from './types/Attachment';
|
2021-02-18 16:40:26 +00:00
|
|
|
import { ElectronLocaleType } from './util/mapToSupportLocale';
|
2021-04-16 23:13:13 +00:00
|
|
|
import { SignalProtocolStore } from './SignalProtocolStore';
|
2021-03-13 01:22:36 +00:00
|
|
|
import { StartupQueue } from './util/StartupQueue';
|
2021-06-09 22:28:54 +00:00
|
|
|
import { SocketStatus } from './types/SocketStatus';
|
2021-04-08 16:24:21 +00:00
|
|
|
import SyncRequest from './textsecure/SyncRequest';
|
2021-06-08 21:31:35 +00:00
|
|
|
import { ConversationColorType, CustomColorType } from './types/Colors';
|
2021-06-16 00:44:14 +00:00
|
|
|
import { MessageController } from './util/MessageController';
|
|
|
|
import { StateType } from './state/reducer';
|
2021-06-29 17:18:03 +00:00
|
|
|
import { SystemTraySetting } from './types/SystemTraySetting';
|
2021-09-10 02:38:11 +00:00
|
|
|
import { UUID } from './types/UUID';
|
|
|
|
import { Address } from './types/Address';
|
|
|
|
import { QualifiedAddress } from './types/QualifiedAddress';
|
2021-08-11 19:29:07 +00:00
|
|
|
import { CI } from './CI';
|
2021-09-17 22:24:21 +00:00
|
|
|
import { IPCEventsType, IPCEventsValuesType } from './util/createIPCEvents';
|
2021-08-30 21:32:56 +00:00
|
|
|
import { ConversationView } from './views/conversation_view';
|
2021-10-07 23:28:47 +00:00
|
|
|
import type { SignalContextType } from './windows/context';
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2020-09-04 01:25:19 +00:00
|
|
|
export { Long } from 'long';
|
|
|
|
|
2020-06-26 00:08:58 +00:00
|
|
|
type TaskResultType = any;
|
|
|
|
|
2020-11-20 17:30:45 +00:00
|
|
|
export type WhatIsThis = any;
|
2020-09-24 20:57:54 +00:00
|
|
|
|
2021-01-04 18:47:14 +00:00
|
|
|
// Synced with the type in ts/shims/showConfirmationDialog
|
|
|
|
// we are duplicating it here because that file cannot import/export.
|
|
|
|
type ConfirmationDialogViewProps = {
|
|
|
|
cancelText?: string;
|
|
|
|
confirmStyle?: 'affirmative' | 'negative';
|
|
|
|
message: string;
|
|
|
|
okText: string;
|
2021-02-26 21:06:37 +00:00
|
|
|
reject?: (error: Error) => void;
|
2021-01-04 18:47:14 +00:00
|
|
|
resolve: () => void;
|
|
|
|
};
|
|
|
|
|
2021-09-29 20:23:06 +00:00
|
|
|
export declare class WebAudioRecorderClass {
|
|
|
|
constructor(
|
|
|
|
node: GainNode,
|
|
|
|
options: {
|
|
|
|
encoding: string;
|
|
|
|
workerDir: string;
|
|
|
|
options?: { timeLimit?: number };
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
// Callbacks
|
|
|
|
onComplete?: (recorder: WebAudioRecorderClass, blob: Blob) => unknown;
|
|
|
|
onError?: (recorder: WebAudioRecorderClass, error: Error) => unknown;
|
|
|
|
onTimeout?: () => unknown;
|
|
|
|
|
|
|
|
// Class properties
|
|
|
|
startRecording: () => unknown;
|
|
|
|
finishRecording: () => unknown;
|
|
|
|
isRecording: () => boolean;
|
|
|
|
cancelRecording: () => unknown;
|
|
|
|
worker: Worker;
|
|
|
|
}
|
|
|
|
|
2020-03-31 20:03:38 +00:00
|
|
|
declare global {
|
2021-01-14 18:07:05 +00:00
|
|
|
// We want to extend `window`'s properties, so we need an interface.
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
2020-03-31 20:03:38 +00:00
|
|
|
interface Window {
|
2021-02-26 21:06:37 +00:00
|
|
|
startApp: () => void;
|
|
|
|
|
2021-09-17 18:27:53 +00:00
|
|
|
QRCode: any;
|
|
|
|
removeSetupMenuItems: () => unknown;
|
2021-10-27 16:16:09 +00:00
|
|
|
showPermissionsPopup: () => Promise<void>;
|
2021-09-17 18:27:53 +00:00
|
|
|
|
|
|
|
FontFace: typeof FontFace;
|
2020-09-24 20:57:54 +00:00
|
|
|
_: typeof Underscore;
|
|
|
|
$: typeof jQuery;
|
|
|
|
|
2021-01-20 01:19:00 +00:00
|
|
|
moment: typeof moment;
|
|
|
|
imageToBlurHash: typeof imageToBlurHash;
|
2020-09-24 20:57:54 +00:00
|
|
|
loadImage: any;
|
2021-01-20 01:19:00 +00:00
|
|
|
isBehindProxy: () => boolean;
|
2021-10-27 17:54:16 +00:00
|
|
|
getAutoLaunch: () => Promise<boolean>;
|
|
|
|
setAutoLaunch: (value: boolean) => Promise<void>;
|
2020-09-24 20:57:54 +00:00
|
|
|
|
|
|
|
PQueue: typeof PQueue;
|
|
|
|
PQueueType: PQueue;
|
2021-02-26 21:06:37 +00:00
|
|
|
Mustache: {
|
|
|
|
render: (template: string, data: any, partials?: any) => string;
|
|
|
|
parse: (template: string) => void;
|
|
|
|
};
|
2021-09-29 20:23:06 +00:00
|
|
|
WebAudioRecorder: typeof WebAudioRecorderClass;
|
2020-09-24 20:57:54 +00:00
|
|
|
|
|
|
|
WhatIsThis: WhatIsThis;
|
|
|
|
|
2021-06-14 19:01:00 +00:00
|
|
|
addSetupMenuItems: () => void;
|
2021-03-05 17:57:09 +00:00
|
|
|
attachmentDownloadQueue: Array<MessageModel> | undefined;
|
2021-03-13 01:22:36 +00:00
|
|
|
startupProcessingQueue: StartupQueue | undefined;
|
2020-09-24 20:57:54 +00:00
|
|
|
baseAttachmentsPath: string;
|
|
|
|
baseStickersPath: string;
|
|
|
|
baseTempPath: string;
|
2021-09-23 18:16:09 +00:00
|
|
|
drawAttention: () => void;
|
2020-09-24 20:57:54 +00:00
|
|
|
enterKeyboardMode: () => void;
|
|
|
|
enterMouseMode: () => void;
|
2021-07-23 17:23:50 +00:00
|
|
|
getAccountManager: () => AccountManager;
|
2021-05-03 16:38:20 +00:00
|
|
|
getBuiltInImages: () => Promise<Array<string>>;
|
2020-07-10 18:28:49 +00:00
|
|
|
getConversations: () => ConversationModelCollectionType;
|
2021-09-13 19:00:32 +00:00
|
|
|
getBuildCreation: () => number;
|
2021-02-04 19:54:03 +00:00
|
|
|
getEnvironment: typeof getEnvironment;
|
2020-07-10 18:28:49 +00:00
|
|
|
getExpiration: () => string;
|
2021-09-17 18:27:53 +00:00
|
|
|
getHostName: () => string;
|
2020-07-10 18:28:49 +00:00
|
|
|
getInboxCollection: () => ConversationModelCollectionType;
|
2020-10-30 17:52:21 +00:00
|
|
|
getInteractionMode: () => 'mouse' | 'keyboard';
|
2021-02-18 16:40:26 +00:00
|
|
|
getLocale: () => ElectronLocaleType;
|
2020-06-04 18:16:19 +00:00
|
|
|
getMediaCameraPermissions: () => Promise<boolean>;
|
2020-07-10 18:28:49 +00:00
|
|
|
getMediaPermissions: () => Promise<boolean>;
|
2020-09-09 02:25:05 +00:00
|
|
|
getServerPublicParams: () => string;
|
2020-12-07 19:40:11 +00:00
|
|
|
getSfuUrl: () => string;
|
2021-06-09 22:28:54 +00:00
|
|
|
getSocketStatus: () => SocketStatus;
|
2021-04-08 17:09:54 +00:00
|
|
|
getSyncRequest: (timeoutMillis?: number) => SyncRequest;
|
2020-07-10 18:28:49 +00:00
|
|
|
getTitle: () => string;
|
2020-09-09 02:25:05 +00:00
|
|
|
waitForEmptyEventQueue: () => Promise<void>;
|
2020-09-09 22:50:44 +00:00
|
|
|
getVersion: () => string;
|
2020-06-04 18:16:19 +00:00
|
|
|
showCallingPermissionsPopup: (forCamera: boolean) => Promise<void>;
|
|
|
|
i18n: LocalizerType;
|
2020-09-24 20:57:54 +00:00
|
|
|
isActive: () => boolean;
|
2021-05-03 16:38:20 +00:00
|
|
|
isAfterVersion: (version: string, anotherVersion: string) => boolean;
|
|
|
|
isBeforeVersion: (version: string, anotherVersion: string) => boolean;
|
2021-02-01 20:01:25 +00:00
|
|
|
isFullScreen: () => boolean;
|
2020-04-13 17:37:29 +00:00
|
|
|
libphonenumber: {
|
|
|
|
util: {
|
|
|
|
getRegionCodeForNumber: (number: string) => string;
|
2020-09-24 20:57:54 +00:00
|
|
|
parseNumber: (
|
|
|
|
e164: string,
|
2021-06-25 16:08:16 +00:00
|
|
|
defaultRegionCode?: string
|
2021-06-22 23:16:50 +00:00
|
|
|
) =>
|
|
|
|
| { isValidNumber: false; error: unknown }
|
|
|
|
| {
|
|
|
|
isValidNumber: true;
|
|
|
|
regionCode: string | undefined;
|
|
|
|
countryCode: string;
|
|
|
|
nationalNumber: string;
|
|
|
|
e164: string;
|
|
|
|
};
|
2020-04-13 17:37:29 +00:00
|
|
|
};
|
2020-09-24 20:57:54 +00:00
|
|
|
parse: (number: string) => string;
|
|
|
|
getRegionCodeForNumber: (number: string) => string;
|
|
|
|
format: (number: string, format: PhoneNumberFormat) => string;
|
2020-04-13 17:37:29 +00:00
|
|
|
};
|
2020-09-24 20:57:54 +00:00
|
|
|
nodeSetImmediate: typeof setImmediate;
|
2021-02-01 20:01:25 +00:00
|
|
|
onFullScreenChange: (fullScreen: boolean) => void;
|
2020-06-04 18:16:19 +00:00
|
|
|
platform: string;
|
2020-09-24 20:57:54 +00:00
|
|
|
preloadedImages: Array<WhatIsThis>;
|
2020-09-09 22:50:44 +00:00
|
|
|
reduxActions: ReduxActions;
|
2021-06-16 00:44:14 +00:00
|
|
|
reduxStore: Store<StateType>;
|
2020-12-17 23:12:15 +00:00
|
|
|
registerForActive: (handler: () => void) => void;
|
2020-04-01 18:59:11 +00:00
|
|
|
restart: () => void;
|
2020-09-24 20:57:54 +00:00
|
|
|
setImmediate: typeof setImmediate;
|
2020-06-04 18:16:19 +00:00
|
|
|
showWindow: () => void;
|
2020-09-16 19:31:05 +00:00
|
|
|
showSettings: () => void;
|
2020-09-24 20:57:54 +00:00
|
|
|
shutdown: () => void;
|
2021-07-15 23:48:09 +00:00
|
|
|
showDebugLog: () => void;
|
2021-05-06 00:09:29 +00:00
|
|
|
sendChallengeRequest: (request: IPCChallengeRequest) => void;
|
2020-09-24 20:57:54 +00:00
|
|
|
setAutoHideMenuBar: (value: WhatIsThis) => void;
|
2020-07-10 18:28:49 +00:00
|
|
|
setBadgeCount: (count: number) => void;
|
2020-09-24 20:57:54 +00:00
|
|
|
setMenuBarVisibility: (value: WhatIsThis) => void;
|
2021-06-29 17:18:03 +00:00
|
|
|
updateSystemTraySetting: (value: SystemTraySetting) => void;
|
2021-01-04 18:47:14 +00:00
|
|
|
showConfirmationDialog: (options: ConfirmationDialogViewProps) => void;
|
2020-09-24 20:57:54 +00:00
|
|
|
showKeyboardShortcuts: () => void;
|
2021-06-15 00:09:37 +00:00
|
|
|
storage: Storage;
|
2020-09-24 20:57:54 +00:00
|
|
|
systemTheme: WhatIsThis;
|
2020-03-31 20:03:38 +00:00
|
|
|
textsecure: TextSecureType;
|
2021-02-01 20:01:25 +00:00
|
|
|
titleBarDoubleClick: () => void;
|
2020-12-17 23:12:15 +00:00
|
|
|
unregisterForActive: (handler: () => void) => void;
|
2020-07-10 18:28:49 +00:00
|
|
|
updateTrayIcon: (count: number) => void;
|
|
|
|
Backbone: typeof Backbone;
|
2021-08-11 19:29:07 +00:00
|
|
|
CI?: CI;
|
2021-04-27 22:11:59 +00:00
|
|
|
Accessibility: {
|
|
|
|
reducedMotionSetting: boolean;
|
|
|
|
};
|
2020-04-13 17:37:29 +00:00
|
|
|
Signal: {
|
2020-09-24 20:57:54 +00:00
|
|
|
Backbone: any;
|
2020-04-13 17:37:29 +00:00
|
|
|
Crypto: typeof Crypto;
|
2021-04-16 23:13:13 +00:00
|
|
|
Curve: typeof Curve;
|
2020-07-07 00:56:56 +00:00
|
|
|
Data: typeof Data;
|
2020-10-06 17:06:34 +00:00
|
|
|
Groups: typeof Groups;
|
2020-09-09 23:07:58 +00:00
|
|
|
RemoteConfig: typeof RemoteConfig;
|
2020-06-04 18:16:19 +00:00
|
|
|
Services: {
|
|
|
|
calling: CallingClass;
|
2020-09-29 23:29:11 +00:00
|
|
|
enableStorageService: () => boolean;
|
2020-09-24 20:57:54 +00:00
|
|
|
eraseAllStorageServiceState: () => Promise<void>;
|
|
|
|
initializeGroupCredentialFetcher: () => void;
|
2021-08-19 22:56:29 +00:00
|
|
|
initializeNetworkObserver: (network: ReduxActions['network']) => void;
|
|
|
|
initializeUpdateListener: (updates: ReduxActions['updates']) => void;
|
2021-05-28 19:11:19 +00:00
|
|
|
retryPlaceholders?: Util.RetryPlaceholders;
|
2021-07-15 23:48:09 +00:00
|
|
|
lightSessionResetQueue?: PQueue;
|
2020-09-24 20:57:54 +00:00
|
|
|
runStorageServiceSyncJob: () => Promise<void>;
|
|
|
|
storageServiceUploadJob: () => void;
|
2020-06-04 18:16:19 +00:00
|
|
|
};
|
2020-09-09 02:25:05 +00:00
|
|
|
Migrations: {
|
2021-09-24 00:49:05 +00:00
|
|
|
readTempData: (path: string) => Promise<Uint8Array>;
|
2020-09-09 02:25:05 +00:00
|
|
|
deleteAttachmentData: (path: string) => Promise<void>;
|
2021-09-24 00:49:05 +00:00
|
|
|
doesAttachmentExist: (path: string) => Promise<boolean>;
|
|
|
|
writeNewAttachmentData: (data: Uint8Array) => Promise<string>;
|
2020-09-24 20:57:54 +00:00
|
|
|
deleteExternalMessageFiles: (attributes: unknown) => Promise<void>;
|
|
|
|
getAbsoluteAttachmentPath: (path: string) => string;
|
2021-10-07 17:08:55 +00:00
|
|
|
loadAttachmentData: <T extends { path?: string }>(
|
|
|
|
attachment: T
|
|
|
|
) => Promise<
|
|
|
|
T & {
|
|
|
|
data: Uint8Array;
|
|
|
|
size: number;
|
|
|
|
}
|
|
|
|
>;
|
2020-09-24 20:57:54 +00:00
|
|
|
loadQuoteData: (quote: unknown) => WhatIsThis;
|
|
|
|
loadPreviewData: (preview: unknown) => WhatIsThis;
|
|
|
|
loadStickerData: (sticker: unknown) => WhatIsThis;
|
2021-09-24 00:49:05 +00:00
|
|
|
readStickerData: (path: string) => Promise<Uint8Array>;
|
2021-07-09 19:36:10 +00:00
|
|
|
deleteSticker: (path: string) => Promise<void>;
|
|
|
|
getAbsoluteStickerPath: (path: string) => string;
|
|
|
|
processNewEphemeralSticker: (
|
2021-09-24 00:49:05 +00:00
|
|
|
stickerData: Uint8Array
|
2021-07-09 19:36:10 +00:00
|
|
|
) => {
|
|
|
|
path: string;
|
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
};
|
|
|
|
processNewSticker: (
|
2021-09-24 00:49:05 +00:00
|
|
|
stickerData: Uint8Array
|
2021-07-09 19:36:10 +00:00
|
|
|
) => {
|
|
|
|
path: string;
|
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
};
|
2021-10-05 22:10:08 +00:00
|
|
|
copyIntoAttachmentsDirectory: (
|
|
|
|
path: string
|
|
|
|
) => Promise<{ path: string; size: number }>;
|
2020-09-24 20:57:54 +00:00
|
|
|
upgradeMessageSchema: (attributes: unknown) => WhatIsThis;
|
2021-06-17 17:15:10 +00:00
|
|
|
processNewAttachment: (
|
2021-07-14 23:39:52 +00:00
|
|
|
attachment: DownloadedAttachmentType
|
|
|
|
) => Promise<DownloadedAttachmentType>;
|
2020-09-24 20:57:54 +00:00
|
|
|
|
2021-10-07 17:08:55 +00:00
|
|
|
copyIntoTempDirectory: (
|
|
|
|
path: string
|
|
|
|
) => Promise<{ path: string; size: number }>;
|
2021-07-09 19:36:10 +00:00
|
|
|
deleteDraftFile: (path: string) => Promise<void>;
|
|
|
|
deleteTempFile: (path: string) => Promise<void>;
|
2020-09-24 20:57:54 +00:00
|
|
|
getAbsoluteDraftPath: any;
|
|
|
|
getAbsoluteTempPath: any;
|
|
|
|
openFileInFolder: any;
|
2021-09-24 00:49:05 +00:00
|
|
|
readAttachmentData: (path: string) => Promise<Uint8Array>;
|
|
|
|
readDraftData: (path: string) => Promise<Uint8Array>;
|
|
|
|
saveAttachmentToDisk: (options: {
|
|
|
|
data: Uint8Array;
|
|
|
|
name: string;
|
|
|
|
}) => Promise<null | { fullPath: string; name: string }>;
|
|
|
|
writeNewDraftData: (data: Uint8Array) => Promise<string>;
|
2021-08-06 00:17:05 +00:00
|
|
|
deleteAvatar: (path: string) => Promise<void>;
|
|
|
|
getAbsoluteAvatarPath: (src: string) => string;
|
2021-09-24 00:49:05 +00:00
|
|
|
writeNewAvatarData: (data: Uint8Array) => Promise<string>;
|
2021-11-02 23:01:13 +00:00
|
|
|
getAbsoluteBadgeImageFilePath: (path: string) => string;
|
|
|
|
writeNewBadgeImageFileData: (data: Uint8Array) => Promise<string>;
|
2020-09-24 20:57:54 +00:00
|
|
|
};
|
2020-09-09 02:25:05 +00:00
|
|
|
Types: {
|
|
|
|
Message: {
|
|
|
|
CURRENT_SCHEMA_VERSION: number;
|
2020-09-24 20:57:54 +00:00
|
|
|
VERSION_NEEDED_FOR_DISPLAY: number;
|
|
|
|
GROUP: 'group';
|
|
|
|
PRIVATE: 'private';
|
|
|
|
|
|
|
|
initializeSchemaVersion: (version: {
|
|
|
|
message: unknown;
|
|
|
|
logger: unknown;
|
|
|
|
}) => unknown & {
|
|
|
|
schemaVersion: number;
|
|
|
|
};
|
|
|
|
hasExpiration: (json: string) => boolean;
|
|
|
|
};
|
|
|
|
Sticker: {
|
|
|
|
emoji: string;
|
|
|
|
packId: string;
|
|
|
|
packKey: string;
|
|
|
|
stickerId: number;
|
|
|
|
data: {
|
|
|
|
pending: boolean;
|
|
|
|
path: string;
|
|
|
|
};
|
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
path: string;
|
2020-09-09 02:25:05 +00:00
|
|
|
};
|
2021-09-10 02:38:11 +00:00
|
|
|
UUID: typeof UUID;
|
|
|
|
Address: typeof Address;
|
|
|
|
QualifiedAddress: typeof QualifiedAddress;
|
2020-09-24 20:57:54 +00:00
|
|
|
};
|
2020-10-16 18:31:57 +00:00
|
|
|
Util: typeof Util;
|
2020-09-24 20:57:54 +00:00
|
|
|
GroupChange: {
|
|
|
|
renderChange: (change: unknown, things: unknown) => Array<string>;
|
|
|
|
};
|
|
|
|
Components: {
|
2021-01-20 01:19:00 +00:00
|
|
|
AttachmentList: typeof AttachmentList;
|
|
|
|
CaptionEditor: typeof CaptionEditor;
|
2021-05-28 16:15:17 +00:00
|
|
|
ChatColorPicker: typeof ChatColorPicker;
|
2021-04-27 19:29:59 +00:00
|
|
|
ConfirmationDialog: typeof ConfirmationDialog;
|
2021-01-20 01:19:00 +00:00
|
|
|
ContactDetail: typeof ContactDetail;
|
2020-11-11 17:36:05 +00:00
|
|
|
ContactModal: typeof ContactModal;
|
2021-08-19 22:56:29 +00:00
|
|
|
DisappearingTimeDialog: typeof DisappearingTimeDialog;
|
2021-01-20 01:19:00 +00:00
|
|
|
ErrorModal: typeof ErrorModal;
|
|
|
|
Lightbox: typeof Lightbox;
|
|
|
|
MediaGallery: typeof MediaGallery;
|
|
|
|
MessageDetail: typeof MessageDetail;
|
2020-10-06 17:06:34 +00:00
|
|
|
ProgressModal: typeof ProgressModal;
|
2021-01-20 01:19:00 +00:00
|
|
|
Quote: typeof Quote;
|
|
|
|
StagedLinkPreview: typeof StagedLinkPreview;
|
2021-10-23 00:41:45 +00:00
|
|
|
WhatsNewLink: typeof WhatsNewLink;
|
2020-09-24 20:57:54 +00:00
|
|
|
};
|
2021-01-20 01:19:00 +00:00
|
|
|
OS: typeof OS;
|
2020-09-24 20:57:54 +00:00
|
|
|
Workflow: {
|
|
|
|
IdleDetector: WhatIsThis;
|
|
|
|
MessageDataMigrator: WhatIsThis;
|
|
|
|
};
|
|
|
|
IndexedDB: {
|
|
|
|
removeDatabase: WhatIsThis;
|
|
|
|
doesDatabaseExist: WhatIsThis;
|
|
|
|
};
|
|
|
|
Views: WhatIsThis;
|
2020-10-30 17:52:21 +00:00
|
|
|
State: {
|
|
|
|
createStore: typeof createStore;
|
|
|
|
Roots: {
|
2021-06-14 19:01:00 +00:00
|
|
|
createApp: typeof createApp;
|
2021-05-28 16:15:17 +00:00
|
|
|
createChatColorPicker: typeof createChatColorPicker;
|
2021-01-29 21:19:24 +00:00
|
|
|
createConversationDetails: typeof createConversationDetails;
|
2021-04-27 22:35:35 +00:00
|
|
|
createForwardMessageModal: typeof createForwardMessageModal;
|
2021-01-29 21:19:24 +00:00
|
|
|
createGroupLinkManagement: typeof createGroupLinkManagement;
|
2020-12-01 16:42:35 +00:00
|
|
|
createGroupV1MigrationModal: typeof createGroupV1MigrationModal;
|
2021-01-29 22:16:48 +00:00
|
|
|
createGroupV2JoinModal: typeof createGroupV2JoinModal;
|
2021-01-29 21:19:24 +00:00
|
|
|
createGroupV2Permissions: typeof createGroupV2Permissions;
|
2020-10-30 17:52:21 +00:00
|
|
|
createLeftPane: typeof createLeftPane;
|
2021-03-24 22:06:12 +00:00
|
|
|
createMessageDetail: typeof createMessageDetail;
|
2021-08-05 12:35:33 +00:00
|
|
|
createConversationNotificationsSettings: typeof createConversationNotificationsSettings;
|
2021-01-29 21:19:24 +00:00
|
|
|
createPendingInvites: typeof createPendingInvites;
|
2020-10-30 17:52:21 +00:00
|
|
|
createSafetyNumberViewer: typeof createSafetyNumberViewer;
|
|
|
|
createShortcutGuideModal: typeof createShortcutGuideModal;
|
|
|
|
createStickerManager: typeof createStickerManager;
|
|
|
|
createStickerPreviewModal: typeof createStickerPreviewModal;
|
|
|
|
};
|
|
|
|
Ducks: {
|
2021-06-14 19:01:00 +00:00
|
|
|
app: typeof appDuck;
|
2020-10-30 17:52:21 +00:00
|
|
|
calling: typeof callingDuck;
|
|
|
|
conversations: typeof conversationsDuck;
|
|
|
|
emojis: typeof emojisDuck;
|
|
|
|
expiration: typeof expirationDuck;
|
|
|
|
items: typeof itemsDuck;
|
2021-04-27 22:35:35 +00:00
|
|
|
linkPreviews: typeof linkPreviewsDuck;
|
2020-10-30 17:52:21 +00:00
|
|
|
network: typeof networkDuck;
|
|
|
|
updates: typeof updatesDuck;
|
|
|
|
user: typeof userDuck;
|
|
|
|
search: typeof searchDuck;
|
|
|
|
stickers: typeof stickersDuck;
|
|
|
|
};
|
|
|
|
Selectors: {
|
|
|
|
conversations: typeof conversationsSelectors;
|
|
|
|
search: typeof searchSelectors;
|
|
|
|
};
|
|
|
|
};
|
2020-09-24 20:57:54 +00:00
|
|
|
conversationControllerStart: WhatIsThis;
|
|
|
|
Emojis: {
|
|
|
|
getInitialState: () => WhatIsThis;
|
|
|
|
load: () => void;
|
|
|
|
};
|
2021-05-06 00:09:29 +00:00
|
|
|
challengeHandler: ChallengeHandler;
|
2020-04-13 17:37:29 +00:00
|
|
|
};
|
2020-09-24 20:57:54 +00:00
|
|
|
|
2020-07-10 18:28:49 +00:00
|
|
|
ConversationController: ConversationController;
|
2021-08-18 20:08:14 +00:00
|
|
|
Events: IPCEventsType;
|
2021-06-16 00:44:14 +00:00
|
|
|
MessageController: MessageController;
|
2021-02-26 23:42:45 +00:00
|
|
|
SignalProtocolStore: typeof SignalProtocolStore;
|
2020-04-13 17:37:29 +00:00
|
|
|
WebAPI: WebAPIConnectType;
|
2020-03-31 20:03:38 +00:00
|
|
|
Whisper: WhisperType;
|
2020-06-04 18:16:19 +00:00
|
|
|
|
2020-09-24 20:57:54 +00:00
|
|
|
getServerTrustRoot: () => WhatIsThis;
|
|
|
|
readyForUpdates: () => void;
|
2021-08-03 17:05:20 +00:00
|
|
|
logAppLoadedEvent?: (options: { processedCount?: number }) => void;
|
|
|
|
logAuthenticatedConnect?: () => void;
|
2020-11-13 19:57:55 +00:00
|
|
|
|
2021-01-29 22:16:48 +00:00
|
|
|
// Runtime Flags
|
|
|
|
isShowingModal?: boolean;
|
|
|
|
|
|
|
|
// Feature Flags
|
2020-12-18 19:27:43 +00:00
|
|
|
GV2_ENABLE_SINGLE_CHANGE_PROCESSING: boolean;
|
|
|
|
GV2_ENABLE_CHANGE_PROCESSING: boolean;
|
|
|
|
GV2_ENABLE_STATE_PROCESSING: boolean;
|
2021-01-12 15:44:44 +00:00
|
|
|
GV2_MIGRATION_DISABLE_ADD: boolean;
|
|
|
|
GV2_MIGRATION_DISABLE_INVITE: boolean;
|
2021-08-20 16:06:15 +00:00
|
|
|
|
2021-07-15 23:48:09 +00:00
|
|
|
RETRY_DELAY: boolean;
|
2021-09-02 15:48:53 +00:00
|
|
|
|
2021-09-17 18:27:53 +00:00
|
|
|
// Context Isolation
|
2021-10-07 23:28:47 +00:00
|
|
|
SignalContext: SignalContextType;
|
2020-03-31 20:03:38 +00:00
|
|
|
}
|
2020-05-27 21:37:06 +00:00
|
|
|
|
2021-01-14 18:07:05 +00:00
|
|
|
// We want to extend `Error`, so we need an interface.
|
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
2020-05-27 21:37:06 +00:00
|
|
|
interface Error {
|
2021-04-14 01:27:43 +00:00
|
|
|
originalError?: Event;
|
2021-07-09 19:36:10 +00:00
|
|
|
reason?: any;
|
|
|
|
stackForLog?: string;
|
2020-05-27 21:37:06 +00:00
|
|
|
}
|
2021-06-15 00:09:37 +00:00
|
|
|
|
|
|
|
// Uint8Array and ArrayBuffer are type-compatible in TypeScript's covariant
|
|
|
|
// type checker, but in reality they are not. Let's assert correct use!
|
|
|
|
interface Uint8Array {
|
|
|
|
__uint8array: never;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ArrayBuffer {
|
|
|
|
__array_buffer: never;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface SharedArrayBuffer {
|
|
|
|
__array_buffer: never;
|
|
|
|
}
|
2020-03-31 20:03:38 +00:00
|
|
|
}
|
|
|
|
|
2020-04-13 17:37:29 +00:00
|
|
|
export class CertificateValidatorType {
|
|
|
|
validate: (cerficate: any, certificateTime: number) => Promise<void>;
|
|
|
|
}
|
2020-03-31 20:03:38 +00:00
|
|
|
|
2020-06-04 18:16:19 +00:00
|
|
|
export class GumVideoCapturer {
|
|
|
|
constructor(
|
|
|
|
maxWidth: number,
|
|
|
|
maxHeight: number,
|
|
|
|
maxFramerate: number,
|
|
|
|
localPreview: Ref<HTMLVideoElement>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export class CanvasVideoRenderer {
|
|
|
|
constructor(canvas: Ref<HTMLCanvasElement>);
|
|
|
|
}
|
|
|
|
|
2021-07-15 23:48:09 +00:00
|
|
|
export type DeliveryReceiptBatcherItemType = {
|
|
|
|
messageId: string;
|
|
|
|
source?: string;
|
|
|
|
sourceUuid?: string;
|
|
|
|
timestamp: number;
|
|
|
|
};
|
|
|
|
|
2021-08-30 21:32:56 +00:00
|
|
|
export class AnyViewClass extends window.Backbone.View<any> {
|
|
|
|
public headerTitle?: string;
|
|
|
|
static show(view: typeof AnyViewClass, element: Element): void;
|
|
|
|
|
|
|
|
constructor(options?: any);
|
|
|
|
}
|
|
|
|
|
|
|
|
export class BasicReactWrapperViewClass extends AnyViewClass {
|
|
|
|
public update(options: any): void;
|
|
|
|
}
|
|
|
|
|
2020-03-31 20:03:38 +00:00
|
|
|
export type WhisperType = {
|
2021-08-30 21:32:56 +00:00
|
|
|
Conversation: typeof ConversationModel;
|
|
|
|
ConversationCollection: typeof ConversationModelCollectionType;
|
|
|
|
Message: typeof MessageModel;
|
|
|
|
MessageCollection: typeof MessageModelCollectionType;
|
|
|
|
|
|
|
|
GroupMemberConversation: WhatIsThis;
|
|
|
|
RotateSignedPreKeyListener: WhatIsThis;
|
|
|
|
WallClockListener: WhatIsThis;
|
|
|
|
|
|
|
|
deliveryReceiptQueue: PQueue;
|
|
|
|
deliveryReceiptBatcher: BatcherType<DeliveryReceiptBatcherItemType>;
|
2021-07-19 20:45:18 +00:00
|
|
|
events: Backbone.Events;
|
2021-08-30 21:32:56 +00:00
|
|
|
activeConfirmationView: WhatIsThis;
|
|
|
|
|
2020-04-01 18:59:11 +00:00
|
|
|
Database: {
|
|
|
|
open: () => Promise<IDBDatabase>;
|
|
|
|
handleDOMException: (
|
|
|
|
context: string,
|
|
|
|
error: DOMException | null,
|
|
|
|
reject: Function
|
|
|
|
) => void;
|
|
|
|
};
|
2020-09-24 20:57:54 +00:00
|
|
|
|
2021-07-19 20:45:18 +00:00
|
|
|
ExpiringMessagesListener: {
|
|
|
|
init: (events: Backbone.Events) => void;
|
|
|
|
update: () => void;
|
|
|
|
};
|
|
|
|
TapToViewMessagesListener: {
|
|
|
|
nextCheck: null | number;
|
|
|
|
init: (events: Backbone.Events) => void;
|
|
|
|
update: () => void;
|
|
|
|
};
|
2020-09-24 20:57:54 +00:00
|
|
|
|
2021-08-30 21:32:56 +00:00
|
|
|
// Backbone views
|
|
|
|
|
|
|
|
// Modernized
|
|
|
|
ConversationView: typeof ConversationView;
|
|
|
|
|
|
|
|
// Note: we can no longer use 'View.extend' once we've moved to Typescript's preferred
|
|
|
|
// 'extend View' syntax. Thus, we'll need to typescriptify most of it at once.
|
|
|
|
|
|
|
|
ClearDataView: typeof AnyViewClass;
|
|
|
|
ConversationLoadingScreen: typeof AnyViewClass;
|
|
|
|
GroupMemberList: typeof AnyViewClass;
|
|
|
|
InboxView: typeof AnyViewClass;
|
|
|
|
InstallView: typeof AnyViewClass;
|
|
|
|
KeyVerificationPanelView: typeof AnyViewClass;
|
|
|
|
ReactWrapperView: typeof BasicReactWrapperViewClass;
|
|
|
|
SafetyNumberChangeDialogView: typeof AnyViewClass;
|
|
|
|
StandaloneRegistrationView: typeof AnyViewClass;
|
|
|
|
View: typeof AnyViewClass;
|
2020-03-31 20:03:38 +00:00
|
|
|
};
|