remove non used function in session from sendMessage.js
parent
c768b2c350
commit
aee7428282
@ -0,0 +1,70 @@
|
||||
import { SyncMessage } from './SyncMessage';
|
||||
import { SignalService } from '../../../../../protobuf';
|
||||
import { MessageParams } from '../../Message';
|
||||
import { PubKey } from '../../../../types';
|
||||
|
||||
interface SentSyncMessageParams extends MessageParams {
|
||||
// const dataMessage = textsecure.protobuf.DataMessage.decode(
|
||||
// encodedDataMessage
|
||||
// );
|
||||
dataMessage: SignalService.DataMessage;
|
||||
expirationStartTimestamp?: number;
|
||||
sentTo?: [PubKey];
|
||||
unidentifiedDeliveries?: [PubKey];
|
||||
destination?: PubKey;
|
||||
}
|
||||
|
||||
export abstract class SentSyncMessage extends SyncMessage {
|
||||
public readonly dataMessage: SignalService.DataMessage;
|
||||
public readonly expirationStartTimestamp?: number;
|
||||
public readonly sentTo?: [PubKey];
|
||||
public readonly unidentifiedDeliveries?: [PubKey];
|
||||
public readonly destination?: PubKey;
|
||||
|
||||
constructor(params: SentSyncMessageParams) {
|
||||
super({ timestamp: params.timestamp, identifier: params.identifier });
|
||||
|
||||
this.dataMessage = params.dataMessage;
|
||||
this.expirationStartTimestamp = params.expirationStartTimestamp;
|
||||
this.sentTo = params.sentTo;
|
||||
this.unidentifiedDeliveries = params.unidentifiedDeliveries;
|
||||
this.destination = params.destination;
|
||||
}
|
||||
|
||||
protected syncProto(): SignalService.SyncMessage {
|
||||
const syncMessage = super.syncProto();
|
||||
syncMessage.sent = new SignalService.SyncMessage.Sent();
|
||||
syncMessage.sent.timestamp = this.timestamp;
|
||||
syncMessage.sent.message = this.dataMessage;
|
||||
if (this.destination) {
|
||||
syncMessage.sent.destination = this.destination.key;
|
||||
}
|
||||
if (this.expirationStartTimestamp) {
|
||||
syncMessage.sent.expirationStartTimestamp = this.expirationStartTimestamp;
|
||||
}
|
||||
|
||||
if (this.unidentifiedDeliveries) {
|
||||
const unidentifiedLookup = this.unidentifiedDeliveries.reduce(
|
||||
(accumulator, item) => {
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
accumulator[item.key] = true;
|
||||
return accumulator;
|
||||
},
|
||||
Object.create(null)
|
||||
);
|
||||
|
||||
// Though this field has 'unidenified' in the name, it should have entries for each
|
||||
// number we sent to.
|
||||
if (this.sentTo && this.sentTo.length) {
|
||||
syncMessage.sent.unidentifiedStatus = this.sentTo.map(number => {
|
||||
const status = new SignalService.SyncMessage.Sent.UnidentifiedDeliveryStatus();
|
||||
status.destination = number.key;
|
||||
status.unidentified = Boolean(unidentifiedLookup[number.key]);
|
||||
return status;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
return syncMessage;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue