refactor: rename ttl_max to content_message

this is more explicit
pull/2971/head
William Grant 2 years ago
parent f5a9e9c366
commit 8d36442dbf

@ -21,7 +21,7 @@ export const TTL_DEFAULT = {
/** 5 minutes */
CALL_MESSAGE: 5 * 60 * DURATION.SECONDS,
/** 14 days */
TTL_MAX: 14 * DURATION.DAYS,
CONTENT_MESSAGE: 14 * DURATION.DAYS,
/** 30 days */
CONFIG_MESSAGE: 30 * DURATION.DAYS,
};

@ -8,7 +8,7 @@ export abstract class ContentMessage extends Message {
}
public ttl(): number {
return TTL_DEFAULT.TTL_MAX;
return TTL_DEFAULT.CONTENT_MESSAGE;
}
public abstract contentProto(): SignalService.Content;

@ -57,11 +57,11 @@ export class ExpirableMessage extends ContentMessage {
public ttl(): number {
switch (this.expirationType) {
case 'deleteAfterSend':
return this.expireTimer ? this.expireTimer * DURATION.SECONDS : TTL_DEFAULT.TTL_MAX;
return this.expireTimer ? this.expireTimer * DURATION.SECONDS : TTL_DEFAULT.CONTENT_MESSAGE;
case 'deleteAfterRead':
return TTL_DEFAULT.TTL_MAX;
return TTL_DEFAULT.CONTENT_MESSAGE;
default:
return TTL_DEFAULT.TTL_MAX;
return TTL_DEFAULT.CONTENT_MESSAGE;
}
}
}

@ -154,7 +154,7 @@ describe('VisibleMessage', () => {
const message = new VisibleMessage({
timestamp: Date.now(),
});
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.CONTENT_MESSAGE);
});
it('has an identifier', () => {

@ -65,7 +65,7 @@ describe('ConfigurationMessage', () => {
contacts: [],
};
const configMessage = new ConfigurationMessage(params);
expect(configMessage.ttl()).to.be.equal(TTL_DEFAULT.TTL_MAX);
expect(configMessage.ttl()).to.be.equal(TTL_DEFAULT.CONTENT_MESSAGE);
});
describe('ConfigurationMessageClosedGroup', () => {

@ -28,7 +28,7 @@ describe('GroupInvitationMessage', () => {
});
it('correct ttl', () => {
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.CONTENT_MESSAGE);
});
it('has an identifier', () => {

@ -12,7 +12,7 @@ describe('MessageRequestResponse', () => {
timestamp: Date.now(),
});
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.CONTENT_MESSAGE);
});
it('has an identifier', () => {

@ -1,6 +1,6 @@
import { expect } from 'chai';
import { beforeEach } from 'mocha';
import { toNumber } from 'lodash';
import { beforeEach } from 'mocha';
import { SignalService } from '../../../../protobuf';
import { Constants } from '../../../../session';
@ -26,7 +26,7 @@ describe('ReceiptMessage', () => {
});
it('correct ttl', () => {
expect(readMessage.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
expect(readMessage.ttl()).to.equal(Constants.TTL_DEFAULT.CONTENT_MESSAGE);
});
it('has an identifier', () => {

@ -1,12 +1,12 @@
import { expect } from 'chai';
import { SignalService } from '../../../../../protobuf';
import { TestUtils } from '../../../../test-utils';
import { StringUtils } from '../../../../../session/utils';
import { PubKey } from '../../../../../session/types';
import { Constants } from '../../../../../session';
import { ClosedGroupVisibleMessage } from '../../../../../session/messages/outgoing/visibleMessage/ClosedGroupVisibleMessage';
import { VisibleMessage } from '../../../../../session/messages/outgoing/visibleMessage/VisibleMessage';
import { PubKey } from '../../../../../session/types';
import { StringUtils } from '../../../../../session/utils';
import { TestUtils } from '../../../../test-utils';
describe('ClosedGroupVisibleMessage', () => {
let groupId: PubKey;
@ -54,7 +54,7 @@ describe('ClosedGroupVisibleMessage', () => {
timestamp,
chatMessage,
});
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.CONTENT_MESSAGE);
});
it('has an identifier', () => {

Loading…
Cancel
Save