remove outgoing_message.js and everything related to it

pull/1243/head
Audric Ackermann 5 years ago
parent 49164f069e
commit 53433261d9
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -90,7 +90,6 @@ module.exports = grunt => {
'libtextsecure/websocket-resources.js', 'libtextsecure/websocket-resources.js',
'libtextsecure/http-resources.js', 'libtextsecure/http-resources.js',
'libtextsecure/message_receiver.js', 'libtextsecure/message_receiver.js',
'libtextsecure/outgoing_message.js',
'libtextsecure/sendmessage.js', 'libtextsecure/sendmessage.js',
'libtextsecure/sync_request.js', 'libtextsecure/sync_request.js',
'libtextsecure/contacts_parser.js', 'libtextsecure/contacts_parser.js',

@ -1200,7 +1200,6 @@
e => e =>
e.number === number && e.number === number &&
(e.name === 'MessageError' || (e.name === 'MessageError' ||
e.name === 'OutgoingMessageError' ||
e.name === 'SendMessageNetworkError' || e.name === 'SendMessageNetworkError' ||
e.name === 'SignedPreKeyRotationError' || e.name === 'SignedPreKeyRotationError' ||
e.name === 'OutgoingIdentityKeyError') e.name === 'OutgoingIdentityKeyError')
@ -1547,7 +1546,6 @@
this.get('errors'), this.get('errors'),
e => e =>
e.name === 'MessageError' || e.name === 'MessageError' ||
e.name === 'OutgoingMessageError' ||
e.name === 'SendMessageNetworkError' || e.name === 'SendMessageNetworkError' ||
e.name === 'SignedPreKeyRotationError' e.name === 'SignedPreKeyRotationError'
); );

