123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655 |
- /**
- * This file is part of Threema Web.
- *
- * Threema Web is free software: you can redistribute it and/or modify it
- * under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or (at
- * your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
- * General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with Threema Web. If not, see <http://www.gnu.org/licenses/>.
- */
- /// <reference types="@saltyrtc/task-webrtc" />
- /// <reference types="@saltyrtc/task-relayed-data" />
- import * as msgpack from 'msgpack-lite';
- import {hexToU8a, msgpackVisualizer} from '../helpers';
- import {BatteryStatusService} from './battery';
- import {BrowserService} from './browser';
- import {FingerPrintService} from './fingerprint';
- import {TrustedKeyStoreService} from './keystore';
- import {MessageService} from './message';
- import {MimeService} from './mime';
- import {NotificationService} from './notification';
- import {PeerConnectionHelper} from './peerconnection';
- import {PushService} from './push';
- import {QrCodeService} from './qrcode';
- import {ReceiverService} from './receiver';
- import {StateService} from './state';
- import {TitleService} from './title';
- import {VersionService} from './version';
- class WebClientDefault {
- private avatar: threema.AvatarRegistry = {
- group: {
- low: 'img/ic_group_t.png',
- high: 'img/ic_group_picture_big.png',
- },
- contact: {
- low: 'img/ic_contact_picture_t.png',
- high: 'img/ic_contact_picture_big.png',
- },
- distributionList: {
- low: 'img/ic_distribution_list_t.png',
- high: 'img/ic_distribution_list_t.png',
- },
- };
- /**
- * Return path to avatar.
- *
- * If the avatar type is invalid, return null.
- */
- public getAvatar(type: string, highResolution: boolean): string {
- const field: string = highResolution ? 'high' : 'low';
- if (typeof this.avatar[type] === 'undefined') {
- return null;
- }
- return this.avatar[type][field];
- }
- }
- /**
- * This service handles everything related to the communication with the peer.
- */
- export class WebClientService {
- private static AVATAR_LOW_MAX_SIZE = 48;
- private static MAX_TEXT_LENGTH = 3500;
- private static MAX_FILE_SIZE = 15 * 1024 * 1024;
- private static TYPE_REQUEST = 'request';
- private static TYPE_RESPONSE = 'response';
- private static TYPE_UPDATE = 'update';
- private static TYPE_CREATE = 'create';
- private static TYPE_DELETE = 'delete';
- private static SUB_TYPE_RECEIVER = 'receiver';
- private static SUB_TYPE_CONVERSATIONS = 'conversations';
- private static SUB_TYPE_CONVERSATION = 'conversation';
- private static SUB_TYPE_MESSAGE = 'message';
- private static SUB_TYPE_TEXT_MESSAGE = 'textMessage';
- private static SUB_TYPE_FILE_MESSAGE = 'fileMessage';
- private static SUB_TYPE_AVATAR = 'avatar';
- private static SUB_TYPE_THUMBNAIL = 'thumbnail';
- private static SUB_TYPE_BLOB = 'blob';
- private static SUB_TYPE_TYPING = 'typing';
- private static SUB_TYPE_READ = 'read';
- private static SUB_TYPE_CLIENT_INFO = 'clientInfo';
- private static SUB_TYPE_KEY_PERSISTED = 'keyPersisted';
- private static SUB_TYPE_ACK = 'ack';
- private static SUB_TYPE_CONTACT_DETAIL = 'contactDetail';
- private static SUB_TYPE_CONTACT = 'contact';
- private static SUB_TYPE_GROUP = 'group';
- private static SUB_TYPE_DISTRIBUTION_LIST = 'distributionList';
- private static SUB_TYPE_ALERT = 'alert';
- private static SUB_TYPE_GROUP_SYNC = 'groupSync';
- private static SUB_TYPE_BATTERY_STATUS = 'batteryStatus';
- private static SUB_TYPE_CLEAN_RECEIVER_CONVERSATION = 'cleanReceiverConversation';
- private static ARGUMENT_MODE = 'mode';
- private static ARGUMENT_MODE_REFRESH = 'refresh';
- private static ARGUMENT_MODE_NEW = 'new';
- private static ARGUMENT_MODE_MODIFIED = 'modified';
- private static ARGUMENT_MODE_REMOVED = 'removed';
- private static ARGUMENT_RECEIVER_TYPE = 'type';
- private static ARGUMENT_RECEIVER_ID = 'id';
- private static ARGUMENT_TEMPORARY_ID = 'temporaryId';
- private static ARGUMENT_REFERENCE_MSG_ID = 'refMsgId';
- private static ARGUMENT_AVATAR_HIGH_RESOLUTION = 'highResolution';
- private static ARGUMENT_CONTACT_IS_TYPING = 'isTyping';
- private static ARGUMENT_MESSAGE_ID = 'messageId';
- private static ARGUMENT_HAS_MORE = 'more';
- private static ARGUMENT_MESSAGE_ACKNOWLEDGED = 'acknowledged';
- private static ARGUMENT_IDENTITY = 'identity';
- private static ARGUMENT_SUCCESS = 'success';
- private static ARGUMENT_MESSAGE = 'message';
- private static ARGUMENT_SYSTEM_CONTACT = 'systemContact';
- private static ARGUMENT_NAME = 'name';
- private static ARGUMENT_MEMBERS = 'members';
- private static ARGUMENT_FIRST_NAME = 'firstName';
- private static ARGUMENT_LAST_NAME = 'lastName';
- private static ARGUMENT_DELETE_TYPE = 'deleteType';
- private static ARGUMENT_ERROR = 'error';
- private static ARGUMENT_MAX_SIZE = 'maxSize';
- private static DATA_FIELD_BLOB_BLOB = 'blob';
- private static DC_LABEL = 'THREEMA';
- private logTag: string = '[WebClientService]';
- // Angular services
- private $state: ng.ui.IStateService;
- private $log: ng.ILogService;
- private $rootScope: any;
- private $q: ng.IQService;
- private $window: ng.IWindowService;
- private $translate: ng.translate.ITranslateService;
- private $filter: any;
- private $timeout: ng.ITimeoutService;
- // Custom services
- private batteryStatusService: BatteryStatusService;
- private browserService: BrowserService;
- private fingerPrintService: FingerPrintService;
- private messageService: MessageService;
- private mimeService: MimeService;
- private notificationService: NotificationService;
- private pushService: PushService;
- private qrCodeService: QrCodeService;
- private receiverService: ReceiverService;
- private titleService: TitleService;
- private versionService: VersionService;
- // State handling
- private startupPromise: ng.IDeferred<{}> = null; // TODO: deferred type
- private startupDone: boolean = false;
- private pendingInitializationStepRoutines: threema.InitializationStepRoutine[] = [];
- private initialized: Set<threema.InitializationStep> = new Set();
- private stateService: StateService;
- // SaltyRTC
- private saltyRtcHost: string = null;
- public salty: saltyrtc.SaltyRTC = null;
- private webrtcTask: saltyrtc.tasks.webrtc.WebRTCTask = null;
- private relayedDataTask: saltyrtc.tasks.relayed_data.RelayedDataTask = null;
- private secureDataChannel: saltyrtc.tasks.webrtc.SecureDataChannel = null;
- private chosenTask: threema.ChosenTask = threema.ChosenTask.None;
- // Messenger data
- public messages: threema.Container.Messages;
- public conversations: threema.Container.Conversations;
- public receivers: threema.Container.Receivers;
- public alerts: threema.Alert[] = [];
- public defaults: WebClientDefault;
- private myIdentity: threema.Identity;
- private pushToken: string = null;
- // Other
- private config: threema.Config;
- private container: threema.Container.Factory;
- private typingInstance: threema.Container.Typing;
- private drafts: threema.Container.Drafts;
- private pcHelper: PeerConnectionHelper = null;
- private clientInfo: threema.ClientInfo;
- private trustedKeyStore: TrustedKeyStoreService;
- public version = null;
- private blobCache = new Map<string, ArrayBuffer>();
- private loadingMessages = new Map<string, boolean>();
- public receiverListener: threema.ReceiverListener[] = [];
- // Msgpack
- private msgpackEncoderOptions: msgpack.EncoderOptions = {
- codec: msgpack.createCodec({binarraybuffer: true}),
- };
- private msgpackDecoderOptions: msgpack.DecoderOptions = {
- codec: msgpack.createCodec({binarraybuffer: true}),
- };
- // pending rtc promises
- private requestPromises: Map<string, threema.PromiseCallbacks> = new Map();
- public static $inject = [
- '$log', '$rootScope', '$q', '$state', '$window', '$translate', '$filter', '$timeout',
- 'Container', 'TrustedKeyStore',
- 'StateService', 'NotificationService', 'MessageService', 'PushService', 'BrowserService',
- 'TitleService', 'FingerPrintService', 'QrCodeService', 'MimeService', 'ReceiverService',
- 'VersionService', 'BatteryStatusService',
- 'CONFIG',
- ];
- constructor($log: ng.ILogService,
- $rootScope: any,
- $q: ng.IQService,
- $state: ng.ui.IStateService,
- $window: ng.IWindowService,
- $translate: ng.translate.ITranslateService,
- $filter: ng.IFilterService,
- $timeout: ng.ITimeoutService,
- container: threema.Container.Factory,
- trustedKeyStore: TrustedKeyStoreService,
- stateService: StateService,
- notificationService: NotificationService,
- messageService: MessageService,
- pushService: PushService,
- browserService: BrowserService,
- titleService: TitleService,
- fingerPrintService: FingerPrintService,
- qrCodeService: QrCodeService,
- mimeService: MimeService,
- receiverService: ReceiverService,
- versionService: VersionService,
- batteryStatusService: BatteryStatusService,
- CONFIG: threema.Config) {
- // Angular services
- this.$log = $log;
- this.$rootScope = $rootScope;
- this.$q = $q;
- this.$state = $state;
- this.$window = $window;
- this.$translate = $translate;
- this.$filter = $filter;
- this.$timeout = $timeout;
- // Own services
- this.batteryStatusService = batteryStatusService;
- this.browserService = browserService;
- this.fingerPrintService = fingerPrintService;
- this.messageService = messageService;
- this.mimeService = mimeService;
- this.notificationService = notificationService;
- this.pushService = pushService;
- this.qrCodeService = qrCodeService;
- this.receiverService = receiverService;
- this.titleService = titleService;
- this.versionService = versionService;
- // Configuration object
- this.config = CONFIG;
- // State
- this.stateService = stateService;
- // Other properties
- this.container = container;
- this.trustedKeyStore = trustedKeyStore;
- // Get default class
- this.defaults = new WebClientDefault();
- // Initialize drafts
- this.drafts = this.container.createDrafts();
- // Setup fields
- this._resetFields();
- // Register event handlers
- this.stateService.evtConnectionBuildupStateChange.attach(
- (stateChange: threema.ConnectionBuildupStateChange) => {
- if (this.startupPromise !== null) {
- this.startupPromise.notify(stateChange);
- }
- },
- );
- }
- get me(): threema.MeReceiver {
- return this.receivers.me;
- }
- get contacts(): Map<string, threema.ContactReceiver> {
- return this.receivers.contacts;
- }
- get groups(): Map<string, threema.GroupReceiver> {
- return this.receivers.groups;
- }
- get distributionLists(): Map<string, threema.DistributionListReceiver> {
- return this.receivers.distributionLists;
- }
- get typing(): threema.Container.Typing {
- return this.typingInstance;
- }
- /**
- * Return QR code payload.
- */
- public buildQrCodePayload(persistent: boolean): string {
- return this.qrCodeService.buildQrCodePayload(
- this.salty.permanentKeyBytes,
- this.salty.authTokenBytes,
- hexToU8a(this.config.SALTYRTC_SERVER_KEY),
- this.saltyRtcHost, this.config.SALTYRTC_PORT,
- persistent);
- }
- /**
- * Initialize the webclient service.
- */
- public init(keyStore?: saltyrtc.KeyStore, peerTrustedKey?: Uint8Array, resetFields = true): void {
- // Reset state
- this.stateService.reset();
- // Create WebRTC task instance
- const maxPacketSize = this.browserService.getBrowser().firefox ? 16384 : 65536;
- this.webrtcTask = new saltyrtcTaskWebrtc.WebRTCTask(true, maxPacketSize);
- // Create Relayed Data task instance
- this.relayedDataTask = new saltyrtcTaskRelayedData.RelayedDataTask(this.config.DEBUG);
- // Create new keystore if necessary
- if (!keyStore) {
- keyStore = new saltyrtcClient.KeyStore();
- }
- // Determine SaltyRTC host
- if (this.config.SALTYRTC_HOST !== null) {
- // Static URL
- this.saltyRtcHost = this.config.SALTYRTC_HOST;
- } else {
- // Construct URL using prefix and suffix
- this.saltyRtcHost = this.config.SALTYRTC_HOST_PREFIX
- + keyStore.publicKeyHex.substr(0, 2)
- + this.config.SALTYRTC_HOST_SUFFIX;
- }
- // Create SaltyRTC client
- let builder = new saltyrtcClient.SaltyRTCBuilder()
- .connectTo(this.saltyRtcHost, this.config.SALTYRTC_PORT)
- .withServerKey(this.config.SALTYRTC_SERVER_KEY)
- .withKeyStore(keyStore)
- .usingTasks([this.webrtcTask, this.relayedDataTask])
- .withPingInterval(30);
- if (keyStore !== undefined && peerTrustedKey !== undefined) {
- builder = builder.withTrustedPeerKey(peerTrustedKey);
- }
- this.salty = builder.asInitiator();
- if (this.config.DEBUG) {
- this.$log.debug('Public key:', this.salty.permanentKeyHex);
- this.$log.debug('Auth token:', this.salty.authTokenHex);
- }
- // We want to know about new responders.
- this.salty.on('new-responder', () => {
- if (!this.startupDone) {
- // Peer handshake
- this.stateService.updateConnectionBuildupState('peer_handshake');
- }
- });
- // We want to know about state changes
- this.salty.on('state-change', (ev: saltyrtc.SaltyRTCEvent) => {
- // Wrap this in a $timeout to execute at the end of the event loop.
- this.$timeout(() => {
- const state: saltyrtc.SignalingState = ev.data;
- if (!this.startupDone) {
- switch (state) {
- case 'new':
- case 'ws-connecting':
- case 'server-handshake':
- if (this.stateService.connectionBuildupState !== 'push'
- && this.stateService.connectionBuildupState !== 'manual_start') {
- this.stateService.updateConnectionBuildupState('connecting');
- }
- break;
- case 'peer-handshake':
- // Waiting for peer
- if (this.stateService.connectionBuildupState !== 'push'
- && this.stateService.connectionBuildupState !== 'manual_start') {
- this.stateService.updateConnectionBuildupState('waiting');
- }
- break;
- case 'task':
- // Do nothing, state will be updated once SecureDataChannel is open
- break;
- case 'closing':
- case 'closed':
- this.stateService.updateConnectionBuildupState('closed');
- break;
- default:
- this.$log.warn('Unknown signaling state:', state);
- }
- }
- this.stateService.updateSignalingConnectionState(state);
- }, 0);
- });
- // Once the connection is established, if this is a WebRTC connection,
- // initiate the peer connection and start the handover.
- this.salty.once('state-change:task', () => {
- // Determine chosen task
- const task = this.salty.getTask();
- if (task.getName().indexOf('webrtc.tasks.saltyrtc.org') !== -1) {
- this.chosenTask = threema.ChosenTask.WebRTC;
- } else if (task.getName().indexOf('relayed-data.tasks.saltyrtc.org') !== -1) {
- this.chosenTask = threema.ChosenTask.RelayedData;
- } else {
- throw new Error('Invalid or unknown task name: ' + task.getName());
- }
- // If the WebRTC task was chosen, initialize handover.
- if (this.chosenTask === threema.ChosenTask.WebRTC) {
- // Firefox <53 does not yet support TLS. Skip it, to save allocations.
- const browser = this.browserService.getBrowser();
- if (browser.firefox && parseFloat(browser.version) < 53) {
- this.skipIceTls();
- }
- this.pcHelper = new PeerConnectionHelper(this.$log, this.$q, this.$timeout,
- this.$rootScope, this.webrtcTask,
- this.config.ICE_SERVERS,
- !this.config.ICE_DEBUGGING);
- // On state changes in the PeerConnectionHelper class, let state service know about it
- this.pcHelper.onConnectionStateChange = (state: threema.RTCConnectionState) => {
- this.stateService.updateRtcConnectionState(state);
- };
- // Initiate handover
- this.webrtcTask.handover(this.pcHelper.peerConnection);
- // Otherwise, no handover is necessary.
- } else {
- this.onHandover(resetFields);
- return;
- }
- });
- // Handle a disconnect request
- this.salty.on('application', (applicationData: any) => {
- if (applicationData.data.type === 'disconnect') {
- this.$log.debug(this.logTag, 'Disconnecting requested');
- const deleteStoredData = applicationData.data.forget === true;
- const resetPush = true;
- const redirect = true;
- this.stop(false, deleteStoredData, resetPush, redirect);
- }
- });
- // Wait for handover to be finished
- this.salty.on('handover', () => {
- this.$log.debug(this.logTag, 'Handover done');
- this.onHandover(resetFields);
- });
- // Handle SaltyRTC errors
- this.salty.on('connection-error', (ev) => {
- this.$log.error('Connection error:', ev);
- });
- this.salty.on('connection-closed', (ev) => {
- this.$log.warn('Connection closed:', ev);
- });
- }
- /**
- * For the WebRTC task, this is called when the DataChannel is open.
- * For the relayed data task, this is called once the connection is established.
- */
- private onDataChannelOpen(resetFields: boolean) {
- // Reset fields if requested
- if (resetFields) {
- this._resetFields();
- }
- // Resolve startup promise once initialization is done
- if (this.startupPromise !== null) {
- this.runAfterInitializationSteps(['client info', 'conversations', 'receivers'], () => {
- this.stateService.updateConnectionBuildupState('done');
- this.startupPromise.resolve();
- this.startupPromise = null;
- this.startupDone = true;
- this._resetInitializationSteps();
- });
- }
- // Request initial data
- this._requestInitialData();
- // Fetch current version
- // Delay it to prevent the dialog from being closed by the messenger constructor,
- // which closes all open dialogs.
- this.$timeout(() => this.versionService.checkForUpdate(), 7000);
- // Notify state service about data loading
- this.stateService.updateConnectionBuildupState('loading');
- }
- /**
- * Handover done.
- *
- * This can either be a real handover to WebRTC (Android), or simply
- * when the relayed data task takes over (iOS).
- */
- private onHandover(resetFields: boolean) {
- // Initialize NotificationService
- this.$log.debug(this.logTag, 'Initializing NotificationService...');
- this.notificationService.init();
- // If the WebRTC task was chosen, initialize the data channel
- if (this.chosenTask === threema.ChosenTask.WebRTC) {
- // Create secure data channel
- this.$log.debug(this.logTag, 'Create SecureDataChannel "' + WebClientService.DC_LABEL + '"...');
- this.secureDataChannel = this.pcHelper.createSecureDataChannel(
- WebClientService.DC_LABEL,
- (event: Event) => {
- this.$log.debug(this.logTag, 'SecureDataChannel open');
- this.onDataChannelOpen(resetFields);
- },
- );
- // Handle incoming messages
- this.secureDataChannel.onmessage = (ev: MessageEvent) => {
- const bytes = new Uint8Array(ev.data);
- this.handleIncomingMessage(bytes);
- };
- this.secureDataChannel.onbufferedamountlow = (ev: Event) => {
- this.$log.debug('Secure data channel: Buffered amount low');
- };
- this.secureDataChannel.onerror = (e: ErrorEvent) => {
- this.$log.warn('Secure data channel: Error:', e.message);
- this.$log.debug(e);
- };
- this.secureDataChannel.onclose = (ev: Event) => {
- this.$log.warn('Secure data channel: Closed');
- };
- } else if (this.chosenTask === threema.ChosenTask.RelayedData) {
- // Handle messages directly
- this.relayedDataTask.on('data', (ev: saltyrtc.SaltyRTCEvent) => {
- this.handleIncomingMessage(ev.data);
- });
- // The communication channel is now open! Fetch initial data
- this.onDataChannelOpen(resetFields);
- }
- }
- /**
- * Start the webclient service.
- * Return a promise that resolves once connected.
- */
- public start(): ng.IPromise<any> {
- this.$log.debug('Starting WebClientService...');
- // Promise to track startup state
- this.startupPromise = this.$q.defer();
- this.startupDone = false;
- // Connect
- this.salty.connect();
- // If push service is available, notify app
- if (this.pushService.isAvailable()) {
- this.pushService.sendPush(this.salty.permanentKeyBytes)
- .catch(() => this.$log.warn('Could not notify app!'))
- .then(() => {
- this.$log.debug('Requested app wakeup');
- this.$rootScope.$apply(() => {
- this.stateService.updateConnectionBuildupState('push');
- });
- });
- } else if (this.trustedKeyStore.hasTrustedKey()) {
- this.$log.debug('Push service not available');
- this.stateService.updateConnectionBuildupState('manual_start');
- }
- return this.startupPromise.promise;
- }
- /**
- * Stop the webclient service.
- *
- * This is a forced stop, meaning that all channels are closed.
- *
- * Parameters:
- *
- * - `requestedByUs`: Set this to `false` if the app requested to close the session.
- * - `deleteStoredData`: Whether to clear any trusted key or push token from the keystore.
- * - `resetPush`: Whether to reset the push service.
- * - `redirect`: Whether to redirect to the welcome page.
- */
- public stop(requestedByUs: boolean,
- deleteStoredData: boolean = false,
- resetPush: boolean = true,
- redirect: boolean = false): void {
- this.$log.info(this.logTag, 'Disconnecting...');
- if (requestedByUs && this.stateService.rtcConnectionState === 'connected') {
- // Ask peer to disconnect too
- this.salty.sendApplicationMessage({type: 'disconnect', forget: deleteStoredData});
- }
- this.stateService.reset();
- // Reset the unread count
- this.resetUnreadCount();
- // Clear stored data (trusted key, push token, etc)
- if (deleteStoredData === true) {
- this.trustedKeyStore.clearTrustedKey();
- }
- // Clear push token
- if (resetPush === true) {
- this.pushService.reset();
- }
- // Close data channel
- if (this.secureDataChannel !== null) {
- this.$log.debug(this.logTag, 'Closing secure datachannel');
- this.secureDataChannel.close();
- }
- // Close SaltyRTC connection
- if (this.salty !== null) {
- this.$log.debug(this.logTag, 'Closing signaling');
- this.salty.disconnect();
- }
- // Function to redirect to welcome screen
- const redirectToWelcome = () => {
- if (redirect === true) {
- this.$timeout(() => {
- this.$state.go('welcome');
- }, 0);
- }
- };
- // Close peer connection
- if (this.pcHelper !== null) {
- this.$log.debug(this.logTag, 'Closing peer connection');
- this.pcHelper.close()
- .then(
- () => this.$log.debug(this.logTag, 'Peer connection was closed'),
- (reason: string) => this.$log.warn(this.logTag, 'Peer connection could not be closed:', reason),
- )
- .finally(() => redirectToWelcome());
- } else {
- this.$log.debug(this.logTag, 'Peer connection was null');
- redirectToWelcome();
- }
- }
- /**
- * Remove "turns:" servers from the ICE_SERVERS configuration
- * if at least one "turn:" server with tcp transport is in the list.
- */
- public skipIceTls(): void {
- this.$log.debug(this.logTag, 'Requested to remove TURNS server from ICE configuration');
- const allUrls = [].concat(...this.config.ICE_SERVERS.map((conf) => conf.urls));
- if (allUrls.some((url) => url.startsWith('turn:') && url.endsWith('=tcp'))) {
- // There's at least one TURN server with TCP transport in the list
- for (const server of this.config.ICE_SERVERS) {
- // Remove TLS entries
- server.urls = server.urls.filter((url) => !url.startsWith('turns:'));
- }
- } else {
- this.$log.debug(this.logTag, 'No fallback TURN TCP server present, keeping TURNS server');
- }
- }
- /**
- * Mark a component as initialized
- */
- public registerInitializationStep(name: threema.InitializationStep) {
- if (this.initialized.has(name) ) {
- this.$log.warn(this.logTag, 'Initialization step "' + name + '" already registered');
- return;
- }
- this.$log.debug(this.logTag, 'Initialization step "' + name + '" done');
- this.initialized.add(name);
- // Check pending routines
- this.pendingInitializationStepRoutines = this.pendingInitializationStepRoutines.filter((routine) => {
- let isValid = true;
- for (const requiredStep of routine.requiredSteps) {
- if (!this.initialized.has(requiredStep)) {
- isValid = false;
- break;
- }
- }
- if (isValid) {
- this.$log.debug(this.logTag, 'Running routine after initialization "' + name + '" completed');
- routine.callback();
- }
- return !isValid;
- });
- }
- public setReceiverListener(listener: threema.ReceiverListener): void {
- this.receiverListener.push(listener);
- }
- /**
- * Send a client info request.
- */
- public requestClientInfo(): void {
- this.$log.debug('Sending client info request');
- this._sendRequest(WebClientService.SUB_TYPE_CLIENT_INFO, {
- browser: navigator.userAgent,
- });
- }
- /**
- * Send a receiver request.
- */
- public requestReceivers(): void {
- this.$log.debug('Sending receiver request');
- this._sendRequest(WebClientService.SUB_TYPE_RECEIVER);
- }
- /**
- * Send a conversation request.
- */
- public requestConversations(): void {
- this.$log.debug('Sending conversation request');
- this._sendRequest(WebClientService.SUB_TYPE_CONVERSATIONS, {
- [WebClientService.ARGUMENT_MAX_SIZE]: WebClientService.AVATAR_LOW_MAX_SIZE,
- });
- }
- /**
- * Send a battery status request.
- */
- public requestBatteryStatus(): void {
- this.$log.debug('Sending battery status request');
- this._sendRequest(WebClientService.SUB_TYPE_BATTERY_STATUS);
- }
- /**
- * Send a message request for the specified receiver.
- *
- * This method will only be called when initializing a conversation in the
- * webclient. It is used to download all existing messages.
- *
- * New messages are not requested this way, instead they are sent as a
- * message update.
- */
- public requestMessages(receiver: threema.Receiver): number {
- // If there are no more messages available, stop here.
- if (!this.messages.hasMore(receiver)) {
- this.messages.notify(receiver, this.$rootScope);
- return null;
- }
- this.loadingMessages.set(receiver.type + receiver.id, true);
- // Check if messages have already been requested
- if (this.messages.isRequested(receiver)) {
- return null;
- }
- // Get the reference msg id
- const refMsgId = this.messages.getReferenceMsgId(receiver);
- // Set requested
- // TODO: Add timeout to reset flag
- this.messages.setRequested(receiver);
- // Create arguments
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- } as any;
- // If a reference msg id has been set, send it along
- const msgId = this.messages.getReferenceMsgId(receiver);
- if (msgId !== null) {
- args[WebClientService.ARGUMENT_REFERENCE_MSG_ID] = msgId;
- }
- // Send request
- this.$log.debug('Sending message request for', receiver.type, receiver.id,
- 'with message id', msgId);
- this._sendRequest(WebClientService.SUB_TYPE_MESSAGE, args);
- return refMsgId;
- }
- /**
- * Send an avatar request for the specified receiver.
- */
- public requestAvatar(receiver: threema.Receiver, highResolution: boolean): Promise<any> {
- // Check if the receiver has an avatar or the avatar already exists
- const resolution = highResolution ? 'high' : 'low';
- const receiverInfo = this.receivers.getData(receiver);
- if (receiverInfo && receiverInfo.avatar && receiverInfo.avatar[resolution]) {
- // Avatar already exists
- // TODO: Do we get avatar changes via update?
- return new Promise<any>((e) => {
- e(receiverInfo.avatar[resolution]);
- });
- }
- // Create arguments and send request
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- [WebClientService.ARGUMENT_AVATAR_HIGH_RESOLUTION]: highResolution,
- } as any;
- if (!highResolution) {
- args[WebClientService.ARGUMENT_MAX_SIZE] = WebClientService.AVATAR_LOW_MAX_SIZE;
- }
- this.$log.debug('Sending', resolution, 'res avatar request for', receiver.type, receiver.id);
- return this._sendRequestPromise(WebClientService.SUB_TYPE_AVATAR, args, 10000);
- }
- /**
- * Send an thumbnail request for the specified receiver.
- */
- public requestThumbnail(receiver: threema.Receiver, message: threema.Message): Promise<any> {
- // Check if the receiver has an avatar or the avatar already exists
- if (message.thumbnail !== undefined && message.thumbnail.img !== undefined) {
- return new Promise<any>((e) => {
- e(message.thumbnail.img);
- });
- }
- // Create arguments and send request
- const args = {
- [WebClientService.ARGUMENT_MESSAGE_ID]: message.id,
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- };
- this.$log.debug('Sending', 'thumbnail request for', receiver.type, message.id);
- return this._sendRequestPromise(WebClientService.SUB_TYPE_THUMBNAIL, args, 10000);
- }
- /**
- * Request a blob.
- */
- public requestBlob(msgId: number, receiver: threema.Receiver): Promise<ArrayBuffer> {
- const cached = this.blobCache.get(msgId + receiver.type);
- if (cached !== undefined) {
- this.$log.debug('Use cached blob');
- return new Promise((resolve) => {
- resolve(cached);
- });
- }
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- [WebClientService.ARGUMENT_MESSAGE_ID]: msgId,
- };
- this.$log.debug('Sending blob request for message', msgId);
- return this._sendRequestPromise(WebClientService.SUB_TYPE_BLOB, args);
- }
- /**
- */
- public requestRead(receiver, newestMessageId: number): void {
- // Check if the receiver has an avatar or the avatar already exists
- // let field: string = highResolution ? 'high' : 'low';
- // let data = this.receivers.getData(receiver);
- // if (data && data['avatar'] && data['avatar'][field]) {
- // return;
- // }
- // if (data && data.hasAvatar === false) {
- // return;
- // }
- // Create arguments and send request
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- [WebClientService.ARGUMENT_MESSAGE_ID]: newestMessageId,
- };
- this.$log.debug('Sending read request for', receiver.type, receiver.id, '(msg ' + newestMessageId + ')');
- this._sendRequest(WebClientService.SUB_TYPE_READ, args);
- }
- public requestContactDetail(contactReceiver: threema.ContactReceiver): Promise<any> {
- return this._sendRequestPromise(WebClientService.SUB_TYPE_CONTACT_DETAIL, {
- [WebClientService.ARGUMENT_IDENTITY]: contactReceiver.id,
- });
- }
- /**
- * Send a message to the specified receiver.
- */
- public sendMessage(receiver,
- type: threema.MessageContentType,
- message: threema.MessageData): Promise<Promise<any>> {
- return new Promise<any> (
- (resolve, reject) => {
- // Try to load receiver object
- const receiverObject = this.receivers.getData(receiver);
- // Check blocked flag
- if (receiverObject.type === 'contact'
- && (receiverObject as threema.ContactReceiver).isBlocked) {
- return reject(this.$translate.instant('error.CONTACT_BLOCKED'));
- }
- // Decide on subtype
- let subType;
- switch (type) {
- case 'text':
- subType = WebClientService.SUB_TYPE_TEXT_MESSAGE;
- const textMessage = message as threema.TextMessageData;
- const msgLength = textMessage.text.length;
- // Ignore empty text messages
- if (msgLength === 0) {
- return reject();
- }
- // Ignore text messages that are too long.
- if (msgLength > WebClientService.MAX_TEXT_LENGTH) {
- return reject(this.$translate.instant('error.TEXT_TOO_LONG', {
- max: WebClientService.MAX_TEXT_LENGTH,
- }));
- }
- break;
- case 'file':
- // validate max file size
- if ((message as threema.FileMessageData).size > WebClientService.MAX_FILE_SIZE) {
- return reject(this.$translate.instant('error.FILE_TOO_LARGE'));
- }
- // Determine required feature level
- let requiredFeatureLevel = 3;
- let invalidFeatureLevelMessage = 'error.FILE_MESSAGES_NOT_SUPPORTED';
- if ((message as threema.FileMessageData).sendAsFile !== true) {
- // check mime type
- const mime = (message as threema.FileMessageData).fileType;
- if (this.mimeService.isAudio(mime)) {
- requiredFeatureLevel = 1;
- invalidFeatureLevelMessage = 'error.AUDIO_MESSAGES_NOT_SUPPORTED';
- } else if (this.mimeService.isImage(mime)
- || this.mimeService.isVideo(mime)) {
- requiredFeatureLevel = 0;
- invalidFeatureLevelMessage = 'error.MESSAGE_NOT_SUPPORTED';
- }
- }
- subType = WebClientService.SUB_TYPE_FILE_MESSAGE;
- // check receiver
- switch (receiver.type) {
- case 'distributionList':
- return reject(this.$translate.instant(invalidFeatureLevelMessage, {
- receiverName: receiver.displayName}));
- case 'group':
- const unsupportedMembers = [];
- const group = this.groups.get(receiver.id);
- if (group === undefined) {
- return reject();
- }
- group.members.forEach((identity: string) => {
- if (identity !== this.me.id) {
- // tslint:disable-next-line: no-shadowed-variable
- const contact = this.contacts.get(identity);
- if (contact !== undefined && contact.featureLevel < requiredFeatureLevel) {
- unsupportedMembers.push(contact.displayName);
- }
- }
- });
- if (unsupportedMembers.length > 0) {
- return reject(this.$translate.instant(invalidFeatureLevelMessage, {
- receiverName: unsupportedMembers.join(',')}));
- }
- break;
- case 'contact':
- const contact = this.contacts.get(receiver.id);
- if (contact === undefined) {
- this.$log.error('Cannot retrieve contact');
- return reject(this.$translate.instant('error.ERROR_OCCURRED'));
- } else if (contact.featureLevel < requiredFeatureLevel) {
- this.$log.debug('Cannot send message: Feature level mismatch:',
- contact.featureLevel, '<', requiredFeatureLevel);
- return reject(this.$translate.instant(invalidFeatureLevelMessage, {
- receiverName: contact.displayName}));
- }
- break;
- default:
- return reject();
- }
- break;
- default:
- this.$log.warn('Invalid message type:', type);
- return reject();
- }
- const temporaryMessage = this.messageService.createTemporary(receiver, type, message);
- this.messages.addNewer(receiver, [temporaryMessage]);
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- [WebClientService.ARGUMENT_TEMPORARY_ID]: temporaryMessage.temporaryId,
- };
- // Send message and handling error promise
- this._sendCreatePromise(subType, args, message).catch((error) => {
- this.$log.error('Error sending message:', error);
- // Remove temporary message
- this.messages.removeTemporary(receiver, temporaryMessage.temporaryId);
- // Determine error message
- let errorMessage;
- switch (error) {
- case 'file_too_large':
- errorMessage = this.$translate.instant('error.FILE_TOO_LARGE');
- break;
- case 'blocked':
- errorMessage = this.$translate.instant('error.CONTACT_BLOCKED');
- break;
- default:
- errorMessage = this.$translate.instant('error.ERROR_OCCURRED');
- }
- // Show alert
- this.alerts.push({
- source: 'sendMessage',
- type: 'alert',
- message: errorMessage,
- } as threema.Alert);
- });
- resolve();
- });
- }
- /**
- * Send a message a ack/decline message
- */
- public ackMessage(receiver, message: threema.Message, acknowledged: boolean = true): void {
- // Ignore empty text messages
- // TODO check into a util class
- if (message === null
- || message === undefined
- || message.isOutbox) {
- return;
- }
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- [WebClientService.ARGUMENT_MESSAGE_ID]: message.id,
- [WebClientService.ARGUMENT_MESSAGE_ACKNOWLEDGED]: acknowledged,
- };
- this._sendRequest(WebClientService.SUB_TYPE_ACK, args);
- }
- /**
- * Send a message a ack/decline message
- */
- public deleteMessage(receiver, message: threema.Message): void {
- // Ignore empty text messages
- if (message === null || message === undefined) {
- return;
- }
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- [WebClientService.ARGUMENT_MESSAGE_ID]: message.id,
- };
- this._sendDelete(WebClientService.SUB_TYPE_MESSAGE, args);
- }
- public sendMeIsTyping(receiver, isTyping: boolean): void {
- // Create arguments and send create
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- [WebClientService.ARGUMENT_CONTACT_IS_TYPING]: isTyping,
- };
- this._sendRequest(WebClientService.SUB_TYPE_TYPING, args);
- }
- public sendKeyPersisted(): void {
- this._sendRequest(WebClientService.SUB_TYPE_KEY_PERSISTED);
- }
- /**
- * Send a add Contact request
- */
- public addContact(threemaId: string): Promise<threema.ContactReceiver> {
- return this._sendCreatePromise(WebClientService.SUB_TYPE_CONTACT, {
- [WebClientService.ARGUMENT_IDENTITY]: threemaId,
- });
- }
- /**
- * Modify a contact name or a avatar
- */
- public modifyContact(threemaId: string,
- firstName: string,
- lastName: string,
- avatar?: ArrayBuffer): Promise<threema.ContactReceiver> {
- const promise = this._sendUpdatePromise(WebClientService.SUB_TYPE_CONTACT, {
- [WebClientService.ARGUMENT_IDENTITY]: threemaId,
- }, {
- [WebClientService.ARGUMENT_FIRST_NAME]: firstName,
- [WebClientService.ARGUMENT_LAST_NAME]: lastName,
- [WebClientService.ARGUMENT_AVATAR_HIGH_RESOLUTION]: avatar,
- });
- if (avatar !== undefined) {
- // reset avatar to force a avatar reload
- this.receivers.getData({
- type: 'contact',
- id: threemaId,
- } as threema.Receiver).avatar = {};
- }
- return promise;
- }
- /**
- * Create a group receiver
- */
- public createGroup(members: string[],
- name: string = null,
- avatar?: ArrayBuffer): Promise<threema.GroupReceiver> {
- const data = {
- [WebClientService.ARGUMENT_MEMBERS]: members,
- [WebClientService.ARGUMENT_NAME]: name,
- } as any;
- if (avatar !== undefined) {
- data[WebClientService.ARGUMENT_AVATAR_HIGH_RESOLUTION] = avatar;
- }
- return this._sendCreatePromise(WebClientService.SUB_TYPE_GROUP, data);
- }
- public modifyGroup(id: string,
- members: string[],
- name: string = null,
- avatar?: ArrayBuffer): Promise<threema.GroupReceiver> {
- const data = {
- [WebClientService.ARGUMENT_MEMBERS]: members,
- [WebClientService.ARGUMENT_NAME]: name,
- } as any;
- if (avatar !== undefined) {
- data[WebClientService.ARGUMENT_AVATAR_HIGH_RESOLUTION] = avatar;
- }
- const promise = this._sendUpdatePromise(WebClientService.SUB_TYPE_GROUP, {
- [WebClientService.ARGUMENT_RECEIVER_ID]: id,
- }, data);
- if (avatar !== undefined) {
- // reset avatar to force a avatar reload
- this.receivers.getData({
- type: 'group',
- id: id,
- } as threema.GroupReceiver).avatar = {};
- }
- return promise;
- }
- public leaveGroup(group: threema.GroupReceiver): Promise<any> {
- if (group === null || group === undefined || !group.access.canLeave) {
- return new Promise((resolve, reject) => reject('not allowed'));
- }
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_ID]: group.id,
- // TODO: delete type into const
- [WebClientService.ARGUMENT_DELETE_TYPE]: 'leave',
- };
- return this._sendDeletePromise(WebClientService.SUB_TYPE_GROUP, args);
- }
- public deleteGroup(group: threema.GroupReceiver): Promise<any> {
- if (group === null || group === undefined || !group.access.canDelete) {
- return new Promise<any> (
- (resolve, reject) => {
- reject('not allowed');
- });
- }
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_ID]: group.id,
- // TODO: delete type into const
- [WebClientService.ARGUMENT_DELETE_TYPE]: 'delete',
- };
- return this._sendDeletePromise(WebClientService.SUB_TYPE_GROUP, args);
- }
- public syncGroup(group: threema.GroupReceiver): Promise<any> {
- if (group === null || group === undefined || !group.access.canSync) {
- return new Promise<any> (
- (resolve, reject) => {
- reject('not allowed');
- });
- }
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_ID]: group.id,
- };
- return this._sendRequestPromise(WebClientService.SUB_TYPE_GROUP_SYNC, args);
- }
- public createDistributionList(members: string[], name: string = null): Promise<threema.DistributionListReceiver> {
- const data = {
- [WebClientService.ARGUMENT_MEMBERS]: members,
- [WebClientService.ARGUMENT_NAME]: name,
- } as any;
- return this._sendCreatePromise(WebClientService.SUB_TYPE_DISTRIBUTION_LIST, data);
- }
- public modifyDistributionList(id: string,
- members: string[],
- name: string = null): Promise<threema.DistributionListReceiver> {
- const data = {
- [WebClientService.ARGUMENT_MEMBERS]: members,
- [WebClientService.ARGUMENT_NAME]: name,
- } as any;
- return this._sendUpdatePromise(WebClientService.SUB_TYPE_DISTRIBUTION_LIST, {
- [WebClientService.ARGUMENT_RECEIVER_ID]: id,
- }, data);
- }
- public deleteDistributionList(distributionList: threema.DistributionListReceiver): Promise<any> {
- if (distributionList === null || distributionList === undefined || !distributionList.access.canDelete) {
- return new Promise((resolve, reject) => reject('not allowed'));
- }
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_ID]: distributionList.id,
- };
- return this._sendDeletePromise(WebClientService.SUB_TYPE_DISTRIBUTION_LIST, args);
- }
- /**
- * Remove all messages of a receiver
- * @param {threema.Receiver} receiver
- * @returns {Promise<any>}
- */
- public cleanReceiverConversation(receiver: threema.Receiver): Promise<any> {
- if (receiver === null || receiver === undefined) {
- return new Promise((resolve, reject) => reject('invalid receiver'));
- }
- const args = {
- [WebClientService.ARGUMENT_RECEIVER_TYPE]: receiver.type,
- [WebClientService.ARGUMENT_RECEIVER_ID]: receiver.id,
- };
- return this._sendDeletePromise(WebClientService.SUB_TYPE_CLEAN_RECEIVER_CONVERSATION, args);
- }
- /**
- * Return whether the specified contact is currently typing.
- *
- * This always returns false for groups and distribution lists.
- */
- public isTyping(receiver: threema.ContactReceiver): boolean {
- return this.typing.isTyping(receiver);
- }
- /**
- * Return own identity.
- */
- public getMyIdentity(): threema.Identity {
- return this.myIdentity;
- }
- /**
- * Return the curring quoted message model
- */
- public getQuote(receiver: threema.Receiver): threema.Quote {
- return this.drafts.getQuote(receiver);
- }
- /**
- * Set or remove (if message is null) a quoted message model.
- */
- public setQuote(receiver: threema.Receiver, message: threema.Message = null): void {
- // Remove current quote
- this.drafts.removeQuote(receiver);
- if (message !== null) {
- let quoteText;
- switch (message.type) {
- case 'text':
- quoteText = message.body;
- break;
- case 'location':
- quoteText = message.location.poi;
- break;
- case 'file':
- case 'image':
- quoteText = message.caption;
- break;
- default:
- // Ignore (handled below)
- }
- if (quoteText !== undefined) {
- const quote = {
- identity: message.isOutbox ? this.me.id : message.partnerId,
- text: quoteText,
- } as threema.Quote;
- this.drafts.setQuote(receiver, quote);
- this.$rootScope.$broadcast('onQuoted', {
- receiver: receiver,
- quote: quote,
- });
- }
- }
- }
- /**
- * Set or remove (if string is null) a draft message
- */
- public setDraft(receiver: threema.Receiver, message: string = null): void {
- if (message === null || message.trim().length === 0) {
- this.drafts.removeText(receiver);
- } else {
- this.drafts.setText(receiver, message.trim());
- }
- }
- /**
- * return draft text
- */
- public getDraft(receiver: threema.Receiver): string {
- return this.drafts.getText(receiver);
- }
- /**
- * Reset data related to initialization.
- */
- private _resetInitializationSteps(): void {
- this.$log.debug(this.logTag, 'Reset initialization steps');
- this.initialized.clear();
- this.pendingInitializationStepRoutines = [];
- }
- /**
- * Reset data fields.
- */
- private _resetFields(): void {
- // Reset initialization data
- this._resetInitializationSteps();
- // Create container instances
- this.receivers = this.container.createReceivers();
- this.conversations = this.container.createConversations();
- this.messages = this.container.createMessages();
- this.typingInstance = this.container.createTyping();
- // Add converters (pre-processors)
- this.messages.converter = this.container.Converter.unicodeToEmoji;
- this.conversations.setConverter(this.container.Converter.addReceiverToConversation(this.receivers));
- // Add filters
- this.conversations.setFilter(this.container.Filters.hasData(this.receivers));
- }
- private _requestInitialData(): void {
- // if all conversations are reloaded, clear the message cache
- // to get in sync (we dont know if a message was removed, updated etc..)
- this.messages.clear(this.$rootScope);
- // Request initial data
- this.requestClientInfo();
- this.requestReceivers();
- this.requestConversations();
- this.requestBatteryStatus();
- }
- private _receiveResponseReceivers(message: threema.WireMessage) {
- this.$log.debug('Received receiver response');
- // Unpack and validate data
- const data = message.data;
- if (data === undefined) {
- this.$log.warn('Invalid receiver response, data missing');
- return;
- }
- // Store receivers
- this.receivers.set(data);
- this.registerInitializationStep('receivers');
- }
- private _receiveResponseContactDetail(message: threema.WireMessage): any {
- this.$log.debug('Received contact detail');
- // Unpack and validate data
- const data = message.data;
- if (data === undefined) {
- this.$log.warn('Invalid contact response, data missing');
- return;
- }
- if (data[WebClientService.ARGUMENT_SUCCESS]) {
- const contactReceiver = this.receivers.contacts
- .get(message.args[WebClientService.ARGUMENT_IDENTITY]) as threema.ContactReceiver;
- // get system contact
- if (data[WebClientService.SUB_TYPE_RECEIVER]) {
- contactReceiver.systemContact =
- data[WebClientService.SUB_TYPE_RECEIVER][WebClientService.ARGUMENT_SYSTEM_CONTACT];
- }
- return {
- success: true,
- contactReceiver: contactReceiver,
- };
- }
- return data;
- }
- private _receiveAlert(message: threema.WireMessage): any {
- this.$log.debug('Received alert from device');
- this.alerts.push({
- source: message.args.source,
- type: message.data.type,
- message: message.data.message,
- } as threema.Alert);
- }
- private _receiveGroupSync(message: threema.WireMessage): any {
- this.$log.debug('Received group sync');
- // to finish the promise
- return {
- success: true,
- data: null,
- };
- }
- /**
- * handling new or modified contact
- */
- // tslint:disable-next-line: max-line-length
- private _receiveResponseContact(message: threema.WireMessage): threema.PromiseRequestResult<threema.ContactReceiver> {
- this.$log.debug('Received contact response');
- // Unpack and validate data
- const data = message.data;
- if (data === undefined) {
- this.$log.warn('Invalid add contact response, data missing');
- return;
- }
- if (data[WebClientService.ARGUMENT_SUCCESS]
- && data[WebClientService.SUB_TYPE_RECEIVER] !== undefined) {
- const receiver = data[WebClientService.SUB_TYPE_RECEIVER] as threema.ContactReceiver;
- // Add or update a certain receiver
- if (receiver.type === undefined) {
- receiver.type = 'contact';
- }
- this.receivers.extendContact(receiver);
- return {
- success: true,
- data: receiver,
- };
- }
- let msg = null;
- if (data[WebClientService.ARGUMENT_ERROR] !== undefined) {
- msg = data[WebClientService.ARGUMENT_ERROR];
- }
- return {
- success: false,
- message: msg,
- };
- }
- /**
- * handling new or modified group
- */
- private _receiveResponseGroup(message: threema.WireMessage): threema.PromiseRequestResult<threema.GroupReceiver> {
- this.$log.debug('Received group response');
- // Unpack and validate data
- const data = message.data;
- if (data === undefined) {
- this.$log.warn('Invalid create group response, data missing');
- return;
- }
- if (data[WebClientService.ARGUMENT_SUCCESS]
- && data[WebClientService.SUB_TYPE_RECEIVER] !== undefined) {
- const receiver = data[WebClientService.SUB_TYPE_RECEIVER] as threema.GroupReceiver;
- // Add or update a certain receiver
- if (receiver.type === undefined) {
- receiver.type = 'group';
- }
- this.receivers.extendGroup(receiver);
- return {
- success: true,
- data: receiver,
- };
- }
- let msg = null;
- if (data[WebClientService.ARGUMENT_ERROR] !== undefined) {
- msg = data[WebClientService.ARGUMENT_ERROR];
- }
- return {
- success: false,
- message: msg,
- };
- }
- /**
- * Handling new or modified group
- */
- // tslint:disable-next-line: max-line-length
- private _receiveResponseDistributionList(message: threema.WireMessage): threema.PromiseRequestResult<threema.DistributionListReceiver> {
- this.$log.debug('Received distribution list response');
- // Unpack and validate data
- const data = message.data;
- if (data === undefined) {
- this.$log.warn('Invalid distribution list response, data missing');
- return;
- }
- if (data[WebClientService.ARGUMENT_SUCCESS]
- && data[WebClientService.SUB_TYPE_RECEIVER] !== undefined) {
- const receiver = data[WebClientService.SUB_TYPE_RECEIVER] as threema.DistributionListReceiver;
- // Add or update a certain receiver
- if (receiver.type === undefined) {
- receiver.type = 'distributionList';
- }
- this.receivers.extendDistributionList(receiver);
- return {
- success: true,
- data: receiver,
- };
- }
- let msg = null;
- if (data[WebClientService.ARGUMENT_MESSAGE] !== undefined) {
- msg = data[WebClientService.ARGUMENT_MESSAGE];
- }
- return {
- success: false,
- message: msg,
- };
- }
- private _receiveResponseCreateMessage(message: threema.WireMessage):
- threema.PromiseRequestResult<string> {
- this.$log.debug('Received create message response');
- // Unpack data and arguments
- const args = message.args;
- const data = message.data;
- if (args === undefined
- || data === undefined) {
- this.$log.warn('Invalid create received, arguments or data missing');
- return;
- }
- const receiverType = args[WebClientService.ARGUMENT_RECEIVER_TYPE];
- const receiverId = args[WebClientService.ARGUMENT_RECEIVER_ID];
- const temporaryId = args[WebClientService.ARGUMENT_TEMPORARY_ID];
- if (data[WebClientService.ARGUMENT_SUCCESS]) {
- const messageId = data[WebClientService.ARGUMENT_MESSAGE_ID];
- if (receiverType === undefined || receiverId === undefined ||
- temporaryId === undefined || messageId === undefined) {
- this.$log.warn('Invalid create received [type, id or temporaryId arg ' +
- 'or messageId in data missing]');
- return;
- }
- this.messages.bindTemporaryToMessageId({
- type: receiverType,
- id: receiverId,
- } as threema.Receiver, temporaryId, messageId);
- return {
- success: true,
- data: messageId,
- };
- }
- return {
- success: false,
- message: data[WebClientService.ARGUMENT_ERROR],
- };
- }
- private _receiveResponseConversations(message: threema.WireMessage) {
- this.$log.debug('Received conversations response');
- const data = message.data;
- if (data === undefined) {
- this.$log.warn('Invalid conversation response, data missing');
- } else {
- // if a avatar was set on a conversation
- // convert and copy to the receiver
- for (const conversation of data) {
- if (conversation.avatar !== undefined && conversation.avatar !== null) {
- const receiver = this.receivers.getData({
- id: conversation.id,
- type: conversation.type,
- } as threema.Receiver);
- if (receiver !== undefined
- && receiver.avatar === undefined) {
- receiver.avatar = {
- low: this.$filter('bufferToUrl')(conversation.avatar, 'image/png'),
- };
- }
- // reset avatar from object
- delete conversation.avatar;
- }
- this.conversations.updateOrAdd(conversation);
- }
- }
- this.updateUnreadCount();
- this.registerInitializationStep('conversations');
- }
- private _receiveResponseConversation(message: threema.WireMessage) {
- this.$log.debug('Received conversation response');
- const args = message.args;
- const data = message.data;
- if (args === undefined || data === undefined) {
- this.$log.warn('Invalid conversation response, data or arguments missing');
- return;
- }
- // Unpack required argument fields
- const type: string = args[WebClientService.ARGUMENT_MODE];
- switch (type) {
- case WebClientService.ARGUMENT_MODE_NEW:
- this.conversations.add(data);
- break;
- case WebClientService.ARGUMENT_MODE_MODIFIED:
- // A conversation update *can* mean that a new message arrived.
- // To find out, we'll look at the unread count. If it has been
- // incremented, it must be a new message.
- if (data.unreadCount > 0) {
- // Find the correct conversation in the conversation list
- const conversation = this.conversations.find(data);
- if (data === null) {
- // Conversation not found, add it!
- this.conversations.add(data);
- this.onNewMessage(data.latestMessage, conversation);
- } else {
- // Check for unread count changes
- const unreadCountIncreased = data.unreadCount > conversation.unreadCount;
- const unreadCountDecreased = data.unreadCount < conversation.unreadCount;
- // Update the conversation
- this.conversations.updateOrAdd(data);
- // If the unreadcount has increased, we received a new message.
- // Otherwise, if it has decreased, hide the notification.
- if (unreadCountIncreased) {
- this.onNewMessage(data.latestMessage, conversation);
- } else if (unreadCountDecreased) {
- this.notificationService.hideNotification(data.type + '-' + data.id);
- }
- }
- } else {
- // Update the conversation and hide any notifications
- this.conversations.updateOrAdd(data);
- this.notificationService.hideNotification(data.type + '-' + data.id);
- }
- break;
- case WebClientService.ARGUMENT_MODE_REMOVED:
- this.conversations.remove(data);
- // Remove all cached messages
- this.messages.clearReceiverMessages((data as threema.Receiver));
- this.receiverListener.forEach((listener: threema.ReceiverListener) => {
- this.$log.debug('call on removed listener');
- listener.onRemoved(data);
- });
- break;
- default:
- this.$log.warn('Received conversation without a mode');
- return;
- }
- this.updateUnreadCount();
- }
- private _receiveResponseMessages(message: threema.WireMessage): void {
- this.$log.debug('Received message response');
- // Unpack data and arguments
- const args = message.args;
- const data = message.data as threema.Message[];
- if (args === undefined || data === undefined) {
- this.$log.warn('Invalid message response, data or arguments missing');
- return;
- }
- // Unpack required argument fields
- const type: string = args[WebClientService.ARGUMENT_RECEIVER_TYPE];
- const id: string = args[WebClientService.ARGUMENT_RECEIVER_ID];
- let more: boolean = args[WebClientService.ARGUMENT_HAS_MORE];
- if (type === undefined || id === undefined || more === undefined) {
- this.$log.warn('Invalid message response, argument field missing');
- return;
- }
- // If there's no data returned, override `more` field.
- if (data.length === 0) {
- more = false;
- }
- // Check if the page was requested
- const receiver = {type: type, id: id} as threema.Receiver;
- // Set as loaded
- this.loadingMessages.delete(receiver.type + receiver.id);
- if (this.messages.isRequested(receiver)) {
- // Add messages
- this.messages.addOlder(receiver, data);
- // Clear pending request
- this.messages.clearRequested(receiver);
- // Set "more" flag to indicate that more (older) messages are available.
- this.messages.setMore(receiver, more);
- this.messages.notify(receiver, this.$rootScope);
- } else {
- this.$log.warn("Ignoring message response that hasn't been requested");
- return;
- }
- }
- private _receiveResponseAvatar(message: threema.WireMessage): any {
- this.$log.debug('Received avatar response');
- // Unpack data and arguments
- const args = message.args;
- if (args === undefined) {
- this.$log.warn('Invalid message response: arguments missing');
- return {
- success: false,
- data: 'invalid_response',
- };
- }
- const data = message.data;
- if ( data === undefined) {
- // It's ok, a receiver without a avatar
- return {
- success: true,
- data: null,
- };
- }
- // Unpack required argument fields
- const type = args[WebClientService.ARGUMENT_RECEIVER_TYPE];
- const id = args[WebClientService.ARGUMENT_RECEIVER_ID];
- const highResolution = args[WebClientService.ARGUMENT_AVATAR_HIGH_RESOLUTION];
- if (type === undefined || id === undefined || highResolution === undefined) {
- this.$log.warn('Invalid avatar response, argument field missing');
- return {
- success: false,
- data: 'invalid_response',
- };
- }
- // Set avatar for receiver according to resolution
- const field: string = highResolution ? 'high' : 'low';
- const receiverData = this.receivers.getData(args);
- if (receiverData.avatar === null || receiverData.avatar === undefined) {
- receiverData.avatar = {};
- }
- const avatar = this.$filter('bufferToUrl')(data, 'image/png');
- receiverData.avatar[field] = avatar;
- return {
- success: true,
- data: avatar,
- };
- }
- private _receiveResponseThumbnail(message: threema.WireMessage): any {
- this.$log.debug('Received thumbnail response');
- // Unpack data and arguments
- const args = message.args;
- if (args === undefined) {
- this.$log.warn('Invalid message response: arguments missing');
- return {
- success: false,
- data: 'invalid_response',
- };
- }
- const data = message.data;
- if ( data === undefined) {
- // It's ok, a message without a thumbnail
- return {
- success: true,
- data: null,
- };
- }
- // Unpack required argument fields
- const type = args[WebClientService.ARGUMENT_RECEIVER_TYPE];
- const id = args[WebClientService.ARGUMENT_RECEIVER_ID];
- const messageId = args[WebClientService.ARGUMENT_MESSAGE_ID];
- if (type === undefined || id === undefined || messageId === undefined ) {
- this.$log.warn('Invalid thumbnail response, argument field missing');
- return {
- success: false,
- data: 'invalid_response',
- };
- }
- this.messages.setThumbnail( this.receivers.getData(args), messageId, data);
- return {
- success: true,
- data: data};
- }
- private _receiveResponseBlob(message: threema.WireMessage): threema.PromiseRequestResult<ArrayBuffer> {
- this.$log.debug('Received blob response');
- // Unpack data and arguments
- const args = message.args;
- const data = message.data;
- if (args === undefined || data === undefined) {
- this.$log.warn('Invalid message response, data or arguments missing');
- return {
- success: false,
- };
- }
- // Unpack required argument fields
- const receiverType = args[WebClientService.ARGUMENT_RECEIVER_TYPE];
- const receiverId = args[WebClientService.ARGUMENT_RECEIVER_ID];
- const msgId = args[WebClientService.ARGUMENT_MESSAGE_ID];
- if (receiverType === undefined || receiverId === undefined || msgId === undefined) {
- this.$log.warn('Invalid blob response, argument field missing');
- return {
- success: false,
- };
- }
- // Unpack data
- const buffer: ArrayBuffer = data[WebClientService.DATA_FIELD_BLOB_BLOB];
- if (buffer === undefined) {
- this.$log.warn('Invalid blob response, data field missing');
- return {
- success: false,
- };
- }
- this.blobCache.set(msgId + receiverType, buffer);
- // Download to browser
- return {
- success: true,
- data: buffer,
- };
- }
- private _receiveUpdateMessage(message: threema.WireMessage): void {
- this.$log.debug('Received message update');
- // Unpack data and arguments
- const args = message.args;
- const data: threema.Message = message.data;
- if (args === undefined || data === undefined) {
- this.$log.warn('Invalid message update, data or arguments missing');
- return;
- }
- // Unpack required argument fields
- const type: string = args[WebClientService.ARGUMENT_RECEIVER_TYPE];
- const id: string = args[WebClientService.ARGUMENT_RECEIVER_ID];
- const mode: string = args[WebClientService.ARGUMENT_MODE];
- if (type === undefined || id === undefined || mode === undefined) {
- this.$log.warn('Invalid message update, argument field missing');
- return;
- }
- const receiver = {type: type, id: id} as threema.Receiver;
- // React depending on mode
- switch (mode) {
- case WebClientService.ARGUMENT_MODE_NEW:
- this.$log.debug('New message', data.id);
- // It's possible that this message already exists (placeholder message on send).
- // Try to update it first. If not, add it as a new msg.
- if (!this.messages.update(receiver, data)) {
- this.messages.addNewer(receiver, [data]);
- }
- break;
- case WebClientService.ARGUMENT_MODE_MODIFIED:
- this.$log.debug('Modified message', data.id);
- this.messages.update(receiver, data);
- break;
- case WebClientService.ARGUMENT_MODE_REMOVED:
- this.messages.remove(receiver, data.id);
- break;
- default:
- this.$log.warn('Invalid message response, unknown mode:', mode);
- }
- }
- private _receiveUpdateReceiver(message: threema.WireMessage): void {
- this.$log.debug('Received receiver update');
- // Unpack data and arguments
- const args = message.args;
- const data = message.data;
- if (args === undefined || data === undefined) {
- this.$log.warn('Invalid receiver update, data or arguments missing');
- return;
- }
- // Unpack required argument fields
- const type = args[WebClientService.ARGUMENT_RECEIVER_TYPE] as threema.ReceiverType;
- const id = args[WebClientService.ARGUMENT_RECEIVER_ID];
- const mode = args[WebClientService.ARGUMENT_MODE];
- if (type === undefined || mode === undefined ||
- (mode !== WebClientService.ARGUMENT_MODE_REFRESH && id === undefined)) {
- this.$log.warn('Invalid receiver update, argument field missing');
- return;
- }
- // React depending on mode
- switch (mode) {
- case WebClientService.ARGUMENT_MODE_NEW:
- case WebClientService.ARGUMENT_MODE_MODIFIED:
- // Add or update a certain receiver
- const updatedReceiver = this.receivers.extend(type, data);
- // remove all cached messages if the receiver was moved to "locked" state
- if (updatedReceiver !== undefined && updatedReceiver.locked) {
- this.messages.clearReceiverMessages(updatedReceiver);
- }
- break;
- case WebClientService.ARGUMENT_MODE_REMOVED:
- // Remove a certain receiver
- (this.receivers.get(type) as Map<string, threema.Receiver>).delete(id);
- break;
- case WebClientService.ARGUMENT_MODE_REFRESH:
- // Refresh lists of receivers
- if (type === 'me') {
- this.receivers.setMe(data);
- } else if (type === 'contact') {
- this.receivers.setContacts(data);
- } else if (type === 'group') {
- this.receivers.setGroups(data);
- } else if (type === 'distributionList') {
- this.receivers.setDistributionLists(data);
- } else {
- this.$log.warn('Unknown receiver type:', type);
- }
- break;
- default:
- this.$log.warn('Invalid receiver response, unknown mode:', mode);
- }
- }
- private _receiveUpdateTyping(message: threema.WireMessage): void {
- this.$log.debug('Received typing update');
- // Unpack data and arguments
- const args = message.args;
- const data = message.data;
- if (args === undefined || data === undefined) {
- this.$log.warn('Invalid typing update, data or arguments missing');
- return;
- }
- // Unpack required argument fields
- const id: string = args[WebClientService.ARGUMENT_RECEIVER_ID];
- const isTyping: boolean = args[WebClientService.ARGUMENT_CONTACT_IS_TYPING];
- if (id === undefined || isTyping === undefined) {
- this.$log.warn('Invalid typing update, argument field missing');
- return;
- }
- // Store or remove typing notification.
- // Note that we know that the receiver must be a contact, because
- // groups and distribution lists can't type.
- const receiver = {id: id, type: 'contact'} as threema.ContactReceiver;
- if (isTyping === true) {
- this.typing.setTyping(receiver);
- } else {
- this.typing.unsetTyping(receiver);
- }
- }
- /**
- * Process an incoming battery status message.
- */
- private _receiveUpdateBatteryStatus(message: threema.WireMessage): void {
- this.$log.debug('Received battery status');
- // Unpack data and arguments
- const data = message.data as threema.BatteryStatus;
- if (data === undefined) {
- this.$log.warn('Invalid battery status message, data missing');
- return;
- }
- // Set battery status
- this.batteryStatusService.setStatus(data);
- this.$log.debug('[BatteryStatusService]', this.batteryStatusService.toString());
- }
- /**
- * The peer sends the device information string. This can be used to
- * identify the active session.
- */
- private _receiveResponseClientInfo(message: threema.WireMessage): void {
- this.$log.debug('Received client info');
- const args = message.args;
- if (args === undefined) {
- this.$log.warn('Invalid client info, argument field missing');
- return;
- }
- this.clientInfo = args as threema.ClientInfo;
- this.$log.debug('Client device:', this.clientInfo.device);
- // Store push token
- if (this.clientInfo.myPushToken) {
- this.pushToken = this.clientInfo.myPushToken;
- this.pushService.init(this.pushToken);
- }
- // Set own identity
- this.myIdentity = {
- identity: this.clientInfo.myAccount.identity,
- publicKey: this.clientInfo.myAccount.publicKey,
- publicNickname: this.clientInfo.myAccount.publicNickname,
- fingerprint: this.fingerPrintService.generate(this.clientInfo.myAccount.publicKey),
- } as threema.Identity;
- this.registerInitializationStep('client info');
- }
- public setPassword(password: string) {
- // If a password has been set, store trusted key and push token
- if (this._maybeTrustKeys(password)) {
- // Saved trusted key, send information to client
- this.sendKeyPersisted();
- }
- }
- /**
- * Reset all Fields and clear the blob cache
- */
- public clearCache(): void {
- this._resetFields();
- this.blobCache.clear();
- }
- /**
- * Return the max text length
- * @returns {number}
- */
- public getMaxTextLength(): number {
- return WebClientService.MAX_TEXT_LENGTH;
- }
- /**
- * Returns the max group member size
- * @returns {number}
- */
- public getMaxGroupMemberSize(): number {
- return this.clientInfo && this.clientInfo.maxGroupSize ? this.clientInfo.maxGroupSize : 50;
- }
- /**
- * Called when a new message arrives.
- */
- private onNewMessage(message: threema.Message, conversation: threema.Conversation): void {
- // Ignore message from active receivers (and if the browser tab is visible)
- if (this.browserService.isVisible()
- && this.receiverService.compare(conversation, this.receiverService.getActive())) {
- return;
- }
- const sender: threema.Receiver = conversation.receiver;
- // Do not show any notifications on private chats
- if (sender === undefined || sender.locked) {
- return;
- }
- // Do not show any notifications on muted chats
- if (conversation.isMuted === true) {
- return;
- }
- // Determine sender and partner name (used for notification)
- let senderName = sender.id;
- if (sender.displayName) {
- senderName = sender.displayName;
- } else if (sender.type === 'contact') {
- senderName = '~' + (sender as threema.ContactReceiver).publicNickname;
- }
- const partner = this.receivers.getData({
- id: message.partnerId,
- type: 'contact',
- } as threema.Receiver) as threema.ContactReceiver;
- const partnerName = partner.displayName || ('~' + partner.publicNickname);
- // Show notification
- this.$translate('messenger.MESSAGE_NOTIFICATION_SUBJECT', {messageCount: 1 + conversation.unreadCount})
- .then((titlePrefix) => {
- const title = `${titlePrefix} ${senderName}`;
- let body = '';
- const messageType = message.type;
- const caption = message.caption;
- let captionString = '';
- if (caption !== undefined) {
- captionString = captionString + ': ' + caption;
- }
- const messageTypeString = this.$translate.instant('messageTypes.' + messageType);
- switch (messageType as threema.MessageType) {
- case 'text':
- body = message.body;
- break;
- case 'location':
- body = messageTypeString + ': ' + message.location.poi;
- break;
- case 'file':
- if (message.file.type === 'image/gif') {
- body = this.$translate.instant('messageTypes.' + 'gif') + captionString;
- break;
- }
- // Display caption, if available otherwise use filename
- if (captionString.length > 0) {
- body = messageTypeString + captionString;
- } else {
- body = messageTypeString + ': ' + message.file.name;
- }
- break;
- case 'ballot':
- // TODO Show ballot title if ballot messages are implemented in the web version
- body = messageTypeString;
- break;
- case 'voipStatus':
- let translationKey: string;
- switch ((message as threema.Message).voip.status) {
- case 1:
- translationKey = 'CALL_MISSED';
- break;
- case 2:
- translationKey = message.isOutbox ? 'CALL_FINISHED_IN' : 'CALL_FINISHED_OUT';
- break;
- case 3:
- translationKey = 'CALL_REJECTED';
- break;
- case 4:
- translationKey = 'CALL_ABORTED';
- break;
- default:
- // No default
- }
- if (translationKey !== undefined) {
- body = this.$translate.instant('voip.' + translationKey);
- }
- break;
- default:
- // Image, video and audio
- body = messageTypeString + captionString;
- }
- if (conversation.type === 'group') {
- body = partnerName + ': ' + body;
- }
- const tag = conversation.type + '-' + conversation.id;
- const avatar = (sender.avatar && sender.avatar.low) ? sender.avatar.low : null;
- this.notificationService.showNotification(tag, title, body, avatar, () => {
- this.$state.go('messenger.home.conversation', {
- type: conversation.type,
- id: conversation.id,
- initParams: null,
- });
- });
- });
- }
- /**
- * If a password has been set, store own private permanent key and public
- * key of the peer in the trusted key store.
- */
- private _maybeTrustKeys(password: string): boolean {
- if (password !== undefined && password !== null && password.length > 0) {
- this.trustedKeyStore.storeTrustedKey(
- this.salty.keyStore.publicKeyBytes,
- this.salty.keyStore.secretKeyBytes,
- this.salty.peerPermanentKeyBytes,
- this.pushToken,
- password,
- );
- this.$log.info('Stored trusted key');
- return true;
- }
- return false;
- }
- private _sendRequest(type, args = null): void {
- const message: threema.WireMessage = {
- type: WebClientService.TYPE_REQUEST,
- subType: type,
- };
- if (args) {
- message.args = args;
- }
- this.send(message);
- }
- private _sendPromiseMessage(message: threema.WireMessage, timeout: number = null): Promise<any> {
- // create arguments on wired message
- if (message.args === undefined) {
- message.args = {};
- }
- let promiseId = message.args[WebClientService.ARGUMENT_TEMPORARY_ID];
- if (promiseId === undefined) {
- // create a random id to identity the promise
- promiseId = 'p' + Math.random().toString(36).substring(7);
- message.args[WebClientService.ARGUMENT_TEMPORARY_ID] = promiseId;
- }
- return new Promise(
- (resolve, reject) => {
- const p = {
- resolve: resolve,
- reject: reject,
- } as threema.PromiseCallbacks;
- this.requestPromises.set(promiseId, p);
- if (timeout !== null && timeout > 0) {
- this.$timeout(() => {
- p.reject('timeout');
- this.requestPromises.delete(promiseId);
- }, timeout);
- }
- this.send(message);
- },
- );
- }
- private _sendRequestPromise(type, args = null, timeout: number = null): Promise<any> {
- const message: threema.WireMessage = {
- type: WebClientService.TYPE_REQUEST,
- subType: type,
- args: args,
- };
- return this._sendPromiseMessage(message, timeout);
- }
- private _sendCreatePromise(type, args = null, data: any = null, timeout: number = null): Promise<any> {
- const message: threema.WireMessage = {
- type: WebClientService.TYPE_CREATE,
- subType: type,
- args: args,
- data: data,
- };
- return this._sendPromiseMessage(message, timeout);
- }
- private _sendUpdatePromise(type, args = null, data: any = null, timeout: number = null): Promise<any> {
- const message: threema.WireMessage = {
- type: WebClientService.TYPE_UPDATE,
- subType: type,
- data: data,
- args: args,
- };
- return this._sendPromiseMessage(message, timeout);
- }
- private _sendCreate(type, data, args = null): void {
- const message: threema.WireMessage = {
- type: WebClientService.TYPE_CREATE,
- subType: type,
- data: data,
- };
- if (args) {
- message.args = args;
- }
- this.send(message);
- }
- private _sendDelete(type, args, data = null): void {
- const message: threema.WireMessage = {
- type: WebClientService.TYPE_DELETE,
- subType: type,
- data: data,
- args: args,
- };
- this.send(message);
- }
- private _sendDeletePromise(type, args, data: any = null, timeout: number = null): Promise<any> {
- const message: threema.WireMessage = {
- type: WebClientService.TYPE_DELETE,
- subType: type,
- data: data,
- args: args,
- };
- return this._sendPromiseMessage(message, timeout);
- }
- private _receiveRequest(type, message): void {
- this.$log.warn('Ignored request with type:', type);
- }
- private _receivePromise(message: any, receiveResult: any) {
- if (
- message !== undefined
- && message.args !== undefined
- && message.args[WebClientService.ARGUMENT_TEMPORARY_ID] !== undefined) {
- // find pending promise
- const promiseId = message.args[WebClientService.ARGUMENT_TEMPORARY_ID];
- if (this.requestPromises.has(promiseId)) {
- if (receiveResult.success) {
- this.requestPromises.get(promiseId).resolve(receiveResult.data);
- } else {
- this.requestPromises.get(promiseId).reject(receiveResult.message);
- }
- // remove from map
- this.requestPromises.delete(promiseId);
- }
- }
- }
- private _receiveResponse(type, message): void {
- // Dispatch response
- let receiveResult;
- switch (type) {
- case WebClientService.SUB_TYPE_RECEIVER:
- this._receiveResponseReceivers(message);
- break;
- case WebClientService.SUB_TYPE_CONVERSATIONS:
- this.runAfterInitializationSteps(['receivers'], () => {
- this._receiveResponseConversations(message);
- });
- break;
- case WebClientService.SUB_TYPE_CONVERSATION:
- this._receiveResponseConversation(message);
- break;
- case WebClientService.SUB_TYPE_MESSAGE:
- this._receiveResponseMessages(message);
- break;
- case WebClientService.SUB_TYPE_AVATAR:
- receiveResult = this._receiveResponseAvatar(message);
- break;
- case WebClientService.SUB_TYPE_THUMBNAIL:
- receiveResult = this._receiveResponseThumbnail(message);
- break;
- case WebClientService.SUB_TYPE_BLOB:
- receiveResult = this._receiveResponseBlob(message);
- break;
- case WebClientService.SUB_TYPE_CLIENT_INFO:
- this._receiveResponseClientInfo(message);
- break;
- case WebClientService.SUB_TYPE_CONTACT_DETAIL:
- receiveResult = this._receiveResponseContactDetail(message);
- break;
- case WebClientService.SUB_TYPE_ALERT:
- receiveResult = this._receiveAlert(message);
- break;
- case WebClientService.SUB_TYPE_GROUP_SYNC:
- receiveResult = this._receiveGroupSync(message);
- break;
- case WebClientService.SUB_TYPE_BATTERY_STATUS:
- this._receiveUpdateBatteryStatus(message);
- break;
- default:
- this.$log.warn('Ignored response with type:', type);
- return;
- }
- this._receivePromise(message, receiveResult);
- }
- private _receiveUpdate(type, message): void {
- // Dispatch update
- let receiveResult;
- switch (type) {
- case WebClientService.SUB_TYPE_RECEIVER:
- this._receiveUpdateReceiver(message);
- break;
- case WebClientService.SUB_TYPE_MESSAGE:
- this._receiveUpdateMessage(message);
- break;
- case WebClientService.SUB_TYPE_TYPING:
- this._receiveUpdateTyping(message);
- break;
- case WebClientService.SUB_TYPE_BATTERY_STATUS:
- this._receiveUpdateBatteryStatus(message);
- break;
- case WebClientService.SUB_TYPE_CONTACT:
- receiveResult = this._receiveResponseContact(message);
- break;
- case WebClientService.SUB_TYPE_GROUP:
- receiveResult = this._receiveResponseGroup(message);
- break;
- case WebClientService.SUB_TYPE_DISTRIBUTION_LIST:
- receiveResult = this._receiveResponseDistributionList(message);
- break;
- default:
- this.$log.warn('Ignored update with type:', type);
- return;
- }
- this._receivePromise(message, receiveResult);
- }
- private _receiveCreate(type, message): void {
- // Dispatch response
- let receiveResult: threema.PromiseRequestResult<any>;
- switch (type) {
- case WebClientService.SUB_TYPE_CONTACT:
- receiveResult = this._receiveResponseContact(message);
- break;
- case WebClientService.SUB_TYPE_GROUP:
- receiveResult = this._receiveResponseGroup(message);
- break;
- case WebClientService.SUB_TYPE_DISTRIBUTION_LIST:
- receiveResult = this._receiveResponseDistributionList(message);
- break;
- case WebClientService.SUB_TYPE_TEXT_MESSAGE:
- case WebClientService.SUB_TYPE_FILE_MESSAGE:
- receiveResult = this._receiveResponseCreateMessage(message);
- break;
- default:
- this.$log.warn('Ignored response with type:', type);
- return;
- }
- this._receivePromise(message, receiveResult);
- }
- private _receiveDelete(type, message): void {
- // Dispatch update
- let receiveResult;
- switch (type) {
- case WebClientService.SUB_TYPE_CONTACT_DETAIL:
- receiveResult = this._receiveUpdateReceiver(message);
- break;
- default:
- this.$log.warn('Ignored delete with type:', type);
- return;
- }
- this._receivePromise(message, receiveResult);
- }
- /**
- * Encode an object using the msgpack format.
- */
- private msgpackEncode(data: any): Uint8Array {
- return msgpack.encode(data, this.msgpackEncoderOptions);
- }
- /**
- * Decode an object using the msgpack format.
- */
- private msgpackDecode(bytes: Uint8Array): any {
- return msgpack.decode(bytes, this.msgpackDecoderOptions);
- }
- /**
- * Send a message through the secure data channel.
- */
- private send(message: threema.WireMessage): void {
- this.$log.debug('Sending', message.type + '/' + message.subType, 'message');
- if (this.config.MSG_DEBUGGING) {
- this.$log.debug('[Message] Outgoing:', message.type, '/', message.subType, message);
- }
- switch (this.chosenTask) {
- case threema.ChosenTask.WebRTC:
- // Send bytes through WebRTC DataChannel
- const bytes: Uint8Array = this.msgpackEncode(message);
- this.secureDataChannel.send(bytes);
- break;
- case threema.ChosenTask.RelayedData:
- // Send bytes through e2e encrypted WebSocket
- this.relayedDataTask.sendMessage(message);
- break;
- }
- }
- /**
- * Handle message bytes incoming through the SecureDataChannel
- * or through the relayed data WebSocket.
- */
- private handleIncomingMessage(bytes: Uint8Array): void {
- this.$log.debug('New incoming message (' + bytes.byteLength + ' bytes)');
- if (this.config.MSG_DEBUGGING) {
- this.$log.debug('Incoming message payload:' + msgpackVisualizer(bytes));
- }
- // Decode bytes
- const message: threema.WireMessage = this.msgpackDecode(bytes);
- // Validate message to keep contract defined by `threema.WireMessage` type
- if (message.type === undefined) {
- this.$log.warn('Ignoring invalid message (no type attribute)');
- return;
- } else if (message.subType === undefined) {
- this.$log.warn('Ignoring invalid message (no subType attribute)');
- return;
- }
- // If desired, log message type / subtype
- if (this.config.MSG_DEBUGGING) {
- // Deep copy message to prevent issues with JS debugger
- const deepcopy = JSON.parse(JSON.stringify(message));
- this.$log.debug('[Message] Incoming:', message.type, '/', message.subType, deepcopy);
- }
- // Process data
- this.$rootScope.$apply(() => {
- this.receive(message);
- });
- }
- /**
- * Receive a new incoming decrypted message.
- */
- private receive(message: threema.WireMessage): void {
- // Dispatch message
- switch (message.type) {
- case WebClientService.TYPE_REQUEST:
- this._receiveRequest(message.subType, message);
- break;
- case WebClientService.TYPE_RESPONSE:
- this._receiveResponse(message.subType, message);
- break;
- case WebClientService.TYPE_CREATE:
- this._receiveCreate(message.subType, message);
- break;
- case WebClientService.TYPE_UPDATE:
- this._receiveUpdate(message.subType, message);
- break;
- case WebClientService.TYPE_DELETE:
- this._receiveDelete(message.subType, message);
- break;
- default:
- this.$log.warn('Ignored message with type:', message.type);
- }
- }
- private runAfterInitializationSteps(requiredSteps: threema.InitializationStep[], callback: any): void {
- for (const requiredStep of requiredSteps) {
- if (!this.initialized.has(requiredStep)) {
- this.$log.debug(this.logTag,
- 'Required initialization step', requiredStep, 'not completed, add pending routine');
- this.pendingInitializationStepRoutines.push({
- requiredSteps: requiredSteps,
- callback: callback,
- } as threema.InitializationStepRoutine);
- return;
- }
- }
- callback();
- }
- private currentController: string;
- public setControllerName(name: string): void {
- this.currentController = name;
- }
- public getControllerName(): string {
- return this.currentController;
- }
- /**
- * Update the unread count in the window title.
- */
- private updateUnreadCount(): void {
- const totalUnreadCount = this.conversations
- .get()
- .reduce((a: number, b: threema.Conversation) => a + b.unreadCount, 0);
- this.titleService.updateUnreadCount(totalUnreadCount);
- }
- /**
- * Reset the unread count in the window title
- */
- private resetUnreadCount(): void {
- this.titleService.updateUnreadCount(0);
- }
- }
|