deleteAllMessagesByConvoIdWithConfirmation(selectedConvoKey);// TODO this does not delete the public group and showLeaveGroupByConvoId is not only working for closed groups
deleteAllMessagesByConvoIdWithConfirmation(selectedConvoKey);// TODOLATER this does not delete the public group and showLeaveGroupByConvoId is not only working for closed groups
// if there's a message by the other user, they've replied to us which we consider an accepted convo
if(!this.didApproveMe()&&this.isPrivate()){
if(this.isPrivate()){
awaitthis.setDidApproveMe(true);
}
@ -2177,7 +2183,7 @@ export async function commitConversationAndRefreshWrapper(id: string) {
return;
}
// write to DB
// TODO remove duplicates between db and wrapper (except nickname&name as we need them for search)
// TODOLATER remove duplicates between db and wrapper (except nickname&name as we need them for search, or move search to wrapper too)
// TODO when deleting a contact from the ConversationController, we still need to keep it in the wrapper but mark it as hidden (and we might need to add an hidden convo model field for it)
avatarImageId?: number;// SOGS ONLY: avatar imageID is currently used only for sogs. It's the fileID of the image uploaded and set as the sogs avatar
avatarImageId?: number;// avatar imageID is currently used only for sogs. It's the fileID of the image uploaded and set as the sogs avatar (not only sogs I think, but our profile too?)
left: boolean;// GROUPS ONLY: if we left the group (communities are removed right away so it not relevant to communities)
isKickedFromGroup: boolean;// GROUPS ONLY: if we got kicked from the group (communities just stop polling and a message sent get rejected, so not relevant to communities)
left: boolean;// LEGACY GROUPS ONLY: if we left the group (communities are removed right away so it not relevant to communities) // TODOLATER to remove after legacy closed group are dropped
isKickedFromGroup: boolean;// LEGACY GROUPS ONLY: if we got kicked from the group (communities just stop polling and a message sent get rejected, so not relevant to communities) // TODOLATER to remove after legacy closed group are dropped
avatarInProfile?: string;// this is the avatar path locally once downloaded and stored in the application attachments folder
conversationIdOrigin?: string;// Blinded message requests ONLY: The community from which this conversation originated from
// TODO those two items are only used for legacy closed groups and will be removed when we get rid of the legacy closed groups support
lastJoinedTimestamp: number;// ClosedGroup: last time we were added to this group // TODO to remove after legacy closed group are dropped
zombies: Array<string>;// only used for closed groups. Zombies are users which left but not yet removed by the admin // TODO to remove after legacy closed group are dropped
// TODOLATER those two items are only used for legacy closed groups and will be removed when we get rid of the legacy closed groups support
lastJoinedTimestamp: number;// ClosedGroup: last time we were added to this group // TODOLATER to remove after legacy closed group are dropped
zombies: Array<string>;// only used for closed groups. Zombies are users which left but not yet removed by the admin // TODOLATER to remove after legacy closed group are dropped
@ -1230,6 +1231,7 @@ function insertContactIntoContactWrapper(
dbProfileUrl: contact.avatarPointer||undefined,
isPinned,
hidden,
expirationTimerSeconds,
});
try{
@ -1254,6 +1256,7 @@ function insertContactIntoContactWrapper(
dbProfileUrl: undefined,
isPinned: false,
hidden,
expirationTimerSeconds: 0,
})
);
}catch(e){
@ -1770,9 +1773,7 @@ function updateToSessionSchemaVersion30(currentVersion: number, db: BetterSqlite
data: convoVolatileDump,
});
// TODO we've just created the initial dumps. We have to add an initial SyncJob to the database so it is run on the next app start/
// or find another way of adding one on the next start (store an another item in the DB and check for it on app start?)
// or just start a conf sync job on app start
// we've just created the initial dumps. A ConfSyncJob is run when the app starts after 20 seconds
}catch(e){
console.error(`failed to create initial wrapper: `,e.stack);
// if we get an exception here, most likely no users are logged in yet. We can just continue the transaction and the wrappers will be created when a user creates a new account.
// TODO it would be nice to be able to remove the lastMessage and lastMessageStatus from the conversation table, and just return it when saving the conversation
// TODOLATER it would be nice to be able to remove the lastMessage and lastMessageStatus from the conversation table, and just return it when saving the conversation
// and saving it in memory only.
// But we'd need to update a bunch of things as we do some logic before setting the lastUpdate text and status mostly in `getMessagePropStatus` and `getNotificationText()`
// const lastMessages = getLastMessagesByConversation(convoId, 1) as Array:Record<string, any>>;
@ -557,7 +557,7 @@ export function getIdentityKeys(db: BetterSqlite3.Database) {
// at the moment, we cannot remove a 1o1 from the conversation volatile info.
// at the moment, we cannot remove a contact from the conversation volatile info so there is nothing here
// legacy group
removeLegacyGroupFromWrapper,// a group can be removed but also just marked hidden, so only call this function when the group is completely removed // TODO
removeLegacyGroupFromWrapper,// a group can be removed but also just marked hidden, so only call this function when the group is completely removed // TODOLATER
removeLegacyGroupFromWrapper,// a group can be removed but also just marked hidden, so only call this function when the group is completely removed // TODO
removeLegacyGroupFromWrapper,// a group can be removed but also just marked hidden, so only call this function when the group is completely removed // TODOLATER