import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord';
import { Model } from '@nozbe/watermelondb';
import messagesStatus from '../../constants/messagesStatus';
import database from '../database';
import log from '../../utils/log';
import random from '../../utils/random';
import { Encryption } from '../encryption';
import { E2E_MESSAGE_TYPE, E2E_STATUS } from '../encryption/constants';
import { E2EType, IMessage, IUser, TMessageModel } from '../../definitions';
import sdk from '../rocketchat/services/sdk';
const changeMessageStatus = async (id: string, status: number, tmid?: string, message?: IMessage) => {
const db = database.active;
const msgCollection = db.get('messages');
const threadMessagesCollection = db.get('thread_messages');
const successBatch: Model[] = [];
const messageRecord = await msgCollection.find(id);
successBatch.push(
messageRecord.prepareUpdate(m => {
m.status = status;
if (message) {
m.mentions = message.mentions;
m.channels = message.channels;
}
})
);
if (tmid) {
const threadMessageRecord = await threadMessagesCollection.find(id);
threadMessageRecord.prepareUpdate(tm => {
tm.status = status;
tm.mentions = message.mentions;
tm.channels = message.channels;
try {
await db.write(async () => {
await db.batch(...successBatch);
});
} catch (error) {
// Do nothing
};
export async function sendMessageCall(message: any) {
const { _id, tmid } = message;
// RC 0.60.0
// @ts-ignore
const result = await sdk.post('chat.sendMessage', { message });
if (result.success) {
return changeMessageStatus(_id, messagesStatus.SENT, tmid, result.message);
} catch {
// do nothing
return changeMessageStatus(_id, messagesStatus.ERROR, tmid);
export async function resendMessage(message: TMessageModel, tmid?: string) {
await message.update(m => {
m.status = messagesStatus.TEMP;
const m = await Encryption.encryptMessage({
_id: message.id,
rid: message.subscription ? message.subscription.id : '',
msg: message.msg,
...(tmid && { tmid })
} as IMessage);
await sendMessageCall(m);
} catch (e) {
log(e);
export default async function (
rid: string,
msg: string,
tmid: string | undefined,
user: Partial<Pick<IUser, 'id' | 'username' | 'name'>>,
tshow?: boolean
): Promise<void> {
const subsCollection = db.get('subscriptions');
const threadCollection = db.get('threads');
const messageId = random(17);
const batch: Model[] = [];
const message = await Encryption.encryptMessage({
_id: messageId,
rid,
msg,
tmid,
tshow
const messageDate = new Date();
let tMessageRecord: TMessageModel;
// If it's replying to a thread
// Find thread message header in Messages collection
tMessageRecord = await msgCollection.find(tmid);
batch.push(
tMessageRecord.prepareUpdate(m => {
m.tlm = messageDate;
if (m.tcount) {
m.tcount += 1;
// Find thread message header in Threads collection
await threadCollection.find(tmid);
// If there's no record, create one
threadCollection.prepareCreate(tm => {
tm._raw = sanitizedRaw({ id: tmid }, threadCollection.schema);
if (tm.subscription) {
tm.subscription.id = rid;
tm.tmid = tmid;
tm.msg = tMessageRecord.msg;
tm.ts = tMessageRecord.ts;
tm._updatedAt = messageDate;
tm.status = messagesStatus.SENT; // Original message was sent already
tm.u = tMessageRecord.u;
tm.t = message.t;
if (message.t === E2E_MESSAGE_TYPE) {
tm.e2e = E2E_STATUS.DONE as E2EType;
// Create the message sent in ThreadMessages collection
threadMessagesCollection.prepareCreate(tm => {
tm._raw = sanitizedRaw({ id: messageId }, threadMessagesCollection.schema);
tm.rid = tmid;
tm.msg = msg;
tm.ts = messageDate;
tm.status = messagesStatus.TEMP;
tm.u = {
_id: user.id || '1',
username: user.username,
name: user.name
// Create the message sent in Messages collection
msgCollection.prepareCreate(m => {
m._raw = sanitizedRaw({ id: messageId }, msgCollection.schema);
if (m.subscription) {
m.subscription.id = rid;
m.msg = msg;
m.ts = messageDate;
m._updatedAt = messageDate;
m.u = {
if (tmid && tMessageRecord) {
m.tmid = tmid;
// m.tlm = messageDate; // I don't think this is necessary... leaving it commented just in case...
m.tmsg = tMessageRecord.msg;
m.tshow = tshow;
m.t = message.t;
m.e2e = E2E_STATUS.DONE as E2EType;
const room = await subsCollection.find(rid);
if (room.draftMessage) {
room.prepareUpdate(r => {
r.draftMessage = null;
await db.batch(...batch);
return;
await sendMessageCall(message);