@ -411,7 +411,6 @@ SecretSessionCipher.prototype = {
return cipher.getRemoteRegistrationId(); return cipher.getRemoteRegistrationId();
}, },
// Used by outgoing_message.js
closeOpenSessionForDevice(remoteAddress) { closeOpenSessionForDevice(remoteAddress) {
const { SessionCipher } = this; const { SessionCipher } = this;
const signalProtocolStore = this.storage; const signalProtocolStore = this.storage;

@ -379,11 +379,6 @@
const sessions = allSessions.filter(session => session.number === number); const sessions = allSessions.filter(session => session.number === number);
return _.pluck(sessions, 'deviceId'); return _.pluck(sessions, 'deviceId');
}, },
async removeSession(encodedNumber) {
window.log.info('deleting session for ', encodedNumber);
delete this.sessions[encodedNumber];
await window.Signal.Data.removeSessionById(encodedNumber);
},
async removeAllSessions(number) { async removeAllSessions(number) {
if (number === null || number === undefined) { if (number === null || number === undefined) {
throw new Error('Tried to remove sessions for undefined/null number'); throw new Error('Tried to remove sessions for undefined/null number');

@ -9,7 +9,6 @@
GROUP_SYNC_MESSAGES: 1, GROUP_SYNC_MESSAGES: 1,
CONTACT_SYNC_MESSAGES: 2, CONTACT_SYNC_MESSAGES: 2,
FALLBACK_MESSAGES: 8, FALLBACK_MESSAGES: 8,
SESSION_MESSAGE_SENDING: 16,
SESSION_BACKGROUND_MESSAGE: 32, SESSION_BACKGROUND_MESSAGE: 32,
GROUP_REQUEST_INFO: 64, GROUP_REQUEST_INFO: 64,
// If you add any new flag, be sure it is bitwise safe! (unique and 2 multiples) // If you add any new flag, be sure it is bitwise safe! (unique and 2 multiples)
@ -24,12 +23,6 @@
} }
}; };
function logSessionMessageSending(...args) {
if (debugFlags & DebugFlagsEnum.SESSION_MESSAGE_SENDING) {
debugLogFn(...args);
}
}
function logGroupSync(...args) { function logGroupSync(...args) {
if (debugFlags & DebugFlagsEnum.GROUP_SYNC_MESSAGES) { if (debugFlags & DebugFlagsEnum.GROUP_SYNC_MESSAGES) {
debugLogFn(...args); debugLogFn(...args);
@ -119,7 +112,6 @@
const debug = { const debug = {
logContactSync, logContactSync,
logGroupSync, logGroupSync,
logSessionMessageSending,
logBackgroundMessage, logBackgroundMessage,
logGroupRequestInfo, logGroupRequestInfo,
}; };

@ -23,7 +23,6 @@
<script type="text/javascript" src="../../libtextsecure/protocol_wrapper.js" data-cover></script> <script type="text/javascript" src="../../libtextsecure/protocol_wrapper.js" data-cover></script>
<script type="text/javascript" src="../../libtextsecure/protobufs.js" data-cover></script> <script type="text/javascript" src="../../libtextsecure/protobufs.js" data-cover></script>
<script type="text/javascript" src="../../libtextsecure/stringview.js" data-cover></script> <script type="text/javascript" src="../../libtextsecure/stringview.js" data-cover></script>
<script type="text/javascript" src="../../libtextsecure/outgoing_message.js" data-cover></script>
<script type="text/javascript" src="../api.js" data-cover></script> <script type="text/javascript" src="../api.js" data-cover></script>
<script type="text/javascript" src="../crypto.js" data-cover></script> <script type="text/javascript" src="../crypto.js" data-cover></script>

@ -59,22 +59,6 @@
} }
inherit(ReplayableError, OutgoingIdentityKeyError); inherit(ReplayableError, OutgoingIdentityKeyError);
function OutgoingMessageError(number, message, timestamp, httpError) {
// eslint-disable-next-line prefer-destructuring
this.number = number.split('.')[0];
ReplayableError.call(this, {
name: 'OutgoingMessageError',
message: httpError ? httpError.message : 'no http error',
});
if (httpError) {
this.code = httpError.code;
appendStack(this, httpError);
}
}
inherit(ReplayableError, OutgoingMessageError);
function SendMessageNetworkError(number, jsonData, httpError) { function SendMessageNetworkError(number, jsonData, httpError) {
this.number = number; this.number = number;
this.code = httpError.code; this.code = httpError.code;
@ -119,21 +103,6 @@
} }
inherit(ReplayableError, EmptySwarmError); inherit(ReplayableError, EmptySwarmError);
function PoWError(number, error) {
// eslint-disable-next-line prefer-destructuring
this.number = number.split('.')[0];
ReplayableError.call(this, {
name: 'PoWError',
message: 'Failed to calculate PoW',
});
if (error) {
appendStack(this, error);
}
}
inherit(ReplayableError, PoWError);
function DNSResolutionError(message) { function DNSResolutionError(message) {
// eslint-disable-next-line prefer-destructuring // eslint-disable-next-line prefer-destructuring
@ -261,10 +230,8 @@
window.textsecure.IncomingIdentityKeyError = IncomingIdentityKeyError; window.textsecure.IncomingIdentityKeyError = IncomingIdentityKeyError;
window.textsecure.OutgoingIdentityKeyError = OutgoingIdentityKeyError; window.textsecure.OutgoingIdentityKeyError = OutgoingIdentityKeyError;
window.textsecure.ReplayableError = ReplayableError; window.textsecure.ReplayableError = ReplayableError;
window.textsecure.OutgoingMessageError = OutgoingMessageError;
window.textsecure.MessageError = MessageError; window.textsecure.MessageError = MessageError;
window.textsecure.SignedPreKeyRotationError = SignedPreKeyRotationError; window.textsecure.SignedPreKeyRotationError = SignedPreKeyRotationError;
window.textsecure.PoWError = PoWError;
window.textsecure.EmptySwarmError = EmptySwarmError; window.textsecure.EmptySwarmError = EmptySwarmError;
window.textsecure.SeedNodeError = SeedNodeError; window.textsecure.SeedNodeError = SeedNodeError;
window.textsecure.DNSResolutionError = DNSResolutionError; window.textsecure.DNSResolutionError = DNSResolutionError;

@ -8,10 +8,8 @@ export interface LibTextsecure {
IncomingIdentityKeyError: any; IncomingIdentityKeyError: any;
OutgoingIdentityKeyError: any; OutgoingIdentityKeyError: any;
ReplayableError: any; ReplayableError: any;
OutgoingMessageError: any;
MessageError: any; MessageError: any;
SignedPreKeyRotationError: any; SignedPreKeyRotationError: any;
PoWError: any;
EmptySwarmError: any; EmptySwarmError: any;
SeedNodeError: any; SeedNodeError: any;
DNSResolutionError: any; DNSResolutionError: any;

@ -580,18 +580,6 @@ OutgoingMessage.prototype = {
this.sendSessionMessage(outgoingObjects); this.sendSessionMessage(outgoingObjects);
}, },
removeDeviceIdsForNumber(number, deviceIdsToRemove) {
let promise = Promise.resolve();
// eslint-disable-next-line no-restricted-syntax, guard-for-in
for (const j in deviceIdsToRemove) {
promise = promise.then(() => {
const encodedNumber = `${number}.${deviceIdsToRemove[j]}`;
return textsecure.storage.protocol.removeSession(encodedNumber);
});
}
return promise;
},
sendToNumber(number, multiDevice = true) { sendToNumber(number, multiDevice = true) {
return this.reloadDevicesAndSend(number, multiDevice).catch(error => { return this.reloadDevicesAndSend(number, multiDevice).catch(error => {
if (error.message === 'Identity key changed') { if (error.message === 'Identity key changed') {

@ -1,11 +1,7 @@
import { assert } from 'chai'; import { assert } from 'chai';
import * as Conversation from '../../types/Conversation'; import * as Conversation from '../../types/Conversation';
import { import { IncomingMessage, VerifiedChangeMessage } from '../../types/Message';
IncomingMessage,
OutgoingMessage,
VerifiedChangeMessage,
} from '../../types/Message';
describe('Conversation', () => { describe('Conversation', () => {
describe('createLastMessageUpdate', () => { describe('createLastMessageUpdate', () => {
@ -31,7 +27,7 @@ describe('Conversation', () => {
conversationId: 'foo', conversationId: 'foo',
sent_at: 666, sent_at: 666,
timestamp: 666, timestamp: 666,
} as OutgoingMessage, } as any,
lastMessageNotificationText: 'New outgoing message', lastMessageNotificationText: 'New outgoing message',
}; };
const expected = { const expected = {

@ -3,7 +3,7 @@ import { Contact } from './Contact';
import { IndexableBoolean, IndexablePresence } from './IndexedDB'; import { IndexableBoolean, IndexablePresence } from './IndexedDB';
export type Message = UserMessage | VerifiedChangeMessage; export type Message = UserMessage | VerifiedChangeMessage;
export type UserMessage = IncomingMessage | OutgoingMessage; export type UserMessage = IncomingMessage;
export type IncomingMessage = Readonly< export type IncomingMessage = Readonly<
{ {
@ -27,32 +27,6 @@ export type IncomingMessage = Readonly<
ExpirationTimerUpdate ExpirationTimerUpdate
>; >;
export type OutgoingMessage = Readonly<
{
type: 'outgoing';
// Required
attachments: Array<Attachment>;
delivered: number;
delivered_to: Array<string>;
destination: string; // PhoneNumber
expirationStartTimestamp: number;
id: string;
received_at: number;
sent: boolean;
sent_to: Array<string>; // Array<PhoneNumber>
// Optional
body?: string;
expires_at?: number;
expireTimer?: number;
recipients?: Array<string>; // Array<PhoneNumber>
synced: boolean;
} & SharedMessageProperties &
MessageSchemaVersion5 &
ExpirationTimerUpdate
>;
export type VerifiedChangeMessage = Readonly< export type VerifiedChangeMessage = Readonly<
{ {
type: 'verified-change'; type: 'verified-change';
@ -92,7 +66,7 @@ type MessageSchemaVersion6 = Partial<
>; >;
export const isUserMessage = (message: Message): message is UserMessage => export const isUserMessage = (message: Message): message is UserMessage =>
message.type === 'incoming' || message.type === 'outgoing'; message.type === 'incoming';
export const hasExpiration = (message: Message): boolean => { export const hasExpiration = (message: Message): boolean => {
if (!isUserMessage(message)) { if (!isUserMessage(message)) {

Loading…
Cancel
Save