Give setup-changed messages the same timestamp as the previous message (#3188)

This commit is contained in:
Hocuri
2022-04-06 17:05:44 +02:00
committed by GitHub
parent e29d008914
commit 345a4bc504
4 changed files with 43 additions and 7 deletions

View File

@@ -445,6 +445,7 @@ impl ChatId {
cmd, cmd,
dc_create_smeared_timestamp(context).await, dc_create_smeared_timestamp(context).await,
None, None,
None,
) )
.await?; .await?;
} }
@@ -3384,7 +3385,9 @@ pub(crate) async fn add_info_msg_with_cmd(
chat_id: ChatId, chat_id: ChatId,
text: &str, text: &str,
cmd: SystemMessage, cmd: SystemMessage,
timestamp: i64, timestamp_sort: i64,
// Timestamp to show to the user (if this is None, `timestamp_sort` will be shown to the user)
timestamp_sent_rcvd: Option<i64>,
parent: Option<&Message>, parent: Option<&Message>,
) -> Result<MsgId> { ) -> Result<MsgId> {
let rfc724_mid = dc_create_outgoing_rfc724_mid(None, "@device"); let rfc724_mid = dc_create_outgoing_rfc724_mid(None, "@device");
@@ -3397,12 +3400,15 @@ pub(crate) async fn add_info_msg_with_cmd(
let row_id = let row_id =
context.sql.insert( context.sql.insert(
"INSERT INTO msgs (chat_id,from_id,to_id,timestamp,type,state,txt,rfc724_mid,ephemeral_timer, param,mime_in_reply_to) VALUES (?,?,?, ?,?,?, ?,?,?, ?,?);", "INSERT INTO msgs (chat_id,from_id,to_id,timestamp,timestamp_sent,timestamp_rcvd,type,state,txt,rfc724_mid,ephemeral_timer, param,mime_in_reply_to)
VALUES (?,?,?, ?,?,?,?,?, ?,?,?, ?,?);",
paramsv![ paramsv![
chat_id, chat_id,
ContactId::INFO, ContactId::INFO,
ContactId::INFO, ContactId::INFO,
timestamp, timestamp_sort,
timestamp_sent_rcvd.unwrap_or(0),
timestamp_sent_rcvd.unwrap_or(0),
Viewtype::Text, Viewtype::Text,
MessageState::InNoticed, MessageState::InNoticed,
text, text,
@@ -3432,6 +3438,7 @@ pub(crate) async fn add_info_msg(
SystemMessage::Unknown, SystemMessage::Unknown,
timestamp, timestamp,
None, None,
None,
) )
.await .await
} }
@@ -4434,6 +4441,7 @@ mod tests {
SystemMessage::EphemeralTimerChanged, SystemMessage::EphemeralTimerChanged,
10000, 10000,
None, None,
None,
) )
.await?; .await?;

View File

@@ -355,6 +355,10 @@ impl Chatlist {
pub fn get_index_for_id(&self, id: ChatId) -> Option<usize> { pub fn get_index_for_id(&self, id: ChatId) -> Option<usize> {
self.ids.iter().position(|(chat_id, _)| chat_id == &id) self.ids.iter().position(|(chat_id, _)| chat_id == &id)
} }
pub fn iter(&self) -> impl Iterator<Item = &(ChatId, Option<MsgId>)> {
self.ids.iter()
}
} }
/// Returns the number of archived chats /// Returns the number of archived chats

View File

@@ -9,6 +9,8 @@ use crate::chatlist::Chatlist;
use crate::context::Context; use crate::context::Context;
use crate::events::EventType; use crate::events::EventType;
use crate::key::{DcKey, Fingerprint, SignedPublicKey}; use crate::key::{DcKey, Fingerprint, SignedPublicKey};
use crate::message::Message;
use crate::mimeparser::SystemMessage;
use crate::sql::Sql; use crate::sql::Sql;
use crate::stock_str; use crate::stock_str;
use anyhow::{bail, Result}; use anyhow::{bail, Result};
@@ -275,10 +277,31 @@ impl Peerstate {
.await .await
.unwrap(); .unwrap();
let msg = stock_str::contact_setup_changed(context, self.addr.clone()).await; let msg = stock_str::contact_setup_changed(context, self.addr.clone()).await;
for chat_index in 0..chats.len() { for (chat_id, msg_id) in chats.iter() {
let chat_id = chats.get_chat_id(chat_index).unwrap(); let timestamp_sort = if let Some(msg_id) = msg_id {
chat::add_info_msg(context, chat_id, &msg, timestamp).await?; let lastmsg = Message::load_from_db(context, *msg_id).await?;
context.emit_event(EventType::ChatModified(chat_id)); lastmsg.timestamp_sort
} else {
context
.sql
.query_get_value(
"SELECT created_timestamp FROM chats WHERE id=?;",
paramsv![chat_id],
)
.await?
.unwrap_or(0)
};
chat::add_info_msg_with_cmd(
context,
*chat_id,
&msg,
SystemMessage::Unknown,
timestamp_sort,
Some(timestamp),
None,
)
.await?;
context.emit_event(EventType::ChatModified(*chat_id));
} }
} else { } else {
bail!("contact with peerstate.addr {:?} not found", &self.addr); bail!("contact with peerstate.addr {:?} not found", &self.addr);

View File

@@ -219,6 +219,7 @@ impl Context {
info.as_str(), info.as_str(),
SystemMessage::Unknown, SystemMessage::Unknown,
timestamp, timestamp,
None,
Some(instance), Some(instance),
) )
.await?; .await?;