|
|
|
@ -3,38 +3,8 @@ import { MessageController } from '../messages';
|
|
|
|
|
import { OpenGroupMessage } from '../messages/outgoing';
|
|
|
|
|
import { RawMessage } from '../types';
|
|
|
|
|
|
|
|
|
|
// tslint:disable-next-line no-unnecessary-class
|
|
|
|
|
export class MessageSentHandler {
|
|
|
|
|
/**
|
|
|
|
|
* This function tries to find a message by messageId by first looking on the MessageController.
|
|
|
|
|
* The MessageController holds all messages being in memory.
|
|
|
|
|
* Those are the messages sent recently, recieved recently, or the one shown to the user.
|
|
|
|
|
*
|
|
|
|
|
* If the app restarted, it's very likely those messages won't be on the memory anymore.
|
|
|
|
|
* In this case, this function will look for it in the database and return it.
|
|
|
|
|
* If the message is found on the db, it will also register it to the MessageController so our subsequent calls are quicker.
|
|
|
|
|
*/
|
|
|
|
|
private static async fetchHandleMessageSentData(
|
|
|
|
|
m: RawMessage | OpenGroupMessage
|
|
|
|
|
) {
|
|
|
|
|
// if a message was sent and this message was created after the last app restart,
|
|
|
|
|
// this message is still in memory in the MessageController
|
|
|
|
|
const msg = MessageController.getInstance().get(m.identifier);
|
|
|
|
|
|
|
|
|
|
if (!msg || !msg.message) {
|
|
|
|
|
// otherwise, look for it in the database
|
|
|
|
|
// nobody is listening to this freshly fetched message .trigger calls
|
|
|
|
|
const dbMessage = await getMessageById(m.identifier);
|
|
|
|
|
|
|
|
|
|
if (!dbMessage) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
MessageController.getInstance().register(m.identifier, dbMessage);
|
|
|
|
|
return dbMessage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return msg.message;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static async handlePublicMessageSentSuccess(
|
|
|
|
|
sentMessage: OpenGroupMessage,
|
|
|
|
|
result: { serverId: number; serverTimestamp: number }
|
|
|
|
@ -90,4 +60,35 @@ export class MessageSentHandler {
|
|
|
|
|
|
|
|
|
|
await fetchedMessage.handleMessageSentFailure(sentMessage, error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This function tries to find a message by messageId by first looking on the MessageController.
|
|
|
|
|
* The MessageController holds all messages being in memory.
|
|
|
|
|
* Those are the messages sent recently, recieved recently, or the one shown to the user.
|
|
|
|
|
*
|
|
|
|
|
* If the app restarted, it's very likely those messages won't be on the memory anymore.
|
|
|
|
|
* In this case, this function will look for it in the database and return it.
|
|
|
|
|
* If the message is found on the db, it will also register it to the MessageController so our subsequent calls are quicker.
|
|
|
|
|
*/
|
|
|
|
|
private static async fetchHandleMessageSentData(
|
|
|
|
|
m: RawMessage | OpenGroupMessage
|
|
|
|
|
) {
|
|
|
|
|
// if a message was sent and this message was created after the last app restart,
|
|
|
|
|
// this message is still in memory in the MessageController
|
|
|
|
|
const msg = MessageController.getInstance().get(m.identifier);
|
|
|
|
|
|
|
|
|
|
if (!msg || !msg.message) {
|
|
|
|
|
// otherwise, look for it in the database
|
|
|
|
|
// nobody is listening to this freshly fetched message .trigger calls
|
|
|
|
|
const dbMessage = await getMessageById(m.identifier);
|
|
|
|
|
|
|
|
|
|
if (!dbMessage) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
MessageController.getInstance().register(m.identifier, dbMessage);
|
|
|
|
|
return dbMessage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return msg.message;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|