remove hasSignalAccount and Sealed Sender unused

pull/1459/head
Audric Ackermann 4 years ago
parent ec46a4d0c2
commit 273eedc6a9

@ -22,14 +22,7 @@
window.Whisper = window.Whisper || {};
const SEALED_SENDER = {
UNKNOWN: 0,
ENABLED: 1,
DISABLED: 2,
UNRESTRICTED: 3,
};
const { Conversation, Contact, Message, PhoneNumber } = window.Signal.Types;
const { Contact, Message, PhoneNumber } = window.Signal.Types;
const {
upgradeMessageSchema,
loadAttachmentData,
@ -109,10 +102,6 @@
this.set('profileSharing', true);
}
const sealedSender = this.get('sealedSender');
if (sealedSender === undefined) {
this.set({ sealedSender: SEALED_SENDER.UNKNOWN });
}
this.unset('unidentifiedDelivery');
this.unset('unidentifiedDeliveryUnrestricted');
this.unset('hasFetchedProfile');
@ -1355,13 +1344,9 @@
async setProfileKey(profileKey) {
// profileKey is a string so we can compare it directly
if (this.get('profileKey') !== profileKey) {
window.log.info(
`Setting sealedSender to UNKNOWN for conversation ${this.idForLogging()}`
);
this.set({
profileKey,
accessKey: null,
sealedSender: SEALED_SENDER.UNKNOWN,
});
await this.deriveAccessKeyIfNeeded();

@ -59,7 +59,6 @@ export interface MessageRegularProps {
status?: 'sending' | 'sent' | 'delivered' | 'read' | 'error' | 'pow';
// What if changed this over to a single contact like quote, and put the events on it?
contact?: Contact & {
hasSignalAccount: boolean;
onSendMessage?: () => void;
onClick?: () => void;
};

@ -37,10 +37,6 @@
window.doesAcountCheckJobExist = number =>
Boolean(window.AccountJobs[number]);
window.isSignalAccountCheckComplete = number =>
window.AccountCache[number] !== undefined;
window.hasSignalAccount = () => true;
window.Whisper.Message = Backbone.Model.extend({
initialize(attributes) {
if (_.isObject(attributes)) {
@ -600,7 +596,6 @@
this.trigger('show-contact-detail', {
contact,
hasSignalAccount: window.hasSignalAccount(firstNumber),
});
};
@ -609,7 +604,6 @@
getAbsoluteAttachmentPath,
onSendMessage,
onClick,
hasSignalAccount: window.hasSignalAccount(firstNumber),
});
},
processQuoteAttachment(attachment) {

@ -1049,9 +1049,8 @@ class LokiAppDotNetServerAPI {
// functions to a specific ADN channel on an ADN server
class LokiPublicChannelAPI {
constructor(chatAPI, serverAPI, channelId, conversationId) {
constructor(_, serverAPI, channelId, conversationId) {
// properties
this.chatAPI = chatAPI;
this.serverAPI = serverAPI;
this.channelId = channelId;
this.baseChannelUrl = `channels/${this.channelId}`;
@ -1679,7 +1678,7 @@ class LokiPublicChannelAPI {
// If lastMessageServerID is not set, it's the first pull of messages for this open group.
// We just pull 100 messages (server sends the most recent ones)
if (!this.lastMessageServerID || this.lastMessageServerID === 0) {
params.count = 100; // 64 on android
params.count = 100;
} else {
// if lastMessageServerID is set, we pull 200 messages per 200 messages, giving the since_id parameter set to our last received message id.
params.count = 200;
@ -1740,6 +1739,7 @@ class LokiPublicChannelAPI {
const pubKey = adnMessage.user.username;
try {
const messengerData = await this.getMessengerData(adnMessage);
if (messengerData === false) {
return false;
}
@ -1769,9 +1769,12 @@ class LokiPublicChannelAPI {
testedMessage,
testedMessage.user.username
);
const isThisMessageDuplicate = this.lastMessagesCache.some(m =>
isDuplicate(m, adnMessage)
);
// Filter out any messages that we got previously
if (this.lastMessagesCache.some(m => isDuplicate(m, adnMessage))) {
if (isThisMessageDuplicate) {
return false; // Duplicate message
}
@ -1860,7 +1863,6 @@ class LokiPublicChannelAPI {
}
})
);
// return early if we should stop processing
if (!pendingMessages.length || !this.running) {
this.conversation.setLastRetrievedMessage(this.lastMessageServerID);
@ -1872,21 +1874,24 @@ class LokiPublicChannelAPI {
pendingMessages = pendingMessages.filter(messageData => !!messageData);
// process all messages in the order received
pendingMessages.forEach(message => {
// trigger the handling of those messages sequentially
// eslint-disable-next-line no-plusplus
for (let index = 0; index < pendingMessages.length; index++) {
if (this.running) {
log.info(
'emitting pending message',
message.serverId,
'emitting pending public message',
pendingMessages[index].serverId,
'on',
this.channelId,
'at',
this.serverAPI.baseServerUrl
);
this.chatAPI.emit('publicMessage', {
message,
});
// eslint-disable-next-line no-await-in-loop
window.NewReceiver.handlePublicMessage(pendingMessages[index]);
}
});
}
/* eslint-enable no-param-reassign */

@ -17,14 +17,6 @@ function MessageReceiver() {
if (lokiPublicChatAPI) {
window.log.info('Binding open group events handler', openGroupBound);
if (!openGroupBound) {
// clear any previous binding
lokiPublicChatAPI.removeAllListeners('publicMessage');
// we only need one MR in the system handling these
// bind events
lokiPublicChatAPI.on(
'publicMessage',
window.NewReceiver.handlePublicMessage
);
openGroupBound = true;
}
} else {

@ -509,7 +509,6 @@ describe('Backup', () => {
timestamp: 1524185933350,
type: 'private',
unreadCount: 0,
sealedSender: 0,
version: 2,
};
console.log({ conversation });

@ -20,7 +20,6 @@ import { LocalizerType } from '../../types/Util';
interface Props {
contact: Contact;
hasSignalAccount: boolean;
i18n: LocalizerType;
onSendMessage: () => void;
}
@ -73,11 +72,9 @@ function getLabelForAddress(
export class ContactDetail extends React.Component<Props> {
public renderSendMessage({
hasSignalAccount,
i18n,
onSendMessage,
}: {
hasSignalAccount: boolean;
i18n: (key: string, values?: Array<string>) => string;
onSendMessage: () => void;
}) {
@ -161,7 +158,7 @@ export class ContactDetail extends React.Component<Props> {
}
public render() {
const { contact, hasSignalAccount, i18n, onSendMessage } = this.props;
const { contact, i18n, onSendMessage } = this.props;
const isIncoming = false;
const module = 'contact-detail';
@ -172,7 +169,7 @@ export class ContactDetail extends React.Component<Props> {
</div>
{renderName({ contact, isIncoming, module })}
{renderContactShorthand({ contact, isIncoming, module })}
{this.renderSendMessage({ hasSignalAccount, i18n, onSendMessage })}
{this.renderSendMessage({ i18n, onSendMessage })}
{this.renderPhone(contact.number, i18n)}
{this.renderAddresses(contact.address, i18n)}
</div>

@ -12,7 +12,6 @@ import {
interface Props {
contact: Contact;
hasSignalAccount: boolean;
i18n: LocalizerType;
isIncoming: boolean;
withContentAbove: boolean;

@ -487,7 +487,6 @@ class MessageInner extends React.PureComponent<MessageRegularProps, State> {
return (
<EmbeddedContact
contact={contact}
hasSignalAccount={contact.hasSignalAccount}
isIncoming={direction === 'incoming'}
i18n={window.i18n}
onClick={contact.onClick}

@ -585,6 +585,7 @@ export async function handleMessageEvent(event: MessageEvent): Promise<void> {
}
// TODO: this shouldn't be called when source is not a pubkey!!!
const isOurDevice = await UserUtils.isUs(source);
const shouldSendReceipt =
@ -624,18 +625,19 @@ export async function handleMessageEvent(event: MessageEvent): Promise<void> {
}
// the conversation with the primary device of that source (can be the same as conversationOrigin)
const conversation = ConversationController.getInstance().getOrThrow(
conversationId
);
conversation.queueJob(() => {
handleMessageJob(
conversation.queueJob(async () => {
await handleMessageJob(
msg,
conversation,
message,
ourNumber,
confirm,
source
).ignore();
);
});
}

@ -40,7 +40,7 @@ export async function onError(ev: any) {
conversation.set({ timestamp: message.get('sent_at') });
}
conversation.trigger('newmessage', message);
conversation.updateLastMessage();
conversation.notify(message);
if (ev.confirm) {

@ -63,7 +63,6 @@ describe('Contact', () => {
});
describe('contactSelector', () => {
const regionCode = '1';
const hasSignalAccount = true;
const getAbsoluteAttachmentPath = (path: string) => `absolute:${path}`;
const onSendMessage = () => null;
const onClick = () => null;
@ -91,14 +90,12 @@ describe('Contact', () => {
},
organization: 'Somewhere, Inc.',
avatar: undefined,
hasSignalAccount,
onSendMessage,
onClick,
number: undefined,
};
const actual = contactSelector(contact, {
regionCode,
hasSignalAccount,
getAbsoluteAttachmentPath,
onSendMessage,
onClick,
@ -135,14 +132,12 @@ describe('Contact', () => {
path: undefined,
},
},
hasSignalAccount,
onSendMessage,
onClick,
number: undefined,
};
const actual = contactSelector(contact, {
regionCode,
hasSignalAccount,
getAbsoluteAttachmentPath,
onSendMessage,
onClick,
@ -178,14 +173,12 @@ describe('Contact', () => {
path: 'absolute:somewhere',
},
},
hasSignalAccount,
onSendMessage,
onClick,
number: undefined,
};
const actual = contactSelector(contact, {
regionCode,
hasSignalAccount,
getAbsoluteAttachmentPath,
onSendMessage,
onClick,

@ -72,7 +72,6 @@ export function contactSelector(
contact: Contact,
options: {
regionCode: string;
hasSignalAccount: boolean;
getAbsoluteAttachmentPath: (path: string) => string;
onSendMessage: () => void;
onClick: () => void;
@ -80,7 +79,6 @@ export function contactSelector(
) {
const {
getAbsoluteAttachmentPath,
hasSignalAccount,
onClick,
onSendMessage,
regionCode,
@ -105,7 +103,6 @@ export function contactSelector(
return {
...contact,
hasSignalAccount,
onSendMessage,
onClick,
avatar,

Loading…
Cancel
Save