mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2024-11-21 21:09:22 +00:00
Send event when sending a new message
This commit is contained in:
parent
ce1398dcb8
commit
288d5bdc09
@ -459,11 +459,24 @@ export class ConversationsHelper {
|
||||
}
|
||||
});
|
||||
|
||||
// Get the list of users to notify after the update
|
||||
const listToNotify = (await DatabaseHelper.Query({
|
||||
table: USERS_TABLE,
|
||||
where: {
|
||||
conv_id: message.convID,
|
||||
saw_last_message: 1,
|
||||
following: 1
|
||||
},
|
||||
customWhere: "user_id != ?",
|
||||
customWhereArgs: [message.userID.toString()]
|
||||
})).map((f) => f.user_id);
|
||||
|
||||
// Mark all the user of the conversations as unread, except current user
|
||||
await DatabaseHelper.UpdateRows({
|
||||
table: USERS_TABLE,
|
||||
where: {
|
||||
conv_id: message.convID
|
||||
conv_id: message.convID,
|
||||
saw_last_message: 1
|
||||
},
|
||||
customWhere: "user_id != ?",
|
||||
customWhereArgs: [message.userID.toString()],
|
||||
@ -472,6 +485,10 @@ export class ConversationsHelper {
|
||||
}
|
||||
});
|
||||
|
||||
// Send the notification to all the other users
|
||||
await EventsHelper.Emit("updated_number_unread_conversations", {
|
||||
usersID: listToNotify
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user