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 */ /** 5 minutes */
CALL_MESSAGE: 5 * 60 * DURATION.SECONDS, CALL_MESSAGE: 5 * 60 * DURATION.SECONDS,
/** 14 days */ /** 14 days */
TTL_MAX: 14 * DURATION.DAYS, CONTENT_MESSAGE: 14 * DURATION.DAYS,
/** 30 days */ /** 30 days */
CONFIG_MESSAGE: 30 * DURATION.DAYS, CONFIG_MESSAGE: 30 * DURATION.DAYS,
}; };

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

@ -57,11 +57,11 @@ export class ExpirableMessage extends ContentMessage {
public ttl(): number { public ttl(): number {
switch (this.expirationType) { switch (this.expirationType) {
case 'deleteAfterSend': 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': case 'deleteAfterRead':
return TTL_DEFAULT.TTL_MAX; return TTL_DEFAULT.CONTENT_MESSAGE;
default: default:
return TTL_DEFAULT.TTL_MAX; return TTL_DEFAULT.CONTENT_MESSAGE;
} }
} }
} }

@ -154,7 +154,7 @@ describe('VisibleMessage', () => {
const message = new VisibleMessage({ const message = new VisibleMessage({
timestamp: Date.now(), 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', () => { it('has an identifier', () => {

@ -65,7 +65,7 @@ describe('ConfigurationMessage', () => {
contacts: [], contacts: [],
}; };
const configMessage = new ConfigurationMessage(params); 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', () => { describe('ConfigurationMessageClosedGroup', () => {

@ -28,7 +28,7 @@ describe('GroupInvitationMessage', () => {
}); });
it('correct ttl', () => { 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', () => { it('has an identifier', () => {

@ -12,7 +12,7 @@ describe('MessageRequestResponse', () => {
timestamp: Date.now(), 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', () => { it('has an identifier', () => {

@ -1,6 +1,6 @@
import { expect } from 'chai'; import { expect } from 'chai';
import { beforeEach } from 'mocha';
import { toNumber } from 'lodash'; import { toNumber } from 'lodash';
import { beforeEach } from 'mocha';
import { SignalService } from '../../../../protobuf'; import { SignalService } from '../../../../protobuf';
import { Constants } from '../../../../session'; import { Constants } from '../../../../session';
@ -26,7 +26,7 @@ describe('ReceiptMessage', () => {
}); });
it('correct ttl', () => { 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', () => { it('has an identifier', () => {

@ -1,12 +1,12 @@
import { expect } from 'chai'; import { expect } from 'chai';
import { SignalService } from '../../../../../protobuf'; import { SignalService } from '../../../../../protobuf';
import { TestUtils } from '../../../../test-utils';
import { StringUtils } from '../../../../../session/utils';
import { PubKey } from '../../../../../session/types';
import { Constants } from '../../../../../session'; import { Constants } from '../../../../../session';
import { ClosedGroupVisibleMessage } from '../../../../../session/messages/outgoing/visibleMessage/ClosedGroupVisibleMessage'; import { ClosedGroupVisibleMessage } from '../../../../../session/messages/outgoing/visibleMessage/ClosedGroupVisibleMessage';
import { VisibleMessage } from '../../../../../session/messages/outgoing/visibleMessage/VisibleMessage'; 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', () => { describe('ClosedGroupVisibleMessage', () => {
let groupId: PubKey; let groupId: PubKey;
@ -54,7 +54,7 @@ describe('ClosedGroupVisibleMessage', () => {
timestamp, timestamp,
chatMessage, 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', () => { it('has an identifier', () => {

Loading…
Cancel
Save