remove getDefaultTTL and use Constants values instead

pull/1284/head
Audric Ackermann 5 years ago
parent 48edd431da
commit 394030b711
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -9,12 +9,4 @@ export abstract class ContentMessage extends Message {
public abstract ttl(): number;
protected abstract contentProto(): SignalService.Content;
/**
* If the message is not a message with a specific TTL,
* this value can be used in all child classes
*/
protected getDefaultTTL(): number {
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
}

@ -25,14 +25,8 @@ export class SessionRequestMessage extends ContentMessage {
this.preKeyBundle = params.preKeyBundle;
}
public static defaultTTL(): number {
// Gets the default TTL for Session Request, as
// public static readonly ttl: number <-- cannot be assigned a non-literal
return Constants.TTL_DEFAULT.SESSION_REQUEST;
}
public ttl(): number {
return SessionRequestMessage.defaultTTL();
return Constants.TTL_DEFAULT.SESSION_REQUEST;
}
protected getPreKeyBundleMessage(): SignalService.PreKeyBundleMessage {

@ -3,6 +3,7 @@ import { SignalService } from '../../../../../protobuf';
import { MessageParams } from '../../Message';
import { LokiProfile } from '../../../../../types/Message';
import ByteBuffer from 'bytebuffer';
import { Constants } from '../../../..';
export interface AttachmentPointer {
id?: number;
@ -75,7 +76,7 @@ export class ChatMessage extends DataMessage {
}
public ttl(): number {
return this.getDefaultTTL();
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
public dataProto(): SignalService.DataMessage {

@ -4,6 +4,7 @@ import { MessageParams } from '../../Message';
import { StringUtils } from '../../../../utils';
import { DataMessage } from './DataMessage';
import { PubKey } from '../../../../types';
import { Constants } from '../../../..';
interface ExpirationTimerUpdateMessageParams extends MessageParams {
groupId?: string | PubKey;
@ -26,7 +27,7 @@ export class ExpirationTimerUpdateMessage extends DataMessage {
}
public ttl(): number {
return this.getDefaultTTL();
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
public dataProto(): SignalService.DataMessage {

@ -1,6 +1,7 @@
import { DataMessage } from './DataMessage';
import { SignalService } from '../../../../../protobuf';
import { MessageParams } from '../../Message';
import { Constants } from '../../../..';
interface GroupInvitationMessageParams extends MessageParams {
serverAddress: string;
@ -21,7 +22,7 @@ export class GroupInvitationMessage extends DataMessage {
}
public ttl(): number {
return this.getDefaultTTL();
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
public dataProto(): SignalService.DataMessage {

@ -2,6 +2,7 @@ import { SignalService } from '../../../../../../protobuf';
import { ChatMessage } from '../ChatMessage';
import { ClosedGroupMessage } from './ClosedGroupMessage';
import { PubKey } from '../../../../../types';
import { Constants } from '../../../../..';
interface ClosedGroupChatMessageParams {
identifier?: string;
@ -22,7 +23,7 @@ export class ClosedGroupChatMessage extends ClosedGroupMessage {
}
public ttl(): number {
return this.getDefaultTTL();
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
public dataProto(): SignalService.DataMessage {

@ -3,6 +3,7 @@ import { SignalService } from '../../../../../../protobuf';
import { MessageParams } from '../../../Message';
import { PubKey } from '../../../../../types';
import { StringUtils } from '../../../../../utils';
import { Constants } from '../../../../..';
export interface ClosedGroupMessageParams extends MessageParams {
groupId: string | PubKey;
@ -20,7 +21,7 @@ export abstract class ClosedGroupMessage extends DataMessage {
}
public ttl(): number {
return this.getDefaultTTL();
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
public dataProto(): SignalService.DataMessage {

@ -3,6 +3,7 @@ import { SignalService } from '../../../../../../protobuf';
import { MessageParams } from '../../../Message';
import { PubKey } from '../../../../../types';
import { StringUtils } from '../../../../../utils';
import { Constants } from '../../../../..';
export interface RatchetKey {
chainKey: Uint8Array;
@ -26,7 +27,7 @@ export abstract class MediumGroupMessage extends DataMessage {
}
public ttl(): number {
return this.getDefaultTTL();
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
public dataProto(): SignalService.DataMessage {

@ -1,6 +1,7 @@
import { ContentMessage } from '../ContentMessage';
import { SignalService } from '../../../../../protobuf';
import { MessageParams } from '../../Message';
import { Constants } from '../../../..';
interface ReceiptMessageParams extends MessageParams {
timestamps: Array<number>;
@ -14,7 +15,7 @@ export abstract class ReceiptMessage extends ContentMessage {
}
public ttl(): number {
return this.getDefaultTTL();
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
public abstract getReceiptType(): SignalService.ReceiptMessage.Type;

@ -1,6 +1,7 @@
import { SyncMessage } from './SyncMessage';
import { SignalService } from '../../../../../protobuf';
import { MessageParams } from '../../Message';
import { Constants } from '../../../..';
interface RequestSyncMessageParams extends MessageParams {
requestType: SignalService.SyncMessage.Request.Type;
@ -15,7 +16,7 @@ export abstract class RequestSyncMessage extends SyncMessage {
}
public ttl(): number {
return this.getDefaultTTL();
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
protected contentProto(): SignalService.Content {

@ -1,10 +1,11 @@
import { ContentMessage } from '../ContentMessage';
import { SignalService } from '../../../../../protobuf';
import * as crypto from 'crypto';
import { Constants } from '../../../..';
export abstract class SyncMessage extends ContentMessage {
public ttl(): number {
return this.getDefaultTTL();
return Constants.TTL_DEFAULT.REGULAR_MESSAGE;
}
protected contentProto(): SignalService.Content {

@ -3,6 +3,7 @@ import { createOrUpdateItem, getItemById } from '../../../js/modules/data';
import { MessageSender } from '../sending';
import { MessageUtils } from '../utils';
import { PubKey } from '../types';
import { Constants } from '..';
interface StringToNumberMap {
[key: string]: number;
@ -81,7 +82,7 @@ export class SessionProtocol {
const now = Date.now();
const sentTimestamps = Object.entries(this.sentSessionsTimestamp);
const promises = sentTimestamps.map(async ([device, sent]) => {
const expireTime = sent + SessionRequestMessage.defaultTTL();
const expireTime = sent + Constants.TTL_DEFAULT.SESSION_REQUEST;
// Check if we need to send a session request
if (now < expireTime) {
return;

@ -7,6 +7,7 @@ import { SessionRequestMessage } from '../../../session/messages/outgoing';
import { TextEncoder } from 'util';
import { MessageSender } from '../../../session/sending';
import { PubKey } from '../../../session/types';
import { Constants } from '../../../session';
// tslint:disable-next-line: max-func-body-length
describe('SessionProtocol', () => {
@ -124,7 +125,7 @@ describe('SessionProtocol', () => {
});
// Set the time just before expiry
clock.tick(SessionRequestMessage.defaultTTL() - 100);
clock.tick(Constants.TTL_DEFAULT.SESSION_REQUEST - 100);
await SessionProtocol.checkSessionRequestExpiry();
expect(getItemById.calledWith('sentSessionsTimestamp'));
@ -140,7 +141,7 @@ describe('SessionProtocol', () => {
});
// Expire the request
clock.tick(SessionRequestMessage.defaultTTL() + 100);
clock.tick(Constants.TTL_DEFAULT.SESSION_REQUEST + 100);
await SessionProtocol.checkSessionRequestExpiry();
expect(getItemById.calledWith('sentSessionsTimestamp'));
@ -159,7 +160,7 @@ describe('SessionProtocol', () => {
sandbox.stub(SessionProtocol, 'sendSessionRequestIfNeeded').resolves();
// Expire the request
clock.tick(SessionRequestMessage.defaultTTL() + 100);
clock.tick(Constants.TTL_DEFAULT.SESSION_REQUEST + 100);
await SessionProtocol.checkSessionRequestExpiry();
expect(getItemById.calledWith('sentSessionsTimestamp'));

Loading…
Cancel
Save