1use std::cmp;
4use std::collections::{BTreeSet, HashMap};
5use std::fmt;
6use std::io::Cursor;
7use std::marker::Sync;
8use std::path::{Path, PathBuf};
9use std::time::Duration;
10
11use anyhow::{Context as _, Result, anyhow, bail, ensure};
12use chrono::TimeZone;
13use deltachat_contact_tools::{ContactAddress, sanitize_bidi_characters, sanitize_single_line};
14use humansize::{BINARY, format_size};
15use mail_builder::mime::MimePart;
16use serde::{Deserialize, Serialize};
17use strum_macros::EnumIter;
18
19use crate::blob::BlobObject;
20use crate::chatlist::Chatlist;
21use crate::chatlist_events;
22use crate::color::str_to_color;
23use crate::config::Config;
24use crate::constants::{
25 self, Blocked, Chattype, DC_CHAT_ID_ALLDONE_HINT, DC_CHAT_ID_ARCHIVED_LINK,
26 DC_CHAT_ID_LAST_SPECIAL, DC_CHAT_ID_TRASH, DC_RESEND_USER_AVATAR_DAYS, EDITED_PREFIX,
27 TIMESTAMP_SENT_TOLERANCE,
28};
29use crate::contact::{self, Contact, ContactId, Origin};
30use crate::context::Context;
31use crate::debug_logging::maybe_set_logging_xdc;
32use crate::download::{
33 DownloadState, PRE_MSG_ATTACHMENT_SIZE_THRESHOLD, PRE_MSG_SIZE_WARNING_THRESHOLD,
34};
35use crate::ephemeral::{Timer as EphemeralTimer, start_chat_ephemeral_timers};
36use crate::events::EventType;
37use crate::key::{Fingerprint, self_fingerprint};
38use crate::location;
39use crate::log::{LogExt, warn};
40use crate::logged_debug_assert;
41use crate::message::{self, Message, MessageState, MsgId, Viewtype};
42use crate::mimefactory::{MimeFactory, RenderedEmail};
43use crate::mimeparser::SystemMessage;
44use crate::param::{Param, Params};
45use crate::pgp::addresses_from_public_key;
46use crate::receive_imf::ReceivedMsg;
47use crate::smtp::{self, send_msg_to_smtp};
48use crate::stock_str;
49use crate::sync::{self, Sync::*, SyncData};
50use crate::tools::{
51 IsNoneOrEmpty, SystemTime, buf_compress, create_broadcast_secret, create_id,
52 create_outgoing_rfc724_mid, create_smeared_timestamp, create_smeared_timestamps, get_abs_path,
53 gm2local_offset, normalize_text, smeared_time, time, truncate_msg_text,
54};
55use crate::webxdc::StatusUpdateSerial;
56
57pub(crate) const PARAM_BROADCAST_SECRET: Param = Param::Arg3;
58
59#[derive(Debug, Copy, Clone, PartialEq, Eq)]
61pub enum ChatItem {
62 Message {
64 msg_id: MsgId,
66 },
67
68 DayMarker {
71 timestamp: i64,
73 },
74}
75
76#[derive(Debug, Clone, Copy, PartialEq, Eq)]
80pub(crate) enum CantSendReason {
81 SpecialChat,
83
84 DeviceChat,
86
87 ContactRequest,
89
90 ReadOnlyMailingList,
92
93 InBroadcast,
95
96 NotAMember,
98
99 MissingKey,
101}
102
103impl fmt::Display for CantSendReason {
104 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
105 match self {
106 Self::SpecialChat => write!(f, "the chat is a special chat"),
107 Self::DeviceChat => write!(f, "the chat is a device chat"),
108 Self::ContactRequest => write!(
109 f,
110 "contact request chat should be accepted before sending messages"
111 ),
112 Self::ReadOnlyMailingList => {
113 write!(f, "mailing list does not have a know post address")
114 }
115 Self::InBroadcast => {
116 write!(f, "Broadcast channel is read-only")
117 }
118 Self::NotAMember => write!(f, "not a member of the chat"),
119 Self::MissingKey => write!(f, "key is missing"),
120 }
121 }
122}
123
124#[derive(
129 Debug, Copy, Clone, Default, PartialEq, Eq, Serialize, Deserialize, Hash, PartialOrd, Ord,
130)]
131pub struct ChatId(u32);
132
133impl ChatId {
134 pub const fn new(id: u32) -> ChatId {
136 ChatId(id)
137 }
138
139 pub fn is_unset(self) -> bool {
143 self.0 == 0
144 }
145
146 pub fn is_special(self) -> bool {
150 (0..=DC_CHAT_ID_LAST_SPECIAL.0).contains(&self.0)
151 }
152
153 pub fn is_trash(self) -> bool {
160 self == DC_CHAT_ID_TRASH
161 }
162
163 pub fn is_archived_link(self) -> bool {
170 self == DC_CHAT_ID_ARCHIVED_LINK
171 }
172
173 pub fn is_alldone_hint(self) -> bool {
182 self == DC_CHAT_ID_ALLDONE_HINT
183 }
184
185 pub(crate) fn lookup_by_message(msg: &Message) -> Option<Self> {
187 if msg.chat_id == DC_CHAT_ID_TRASH {
188 return None;
189 }
190 if msg.download_state == DownloadState::Undecipherable {
191 return None;
192 }
193 Some(msg.chat_id)
194 }
195
196 pub async fn lookup_by_contact(
201 context: &Context,
202 contact_id: ContactId,
203 ) -> Result<Option<Self>> {
204 let Some(chat_id_blocked) = ChatIdBlocked::lookup_by_contact(context, contact_id).await?
205 else {
206 return Ok(None);
207 };
208
209 let chat_id = match chat_id_blocked.blocked {
210 Blocked::Not | Blocked::Request => Some(chat_id_blocked.id),
211 Blocked::Yes => None,
212 };
213 Ok(chat_id)
214 }
215
216 pub(crate) async fn get_for_contact(context: &Context, contact_id: ContactId) -> Result<Self> {
224 ChatIdBlocked::get_for_contact(context, contact_id, Blocked::Not)
225 .await
226 .map(|chat| chat.id)
227 }
228
229 pub async fn create_for_contact(context: &Context, contact_id: ContactId) -> Result<Self> {
234 ChatId::create_for_contact_with_blocked(context, contact_id, Blocked::Not).await
235 }
236
237 pub(crate) async fn create_for_contact_with_blocked(
241 context: &Context,
242 contact_id: ContactId,
243 create_blocked: Blocked,
244 ) -> Result<Self> {
245 let chat_id = match ChatIdBlocked::lookup_by_contact(context, contact_id).await? {
246 Some(chat) => {
247 if create_blocked != Blocked::Not || chat.blocked == Blocked::Not {
248 return Ok(chat.id);
249 }
250 chat.id.set_blocked(context, Blocked::Not).await?;
251 chat.id
252 }
253 None => {
254 if Contact::real_exists_by_id(context, contact_id).await?
255 || contact_id == ContactId::SELF
256 {
257 let chat_id =
258 ChatIdBlocked::get_for_contact(context, contact_id, create_blocked)
259 .await
260 .map(|chat| chat.id)?;
261 if create_blocked != Blocked::Yes {
262 info!(context, "Scale up origin of {contact_id} to CreateChat.");
263 ContactId::scaleup_origin(context, &[contact_id], Origin::CreateChat)
264 .await?;
265 }
266 chat_id
267 } else {
268 warn!(
269 context,
270 "Cannot create chat, contact {contact_id} does not exist."
271 );
272 bail!("Can not create chat for non-existing contact");
273 }
274 }
275 };
276 context.emit_msgs_changed_without_ids();
277 chatlist_events::emit_chatlist_changed(context);
278 chatlist_events::emit_chatlist_item_changed(context, chat_id);
279 Ok(chat_id)
280 }
281
282 pub(crate) async fn create_multiuser_record(
285 context: &Context,
286 chattype: Chattype,
287 grpid: &str,
288 grpname: &str,
289 create_blocked: Blocked,
290 param: Option<String>,
291 timestamp: i64,
292 ) -> Result<Self> {
293 let grpname = sanitize_single_line(grpname);
294 let timestamp = cmp::min(timestamp, smeared_time(context));
295 let row_id =
296 context.sql.insert(
297 "INSERT INTO chats (type, name, name_normalized, grpid, blocked, created_timestamp, protected, param) VALUES(?, ?, ?, ?, ?, ?, 0, ?)",
298 (
299 chattype,
300 &grpname,
301 normalize_text(&grpname),
302 grpid,
303 create_blocked,
304 timestamp,
305 param.unwrap_or_default(),
306 ),
307 ).await?;
308
309 let chat_id = ChatId::new(u32::try_from(row_id)?);
310 let chat = Chat::load_from_db(context, chat_id).await?;
311
312 if chat.is_encrypted(context).await? {
313 chat_id.add_e2ee_notice(context, timestamp).await?;
314 }
315
316 info!(
317 context,
318 "Created group/broadcast '{}' grpid={} as {}, blocked={}.",
319 &grpname,
320 grpid,
321 chat_id,
322 create_blocked,
323 );
324
325 Ok(chat_id)
326 }
327
328 async fn set_selfavatar_timestamp(self, context: &Context, timestamp: i64) -> Result<()> {
329 context
330 .sql
331 .execute(
332 "UPDATE contacts
333 SET selfavatar_sent=?
334 WHERE id IN(SELECT contact_id FROM chats_contacts WHERE chat_id=? AND add_timestamp >= remove_timestamp)",
335 (timestamp, self),
336 )
337 .await?;
338 Ok(())
339 }
340
341 pub(crate) async fn set_blocked(self, context: &Context, new_blocked: Blocked) -> Result<bool> {
345 if self.is_special() {
346 bail!("ignoring setting of Block-status for {self}");
347 }
348 let count = context
349 .sql
350 .execute(
351 "UPDATE chats SET blocked=?1 WHERE id=?2 AND blocked != ?1",
352 (new_blocked, self),
353 )
354 .await?;
355 Ok(count > 0)
356 }
357
358 pub async fn block(self, context: &Context) -> Result<()> {
360 self.block_ex(context, Sync).await
361 }
362
363 pub(crate) async fn block_ex(self, context: &Context, sync: sync::Sync) -> Result<()> {
364 let chat = Chat::load_from_db(context, self).await?;
365 let mut delete = false;
366
367 match chat.typ {
368 Chattype::OutBroadcast => {
369 bail!("Can't block chat of type {:?}", chat.typ)
370 }
371 Chattype::Single => {
372 for contact_id in get_chat_contacts(context, self).await? {
373 if contact_id != ContactId::SELF {
374 info!(
375 context,
376 "Blocking the contact {contact_id} to block 1:1 chat."
377 );
378 contact::set_blocked(context, Nosync, contact_id, true).await?;
379 }
380 }
381 }
382 Chattype::Group => {
383 info!(context, "Can't block groups yet, deleting the chat.");
384 delete = true;
385 }
386 Chattype::Mailinglist | Chattype::InBroadcast => {
387 if self.set_blocked(context, Blocked::Yes).await? {
388 context.emit_event(EventType::ChatModified(self));
389 }
390 }
391 }
392 chatlist_events::emit_chatlist_changed(context);
393
394 if sync.into() {
395 chat.sync(context, SyncAction::Block)
397 .await
398 .log_err(context)
399 .ok();
400 }
401 if delete {
402 self.delete_ex(context, Nosync).await?;
403 }
404 Ok(())
405 }
406
407 pub async fn unblock(self, context: &Context) -> Result<()> {
409 self.unblock_ex(context, Sync).await
410 }
411
412 pub(crate) async fn unblock_ex(self, context: &Context, sync: sync::Sync) -> Result<()> {
413 self.set_blocked(context, Blocked::Not).await?;
414
415 chatlist_events::emit_chatlist_changed(context);
416
417 if sync.into() {
418 let chat = Chat::load_from_db(context, self).await?;
419 chat.sync(context, SyncAction::Unblock)
423 .await
424 .log_err(context)
425 .ok();
426 }
427
428 Ok(())
429 }
430
431 pub async fn accept(self, context: &Context) -> Result<()> {
435 self.accept_ex(context, Sync).await
436 }
437
438 pub(crate) async fn accept_ex(self, context: &Context, sync: sync::Sync) -> Result<()> {
439 let chat = Chat::load_from_db(context, self).await?;
440
441 match chat.typ {
442 Chattype::Single | Chattype::Group | Chattype::OutBroadcast | Chattype::InBroadcast => {
443 let origin = match chat.typ {
449 Chattype::Group => Origin::IncomingTo,
450 _ => Origin::CreateChat,
451 };
452 for contact_id in get_chat_contacts(context, self).await? {
453 if contact_id != ContactId::SELF {
454 ContactId::scaleup_origin(context, &[contact_id], origin).await?;
455 }
456 }
457 }
458 Chattype::Mailinglist => {
459 }
461 }
462
463 if self.set_blocked(context, Blocked::Not).await? {
464 context.emit_event(EventType::ChatModified(self));
465 chatlist_events::emit_chatlist_item_changed(context, self);
466 }
467
468 if sync.into() {
469 chat.sync(context, SyncAction::Accept)
470 .await
471 .log_err(context)
472 .ok();
473 }
474 Ok(())
475 }
476
477 pub(crate) async fn add_e2ee_notice(self, context: &Context, timestamp: i64) -> Result<()> {
479 let text = stock_str::messages_e2ee_info_msg(context);
480
481 let sort_timestamp = 0;
485 add_info_msg_with_cmd(
486 context,
487 self,
488 &text,
489 SystemMessage::ChatE2ee,
490 Some(sort_timestamp),
491 timestamp,
492 None,
493 None,
494 None,
495 )
496 .await?;
497 Ok(())
498 }
499
500 pub(crate) async fn add_start_info_message(self, context: &Context, text: &str) -> Result<()> {
505 let sort_timestamp = 0;
506 add_info_msg_with_cmd(
507 context,
508 self,
509 text,
510 SystemMessage::Unknown,
511 Some(sort_timestamp),
512 time(),
513 None,
514 None,
515 None,
516 )
517 .await?;
518 Ok(())
519 }
520
521 pub async fn set_visibility(self, context: &Context, visibility: ChatVisibility) -> Result<()> {
523 self.set_visibility_ex(context, Sync, visibility).await
524 }
525
526 pub(crate) async fn set_visibility_ex(
527 self,
528 context: &Context,
529 sync: sync::Sync,
530 visibility: ChatVisibility,
531 ) -> Result<()> {
532 ensure!(
533 !self.is_special(),
534 "bad chat_id, can not be special chat: {self}"
535 );
536
537 context
538 .sql
539 .transaction(move |transaction| {
540 if visibility == ChatVisibility::Archived {
541 transaction.execute(
542 "UPDATE msgs SET state=? WHERE chat_id=? AND state=?;",
543 (MessageState::InNoticed, self, MessageState::InFresh),
544 )?;
545 }
546 transaction.execute(
547 "UPDATE chats SET archived=? WHERE id=?;",
548 (visibility, self),
549 )?;
550 Ok(())
551 })
552 .await?;
553
554 if visibility == ChatVisibility::Archived {
555 start_chat_ephemeral_timers(context, self).await?;
556 }
557
558 context.emit_msgs_changed_without_ids();
559 chatlist_events::emit_chatlist_changed(context);
560 chatlist_events::emit_chatlist_item_changed(context, self);
561
562 if sync.into() {
563 let chat = Chat::load_from_db(context, self).await?;
564 chat.sync(context, SyncAction::SetVisibility(visibility))
565 .await
566 .log_err(context)
567 .ok();
568 }
569 Ok(())
570 }
571
572 pub async fn unarchive_if_not_muted(
580 self,
581 context: &Context,
582 msg_state: MessageState,
583 ) -> Result<()> {
584 if msg_state != MessageState::InFresh {
585 context
586 .sql
587 .execute(
588 "UPDATE chats SET archived=0 WHERE id=? AND archived=1 \
589 AND NOT(muted_until=-1 OR muted_until>?)",
590 (self, time()),
591 )
592 .await?;
593 return Ok(());
594 }
595 let chat = Chat::load_from_db(context, self).await?;
596 if chat.visibility != ChatVisibility::Archived {
597 return Ok(());
598 }
599 if chat.is_muted() {
600 let unread_cnt = context
601 .sql
602 .count(
603 "SELECT COUNT(*)
604 FROM msgs
605 WHERE state=?
606 AND hidden=0
607 AND chat_id=?",
608 (MessageState::InFresh, self),
609 )
610 .await?;
611 if unread_cnt == 1 {
612 context.emit_msgs_changed_without_msg_id(DC_CHAT_ID_ARCHIVED_LINK);
614 }
615 return Ok(());
616 }
617 context
618 .sql
619 .execute("UPDATE chats SET archived=0 WHERE id=?", (self,))
620 .await?;
621 Ok(())
622 }
623
624 pub(crate) fn emit_msg_event(self, context: &Context, msg_id: MsgId, important: bool) {
627 if important {
628 debug_assert!(!msg_id.is_unset());
629
630 context.emit_incoming_msg(self, msg_id);
631 } else {
632 context.emit_msgs_changed(self, msg_id);
633 }
634 }
635
636 pub async fn delete(self, context: &Context) -> Result<()> {
642 self.delete_ex(context, Sync).await
643 }
644
645 pub(crate) async fn delete_ex(self, context: &Context, sync: sync::Sync) -> Result<()> {
646 ensure!(
647 !self.is_special(),
648 "bad chat_id, can not be a special chat: {self}"
649 );
650
651 let chat = Chat::load_from_db(context, self).await?;
652 let sync_id = match sync {
653 Nosync => None,
654 Sync => chat.get_sync_id(context).await?,
655 };
656
657 context
658 .sql
659 .transaction(|transaction| {
660 transaction.execute(
661 "UPDATE imap SET target='' WHERE rfc724_mid IN (SELECT rfc724_mid FROM msgs WHERE chat_id=? AND rfc724_mid!='')",
662 (self,),
663 )?;
664 transaction.execute(
665 "UPDATE imap SET target='' WHERE rfc724_mid IN (SELECT pre_rfc724_mid FROM msgs WHERE chat_id=? AND pre_rfc724_mid!='')",
666 (self,),
667 )?;
668 transaction.execute(
669 "DELETE FROM msgs_mdns WHERE msg_id IN (SELECT id FROM msgs WHERE chat_id=?)",
670 (self,),
671 )?;
672 transaction.execute(
675 "
676INSERT OR REPLACE INTO msgs (id, rfc724_mid, pre_rfc724_mid, timestamp, chat_id, deleted)
677SELECT id, rfc724_mid, pre_rfc724_mid, timestamp, ?, 1 FROM msgs WHERE chat_id=?
678 ",
679 (DC_CHAT_ID_TRASH, self),
680 )?;
681 transaction.execute("DELETE FROM chats_contacts WHERE chat_id=?", (self,))?;
682 transaction.execute("DELETE FROM chats WHERE id=?", (self,))?;
683 Ok(())
684 })
685 .await?;
686
687 context.emit_event(EventType::ChatDeleted { chat_id: self });
688 context.emit_msgs_changed_without_ids();
689
690 if let Some(id) = sync_id {
691 self::sync(context, id, SyncAction::Delete)
692 .await
693 .log_err(context)
694 .ok();
695 }
696
697 if chat.is_self_talk() {
698 let mut msg = Message::new_text(stock_str::self_deleted_msg_body(context));
699 add_device_msg(context, None, Some(&mut msg)).await?;
700 }
701 chatlist_events::emit_chatlist_changed(context);
702
703 context
704 .set_config_internal(Config::LastHousekeeping, None)
705 .await?;
706 context.scheduler.interrupt_smtp().await;
707
708 Ok(())
709 }
710
711 pub async fn set_draft(self, context: &Context, mut msg: Option<&mut Message>) -> Result<()> {
715 if self.is_special() {
716 return Ok(());
717 }
718
719 let changed = match &mut msg {
720 None => self.maybe_delete_draft(context).await?,
721 Some(msg) => self.do_set_draft(context, msg).await?,
722 };
723
724 if changed {
725 if msg.is_some() {
726 match self.get_draft_msg_id(context).await? {
727 Some(msg_id) => context.emit_msgs_changed(self, msg_id),
728 None => context.emit_msgs_changed_without_msg_id(self),
729 }
730 } else {
731 context.emit_msgs_changed_without_msg_id(self)
732 }
733 }
734
735 Ok(())
736 }
737
738 async fn get_draft_msg_id(self, context: &Context) -> Result<Option<MsgId>> {
740 let msg_id: Option<MsgId> = context
741 .sql
742 .query_get_value(
743 "SELECT id FROM msgs WHERE chat_id=? AND state=?;",
744 (self, MessageState::OutDraft),
745 )
746 .await?;
747 Ok(msg_id)
748 }
749
750 pub async fn get_draft(self, context: &Context) -> Result<Option<Message>> {
752 if self.is_special() {
753 return Ok(None);
754 }
755 match self.get_draft_msg_id(context).await? {
756 Some(draft_msg_id) => {
757 let msg = Message::load_from_db(context, draft_msg_id).await?;
758 Ok(Some(msg))
759 }
760 None => Ok(None),
761 }
762 }
763
764 async fn maybe_delete_draft(self, context: &Context) -> Result<bool> {
768 Ok(context
769 .sql
770 .execute(
771 "DELETE FROM msgs WHERE chat_id=? AND state=?",
772 (self, MessageState::OutDraft),
773 )
774 .await?
775 > 0)
776 }
777
778 async fn do_set_draft(self, context: &Context, msg: &mut Message) -> Result<bool> {
781 match msg.viewtype {
782 Viewtype::Unknown => bail!("Can not set draft of unknown type."),
783 Viewtype::Text => {
784 if msg.text.is_empty() && msg.in_reply_to.is_none_or_empty() {
785 bail!("No text and no quote in draft");
786 }
787 }
788 _ => {
789 if msg.viewtype == Viewtype::File
790 && let Some((better_type, _)) = message::guess_msgtype_from_suffix(msg)
791 .filter(|&(vt, _)| vt == Viewtype::Webxdc || vt == Viewtype::Vcard)
796 {
797 msg.viewtype = better_type;
798 }
799 if msg.viewtype == Viewtype::Vcard {
800 let blob = msg
801 .param
802 .get_file_blob(context)?
803 .context("no file stored in params")?;
804 msg.try_set_vcard(context, &blob.to_abs_path()).await?;
805 }
806 }
807 }
808
809 msg.state = MessageState::OutDraft;
812 msg.chat_id = self;
813
814 if !msg.id.is_special()
816 && let Some(old_draft) = self.get_draft(context).await?
817 && old_draft.id == msg.id
818 && old_draft.chat_id == self
819 && old_draft.state == MessageState::OutDraft
820 {
821 let affected_rows = context
822 .sql.execute(
823 "UPDATE msgs
824 SET timestamp=?1,type=?2,txt=?3,txt_normalized=?4,param=?5,mime_in_reply_to=?6
825 WHERE id=?7
826 AND (type <> ?2
827 OR txt <> ?3
828 OR txt_normalized <> ?4
829 OR param <> ?5
830 OR mime_in_reply_to <> ?6);",
831 (
832 time(),
833 msg.viewtype,
834 &msg.text,
835 normalize_text(&msg.text),
836 msg.param.to_string(),
837 msg.in_reply_to.as_deref().unwrap_or_default(),
838 msg.id,
839 ),
840 ).await?;
841 return Ok(affected_rows > 0);
842 }
843
844 let row_id = context
845 .sql
846 .transaction(|transaction| {
847 transaction.execute(
849 "DELETE FROM msgs WHERE chat_id=? AND state=?",
850 (self, MessageState::OutDraft),
851 )?;
852
853 transaction.execute(
855 "INSERT INTO msgs (
856 chat_id,
857 rfc724_mid,
858 from_id,
859 timestamp,
860 type,
861 state,
862 txt,
863 txt_normalized,
864 param,
865 hidden,
866 mime_in_reply_to)
867 VALUES (?,?,?,?,?,?,?,?,?,?,?);",
868 (
869 self,
870 &msg.rfc724_mid,
871 ContactId::SELF,
872 time(),
873 msg.viewtype,
874 MessageState::OutDraft,
875 &msg.text,
876 normalize_text(&msg.text),
877 msg.param.to_string(),
878 1,
879 msg.in_reply_to.as_deref().unwrap_or_default(),
880 ),
881 )?;
882
883 Ok(transaction.last_insert_rowid())
884 })
885 .await?;
886 msg.id = MsgId::new(row_id.try_into()?);
887 Ok(true)
888 }
889
890 pub async fn get_msg_cnt(self, context: &Context) -> Result<usize> {
892 let count = context
893 .sql
894 .count(
895 "SELECT COUNT(*) FROM msgs WHERE hidden=0 AND chat_id=?",
896 (self,),
897 )
898 .await?;
899 Ok(count)
900 }
901
902 pub async fn get_fresh_msg_cnt(self, context: &Context) -> Result<usize> {
904 let count = if self.is_archived_link() {
915 context
916 .sql
917 .count(
918 "SELECT COUNT(DISTINCT(m.chat_id))
919 FROM msgs m
920 LEFT JOIN chats c ON m.chat_id=c.id
921 WHERE m.state=10
922 and m.hidden=0
923 AND m.chat_id>9
924 AND c.blocked=0
925 AND c.archived=1
926 ",
927 (),
928 )
929 .await?
930 } else {
931 context
932 .sql
933 .count(
934 "SELECT COUNT(*)
935 FROM msgs
936 WHERE state=?
937 AND hidden=0
938 AND chat_id=?;",
939 (MessageState::InFresh, self),
940 )
941 .await?
942 };
943 Ok(count)
944 }
945
946 pub(crate) async fn created_timestamp(self, context: &Context) -> Result<i64> {
947 Ok(context
948 .sql
949 .query_get_value("SELECT created_timestamp FROM chats WHERE id=?", (self,))
950 .await?
951 .unwrap_or(0))
952 }
953
954 pub(crate) async fn join_timestamp(self, context: &Context) -> Result<Option<i64>> {
956 context
957 .sql
958 .query_get_value(
959 "SELECT add_timestamp FROM chats_contacts WHERE chat_id=? AND contact_id=?",
960 (self, ContactId::SELF),
961 )
962 .await
963 }
964
965 pub(crate) async fn get_timestamp(self, context: &Context) -> Result<Option<i64>> {
968 let timestamp = context
969 .sql
970 .query_get_value(
971 "SELECT MAX(timestamp)
972 FROM msgs
973 WHERE chat_id=?
974 HAVING COUNT(*) > 0",
975 (self,),
976 )
977 .await?;
978 Ok(timestamp)
979 }
980
981 #[expect(clippy::arithmetic_side_effects)]
987 pub async fn get_similar_chat_ids(self, context: &Context) -> Result<Vec<(ChatId, f64)>> {
988 let intersection = context
990 .sql
991 .query_map_vec(
992 "SELECT y.chat_id, SUM(x.contact_id = y.contact_id)
993 FROM chats_contacts as x
994 JOIN chats_contacts as y
995 WHERE x.contact_id > 9
996 AND y.contact_id > 9
997 AND x.add_timestamp >= x.remove_timestamp
998 AND y.add_timestamp >= y.remove_timestamp
999 AND x.chat_id=?
1000 AND y.chat_id<>x.chat_id
1001 AND y.chat_id>?
1002 GROUP BY y.chat_id",
1003 (self, DC_CHAT_ID_LAST_SPECIAL),
1004 |row| {
1005 let chat_id: ChatId = row.get(0)?;
1006 let intersection: f64 = row.get(1)?;
1007 Ok((chat_id, intersection))
1008 },
1009 )
1010 .await
1011 .context("failed to calculate member set intersections")?;
1012
1013 let chat_size: HashMap<ChatId, f64> = context
1014 .sql
1015 .query_map_collect(
1016 "SELECT chat_id, count(*) AS n
1017 FROM chats_contacts
1018 WHERE contact_id > ? AND chat_id > ?
1019 AND add_timestamp >= remove_timestamp
1020 GROUP BY chat_id",
1021 (ContactId::LAST_SPECIAL, DC_CHAT_ID_LAST_SPECIAL),
1022 |row| {
1023 let chat_id: ChatId = row.get(0)?;
1024 let size: f64 = row.get(1)?;
1025 Ok((chat_id, size))
1026 },
1027 )
1028 .await
1029 .context("failed to count chat member sizes")?;
1030
1031 let our_chat_size = chat_size.get(&self).copied().unwrap_or_default();
1032 let mut chats_with_metrics = Vec::new();
1033 for (chat_id, intersection_size) in intersection {
1034 if intersection_size > 0.0 {
1035 let other_chat_size = chat_size.get(&chat_id).copied().unwrap_or_default();
1036 let union_size = our_chat_size + other_chat_size - intersection_size;
1037 let metric = intersection_size / union_size;
1038 chats_with_metrics.push((chat_id, metric))
1039 }
1040 }
1041 chats_with_metrics.sort_unstable_by(|(chat_id1, metric1), (chat_id2, metric2)| {
1042 metric2
1043 .partial_cmp(metric1)
1044 .unwrap_or(chat_id2.cmp(chat_id1))
1045 });
1046
1047 let mut res = Vec::new();
1049 let now = time();
1050 for (chat_id, metric) in chats_with_metrics {
1051 if let Some(chat_timestamp) = chat_id.get_timestamp(context).await?
1052 && now > chat_timestamp + 42 * 24 * 3600
1053 {
1054 continue;
1056 }
1057
1058 if metric < 0.1 {
1059 break;
1061 }
1062
1063 let chat = Chat::load_from_db(context, chat_id).await?;
1064 if chat.typ != Chattype::Group {
1065 continue;
1066 }
1067
1068 match chat.visibility {
1069 ChatVisibility::Normal | ChatVisibility::Pinned => {}
1070 ChatVisibility::Archived => continue,
1071 }
1072
1073 res.push((chat_id, metric));
1074 if res.len() >= 5 {
1075 break;
1076 }
1077 }
1078
1079 Ok(res)
1080 }
1081
1082 pub async fn get_similar_chatlist(self, context: &Context) -> Result<Chatlist> {
1086 let chat_ids: Vec<ChatId> = self
1087 .get_similar_chat_ids(context)
1088 .await
1089 .context("failed to get similar chat IDs")?
1090 .into_iter()
1091 .map(|(chat_id, _metric)| chat_id)
1092 .collect();
1093 let chatlist = Chatlist::from_chat_ids(context, &chat_ids).await?;
1094 Ok(chatlist)
1095 }
1096
1097 pub(crate) async fn get_param(self, context: &Context) -> Result<Params> {
1098 let res: Option<String> = context
1099 .sql
1100 .query_get_value("SELECT param FROM chats WHERE id=?", (self,))
1101 .await?;
1102 Ok(res
1103 .map(|s| s.parse().unwrap_or_default())
1104 .unwrap_or_default())
1105 }
1106
1107 pub(crate) async fn is_unpromoted(self, context: &Context) -> Result<bool> {
1109 let param = self.get_param(context).await?;
1110 let unpromoted = param.get_bool(Param::Unpromoted).unwrap_or_default();
1111 Ok(unpromoted)
1112 }
1113
1114 pub(crate) async fn is_promoted(self, context: &Context) -> Result<bool> {
1116 let promoted = !self.is_unpromoted(context).await?;
1117 Ok(promoted)
1118 }
1119
1120 pub async fn is_self_talk(self, context: &Context) -> Result<bool> {
1122 Ok(self.get_param(context).await?.exists(Param::Selftalk))
1123 }
1124
1125 pub async fn is_device_talk(self, context: &Context) -> Result<bool> {
1127 Ok(self.get_param(context).await?.exists(Param::Devicetalk))
1128 }
1129
1130 async fn parent_query<T, F>(
1131 self,
1132 context: &Context,
1133 fields: &str,
1134 state_out_min: MessageState,
1135 f: F,
1136 ) -> Result<Option<T>>
1137 where
1138 F: Send + FnOnce(&rusqlite::Row) -> rusqlite::Result<T>,
1139 T: Send + 'static,
1140 {
1141 let sql = &context.sql;
1142 let query = format!(
1143 "SELECT {fields} \
1144 FROM msgs \
1145 WHERE chat_id=? \
1146 AND ((state BETWEEN {} AND {}) OR (state >= {})) \
1147 AND NOT hidden \
1148 AND download_state={} \
1149 AND from_id != {} \
1150 ORDER BY timestamp DESC, id DESC \
1151 LIMIT 1;",
1152 MessageState::InFresh as u32,
1153 MessageState::InSeen as u32,
1154 state_out_min as u32,
1155 DownloadState::Done as u32,
1158 ContactId::INFO.to_u32(),
1161 );
1162 sql.query_row_optional(&query, (self,), f).await
1163 }
1164
1165 async fn get_parent_mime_headers(
1166 self,
1167 context: &Context,
1168 state_out_min: MessageState,
1169 ) -> Result<Option<(String, String, String)>> {
1170 self.parent_query(
1171 context,
1172 "rfc724_mid, mime_in_reply_to, IFNULL(mime_references, '')",
1173 state_out_min,
1174 |row: &rusqlite::Row| {
1175 let rfc724_mid: String = row.get(0)?;
1176 let mime_in_reply_to: String = row.get(1)?;
1177 let mime_references: String = row.get(2)?;
1178 Ok((rfc724_mid, mime_in_reply_to, mime_references))
1179 },
1180 )
1181 .await
1182 }
1183
1184 pub async fn get_encryption_info(self, context: &Context) -> Result<String> {
1192 let chat = Chat::load_from_db(context, self).await?;
1193 if !chat.is_encrypted(context).await? {
1194 return Ok(stock_str::encr_none(context));
1195 }
1196
1197 let mut ret = stock_str::messages_are_e2ee(context) + "\n";
1198
1199 for &contact_id in get_chat_contacts(context, self)
1200 .await?
1201 .iter()
1202 .filter(|&contact_id| !contact_id.is_special())
1203 {
1204 let contact = Contact::get_by_id(context, contact_id).await?;
1205 let addr = contact.get_addr();
1206 logged_debug_assert!(
1207 context,
1208 contact.is_key_contact(),
1209 "get_encryption_info: contact {contact_id} is not a key-contact."
1210 );
1211 let fingerprint = contact
1212 .fingerprint()
1213 .context("Contact does not have a fingerprint in encrypted chat")?
1214 .human_readable();
1215 if let Some(public_key) = contact.public_key(context).await? {
1216 if let Some(relay_addrs) = addresses_from_public_key(&public_key) {
1217 let relays = relay_addrs.join(",");
1218 ret += &format!("\n{addr}({relays})\n{fingerprint}\n");
1219 } else {
1220 ret += &format!("\n{addr}\n{fingerprint}\n");
1221 }
1222 } else {
1223 ret += &format!("\n{addr}\n(key missing)\n{fingerprint}\n");
1224 }
1225 }
1226
1227 Ok(ret.trim().to_string())
1228 }
1229
1230 pub fn to_u32(self) -> u32 {
1235 self.0
1236 }
1237
1238 pub(crate) async fn reset_gossiped_timestamp(self, context: &Context) -> Result<()> {
1239 context
1240 .sql
1241 .execute("DELETE FROM gossip_timestamp WHERE chat_id=?", (self,))
1242 .await?;
1243 Ok(())
1244 }
1245
1246 pub(crate) async fn calc_sort_timestamp(
1253 self,
1254 context: &Context,
1255 message_timestamp: i64,
1256 always_sort_to_bottom: bool,
1257 ) -> Result<i64> {
1258 let mut sort_timestamp = cmp::min(message_timestamp, smeared_time(context));
1259
1260 let last_msg_time: Option<i64> = if always_sort_to_bottom {
1261 context
1267 .sql
1268 .query_get_value(
1269 "SELECT MAX(timestamp)
1270 FROM msgs
1271 WHERE chat_id=? AND state!=?
1272 HAVING COUNT(*) > 0",
1273 (self, MessageState::OutDraft),
1274 )
1275 .await?
1276 } else {
1277 None
1278 };
1279
1280 if let Some(last_msg_time) = last_msg_time
1281 && last_msg_time > sort_timestamp
1282 {
1283 sort_timestamp = last_msg_time;
1284 }
1285
1286 if let Some(join_timestamp) = self.join_timestamp(context).await? {
1287 Ok(std::cmp::max(sort_timestamp, join_timestamp))
1293 } else {
1294 Ok(sort_timestamp)
1295 }
1296 }
1297}
1298
1299impl std::fmt::Display for ChatId {
1300 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1301 if self.is_trash() {
1302 write!(f, "Chat#Trash")
1303 } else if self.is_archived_link() {
1304 write!(f, "Chat#ArchivedLink")
1305 } else if self.is_alldone_hint() {
1306 write!(f, "Chat#AlldoneHint")
1307 } else if self.is_special() {
1308 write!(f, "Chat#Special{}", self.0)
1309 } else {
1310 write!(f, "Chat#{}", self.0)
1311 }
1312 }
1313}
1314
1315impl rusqlite::types::ToSql for ChatId {
1320 fn to_sql(&self) -> rusqlite::Result<rusqlite::types::ToSqlOutput<'_>> {
1321 let val = rusqlite::types::Value::Integer(i64::from(self.0));
1322 let out = rusqlite::types::ToSqlOutput::Owned(val);
1323 Ok(out)
1324 }
1325}
1326
1327impl rusqlite::types::FromSql for ChatId {
1329 fn column_result(value: rusqlite::types::ValueRef) -> rusqlite::types::FromSqlResult<Self> {
1330 i64::column_result(value).and_then(|val| {
1331 if 0 <= val && val <= i64::from(u32::MAX) {
1332 Ok(ChatId::new(val as u32))
1333 } else {
1334 Err(rusqlite::types::FromSqlError::OutOfRange(val))
1335 }
1336 })
1337 }
1338}
1339
1340#[derive(Debug, Clone, Deserialize, Serialize)]
1345pub struct Chat {
1346 pub id: ChatId,
1348
1349 pub typ: Chattype,
1351
1352 pub name: String,
1354
1355 pub visibility: ChatVisibility,
1357
1358 pub grpid: String,
1361
1362 pub blocked: Blocked,
1364
1365 pub param: Params,
1367
1368 is_sending_locations: bool,
1370
1371 pub mute_duration: MuteDuration,
1373}
1374
1375impl Chat {
1376 pub async fn load_from_db(context: &Context, chat_id: ChatId) -> Result<Self> {
1378 let mut chat = context
1379 .sql
1380 .query_row(
1381 "SELECT c.type, c.name, c.grpid, c.param, c.archived,
1382 c.blocked, c.locations_send_until, c.muted_until
1383 FROM chats c
1384 WHERE c.id=?;",
1385 (chat_id,),
1386 |row| {
1387 let c = Chat {
1388 id: chat_id,
1389 typ: row.get(0)?,
1390 name: row.get::<_, String>(1)?,
1391 grpid: row.get::<_, String>(2)?,
1392 param: row.get::<_, String>(3)?.parse().unwrap_or_default(),
1393 visibility: row.get(4)?,
1394 blocked: row.get::<_, Option<_>>(5)?.unwrap_or_default(),
1395 is_sending_locations: row.get(6)?,
1396 mute_duration: row.get(7)?,
1397 };
1398 Ok(c)
1399 },
1400 )
1401 .await
1402 .context(format!("Failed loading chat {chat_id} from database"))?;
1403
1404 if chat.id.is_archived_link() {
1405 chat.name = stock_str::archived_chats(context);
1406 } else {
1407 if chat.typ == Chattype::Single && chat.name.is_empty() {
1408 let mut chat_name = "Err [Name not found]".to_owned();
1411 match get_chat_contacts(context, chat.id).await {
1412 Ok(contacts) => {
1413 if let Some(contact_id) = contacts.first()
1414 && let Ok(contact) = Contact::get_by_id(context, *contact_id).await
1415 {
1416 contact.get_display_name().clone_into(&mut chat_name);
1417 }
1418 }
1419 Err(err) => {
1420 error!(
1421 context,
1422 "Failed to load contacts for {}: {:#}.", chat.id, err
1423 );
1424 }
1425 }
1426 chat.name = chat_name;
1427 }
1428 if chat.param.exists(Param::Selftalk) {
1429 chat.name = stock_str::saved_messages(context);
1430 } else if chat.param.exists(Param::Devicetalk) {
1431 chat.name = stock_str::device_messages(context);
1432 }
1433 }
1434
1435 Ok(chat)
1436 }
1437
1438 pub fn is_self_talk(&self) -> bool {
1440 self.param.exists(Param::Selftalk)
1441 }
1442
1443 pub fn is_device_talk(&self) -> bool {
1445 self.param.exists(Param::Devicetalk)
1446 }
1447
1448 pub fn is_mailing_list(&self) -> bool {
1450 self.typ == Chattype::Mailinglist
1451 }
1452
1453 pub(crate) async fn why_cant_send(&self, context: &Context) -> Result<Option<CantSendReason>> {
1457 self.why_cant_send_ex(context, &|_| false).await
1458 }
1459
1460 pub(crate) async fn why_cant_send_ex(
1461 &self,
1462 context: &Context,
1463 skip_fn: &(dyn Send + Sync + Fn(&CantSendReason) -> bool),
1464 ) -> Result<Option<CantSendReason>> {
1465 use CantSendReason::*;
1466 if self.id.is_special() {
1469 let reason = SpecialChat;
1470 if !skip_fn(&reason) {
1471 return Ok(Some(reason));
1472 }
1473 }
1474 if self.is_device_talk() {
1475 let reason = DeviceChat;
1476 if !skip_fn(&reason) {
1477 return Ok(Some(reason));
1478 }
1479 }
1480 if self.is_contact_request() {
1481 let reason = ContactRequest;
1482 if !skip_fn(&reason) {
1483 return Ok(Some(reason));
1484 }
1485 }
1486 if self.is_mailing_list() && self.get_mailinglist_addr().is_none_or_empty() {
1487 let reason = ReadOnlyMailingList;
1488 if !skip_fn(&reason) {
1489 return Ok(Some(reason));
1490 }
1491 }
1492 if self.typ == Chattype::InBroadcast {
1493 let reason = InBroadcast;
1494 if !skip_fn(&reason) {
1495 return Ok(Some(reason));
1496 }
1497 }
1498
1499 let reason = NotAMember;
1501 if !skip_fn(&reason) && !self.is_self_in_chat(context).await? {
1502 return Ok(Some(reason));
1503 }
1504
1505 let reason = MissingKey;
1506 if !skip_fn(&reason) && self.typ == Chattype::Single {
1507 let contact_ids = get_chat_contacts(context, self.id).await?;
1508 if let Some(contact_id) = contact_ids.first() {
1509 let contact = Contact::get_by_id(context, *contact_id).await?;
1510 if contact.is_key_contact() && contact.public_key(context).await?.is_none() {
1511 return Ok(Some(reason));
1512 }
1513 }
1514 }
1515
1516 Ok(None)
1517 }
1518
1519 pub async fn can_send(&self, context: &Context) -> Result<bool> {
1523 Ok(self.why_cant_send(context).await?.is_none())
1524 }
1525
1526 pub async fn is_self_in_chat(&self, context: &Context) -> Result<bool> {
1530 match self.typ {
1531 Chattype::Single | Chattype::OutBroadcast | Chattype::Mailinglist => Ok(true),
1532 Chattype::Group | Chattype::InBroadcast => {
1533 is_contact_in_chat(context, self.id, ContactId::SELF).await
1534 }
1535 }
1536 }
1537
1538 pub(crate) async fn update_param(&mut self, context: &Context) -> Result<()> {
1539 context
1540 .sql
1541 .execute(
1542 "UPDATE chats SET param=? WHERE id=?",
1543 (self.param.to_string(), self.id),
1544 )
1545 .await?;
1546 Ok(())
1547 }
1548
1549 pub fn get_id(&self) -> ChatId {
1551 self.id
1552 }
1553
1554 pub fn get_type(&self) -> Chattype {
1556 self.typ
1557 }
1558
1559 pub fn get_name(&self) -> &str {
1561 &self.name
1562 }
1563
1564 pub fn get_mailinglist_addr(&self) -> Option<&str> {
1566 self.param.get(Param::ListPost)
1567 }
1568
1569 pub async fn get_profile_image(&self, context: &Context) -> Result<Option<PathBuf>> {
1571 if self.id.is_archived_link() {
1572 return Ok(Some(get_archive_icon(context).await?));
1575 } else if self.is_device_talk() {
1576 return Ok(Some(get_device_icon(context).await?));
1577 } else if self.is_self_talk() {
1578 return Ok(Some(get_saved_messages_icon(context).await?));
1579 } else if !self.is_encrypted(context).await? {
1580 return Ok(Some(get_abs_path(
1582 context,
1583 Path::new(&get_unencrypted_icon(context).await?),
1584 )));
1585 } else if self.typ == Chattype::Single {
1586 let contacts = get_chat_contacts(context, self.id).await?;
1590 if let Some(contact_id) = contacts.first() {
1591 let contact = Contact::get_by_id(context, *contact_id).await?;
1592 return contact.get_profile_image(context).await;
1593 }
1594 } else if let Some(image_rel) = self.param.get(Param::ProfileImage) {
1595 if !image_rel.is_empty() {
1597 return Ok(Some(get_abs_path(context, Path::new(&image_rel))));
1598 }
1599 }
1600 Ok(None)
1601 }
1602
1603 pub async fn get_color(&self, context: &Context) -> Result<u32> {
1609 let mut color = 0;
1610
1611 if self.typ == Chattype::Single {
1612 let contacts = get_chat_contacts(context, self.id).await?;
1613 if let Some(contact_id) = contacts.first()
1614 && let Ok(contact) = Contact::get_by_id(context, *contact_id).await
1615 {
1616 color = contact.get_color();
1617 }
1618 } else if !self.grpid.is_empty() {
1619 color = str_to_color(&self.grpid);
1620 } else {
1621 color = str_to_color(&self.name);
1622 }
1623
1624 Ok(color)
1625 }
1626
1627 pub async fn get_info(&self, context: &Context) -> Result<ChatInfo> {
1632 let draft = match self.id.get_draft(context).await? {
1633 Some(message) => message.text,
1634 _ => String::new(),
1635 };
1636 Ok(ChatInfo {
1637 id: self.id,
1638 type_: self.typ as u32,
1639 name: self.name.clone(),
1640 archived: self.visibility == ChatVisibility::Archived,
1641 param: self.param.to_string(),
1642 is_sending_locations: self.is_sending_locations,
1643 color: self.get_color(context).await?,
1644 profile_image: self
1645 .get_profile_image(context)
1646 .await?
1647 .unwrap_or_else(std::path::PathBuf::new),
1648 draft,
1649 is_muted: self.is_muted(),
1650 ephemeral_timer: self.id.get_ephemeral_timer(context).await?,
1651 })
1652 }
1653
1654 pub fn get_visibility(&self) -> ChatVisibility {
1656 self.visibility
1657 }
1658
1659 pub fn is_contact_request(&self) -> bool {
1664 self.blocked == Blocked::Request
1665 }
1666
1667 pub fn is_unpromoted(&self) -> bool {
1669 self.param.get_bool(Param::Unpromoted).unwrap_or_default()
1670 }
1671
1672 pub fn is_promoted(&self) -> bool {
1675 !self.is_unpromoted()
1676 }
1677
1678 pub async fn is_encrypted(&self, context: &Context) -> Result<bool> {
1680 let is_encrypted = self.is_self_talk()
1681 || match self.typ {
1682 Chattype::Single => {
1683 match context
1684 .sql
1685 .query_row_optional(
1686 "SELECT cc.contact_id, c.fingerprint<>''
1687 FROM chats_contacts cc LEFT JOIN contacts c
1688 ON c.id=cc.contact_id
1689 WHERE cc.chat_id=?
1690 ",
1691 (self.id,),
1692 |row| {
1693 let id: ContactId = row.get(0)?;
1694 let is_key: bool = row.get(1)?;
1695 Ok((id, is_key))
1696 },
1697 )
1698 .await?
1699 {
1700 Some((id, is_key)) => is_key || id == ContactId::DEVICE,
1701 None => true,
1702 }
1703 }
1704 Chattype::Group => {
1705 !self.grpid.is_empty()
1707 }
1708 Chattype::Mailinglist => false,
1709 Chattype::OutBroadcast | Chattype::InBroadcast => true,
1710 };
1711 Ok(is_encrypted)
1712 }
1713
1714 pub fn is_sending_locations(&self) -> bool {
1716 self.is_sending_locations
1717 }
1718
1719 pub fn is_muted(&self) -> bool {
1721 match self.mute_duration {
1722 MuteDuration::NotMuted => false,
1723 MuteDuration::Forever => true,
1724 MuteDuration::Until(when) => when > SystemTime::now(),
1725 }
1726 }
1727
1728 pub(crate) async fn member_list_timestamp(&self, context: &Context) -> Result<i64> {
1730 if let Some(member_list_timestamp) = self.param.get_i64(Param::MemberListTimestamp) {
1731 Ok(member_list_timestamp)
1732 } else {
1733 Ok(self.id.created_timestamp(context).await?)
1734 }
1735 }
1736
1737 pub(crate) async fn member_list_is_stale(&self, context: &Context) -> Result<bool> {
1743 let now = time();
1744 let member_list_ts = self.member_list_timestamp(context).await?;
1745 let is_stale = now.saturating_add(TIMESTAMP_SENT_TOLERANCE)
1746 >= member_list_ts.saturating_add(60 * 24 * 3600);
1747 Ok(is_stale)
1748 }
1749
1750 async fn prepare_msg_raw(
1756 &mut self,
1757 context: &Context,
1758 msg: &mut Message,
1759 update_msg_id: Option<MsgId>,
1760 ) -> Result<()> {
1761 let mut to_id = 0;
1762 let mut location_id = 0;
1763
1764 if msg.rfc724_mid.is_empty() {
1765 msg.rfc724_mid = create_outgoing_rfc724_mid();
1766 }
1767
1768 if self.typ == Chattype::Single {
1769 if let Some(id) = context
1770 .sql
1771 .query_get_value(
1772 "SELECT contact_id FROM chats_contacts WHERE chat_id=?;",
1773 (self.id,),
1774 )
1775 .await?
1776 {
1777 to_id = id;
1778 } else {
1779 error!(
1780 context,
1781 "Cannot send message, contact for {} not found.", self.id,
1782 );
1783 bail!("Cannot set message, contact for {} not found.", self.id);
1784 }
1785 } else if matches!(self.typ, Chattype::Group | Chattype::OutBroadcast)
1786 && self.param.get_int(Param::Unpromoted).unwrap_or_default() == 1
1787 {
1788 msg.param.set_int(Param::AttachChatAvatarAndDescription, 1);
1789 self.param
1790 .remove(Param::Unpromoted)
1791 .set_i64(Param::GroupNameTimestamp, msg.timestamp_sort)
1792 .set_i64(Param::GroupDescriptionTimestamp, msg.timestamp_sort);
1793 self.update_param(context).await?;
1794 }
1795
1796 let is_bot = context.get_config_bool(Config::Bot).await?;
1797 msg.param
1798 .set_optional(Param::Bot, Some("1").filter(|_| is_bot));
1799
1800 let new_references;
1804 if self.is_self_talk() {
1805 new_references = String::new();
1808 } else if let Some((parent_rfc724_mid, parent_in_reply_to, parent_references)) =
1809 self
1815 .id
1816 .get_parent_mime_headers(context, MessageState::OutPending)
1817 .await?
1818 {
1819 if msg.in_reply_to.is_none() && !parent_rfc724_mid.is_empty() {
1823 msg.in_reply_to = Some(parent_rfc724_mid.clone());
1824 }
1825
1826 let parent_references = if parent_references.is_empty() {
1836 parent_in_reply_to
1837 } else {
1838 parent_references
1839 };
1840
1841 let mut references_vec: Vec<&str> = parent_references.rsplit(' ').take(2).collect();
1844 references_vec.reverse();
1845
1846 if !parent_rfc724_mid.is_empty()
1847 && !references_vec.contains(&parent_rfc724_mid.as_str())
1848 {
1849 references_vec.push(&parent_rfc724_mid)
1850 }
1851
1852 if references_vec.is_empty() {
1853 new_references = msg.rfc724_mid.clone();
1856 } else {
1857 new_references = references_vec.join(" ");
1858 }
1859 } else {
1860 new_references = msg.rfc724_mid.clone();
1866 }
1867
1868 if msg.param.exists(Param::SetLatitude)
1870 && let Ok(row_id) = context
1871 .sql
1872 .insert(
1873 "INSERT INTO locations \
1874 (timestamp,from_id,chat_id, latitude,longitude,independent)\
1875 VALUES (?,?,?, ?,?,1);",
1876 (
1877 msg.timestamp_sort,
1878 ContactId::SELF,
1879 self.id,
1880 msg.param.get_float(Param::SetLatitude).unwrap_or_default(),
1881 msg.param.get_float(Param::SetLongitude).unwrap_or_default(),
1882 ),
1883 )
1884 .await
1885 {
1886 location_id = row_id;
1887 }
1888
1889 let ephemeral_timer = if msg.param.get_cmd() == SystemMessage::EphemeralTimerChanged {
1890 EphemeralTimer::Disabled
1891 } else {
1892 self.id.get_ephemeral_timer(context).await?
1893 };
1894 let ephemeral_timestamp = match ephemeral_timer {
1895 EphemeralTimer::Disabled => 0,
1896 EphemeralTimer::Enabled { duration } => time().saturating_add(duration.into()),
1897 };
1898
1899 let (msg_text, was_truncated) = truncate_msg_text(context, msg.text.clone()).await?;
1900 let new_mime_headers = if msg.has_html() {
1901 msg.param.get(Param::SendHtml).map(|s| s.to_string())
1902 } else {
1903 None
1904 };
1905 let new_mime_headers: Option<String> = new_mime_headers.map(|s| {
1906 let html_part = MimePart::new("text/html", s);
1907 let mut buffer = Vec::new();
1908 let cursor = Cursor::new(&mut buffer);
1909 html_part.write_part(cursor).ok();
1910 String::from_utf8_lossy(&buffer).to_string()
1911 });
1912 let new_mime_headers = new_mime_headers.or_else(|| match was_truncated {
1913 true => Some("Content-Type: text/plain; charset=utf-8\r\n\r\n".to_string() + &msg.text),
1917 false => None,
1918 });
1919 let new_mime_headers = match new_mime_headers {
1920 Some(h) => Some(tokio::task::block_in_place(move || {
1921 buf_compress(h.as_bytes())
1922 })?),
1923 None => None,
1924 };
1925
1926 msg.chat_id = self.id;
1927 msg.from_id = ContactId::SELF;
1928
1929 if let Some(update_msg_id) = update_msg_id {
1931 context
1932 .sql
1933 .execute(
1934 "UPDATE msgs
1935 SET rfc724_mid=?, chat_id=?, from_id=?, to_id=?, timestamp=?, type=?,
1936 state=?, txt=?, txt_normalized=?, subject=?, param=?,
1937 hidden=?, mime_in_reply_to=?, mime_references=?, mime_modified=?,
1938 mime_headers=?, mime_compressed=1, location_id=?, ephemeral_timer=?,
1939 ephemeral_timestamp=?
1940 WHERE id=?;",
1941 params_slice![
1942 msg.rfc724_mid,
1943 msg.chat_id,
1944 msg.from_id,
1945 to_id,
1946 msg.timestamp_sort,
1947 msg.viewtype,
1948 msg.state,
1949 msg_text,
1950 normalize_text(&msg_text),
1951 &msg.subject,
1952 msg.param.to_string(),
1953 msg.hidden,
1954 msg.in_reply_to.as_deref().unwrap_or_default(),
1955 new_references,
1956 new_mime_headers.is_some(),
1957 new_mime_headers.unwrap_or_default(),
1958 location_id as i32,
1959 ephemeral_timer,
1960 ephemeral_timestamp,
1961 update_msg_id
1962 ],
1963 )
1964 .await?;
1965 msg.id = update_msg_id;
1966 } else {
1967 let raw_id = context
1968 .sql
1969 .insert(
1970 "INSERT INTO msgs (
1971 rfc724_mid,
1972 chat_id,
1973 from_id,
1974 to_id,
1975 timestamp,
1976 type,
1977 state,
1978 txt,
1979 txt_normalized,
1980 subject,
1981 param,
1982 hidden,
1983 mime_in_reply_to,
1984 mime_references,
1985 mime_modified,
1986 mime_headers,
1987 mime_compressed,
1988 location_id,
1989 ephemeral_timer,
1990 ephemeral_timestamp)
1991 VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,1,?,?,?);",
1992 params_slice![
1993 msg.rfc724_mid,
1994 msg.chat_id,
1995 msg.from_id,
1996 to_id,
1997 msg.timestamp_sort,
1998 msg.viewtype,
1999 msg.state,
2000 msg_text,
2001 normalize_text(&msg_text),
2002 &msg.subject,
2003 msg.param.to_string(),
2004 msg.hidden,
2005 msg.in_reply_to.as_deref().unwrap_or_default(),
2006 new_references,
2007 new_mime_headers.is_some(),
2008 new_mime_headers.unwrap_or_default(),
2009 location_id as i32,
2010 ephemeral_timer,
2011 ephemeral_timestamp
2012 ],
2013 )
2014 .await?;
2015 context.new_msgs_notify.notify_one();
2016 msg.id = MsgId::new(u32::try_from(raw_id)?);
2017
2018 maybe_set_logging_xdc(context, msg, self.id).await?;
2019 context
2020 .update_webxdc_integration_database(msg, context)
2021 .await?;
2022 }
2023 context.scheduler.interrupt_ephemeral_task().await;
2024 Ok(())
2025 }
2026
2027 pub(crate) async fn sync_contacts(&self, context: &Context) -> Result<()> {
2029 if self.is_encrypted(context).await? {
2030 let self_fp = self_fingerprint(context).await?;
2031 let fingerprint_addrs = context
2032 .sql
2033 .query_map_vec(
2034 "SELECT c.id, c.fingerprint, c.addr
2035 FROM contacts c INNER JOIN chats_contacts cc
2036 ON c.id=cc.contact_id
2037 WHERE cc.chat_id=? AND cc.add_timestamp >= cc.remove_timestamp",
2038 (self.id,),
2039 |row| {
2040 if row.get::<_, ContactId>(0)? == ContactId::SELF {
2041 return Ok((self_fp.to_string(), String::new()));
2042 }
2043 let fingerprint = row.get(1)?;
2044 let addr = row.get(2)?;
2045 Ok((fingerprint, addr))
2046 },
2047 )
2048 .await?;
2049 self.sync(context, SyncAction::SetPgpContacts(fingerprint_addrs))
2050 .await?;
2051 } else {
2052 let addrs = context
2053 .sql
2054 .query_map_vec(
2055 "SELECT c.addr \
2056 FROM contacts c INNER JOIN chats_contacts cc \
2057 ON c.id=cc.contact_id \
2058 WHERE cc.chat_id=? AND cc.add_timestamp >= cc.remove_timestamp",
2059 (self.id,),
2060 |row| {
2061 let addr: String = row.get(0)?;
2062 Ok(addr)
2063 },
2064 )
2065 .await?;
2066 self.sync(context, SyncAction::SetContacts(addrs)).await?;
2067 }
2068 Ok(())
2069 }
2070
2071 async fn get_sync_id(&self, context: &Context) -> Result<Option<SyncId>> {
2073 match self.typ {
2074 Chattype::Single => {
2075 if self.is_device_talk() {
2076 return Ok(Some(SyncId::Device));
2077 }
2078
2079 let mut r = None;
2080 for contact_id in get_chat_contacts(context, self.id).await? {
2081 if contact_id == ContactId::SELF && !self.is_self_talk() {
2082 continue;
2083 }
2084 if r.is_some() {
2085 return Ok(None);
2086 }
2087 let contact = Contact::get_by_id(context, contact_id).await?;
2088 if let Some(fingerprint) = contact.fingerprint() {
2089 r = Some(SyncId::ContactFingerprint(fingerprint.hex()));
2090 } else {
2091 r = Some(SyncId::ContactAddr(contact.get_addr().to_string()));
2092 }
2093 }
2094 Ok(r)
2095 }
2096 Chattype::OutBroadcast
2097 | Chattype::InBroadcast
2098 | Chattype::Group
2099 | Chattype::Mailinglist => {
2100 if !self.grpid.is_empty() {
2101 return Ok(Some(SyncId::Grpid(self.grpid.clone())));
2102 }
2103
2104 let Some((parent_rfc724_mid, parent_in_reply_to, _)) = self
2105 .id
2106 .get_parent_mime_headers(context, MessageState::OutDelivered)
2107 .await?
2108 else {
2109 warn!(
2110 context,
2111 "Chat::get_sync_id({}): No good message identifying the chat found.",
2112 self.id
2113 );
2114 return Ok(None);
2115 };
2116 Ok(Some(SyncId::Msgids(vec![
2117 parent_in_reply_to,
2118 parent_rfc724_mid,
2119 ])))
2120 }
2121 }
2122 }
2123
2124 pub(crate) async fn sync(&self, context: &Context, action: SyncAction) -> Result<()> {
2126 if let Some(id) = self.get_sync_id(context).await? {
2127 sync(context, id, action).await?;
2128 }
2129 Ok(())
2130 }
2131}
2132
2133pub(crate) async fn sync(context: &Context, id: SyncId, action: SyncAction) -> Result<()> {
2134 context
2135 .add_sync_item(SyncData::AlterChat { id, action })
2136 .await?;
2137 context.scheduler.interrupt_smtp().await;
2138 Ok(())
2139}
2140
2141#[derive(Debug, Copy, Eq, PartialEq, Clone, Serialize, Deserialize, EnumIter, Default)]
2143#[repr(i8)]
2144pub enum ChatVisibility {
2145 #[default]
2147 Normal = 0,
2148
2149 Archived = 1,
2151
2152 Pinned = 2,
2154}
2155
2156impl rusqlite::types::ToSql for ChatVisibility {
2157 fn to_sql(&self) -> rusqlite::Result<rusqlite::types::ToSqlOutput<'_>> {
2158 let val = rusqlite::types::Value::Integer(*self as i64);
2159 let out = rusqlite::types::ToSqlOutput::Owned(val);
2160 Ok(out)
2161 }
2162}
2163
2164impl rusqlite::types::FromSql for ChatVisibility {
2165 fn column_result(value: rusqlite::types::ValueRef) -> rusqlite::types::FromSqlResult<Self> {
2166 i64::column_result(value).map(|val| {
2167 match val {
2168 2 => ChatVisibility::Pinned,
2169 1 => ChatVisibility::Archived,
2170 0 => ChatVisibility::Normal,
2171 _ => ChatVisibility::Normal,
2173 }
2174 })
2175 }
2176}
2177
2178#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
2180#[non_exhaustive]
2181pub struct ChatInfo {
2182 pub id: ChatId,
2184
2185 #[serde(rename = "type")]
2192 pub type_: u32,
2193
2194 pub name: String,
2196
2197 pub archived: bool,
2199
2200 pub param: String,
2204
2205 pub is_sending_locations: bool,
2207
2208 pub color: u32,
2212
2213 pub profile_image: std::path::PathBuf,
2218
2219 pub draft: String,
2227
2228 pub is_muted: bool,
2232
2233 pub ephemeral_timer: EphemeralTimer,
2235 }
2241
2242async fn get_asset_icon(context: &Context, name: &str, bytes: &[u8]) -> Result<PathBuf> {
2243 ensure!(name.starts_with("icon-"));
2244 if let Some(icon) = context.sql.get_raw_config(name).await? {
2245 return Ok(get_abs_path(context, Path::new(&icon)));
2246 }
2247
2248 let blob =
2249 BlobObject::create_and_deduplicate_from_bytes(context, bytes, &format!("{name}.png"))?;
2250 let icon = blob.as_name().to_string();
2251 context.sql.set_raw_config(name, Some(&icon)).await?;
2252
2253 Ok(get_abs_path(context, Path::new(&icon)))
2254}
2255
2256pub(crate) async fn get_saved_messages_icon(context: &Context) -> Result<PathBuf> {
2257 get_asset_icon(
2258 context,
2259 "icon-saved-messages",
2260 include_bytes!("../assets/icon-saved-messages.png"),
2261 )
2262 .await
2263}
2264
2265pub(crate) async fn get_device_icon(context: &Context) -> Result<PathBuf> {
2266 get_asset_icon(
2267 context,
2268 "icon-device",
2269 include_bytes!("../assets/icon-device.png"),
2270 )
2271 .await
2272}
2273
2274pub(crate) async fn get_archive_icon(context: &Context) -> Result<PathBuf> {
2275 get_asset_icon(
2276 context,
2277 "icon-archive",
2278 include_bytes!("../assets/icon-archive.png"),
2279 )
2280 .await
2281}
2282
2283pub(crate) async fn get_unencrypted_icon(context: &Context) -> Result<PathBuf> {
2286 get_asset_icon(
2287 context,
2288 "icon-unencrypted",
2289 include_bytes!("../assets/icon-unencrypted.png"),
2290 )
2291 .await
2292}
2293
2294async fn update_special_chat_name(
2295 context: &Context,
2296 contact_id: ContactId,
2297 name: String,
2298) -> Result<()> {
2299 if let Some(ChatIdBlocked { id: chat_id, .. }) =
2300 ChatIdBlocked::lookup_by_contact(context, contact_id).await?
2301 {
2302 context
2304 .sql
2305 .execute(
2306 "UPDATE chats SET name=?, name_normalized=? WHERE id=? AND name!=?",
2307 (&name, normalize_text(&name), chat_id, &name),
2308 )
2309 .await?;
2310 }
2311 Ok(())
2312}
2313
2314pub(crate) async fn update_special_chat_names(context: &Context) -> Result<()> {
2315 update_special_chat_name(
2316 context,
2317 ContactId::DEVICE,
2318 stock_str::device_messages(context),
2319 )
2320 .await?;
2321 update_special_chat_name(context, ContactId::SELF, stock_str::saved_messages(context)).await?;
2322 Ok(())
2323}
2324
2325#[derive(Debug)]
2333pub(crate) struct ChatIdBlocked {
2334 pub id: ChatId,
2336
2337 pub blocked: Blocked,
2339}
2340
2341impl ChatIdBlocked {
2342 pub async fn lookup_by_contact(
2346 context: &Context,
2347 contact_id: ContactId,
2348 ) -> Result<Option<Self>> {
2349 ensure!(context.sql.is_open().await, "Database not available");
2350 ensure!(
2351 contact_id != ContactId::UNDEFINED,
2352 "Invalid contact id requested"
2353 );
2354
2355 context
2356 .sql
2357 .query_row_optional(
2358 "SELECT c.id, c.blocked
2359 FROM chats c
2360 INNER JOIN chats_contacts j
2361 ON c.id=j.chat_id
2362 WHERE c.type=100 -- 100 = Chattype::Single
2363 AND c.id>9 -- 9 = DC_CHAT_ID_LAST_SPECIAL
2364 AND j.contact_id=?;",
2365 (contact_id,),
2366 |row| {
2367 let id: ChatId = row.get(0)?;
2368 let blocked: Blocked = row.get(1)?;
2369 Ok(ChatIdBlocked { id, blocked })
2370 },
2371 )
2372 .await
2373 }
2374
2375 pub async fn get_for_contact(
2380 context: &Context,
2381 contact_id: ContactId,
2382 create_blocked: Blocked,
2383 ) -> Result<Self> {
2384 ensure!(context.sql.is_open().await, "Database not available");
2385 ensure!(
2386 contact_id != ContactId::UNDEFINED,
2387 "Invalid contact id requested"
2388 );
2389
2390 if let Some(res) = Self::lookup_by_contact(context, contact_id).await? {
2391 return Ok(res);
2393 }
2394
2395 let contact = Contact::get_by_id(context, contact_id).await?;
2396 let chat_name = contact.get_display_name().to_string();
2397 let mut params = Params::new();
2398 match contact_id {
2399 ContactId::SELF => {
2400 params.set_int(Param::Selftalk, 1);
2401 }
2402 ContactId::DEVICE => {
2403 params.set_int(Param::Devicetalk, 1);
2404 }
2405 _ => (),
2406 }
2407
2408 let smeared_time = create_smeared_timestamp(context);
2409
2410 let chat_id = context
2411 .sql
2412 .transaction(move |transaction| {
2413 transaction.execute(
2414 "INSERT INTO chats
2415 (type, name, name_normalized, param, blocked, created_timestamp)
2416 VALUES(?, ?, ?, ?, ?, ?)",
2417 (
2418 Chattype::Single,
2419 &chat_name,
2420 normalize_text(&chat_name),
2421 params.to_string(),
2422 create_blocked as u8,
2423 smeared_time,
2424 ),
2425 )?;
2426 let chat_id = ChatId::new(
2427 transaction
2428 .last_insert_rowid()
2429 .try_into()
2430 .context("chat table rowid overflows u32")?,
2431 );
2432
2433 transaction.execute(
2434 "INSERT INTO chats_contacts
2435 (chat_id, contact_id)
2436 VALUES((SELECT last_insert_rowid()), ?)",
2437 (contact_id,),
2438 )?;
2439
2440 Ok(chat_id)
2441 })
2442 .await?;
2443
2444 let chat = Chat::load_from_db(context, chat_id).await?;
2445 if chat.is_encrypted(context).await?
2446 && !chat.param.exists(Param::Devicetalk)
2447 && !chat.param.exists(Param::Selftalk)
2448 {
2449 chat_id.add_e2ee_notice(context, smeared_time).await?;
2450 }
2451
2452 Ok(Self {
2453 id: chat_id,
2454 blocked: create_blocked,
2455 })
2456 }
2457}
2458
2459async fn prepare_msg_blob(context: &Context, msg: &mut Message) -> Result<()> {
2460 if msg.viewtype == Viewtype::Text || msg.viewtype == Viewtype::Call {
2461 } else if msg.viewtype.has_file() {
2463 let viewtype_orig = msg.viewtype;
2464 let mut blob = msg
2465 .param
2466 .get_file_blob(context)?
2467 .with_context(|| format!("attachment missing for message of type #{}", msg.viewtype))?;
2468 let mut maybe_image = false;
2469
2470 if msg.viewtype == Viewtype::File || msg.viewtype == Viewtype::Image {
2471 if let Some((better_type, _)) = message::guess_msgtype_from_suffix(msg) {
2478 if better_type == Viewtype::Image {
2479 maybe_image = true;
2480 } else if better_type != Viewtype::Webxdc
2481 || context
2482 .ensure_sendable_webxdc_file(&blob.to_abs_path())
2483 .await
2484 .is_ok()
2485 {
2486 msg.viewtype = better_type;
2487 }
2488 }
2489 } else if msg.viewtype == Viewtype::Webxdc {
2490 context
2491 .ensure_sendable_webxdc_file(&blob.to_abs_path())
2492 .await?;
2493 }
2494
2495 if msg.viewtype == Viewtype::Vcard {
2496 msg.try_set_vcard(context, &blob.to_abs_path()).await?;
2497 }
2498 if msg.viewtype == Viewtype::File && maybe_image || msg.viewtype == Viewtype::Image {
2499 let new_name = blob
2500 .check_or_recode_image(context, msg.get_filename(), &mut msg.viewtype)
2501 .await?;
2502 msg.param.set(Param::Filename, new_name);
2503 msg.param.set(Param::File, blob.as_name());
2504 }
2505
2506 if !msg.param.exists(Param::MimeType)
2507 && let Some((viewtype, mime)) = message::guess_msgtype_from_suffix(msg)
2508 {
2509 let mime = match viewtype != Viewtype::Image
2512 || matches!(msg.viewtype, Viewtype::Image | Viewtype::Sticker)
2513 {
2514 true => mime,
2515 false => "application/octet-stream",
2516 };
2517 msg.param.set(Param::MimeType, mime);
2518 }
2519
2520 msg.try_calc_and_set_dimensions(context).await?;
2521
2522 let filename = msg.get_filename().context("msg has no file")?;
2523 let suffix = Path::new(&filename)
2524 .extension()
2525 .and_then(|e| e.to_str())
2526 .unwrap_or("dat");
2527 let filename: String = match viewtype_orig {
2531 Viewtype::Voice => format!(
2532 "voice-messsage_{}.{}",
2533 chrono::Utc
2534 .timestamp_opt(msg.timestamp_sort, 0)
2535 .single()
2536 .map_or_else(
2537 || "YY-mm-dd_hh:mm:ss".to_string(),
2538 |ts| ts.format("%Y-%m-%d_%H-%M-%S").to_string()
2539 ),
2540 &suffix
2541 ),
2542 Viewtype::Image | Viewtype::Gif => format!(
2543 "image_{}.{}",
2544 chrono::Utc
2545 .timestamp_opt(msg.timestamp_sort, 0)
2546 .single()
2547 .map_or_else(
2548 || "YY-mm-dd_hh:mm:ss".to_string(),
2549 |ts| ts.format("%Y-%m-%d_%H-%M-%S").to_string(),
2550 ),
2551 &suffix,
2552 ),
2553 Viewtype::Video => format!(
2554 "video_{}.{}",
2555 chrono::Utc
2556 .timestamp_opt(msg.timestamp_sort, 0)
2557 .single()
2558 .map_or_else(
2559 || "YY-mm-dd_hh:mm:ss".to_string(),
2560 |ts| ts.format("%Y-%m-%d_%H-%M-%S").to_string()
2561 ),
2562 &suffix
2563 ),
2564 _ => filename,
2565 };
2566 msg.param.set(Param::Filename, filename);
2567
2568 info!(
2569 context,
2570 "Attaching \"{}\" for message type #{}.",
2571 blob.to_abs_path().display(),
2572 msg.viewtype
2573 );
2574 } else {
2575 bail!("Cannot send messages of type #{}.", msg.viewtype);
2576 }
2577 Ok(())
2578}
2579
2580pub async fn is_contact_in_chat(
2582 context: &Context,
2583 chat_id: ChatId,
2584 contact_id: ContactId,
2585) -> Result<bool> {
2586 let exists = context
2593 .sql
2594 .exists(
2595 "SELECT COUNT(*) FROM chats_contacts
2596 WHERE chat_id=? AND contact_id=?
2597 AND add_timestamp >= remove_timestamp",
2598 (chat_id, contact_id),
2599 )
2600 .await?;
2601 Ok(exists)
2602}
2603
2604pub async fn send_msg(context: &Context, chat_id: ChatId, msg: &mut Message) -> Result<MsgId> {
2611 ensure!(
2612 !chat_id.is_special(),
2613 "chat_id cannot be a special chat: {chat_id}"
2614 );
2615
2616 if msg.state != MessageState::Undefined {
2617 msg.param.remove(Param::GuaranteeE2ee);
2618 msg.param.remove(Param::ForcePlaintext);
2619 }
2621
2622 if msg.is_system_message() {
2624 msg.text = sanitize_bidi_characters(&msg.text);
2625 }
2626
2627 if !prepare_send_msg(context, chat_id, msg).await?.is_empty() {
2628 if !msg.hidden {
2629 context.emit_msgs_changed(msg.chat_id, msg.id);
2630 }
2631
2632 if msg.param.exists(Param::SetLatitude) {
2633 context.emit_location_changed(Some(ContactId::SELF)).await?;
2634 }
2635
2636 context.scheduler.interrupt_smtp().await;
2637 }
2638
2639 Ok(msg.id)
2640}
2641
2642pub async fn send_msg_sync(context: &Context, chat_id: ChatId, msg: &mut Message) -> Result<MsgId> {
2647 let rowids = prepare_send_msg(context, chat_id, msg).await?;
2648 if rowids.is_empty() {
2649 return Ok(msg.id);
2650 }
2651 let mut smtp = crate::smtp::Smtp::new();
2652 for rowid in rowids {
2653 send_msg_to_smtp(context, &mut smtp, rowid)
2654 .await
2655 .context("failed to send message, queued for later sending")?;
2656 }
2657 context.emit_msgs_changed(msg.chat_id, msg.id);
2658 Ok(msg.id)
2659}
2660
2661async fn prepare_send_msg(
2665 context: &Context,
2666 chat_id: ChatId,
2667 msg: &mut Message,
2668) -> Result<Vec<i64>> {
2669 let mut chat = Chat::load_from_db(context, chat_id).await?;
2670
2671 let skip_fn = |reason: &CantSendReason| match reason {
2672 CantSendReason::ContactRequest => {
2673 msg.param.get_cmd() == SystemMessage::SecurejoinMessage
2676 }
2677 CantSendReason::NotAMember => msg.param.get_cmd() == SystemMessage::MemberRemovedFromGroup,
2681 CantSendReason::InBroadcast => {
2682 matches!(
2683 msg.param.get_cmd(),
2684 SystemMessage::MemberRemovedFromGroup | SystemMessage::SecurejoinMessage
2685 )
2686 }
2687 CantSendReason::MissingKey => msg
2688 .param
2689 .get_bool(Param::ForcePlaintext)
2690 .unwrap_or_default(),
2691 _ => false,
2692 };
2693 if let Some(reason) = chat.why_cant_send_ex(context, &skip_fn).await? {
2694 bail!("Cannot send to {chat_id}: {reason}");
2695 }
2696
2697 if chat.typ != Chattype::Single
2702 && !context.get_config_bool(Config::Bot).await?
2703 && let Some(quoted_message) = msg.quoted_message(context).await?
2704 && quoted_message.chat_id != chat_id
2705 {
2706 bail!(
2707 "Quote of message from {} cannot be sent to {chat_id}",
2708 quoted_message.chat_id
2709 );
2710 }
2711
2712 let update_msg_id = if msg.state == MessageState::OutDraft {
2714 msg.hidden = false;
2715 if !msg.id.is_special() && msg.chat_id == chat_id {
2716 Some(msg.id)
2717 } else {
2718 None
2719 }
2720 } else {
2721 None
2722 };
2723
2724 if msg.state == MessageState::Undefined
2725 && msg.param.get_cmd() != SystemMessage::SecurejoinMessage
2727 && chat.is_encrypted(context).await?
2728 {
2729 msg.param.set_int(Param::GuaranteeE2ee, 1);
2730 if !msg.id.is_unset() {
2731 msg.update_param(context).await?;
2732 }
2733 }
2734 msg.state = MessageState::OutPending;
2735
2736 msg.timestamp_sort = create_smeared_timestamp(context);
2737 prepare_msg_blob(context, msg).await?;
2738 if !msg.hidden {
2739 chat_id.unarchive_if_not_muted(context, msg.state).await?;
2740 }
2741 chat.prepare_msg_raw(context, msg, update_msg_id).await?;
2742
2743 let row_ids = create_send_msg_jobs(context, msg)
2744 .await
2745 .context("Failed to create send jobs")?;
2746 if !row_ids.is_empty() {
2747 donation_request_maybe(context).await.log_err(context).ok();
2748 }
2749 Ok(row_ids)
2750}
2751
2752async fn render_mime_message_and_pre_message(
2759 context: &Context,
2760 msg: &mut Message,
2761 mimefactory: MimeFactory,
2762) -> Result<(Option<RenderedEmail>, RenderedEmail)> {
2763 let needs_pre_message = msg.viewtype.has_file()
2764 && mimefactory.will_be_encrypted() && msg
2766 .get_filebytes(context)
2767 .await?
2768 .context("filebytes not available, even though message has attachment")?
2769 > PRE_MSG_ATTACHMENT_SIZE_THRESHOLD;
2770
2771 if needs_pre_message {
2772 info!(
2773 context,
2774 "Message {} is large and will be split into pre- and post-messages.", msg.id,
2775 );
2776
2777 let mut mimefactory_post_msg = mimefactory.clone();
2778 mimefactory_post_msg.set_as_post_message();
2779 let rendered_msg = Box::pin(mimefactory_post_msg.render(context))
2780 .await
2781 .context("Failed to render post-message")?;
2782
2783 let mut mimefactory_pre_msg = mimefactory;
2784 mimefactory_pre_msg.set_as_pre_message_for(&rendered_msg);
2785 let rendered_pre_msg = Box::pin(mimefactory_pre_msg.render(context))
2786 .await
2787 .context("pre-message failed to render")?;
2788
2789 if rendered_pre_msg.message.len() > PRE_MSG_SIZE_WARNING_THRESHOLD {
2790 warn!(
2791 context,
2792 "Pre-message for message {} is larger than expected: {}.",
2793 msg.id,
2794 rendered_pre_msg.message.len()
2795 );
2796 }
2797
2798 Ok((Some(rendered_pre_msg), rendered_msg))
2799 } else {
2800 Ok((None, Box::pin(mimefactory.render(context)).await?))
2801 }
2802}
2803
2804pub(crate) async fn create_send_msg_jobs(context: &Context, msg: &mut Message) -> Result<Vec<i64>> {
2814 let cmd = msg.param.get_cmd();
2815 if cmd == SystemMessage::GroupNameChanged || cmd == SystemMessage::GroupDescriptionChanged {
2816 msg.chat_id
2817 .update_timestamp(
2818 context,
2819 if cmd == SystemMessage::GroupNameChanged {
2820 Param::GroupNameTimestamp
2821 } else {
2822 Param::GroupDescriptionTimestamp
2823 },
2824 msg.timestamp_sort,
2825 )
2826 .await?;
2827 }
2828
2829 let needs_encryption = msg.param.get_bool(Param::GuaranteeE2ee).unwrap_or_default();
2830 let mimefactory = match MimeFactory::from_msg(context, msg.clone()).await {
2831 Ok(mf) => mf,
2832 Err(err) => {
2833 message::set_msg_failed(context, msg, &err.to_string())
2835 .await
2836 .ok();
2837 return Err(err);
2838 }
2839 };
2840 let attach_selfavatar = mimefactory.attach_selfavatar;
2841 let mut recipients = mimefactory.recipients();
2842
2843 let from = context.get_primary_self_addr().await?;
2844 let lowercase_from = from.to_lowercase();
2845
2846 recipients.retain(|x| x.to_lowercase() != lowercase_from);
2847
2848 if (msg.param.get_int(Param::WebxdcIntegration).is_some() && msg.hidden)
2850 || (!context.get_config_bool(Config::BccSelf).await? && recipients.is_empty())
2852 {
2853 info!(
2854 context,
2855 "Message {} has no recipient, skipping smtp-send.", msg.id
2856 );
2857 msg.param.set_int(Param::GuaranteeE2ee, 1);
2858 msg.update_param(context).await?;
2859 msg.id.set_delivered(context).await?;
2860 msg.state = MessageState::OutDelivered;
2861 return Ok(Vec::new());
2862 }
2863
2864 let (rendered_pre_msg, rendered_msg) =
2865 match render_mime_message_and_pre_message(context, msg, mimefactory).await {
2866 Ok(res) => Ok(res),
2867 Err(err) => {
2868 message::set_msg_failed(context, msg, &err.to_string()).await?;
2869 Err(err)
2870 }
2871 }?;
2872
2873 if let (post_msg, Some(pre_msg)) = (&rendered_msg, &rendered_pre_msg) {
2874 info!(
2875 context,
2876 "Message {} sizes: pre-message: {}; post-message: {}.",
2877 msg.id,
2878 format_size(pre_msg.message.len(), BINARY),
2879 format_size(post_msg.message.len(), BINARY),
2880 );
2881 msg.pre_rfc724_mid = pre_msg.rfc724_mid.clone();
2882 } else {
2883 info!(
2884 context,
2885 "Message {} will be sent in one shot (no pre- and post-message). Size: {}.",
2886 msg.id,
2887 format_size(rendered_msg.message.len(), BINARY),
2888 );
2889 }
2890
2891 if context.get_config_bool(Config::BccSelf).await? {
2892 smtp::add_self_recipients(context, &mut recipients, rendered_msg.is_encrypted).await?;
2893 }
2894
2895 if needs_encryption && !rendered_msg.is_encrypted {
2896 message::set_msg_failed(
2898 context,
2899 msg,
2900 "End-to-end-encryption unavailable unexpectedly.",
2901 )
2902 .await?;
2903 bail!(
2904 "e2e encryption unavailable {} - {:?}",
2905 msg.id,
2906 needs_encryption
2907 );
2908 }
2909
2910 let now = smeared_time(context);
2911
2912 if rendered_msg.last_added_location_id.is_some()
2913 && let Err(err) = location::set_kml_sent_timestamp(context, msg.chat_id, now).await
2914 {
2915 error!(context, "Failed to set kml sent_timestamp: {err:#}.");
2916 }
2917
2918 if attach_selfavatar && let Err(err) = msg.chat_id.set_selfavatar_timestamp(context, now).await
2919 {
2920 error!(context, "Failed to set selfavatar timestamp: {err:#}.");
2921 }
2922
2923 if rendered_msg.is_encrypted {
2924 msg.param.set_int(Param::GuaranteeE2ee, 1);
2925 } else {
2926 msg.param.remove(Param::GuaranteeE2ee);
2927 }
2928 msg.subject.clone_from(&rendered_msg.subject);
2929 context
2931 .sql
2932 .execute(
2933 "
2934UPDATE msgs SET
2935 timestamp=(
2936 SELECT MAX(timestamp) FROM msgs INDEXED BY msgs_index7 WHERE
2937 -- From `InFresh` to `OutDelivered` inclusive, except `OutDraft`.
2938 state IN(10,13,16,18,20,24,26) AND
2939 hidden IN(0,1) AND
2940 chat_id=? AND
2941 id<=?
2942 ),
2943 pre_rfc724_mid=?, subject=?, param=?
2944WHERE id=?
2945 ",
2946 (
2947 msg.chat_id,
2948 msg.id,
2949 &msg.pre_rfc724_mid,
2950 &msg.subject,
2951 msg.param.to_string(),
2952 msg.id,
2953 ),
2954 )
2955 .await?;
2956
2957 let chunk_size = context.get_max_smtp_rcpt_to().await?;
2958 let trans_fn = |t: &mut rusqlite::Transaction| {
2959 let mut row_ids = Vec::<i64>::new();
2960
2961 if let Some(sync_ids) = rendered_msg.sync_ids_to_delete {
2962 t.execute(
2963 &format!("DELETE FROM multi_device_sync WHERE id IN ({sync_ids})"),
2964 (),
2965 )?;
2966 }
2967 let mut stmt = t.prepare(
2968 "INSERT INTO smtp (rfc724_mid, recipients, mime, msg_id)
2969 VALUES (?1, ?2, ?3, ?4)",
2970 )?;
2971 for recipients_chunk in recipients.chunks(chunk_size) {
2972 let recipients_chunk = recipients_chunk.join(" ");
2973 if let Some(pre_msg) = &rendered_pre_msg {
2974 let row_id = stmt.execute((
2975 &pre_msg.rfc724_mid,
2976 &recipients_chunk,
2977 &pre_msg.message,
2978 msg.id,
2979 ))?;
2980 row_ids.push(row_id.try_into()?);
2981 }
2982 let row_id = stmt.execute((
2983 &rendered_msg.rfc724_mid,
2984 &recipients_chunk,
2985 &rendered_msg.message,
2986 msg.id,
2987 ))?;
2988 row_ids.push(row_id.try_into()?);
2989 }
2990 Ok(row_ids)
2991 };
2992 context.sql.transaction(trans_fn).await
2993}
2994
2995pub async fn send_text_msg(
2999 context: &Context,
3000 chat_id: ChatId,
3001 text_to_send: String,
3002) -> Result<MsgId> {
3003 ensure!(
3004 !chat_id.is_special(),
3005 "bad chat_id, can not be a special chat: {chat_id}"
3006 );
3007
3008 let mut msg = Message::new_text(text_to_send);
3009 send_msg(context, chat_id, &mut msg).await
3010}
3011
3012pub async fn send_edit_request(context: &Context, msg_id: MsgId, new_text: String) -> Result<()> {
3014 let mut original_msg = Message::load_from_db(context, msg_id).await?;
3015 ensure!(
3016 original_msg.from_id == ContactId::SELF,
3017 "Can edit only own messages"
3018 );
3019 ensure!(!original_msg.is_info(), "Cannot edit info messages");
3020 ensure!(!original_msg.has_html(), "Cannot edit HTML messages");
3021 ensure!(original_msg.viewtype != Viewtype::Call, "Cannot edit calls");
3022 ensure!(
3023 !original_msg.text.is_empty(), "Cannot add text"
3025 );
3026 ensure!(!new_text.trim().is_empty(), "Edited text cannot be empty");
3027 if original_msg.text == new_text {
3028 info!(context, "Text unchanged.");
3029 return Ok(());
3030 }
3031
3032 save_text_edit_to_db(context, &mut original_msg, &new_text).await?;
3033
3034 let mut edit_msg = Message::new_text(EDITED_PREFIX.to_owned() + &new_text); edit_msg.set_quote(context, Some(&original_msg)).await?; if original_msg.get_showpadlock() {
3037 edit_msg.param.set_int(Param::GuaranteeE2ee, 1);
3038 }
3039 edit_msg
3040 .param
3041 .set(Param::TextEditFor, original_msg.rfc724_mid);
3042 edit_msg.hidden = true;
3043 send_msg(context, original_msg.chat_id, &mut edit_msg).await?;
3044 Ok(())
3045}
3046
3047pub(crate) async fn save_text_edit_to_db(
3048 context: &Context,
3049 original_msg: &mut Message,
3050 new_text: &str,
3051) -> Result<()> {
3052 original_msg.param.set_int(Param::IsEdited, 1);
3053 context
3054 .sql
3055 .execute(
3056 "UPDATE msgs SET txt=?, txt_normalized=?, param=? WHERE id=?",
3057 (
3058 new_text,
3059 normalize_text(new_text),
3060 original_msg.param.to_string(),
3061 original_msg.id,
3062 ),
3063 )
3064 .await?;
3065 context.emit_msgs_changed(original_msg.chat_id, original_msg.id);
3066 Ok(())
3067}
3068
3069async fn donation_request_maybe(context: &Context) -> Result<()> {
3070 let secs_between_checks = 30 * 24 * 60 * 60;
3071 let now = time();
3072 let ts = context
3073 .get_config_i64(Config::DonationRequestNextCheck)
3074 .await?;
3075 if ts > now {
3076 return Ok(());
3077 }
3078 let msg_cnt = context.sql.count(
3079 "SELECT COUNT(*) FROM msgs WHERE state>=? AND hidden=0",
3080 (MessageState::OutDelivered,),
3081 );
3082 let ts = if ts == 0 || msg_cnt.await? < 100 {
3083 now.saturating_add(secs_between_checks)
3084 } else {
3085 let mut msg = Message::new_text(stock_str::donation_request(context));
3086 add_device_msg(context, None, Some(&mut msg)).await?;
3087 i64::MAX
3088 };
3089 context
3090 .set_config_internal(Config::DonationRequestNextCheck, Some(&ts.to_string()))
3091 .await
3092}
3093
3094#[derive(Debug)]
3096pub struct MessageListOptions {
3097 pub add_daymarker: bool,
3099}
3100
3101pub async fn get_chat_msgs(context: &Context, chat_id: ChatId) -> Result<Vec<ChatItem>> {
3103 get_chat_msgs_ex(
3104 context,
3105 chat_id,
3106 MessageListOptions {
3107 add_daymarker: false,
3108 },
3109 )
3110 .await
3111}
3112
3113#[expect(clippy::arithmetic_side_effects)]
3116pub async fn get_chat_msgs_ex(
3117 context: &Context,
3118 chat_id: ChatId,
3119 options: MessageListOptions,
3120) -> Result<Vec<ChatItem>> {
3121 let MessageListOptions { add_daymarker } = options;
3122 let process_row = |row: &rusqlite::Row| {
3123 Ok((
3124 row.get::<_, i64>("timestamp")?,
3125 row.get::<_, MsgId>("id")?,
3126 false,
3127 ))
3128 };
3129 let process_rows = |rows: rusqlite::AndThenRows<_>| {
3130 let mut sorted_rows = Vec::new();
3133 for row in rows {
3134 let (ts, curr_id, exclude_message): (i64, MsgId, bool) = row?;
3135 if !exclude_message {
3136 sorted_rows.push((ts, curr_id));
3137 }
3138 }
3139 sorted_rows.sort_unstable();
3140
3141 let mut ret = Vec::new();
3142 let mut last_day = 0;
3143 let cnv_to_local = gm2local_offset();
3144
3145 for (ts, curr_id) in sorted_rows {
3146 if add_daymarker {
3147 let curr_local_timestamp = ts + cnv_to_local;
3148 let secs_in_day = 86400;
3149 let curr_day = curr_local_timestamp / secs_in_day;
3150 if curr_day != last_day {
3151 ret.push(ChatItem::DayMarker {
3152 timestamp: curr_day * secs_in_day - cnv_to_local,
3153 });
3154 last_day = curr_day;
3155 }
3156 }
3157 ret.push(ChatItem::Message { msg_id: curr_id });
3158 }
3159 Ok(ret)
3160 };
3161
3162 let items = context
3163 .sql
3164 .query_map(
3165 "SELECT m.id AS id, m.timestamp AS timestamp
3166 FROM msgs m
3167 WHERE m.chat_id=?
3168 AND m.hidden=0;",
3169 (chat_id,),
3170 process_row,
3171 process_rows,
3172 )
3173 .await?;
3174 Ok(items)
3175}
3176
3177pub async fn marknoticed_all_chats(context: &Context) -> Result<()> {
3180 let list = context
3182 .sql
3183 .query_map_vec(
3184 "SELECT DISTINCT(c.id)
3185 FROM msgs m
3186 INNER JOIN chats c
3187 ON m.chat_id=c.id
3188 WHERE m.state=?
3189 AND m.hidden=0
3190 AND m.chat_id>9
3191 AND c.blocked=0;",
3192 (MessageState::InFresh,),
3193 |row| {
3194 let msg_id: ChatId = row.get(0)?;
3195 Ok(msg_id)
3196 },
3197 )
3198 .await?;
3199
3200 for chat_id in list {
3201 marknoticed_chat(context, chat_id).await?;
3202 }
3203
3204 Ok(())
3205}
3206
3207pub async fn marknoticed_chat(context: &Context, chat_id: ChatId) -> Result<()> {
3210 if chat_id.is_archived_link() {
3213 let chat_ids_in_archive = context
3214 .sql
3215 .query_map_vec(
3216 "SELECT DISTINCT(m.chat_id) FROM msgs m
3217 LEFT JOIN chats c ON m.chat_id=c.id
3218 WHERE m.state=10 AND m.hidden=0 AND m.chat_id>9 AND c.archived=1",
3219 (),
3220 |row| {
3221 let chat_id: ChatId = row.get(0)?;
3222 Ok(chat_id)
3223 },
3224 )
3225 .await?;
3226 if chat_ids_in_archive.is_empty() {
3227 return Ok(());
3228 }
3229
3230 context
3231 .sql
3232 .transaction(|transaction| {
3233 let mut stmt = transaction.prepare(
3234 "UPDATE msgs SET state=13 WHERE state=10 AND hidden=0 AND chat_id = ?",
3235 )?;
3236 for chat_id_in_archive in &chat_ids_in_archive {
3237 stmt.execute((chat_id_in_archive,))?;
3238 }
3239 Ok(())
3240 })
3241 .await?;
3242
3243 for chat_id_in_archive in chat_ids_in_archive {
3244 start_chat_ephemeral_timers(context, chat_id_in_archive).await?;
3245 context.emit_event(EventType::MsgsNoticed(chat_id_in_archive));
3246 chatlist_events::emit_chatlist_item_changed(context, chat_id_in_archive);
3247 }
3248 } else {
3249 start_chat_ephemeral_timers(context, chat_id).await?;
3250
3251 let noticed_msgs_count = context
3252 .sql
3253 .execute(
3254 "UPDATE msgs
3255 SET state=?
3256 WHERE state=?
3257 AND hidden=0
3258 AND chat_id=?;",
3259 (MessageState::InNoticed, MessageState::InFresh, chat_id),
3260 )
3261 .await?;
3262
3263 let hidden_messages = context
3266 .sql
3267 .query_map_vec(
3268 "SELECT id FROM msgs
3269 WHERE state=?
3270 AND hidden=1
3271 AND chat_id=?
3272 ORDER BY id LIMIT 100", (MessageState::InFresh, chat_id), |row| {
3275 let msg_id: MsgId = row.get(0)?;
3276 Ok(msg_id)
3277 },
3278 )
3279 .await?;
3280 message::markseen_msgs(context, hidden_messages).await?;
3281 if noticed_msgs_count == 0 {
3282 return Ok(());
3283 }
3284 }
3285
3286 context.emit_event(EventType::MsgsNoticed(chat_id));
3287 chatlist_events::emit_chatlist_item_changed(context, chat_id);
3288 context.on_archived_chats_maybe_noticed();
3289 Ok(())
3290}
3291
3292pub(crate) async fn mark_old_messages_as_noticed(
3299 context: &Context,
3300 mut msgs: Vec<ReceivedMsg>,
3301) -> Result<()> {
3302 if context.get_config_bool(Config::TeamProfile).await? {
3303 return Ok(());
3304 }
3305
3306 msgs.retain(|m| m.state.is_outgoing());
3307 if msgs.is_empty() {
3308 return Ok(());
3309 }
3310
3311 let mut msgs_by_chat: HashMap<ChatId, ReceivedMsg> = HashMap::new();
3312 for msg in msgs {
3313 let chat_id = msg.chat_id;
3314 if let Some(existing_msg) = msgs_by_chat.get(&chat_id) {
3315 if msg.sort_timestamp > existing_msg.sort_timestamp {
3316 msgs_by_chat.insert(chat_id, msg);
3317 }
3318 } else {
3319 msgs_by_chat.insert(chat_id, msg);
3320 }
3321 }
3322
3323 let changed_chats = context
3324 .sql
3325 .transaction(|transaction| {
3326 let mut changed_chats = Vec::new();
3327 for (_, msg) in msgs_by_chat {
3328 let changed_rows = transaction.execute(
3329 "UPDATE msgs
3330 SET state=?
3331 WHERE state=?
3332 AND hidden=0
3333 AND chat_id=?
3334 AND timestamp<=?;",
3335 (
3336 MessageState::InNoticed,
3337 MessageState::InFresh,
3338 msg.chat_id,
3339 msg.sort_timestamp,
3340 ),
3341 )?;
3342 if changed_rows > 0 {
3343 changed_chats.push(msg.chat_id);
3344 }
3345 }
3346 Ok(changed_chats)
3347 })
3348 .await?;
3349
3350 if !changed_chats.is_empty() {
3351 info!(
3352 context,
3353 "Marking chats as noticed because there are newer outgoing messages: {changed_chats:?}."
3354 );
3355 context.on_archived_chats_maybe_noticed();
3356 }
3357
3358 for c in changed_chats {
3359 start_chat_ephemeral_timers(context, c).await?;
3360 context.emit_event(EventType::MsgsNoticed(c));
3361 chatlist_events::emit_chatlist_item_changed(context, c);
3362 }
3363
3364 Ok(())
3365}
3366
3367pub async fn markfresh_chat(context: &Context, chat_id: ChatId) -> Result<()> {
3369 let affected_rows = context
3370 .sql
3371 .execute(
3372 "UPDATE msgs
3373 SET state=?1
3374 WHERE id=(SELECT id
3375 FROM msgs
3376 WHERE state IN (?1, ?2, ?3) AND hidden=0 AND chat_id=?4
3377 ORDER BY timestamp DESC, id DESC
3378 LIMIT 1)
3379 AND state!=?1",
3380 (
3381 MessageState::InFresh,
3382 MessageState::InNoticed,
3383 MessageState::InSeen,
3384 chat_id,
3385 ),
3386 )
3387 .await?;
3388
3389 if affected_rows == 0 {
3390 return Ok(());
3391 }
3392
3393 context.emit_msgs_changed_without_msg_id(chat_id);
3394 chatlist_events::emit_chatlist_item_changed(context, chat_id);
3395
3396 Ok(())
3397}
3398
3399pub async fn get_chat_media(
3406 context: &Context,
3407 chat_id: Option<ChatId>,
3408 msg_type: Viewtype,
3409 msg_type2: Viewtype,
3410 msg_type3: Viewtype,
3411) -> Result<Vec<MsgId>> {
3412 let list = if msg_type == Viewtype::Webxdc
3413 && msg_type2 == Viewtype::Unknown
3414 && msg_type3 == Viewtype::Unknown
3415 {
3416 context
3417 .sql
3418 .query_map_vec(
3419 "SELECT id
3420 FROM msgs
3421 WHERE (1=? OR chat_id=?)
3422 AND chat_id != ?
3423 AND type = ?
3424 AND hidden=0
3425 ORDER BY max(timestamp, timestamp_rcvd), id;",
3426 (
3427 chat_id.is_none(),
3428 chat_id.unwrap_or_else(|| ChatId::new(0)),
3429 DC_CHAT_ID_TRASH,
3430 Viewtype::Webxdc,
3431 ),
3432 |row| {
3433 let msg_id: MsgId = row.get(0)?;
3434 Ok(msg_id)
3435 },
3436 )
3437 .await?
3438 } else {
3439 context
3440 .sql
3441 .query_map_vec(
3442 "SELECT id
3443 FROM msgs
3444 WHERE (1=? OR chat_id=?)
3445 AND chat_id != ?
3446 AND type IN (?, ?, ?)
3447 AND hidden=0
3448 ORDER BY timestamp, id;",
3449 (
3450 chat_id.is_none(),
3451 chat_id.unwrap_or_else(|| ChatId::new(0)),
3452 DC_CHAT_ID_TRASH,
3453 msg_type,
3454 if msg_type2 != Viewtype::Unknown {
3455 msg_type2
3456 } else {
3457 msg_type
3458 },
3459 if msg_type3 != Viewtype::Unknown {
3460 msg_type3
3461 } else {
3462 msg_type
3463 },
3464 ),
3465 |row| {
3466 let msg_id: MsgId = row.get(0)?;
3467 Ok(msg_id)
3468 },
3469 )
3470 .await?
3471 };
3472 Ok(list)
3473}
3474
3475pub async fn get_chat_contacts(context: &Context, chat_id: ChatId) -> Result<Vec<ContactId>> {
3477 context
3480 .sql
3481 .query_map_vec(
3482 "SELECT cc.contact_id
3483 FROM chats_contacts cc
3484 LEFT JOIN contacts c
3485 ON c.id=cc.contact_id
3486 WHERE cc.chat_id=? AND cc.add_timestamp >= cc.remove_timestamp
3487 ORDER BY c.id=1, c.last_seen DESC, c.id DESC;",
3488 (chat_id,),
3489 |row| {
3490 let contact_id: ContactId = row.get(0)?;
3491 Ok(contact_id)
3492 },
3493 )
3494 .await
3495}
3496
3497pub async fn get_past_chat_contacts(context: &Context, chat_id: ChatId) -> Result<Vec<ContactId>> {
3501 let now = time();
3502 context
3503 .sql
3504 .query_map_vec(
3505 "SELECT cc.contact_id
3506 FROM chats_contacts cc
3507 LEFT JOIN contacts c
3508 ON c.id=cc.contact_id
3509 WHERE cc.chat_id=?
3510 AND cc.add_timestamp < cc.remove_timestamp
3511 AND ? < cc.remove_timestamp
3512 ORDER BY c.id=1, cc.remove_timestamp DESC, c.id DESC",
3513 (chat_id, now.saturating_sub(60 * 24 * 3600)),
3514 |row| {
3515 let contact_id: ContactId = row.get(0)?;
3516 Ok(contact_id)
3517 },
3518 )
3519 .await
3520}
3521
3522pub async fn create_group(context: &Context, name: &str) -> Result<ChatId> {
3524 create_group_ex(context, Sync, create_id(), name).await
3525}
3526
3527pub async fn create_group_unencrypted(context: &Context, name: &str) -> Result<ChatId> {
3529 create_group_ex(context, Sync, String::new(), name).await
3530}
3531
3532pub(crate) async fn create_group_ex(
3539 context: &Context,
3540 sync: sync::Sync,
3541 grpid: String,
3542 name: &str,
3543) -> Result<ChatId> {
3544 let mut chat_name = sanitize_single_line(name);
3545 if chat_name.is_empty() {
3546 error!(context, "Invalid chat name: {name}.");
3549 chat_name = "…".to_string();
3550 }
3551
3552 let timestamp = create_smeared_timestamp(context);
3553 let row_id = context
3554 .sql
3555 .insert(
3556 "INSERT INTO chats
3557 (type, name, name_normalized, grpid, param, created_timestamp)
3558 VALUES(?, ?, ?, ?, \'U=1\', ?)",
3559 (
3560 Chattype::Group,
3561 &chat_name,
3562 normalize_text(&chat_name),
3563 &grpid,
3564 timestamp,
3565 ),
3566 )
3567 .await?;
3568
3569 let chat_id = ChatId::new(u32::try_from(row_id)?);
3570 add_to_chat_contacts_table(context, timestamp, chat_id, &[ContactId::SELF]).await?;
3571
3572 context.emit_msgs_changed_without_ids();
3573 chatlist_events::emit_chatlist_changed(context);
3574 chatlist_events::emit_chatlist_item_changed(context, chat_id);
3575
3576 if !grpid.is_empty() {
3577 chat_id.add_e2ee_notice(context, timestamp).await?;
3579 }
3580
3581 if !context.get_config_bool(Config::Bot).await?
3582 && !context.get_config_bool(Config::SkipStartMessages).await?
3583 {
3584 let text = if !grpid.is_empty() {
3585 stock_str::new_group_send_first_message(context)
3587 } else {
3588 stock_str::chat_unencrypted_explanation(context)
3590 };
3591 chat_id.add_start_info_message(context, &text).await?;
3592 }
3593 if let (true, true) = (sync.into(), !grpid.is_empty()) {
3594 let id = SyncId::Grpid(grpid);
3595 let action = SyncAction::CreateGroupEncrypted(chat_name);
3596 self::sync(context, id, action).await.log_err(context).ok();
3597 }
3598 Ok(chat_id)
3599}
3600
3601pub async fn create_broadcast(context: &Context, chat_name: String) -> Result<ChatId> {
3617 let grpid = create_id();
3618 let secret = create_broadcast_secret();
3619 create_out_broadcast_ex(context, Sync, grpid, chat_name, secret).await
3620}
3621
3622const SQL_INSERT_BROADCAST_SECRET: &str =
3623 "INSERT INTO broadcast_secrets (chat_id, secret) VALUES (?, ?)
3624 ON CONFLICT(chat_id) DO UPDATE SET secret=excluded.secret";
3625
3626pub(crate) async fn create_out_broadcast_ex(
3627 context: &Context,
3628 sync: sync::Sync,
3629 grpid: String,
3630 chat_name: String,
3631 secret: String,
3632) -> Result<ChatId> {
3633 let chat_name = sanitize_single_line(&chat_name);
3634 if chat_name.is_empty() {
3635 bail!("Invalid broadcast channel name: {chat_name}.");
3636 }
3637
3638 let timestamp = create_smeared_timestamp(context);
3639 let trans_fn = |t: &mut rusqlite::Transaction| -> Result<ChatId> {
3640 let cnt: u32 = t.query_row(
3641 "SELECT COUNT(*) FROM chats WHERE grpid=?",
3642 (&grpid,),
3643 |row| row.get(0),
3644 )?;
3645 ensure!(cnt == 0, "{cnt} chats exist with grpid {grpid}");
3646
3647 t.execute(
3648 "INSERT INTO chats
3649 (type, name, name_normalized, grpid, created_timestamp)
3650 VALUES(?, ?, ?, ?, ?)",
3651 (
3652 Chattype::OutBroadcast,
3653 &chat_name,
3654 normalize_text(&chat_name),
3655 &grpid,
3656 timestamp,
3657 ),
3658 )?;
3659 let chat_id = ChatId::new(t.last_insert_rowid().try_into()?);
3660
3661 t.execute(SQL_INSERT_BROADCAST_SECRET, (chat_id, &secret))?;
3662 Ok(chat_id)
3663 };
3664 let chat_id = context.sql.transaction(trans_fn).await?;
3665 chat_id.add_e2ee_notice(context, timestamp).await?;
3666
3667 context.emit_msgs_changed_without_ids();
3668 chatlist_events::emit_chatlist_changed(context);
3669 chatlist_events::emit_chatlist_item_changed(context, chat_id);
3670
3671 if sync.into() {
3672 let id = SyncId::Grpid(grpid);
3673 let action = SyncAction::CreateOutBroadcast { chat_name, secret };
3674 self::sync(context, id, action).await.log_err(context).ok();
3675 }
3676
3677 Ok(chat_id)
3678}
3679
3680pub(crate) async fn load_broadcast_secret(
3681 context: &Context,
3682 chat_id: ChatId,
3683) -> Result<Option<String>> {
3684 context
3685 .sql
3686 .query_get_value(
3687 "SELECT secret FROM broadcast_secrets WHERE chat_id=?",
3688 (chat_id,),
3689 )
3690 .await
3691}
3692
3693pub(crate) async fn save_broadcast_secret(
3694 context: &Context,
3695 chat_id: ChatId,
3696 secret: &str,
3697) -> Result<()> {
3698 info!(context, "Saving broadcast secret for chat {chat_id}");
3699 context
3700 .sql
3701 .execute(SQL_INSERT_BROADCAST_SECRET, (chat_id, secret))
3702 .await?;
3703
3704 Ok(())
3705}
3706
3707pub(crate) async fn delete_broadcast_secret(context: &Context, chat_id: ChatId) -> Result<()> {
3708 info!(context, "Removing broadcast secret for chat {chat_id}");
3709 context
3710 .sql
3711 .execute("DELETE FROM broadcast_secrets WHERE chat_id=?", (chat_id,))
3712 .await?;
3713
3714 Ok(())
3715}
3716
3717pub(crate) async fn update_chat_contacts_table(
3719 context: &Context,
3720 timestamp: i64,
3721 id: ChatId,
3722 contacts: &BTreeSet<ContactId>,
3723) -> Result<()> {
3724 context
3725 .sql
3726 .transaction(move |transaction| {
3727 transaction.execute(
3731 "UPDATE chats_contacts
3732 SET remove_timestamp=MAX(add_timestamp+1, ?)
3733 WHERE chat_id=?",
3734 (timestamp, id),
3735 )?;
3736
3737 if !contacts.is_empty() {
3738 let mut statement = transaction.prepare(
3739 "INSERT INTO chats_contacts (chat_id, contact_id, add_timestamp)
3740 VALUES (?1, ?2, ?3)
3741 ON CONFLICT (chat_id, contact_id)
3742 DO UPDATE SET add_timestamp=remove_timestamp",
3743 )?;
3744
3745 for contact_id in contacts {
3746 statement.execute((id, contact_id, timestamp))?;
3750 }
3751 }
3752 Ok(())
3753 })
3754 .await?;
3755 Ok(())
3756}
3757
3758pub(crate) async fn add_to_chat_contacts_table(
3760 context: &Context,
3761 timestamp: i64,
3762 chat_id: ChatId,
3763 contact_ids: &[ContactId],
3764) -> Result<()> {
3765 context
3766 .sql
3767 .transaction(move |transaction| {
3768 let mut add_statement = transaction.prepare(
3769 "INSERT INTO chats_contacts (chat_id, contact_id, add_timestamp) VALUES(?1, ?2, ?3)
3770 ON CONFLICT (chat_id, contact_id)
3771 DO UPDATE SET add_timestamp=MAX(remove_timestamp, ?3)",
3772 )?;
3773
3774 for contact_id in contact_ids {
3775 add_statement.execute((chat_id, contact_id, timestamp))?;
3776 }
3777 Ok(())
3778 })
3779 .await?;
3780
3781 Ok(())
3782}
3783
3784pub(crate) async fn remove_from_chat_contacts_table(
3787 context: &Context,
3788 chat_id: ChatId,
3789 contact_id: ContactId,
3790) -> Result<()> {
3791 let now = time();
3792 context
3793 .sql
3794 .execute(
3795 "UPDATE chats_contacts
3796 SET remove_timestamp=MAX(add_timestamp+1, ?)
3797 WHERE chat_id=? AND contact_id=?",
3798 (now, chat_id, contact_id),
3799 )
3800 .await?;
3801 Ok(())
3802}
3803
3804pub(crate) async fn remove_from_chat_contacts_table_without_trace(
3812 context: &Context,
3813 chat_id: ChatId,
3814 contact_id: ContactId,
3815) -> Result<()> {
3816 context
3817 .sql
3818 .execute(
3819 "DELETE FROM chats_contacts
3820 WHERE chat_id=? AND contact_id=?",
3821 (chat_id, contact_id),
3822 )
3823 .await?;
3824
3825 Ok(())
3826}
3827
3828pub async fn add_contact_to_chat(
3831 context: &Context,
3832 chat_id: ChatId,
3833 contact_id: ContactId,
3834) -> Result<()> {
3835 add_contact_to_chat_ex(context, Sync, chat_id, contact_id, false).await?;
3836 Ok(())
3837}
3838
3839pub(crate) async fn add_contact_to_chat_ex(
3840 context: &Context,
3841 mut sync: sync::Sync,
3842 chat_id: ChatId,
3843 contact_id: ContactId,
3844 from_handshake: bool,
3845) -> Result<bool> {
3846 ensure!(!chat_id.is_special(), "can not add member to special chats");
3847 let contact = Contact::get_by_id(context, contact_id).await?;
3848 let mut msg = Message::new(Viewtype::default());
3849
3850 chat_id.reset_gossiped_timestamp(context).await?;
3851
3852 let mut chat = Chat::load_from_db(context, chat_id).await?;
3854 ensure!(
3855 chat.typ == Chattype::Group || (from_handshake && chat.typ == Chattype::OutBroadcast),
3856 "{chat_id} is not a group where one can add members",
3857 );
3858 ensure!(
3859 Contact::real_exists_by_id(context, contact_id).await? || contact_id == ContactId::SELF,
3860 "invalid contact_id {contact_id} for adding to group"
3861 );
3862 ensure!(
3863 chat.typ != Chattype::OutBroadcast || contact_id != ContactId::SELF,
3864 "Cannot add SELF to broadcast channel."
3865 );
3866 match chat.is_encrypted(context).await? {
3867 true => ensure!(
3868 contact.is_key_contact(),
3869 "Only key-contacts can be added to encrypted chats"
3870 ),
3871 false => ensure!(
3872 !contact.is_key_contact(),
3873 "Only address-contacts can be added to unencrypted chats"
3874 ),
3875 }
3876
3877 if !chat.is_self_in_chat(context).await? {
3878 context.emit_event(EventType::ErrorSelfNotInGroup(
3879 "Cannot add contact to group; self not in group.".into(),
3880 ));
3881 warn!(
3882 context,
3883 "Can not add contact because the account is not part of the group/broadcast."
3884 );
3885 return Ok(false);
3886 }
3887 if from_handshake && chat.param.get_int(Param::Unpromoted).unwrap_or_default() == 1 {
3888 let smeared_time = smeared_time(context);
3889 chat.param
3890 .remove(Param::Unpromoted)
3891 .set_i64(Param::GroupNameTimestamp, smeared_time)
3892 .set_i64(Param::GroupDescriptionTimestamp, smeared_time);
3893 chat.update_param(context).await?;
3894 }
3895 if context.is_self_addr(contact.get_addr()).await? {
3896 warn!(
3899 context,
3900 "Invalid attempt to add self e-mail address to group."
3901 );
3902 return Ok(false);
3903 }
3904
3905 if is_contact_in_chat(context, chat_id, contact_id).await? {
3906 if !from_handshake {
3907 return Ok(true);
3908 }
3909 } else {
3910 add_to_chat_contacts_table(context, time(), chat_id, &[contact_id]).await?;
3912 }
3913 if chat.is_promoted() {
3914 msg.viewtype = Viewtype::Text;
3915
3916 let contact_addr = contact.get_addr().to_lowercase();
3917 let added_by = if from_handshake && chat.typ == Chattype::OutBroadcast {
3918 ContactId::UNDEFINED
3923 } else {
3924 ContactId::SELF
3925 };
3926 msg.text = stock_str::msg_add_member_local(context, contact.id, added_by).await;
3927 msg.param.set_cmd(SystemMessage::MemberAddedToGroup);
3928 msg.param.set(Param::Arg, contact_addr);
3929 msg.param.set_int(Param::Arg2, from_handshake.into());
3930 let fingerprint = contact.fingerprint().map(|f| f.hex());
3931 msg.param.set_optional(Param::Arg4, fingerprint);
3932 msg.param
3933 .set_int(Param::ContactAddedRemoved, contact.id.to_u32() as i32);
3934 if chat.typ == Chattype::OutBroadcast {
3935 let secret = load_broadcast_secret(context, chat_id)
3936 .await?
3937 .context("Failed to find broadcast shared secret")?;
3938 msg.param.set(PARAM_BROADCAST_SECRET, secret);
3939 }
3940 send_msg(context, chat_id, &mut msg).await?;
3941
3942 sync = Nosync;
3943 }
3944 context.emit_event(EventType::ChatModified(chat_id));
3945 if sync.into() {
3946 chat.sync_contacts(context).await.log_err(context).ok();
3947 }
3948 if chat.typ == Chattype::OutBroadcast {
3949 resend_last_msgs(context, chat.id, &contact)
3950 .await
3951 .log_err(context)
3952 .ok();
3953 }
3954 Ok(true)
3955}
3956
3957async fn resend_last_msgs(context: &Context, chat_id: ChatId, to_contact: &Contact) -> Result<()> {
3958 let msgs: Vec<MsgId> = context
3959 .sql
3960 .query_map_vec(
3961 "
3962SELECT id
3963FROM msgs
3964WHERE chat_id=?
3965 AND hidden=0
3966 AND NOT ( -- Exclude info and system messages
3967 param GLOB '*\nS=*' OR param GLOB 'S=*'
3968 OR from_id=?
3969 OR to_id=?
3970 )
3971 AND type!=?
3972ORDER BY timestamp DESC, id DESC LIMIT ?",
3973 (
3974 chat_id,
3975 ContactId::INFO,
3976 ContactId::INFO,
3977 Viewtype::Webxdc,
3978 constants::N_MSGS_TO_NEW_BROADCAST_MEMBER,
3979 ),
3980 |row: &rusqlite::Row| Ok(row.get::<_, MsgId>(0)?),
3981 )
3982 .await?
3983 .into_iter()
3984 .rev()
3985 .collect();
3986 resend_msgs_ex(context, &msgs, to_contact.fingerprint()).await
3987}
3988
3989#[expect(clippy::arithmetic_side_effects)]
3995pub(crate) async fn shall_attach_selfavatar(context: &Context, chat_id: ChatId) -> Result<bool> {
3996 let timestamp_some_days_ago = time() - DC_RESEND_USER_AVATAR_DAYS * 24 * 60 * 60;
3997 let needs_attach = context
3998 .sql
3999 .query_map(
4000 "SELECT c.selfavatar_sent
4001 FROM chats_contacts cc
4002 LEFT JOIN contacts c ON c.id=cc.contact_id
4003 WHERE cc.chat_id=? AND cc.contact_id!=? AND cc.add_timestamp >= cc.remove_timestamp",
4004 (chat_id, ContactId::SELF),
4005 |row| {
4006 let selfavatar_sent: i64 = row.get(0)?;
4007 Ok(selfavatar_sent)
4008 },
4009 |rows| {
4010 let mut needs_attach = false;
4011 for row in rows {
4012 let selfavatar_sent = row?;
4013 if selfavatar_sent < timestamp_some_days_ago {
4014 needs_attach = true;
4015 }
4016 }
4017 Ok(needs_attach)
4018 },
4019 )
4020 .await?;
4021 Ok(needs_attach)
4022}
4023
4024#[derive(Debug, Copy, Clone, PartialEq, Eq, Serialize, Deserialize)]
4026pub enum MuteDuration {
4027 NotMuted,
4029
4030 Forever,
4032
4033 Until(std::time::SystemTime),
4035}
4036
4037impl rusqlite::types::ToSql for MuteDuration {
4038 fn to_sql(&self) -> rusqlite::Result<rusqlite::types::ToSqlOutput<'_>> {
4039 let duration: i64 = match &self {
4040 MuteDuration::NotMuted => 0,
4041 MuteDuration::Forever => -1,
4042 MuteDuration::Until(when) => {
4043 let duration = when
4044 .duration_since(SystemTime::UNIX_EPOCH)
4045 .map_err(|err| rusqlite::Error::ToSqlConversionFailure(Box::new(err)))?;
4046 i64::try_from(duration.as_secs())
4047 .map_err(|err| rusqlite::Error::ToSqlConversionFailure(Box::new(err)))?
4048 }
4049 };
4050 let val = rusqlite::types::Value::Integer(duration);
4051 let out = rusqlite::types::ToSqlOutput::Owned(val);
4052 Ok(out)
4053 }
4054}
4055
4056impl rusqlite::types::FromSql for MuteDuration {
4057 fn column_result(value: rusqlite::types::ValueRef) -> rusqlite::types::FromSqlResult<Self> {
4058 match i64::column_result(value)? {
4061 0 => Ok(MuteDuration::NotMuted),
4062 -1 => Ok(MuteDuration::Forever),
4063 n if n > 0 => match SystemTime::UNIX_EPOCH.checked_add(Duration::from_secs(n as u64)) {
4064 Some(t) => Ok(MuteDuration::Until(t)),
4065 None => Err(rusqlite::types::FromSqlError::OutOfRange(n)),
4066 },
4067 _ => Ok(MuteDuration::NotMuted),
4068 }
4069 }
4070}
4071
4072pub async fn set_muted(context: &Context, chat_id: ChatId, duration: MuteDuration) -> Result<()> {
4074 set_muted_ex(context, Sync, chat_id, duration).await
4075}
4076
4077pub(crate) async fn set_muted_ex(
4078 context: &Context,
4079 sync: sync::Sync,
4080 chat_id: ChatId,
4081 duration: MuteDuration,
4082) -> Result<()> {
4083 ensure!(!chat_id.is_special(), "Invalid chat ID");
4084 context
4085 .sql
4086 .execute(
4087 "UPDATE chats SET muted_until=? WHERE id=?;",
4088 (duration, chat_id),
4089 )
4090 .await
4091 .context(format!("Failed to set mute duration for {chat_id}"))?;
4092 context.emit_event(EventType::ChatModified(chat_id));
4093 chatlist_events::emit_chatlist_item_changed(context, chat_id);
4094 if sync.into() {
4095 let chat = Chat::load_from_db(context, chat_id).await?;
4096 chat.sync(context, SyncAction::SetMuted(duration))
4097 .await
4098 .log_err(context)
4099 .ok();
4100 }
4101 Ok(())
4102}
4103
4104pub async fn remove_contact_from_chat(
4106 context: &Context,
4107 chat_id: ChatId,
4108 contact_id: ContactId,
4109) -> Result<()> {
4110 ensure!(
4111 !chat_id.is_special(),
4112 "bad chat_id, can not be special chat: {chat_id}"
4113 );
4114 ensure!(
4115 !contact_id.is_special() || contact_id == ContactId::SELF,
4116 "Cannot remove special contact"
4117 );
4118
4119 let chat = Chat::load_from_db(context, chat_id).await?;
4120 if chat.typ == Chattype::InBroadcast {
4121 ensure!(
4122 contact_id == ContactId::SELF,
4123 "Cannot remove other member from incoming broadcast channel"
4124 );
4125 delete_broadcast_secret(context, chat_id).await?;
4126 }
4127
4128 ensure!(
4129 matches!(
4130 chat.typ,
4131 Chattype::Group | Chattype::OutBroadcast | Chattype::InBroadcast
4132 ),
4133 "Cannot remove members from non-group chats."
4134 );
4135
4136 if !chat.is_self_in_chat(context).await? {
4137 let err_msg =
4138 format!("Cannot remove contact {contact_id} from chat {chat_id}: self not in group.");
4139 context.emit_event(EventType::ErrorSelfNotInGroup(err_msg.clone()));
4140 bail!("{err_msg}");
4141 }
4142
4143 let mut sync = Nosync;
4144
4145 if chat.is_promoted() && chat.typ != Chattype::OutBroadcast {
4146 remove_from_chat_contacts_table(context, chat_id, contact_id).await?;
4147 } else {
4148 remove_from_chat_contacts_table_without_trace(context, chat_id, contact_id).await?;
4149 }
4150
4151 if let Some(contact) = Contact::get_by_id_optional(context, contact_id).await? {
4155 if chat.is_promoted() {
4156 let addr = contact.get_addr();
4157 let fingerprint = contact.fingerprint().map(|f| f.hex());
4158
4159 let res =
4160 send_member_removal_msg(context, &chat, contact_id, addr, fingerprint.as_deref())
4161 .await;
4162
4163 if contact_id == ContactId::SELF {
4164 res?;
4165 } else if let Err(e) = res {
4166 warn!(
4167 context,
4168 "remove_contact_from_chat({chat_id}, {contact_id}): send_msg() failed: {e:#}."
4169 );
4170 }
4171 } else {
4172 sync = Sync;
4173 }
4174 }
4175 context.emit_event(EventType::ChatModified(chat_id));
4176 if sync.into() {
4177 chat.sync_contacts(context).await.log_err(context).ok();
4178 }
4179
4180 Ok(())
4181}
4182
4183async fn send_member_removal_msg(
4184 context: &Context,
4185 chat: &Chat,
4186 contact_id: ContactId,
4187 addr: &str,
4188 fingerprint: Option<&str>,
4189) -> Result<MsgId> {
4190 let mut msg = Message::new(Viewtype::Text);
4191
4192 if contact_id == ContactId::SELF {
4193 if chat.typ == Chattype::InBroadcast {
4194 msg.text = stock_str::msg_you_left_broadcast(context);
4195 } else {
4196 msg.text = stock_str::msg_group_left_local(context, ContactId::SELF).await;
4197 }
4198 } else {
4199 msg.text = stock_str::msg_del_member_local(context, contact_id, ContactId::SELF).await;
4200 }
4201
4202 msg.param.set_cmd(SystemMessage::MemberRemovedFromGroup);
4203 msg.param.set(Param::Arg, addr.to_lowercase());
4204 msg.param.set_optional(Param::Arg4, fingerprint);
4205 msg.param
4206 .set(Param::ContactAddedRemoved, contact_id.to_u32());
4207
4208 send_msg(context, chat.id, &mut msg).await
4209}
4210
4211pub async fn set_chat_description(
4221 context: &Context,
4222 chat_id: ChatId,
4223 new_description: &str,
4224) -> Result<()> {
4225 set_chat_description_ex(context, Sync, chat_id, new_description).await
4226}
4227
4228async fn set_chat_description_ex(
4229 context: &Context,
4230 mut sync: sync::Sync,
4231 chat_id: ChatId,
4232 new_description: &str,
4233) -> Result<()> {
4234 let new_description = sanitize_bidi_characters(new_description.trim());
4235
4236 ensure!(!chat_id.is_special(), "Invalid chat ID");
4237
4238 let chat = Chat::load_from_db(context, chat_id).await?;
4239 ensure!(
4240 chat.typ == Chattype::Group || chat.typ == Chattype::OutBroadcast,
4241 "Can only set description for groups / broadcasts"
4242 );
4243 ensure!(
4244 !chat.grpid.is_empty(),
4245 "Cannot set description for ad hoc groups"
4246 );
4247 if !chat.is_self_in_chat(context).await? {
4248 context.emit_event(EventType::ErrorSelfNotInGroup(
4249 "Cannot set chat description; self not in group".into(),
4250 ));
4251 bail!("Cannot set chat description; self not in group");
4252 }
4253
4254 let old_description = get_chat_description(context, chat_id).await?;
4255 if old_description == new_description {
4256 return Ok(());
4257 }
4258
4259 context
4260 .sql
4261 .execute(
4262 "INSERT OR REPLACE INTO chats_descriptions(chat_id, description) VALUES(?, ?)",
4263 (chat_id, &new_description),
4264 )
4265 .await?;
4266
4267 if chat.is_promoted() {
4268 let mut msg = Message::new(Viewtype::Text);
4269 msg.text = stock_str::msg_chat_description_changed(context, ContactId::SELF).await;
4270 msg.param.set_cmd(SystemMessage::GroupDescriptionChanged);
4271
4272 msg.id = send_msg(context, chat_id, &mut msg).await?;
4273 context.emit_msgs_changed(chat_id, msg.id);
4274 sync = Nosync;
4275 }
4276 context.emit_event(EventType::ChatModified(chat_id));
4277
4278 if sync.into() {
4279 chat.sync(context, SyncAction::SetDescription(new_description))
4280 .await
4281 .log_err(context)
4282 .ok();
4283 }
4284
4285 Ok(())
4286}
4287
4288pub async fn get_chat_description(context: &Context, chat_id: ChatId) -> Result<String> {
4293 let description = context
4294 .sql
4295 .query_get_value(
4296 "SELECT description FROM chats_descriptions WHERE chat_id=?",
4297 (chat_id,),
4298 )
4299 .await?
4300 .unwrap_or_default();
4301 Ok(description)
4302}
4303
4304pub async fn set_chat_name(context: &Context, chat_id: ChatId, new_name: &str) -> Result<()> {
4312 rename_ex(context, Sync, chat_id, new_name).await
4313}
4314
4315async fn rename_ex(
4316 context: &Context,
4317 mut sync: sync::Sync,
4318 chat_id: ChatId,
4319 new_name: &str,
4320) -> Result<()> {
4321 let new_name = sanitize_single_line(new_name);
4322 let mut success = false;
4324
4325 ensure!(!new_name.is_empty(), "Invalid name");
4326 ensure!(!chat_id.is_special(), "Invalid chat ID");
4327
4328 let chat = Chat::load_from_db(context, chat_id).await?;
4329 let mut msg = Message::new(Viewtype::default());
4330
4331 if chat.typ == Chattype::Group
4332 || chat.typ == Chattype::Mailinglist
4333 || chat.typ == Chattype::OutBroadcast
4334 {
4335 if chat.name == new_name {
4336 success = true;
4337 } else if !chat.is_self_in_chat(context).await? {
4338 context.emit_event(EventType::ErrorSelfNotInGroup(
4339 "Cannot set chat name; self not in group".into(),
4340 ));
4341 } else {
4342 context
4343 .sql
4344 .execute(
4345 "UPDATE chats SET name=?, name_normalized=? WHERE id=?",
4346 (&new_name, normalize_text(&new_name), chat_id),
4347 )
4348 .await?;
4349 if chat.is_promoted()
4350 && !chat.is_mailing_list()
4351 && sanitize_single_line(&chat.name) != new_name
4352 {
4353 msg.viewtype = Viewtype::Text;
4354 msg.text = if chat.typ == Chattype::OutBroadcast {
4355 stock_str::msg_broadcast_name_changed(context, &chat.name, &new_name)
4356 } else {
4357 stock_str::msg_grp_name(context, &chat.name, &new_name, ContactId::SELF).await
4358 };
4359 msg.param.set_cmd(SystemMessage::GroupNameChanged);
4360 if !chat.name.is_empty() {
4361 msg.param.set(Param::Arg, &chat.name);
4362 }
4363 msg.id = send_msg(context, chat_id, &mut msg).await?;
4364 context.emit_msgs_changed(chat_id, msg.id);
4365 sync = Nosync;
4366 }
4367 context.emit_event(EventType::ChatModified(chat_id));
4368 chatlist_events::emit_chatlist_item_changed(context, chat_id);
4369 success = true;
4370 }
4371 }
4372
4373 if !success {
4374 bail!("Failed to set name");
4375 }
4376 if sync.into() && chat.name != new_name {
4377 let sync_name = new_name.to_string();
4378 chat.sync(context, SyncAction::Rename(sync_name))
4379 .await
4380 .log_err(context)
4381 .ok();
4382 }
4383 Ok(())
4384}
4385
4386pub async fn set_chat_profile_image(
4392 context: &Context,
4393 chat_id: ChatId,
4394 new_image: &str, ) -> Result<()> {
4396 ensure!(!chat_id.is_special(), "Invalid chat ID");
4397 let mut chat = Chat::load_from_db(context, chat_id).await?;
4398 ensure!(
4399 chat.typ == Chattype::Group || chat.typ == Chattype::OutBroadcast,
4400 "Can only set profile image for groups / broadcasts"
4401 );
4402 ensure!(
4403 !chat.grpid.is_empty(),
4404 "Cannot set profile image for ad hoc groups"
4405 );
4406 if !chat.is_self_in_chat(context).await? {
4408 context.emit_event(EventType::ErrorSelfNotInGroup(
4409 "Cannot set chat profile image; self not in group.".into(),
4410 ));
4411 bail!("Failed to set profile image");
4412 }
4413 let mut msg = Message::new(Viewtype::Text);
4414 msg.param
4415 .set_int(Param::Cmd, SystemMessage::GroupImageChanged as i32);
4416 if new_image.is_empty() {
4417 chat.param.remove(Param::ProfileImage);
4418 msg.param.remove(Param::Arg);
4419 msg.text = if chat.typ == Chattype::OutBroadcast {
4420 stock_str::msg_broadcast_img_changed(context)
4421 } else {
4422 stock_str::msg_grp_img_deleted(context, ContactId::SELF).await
4423 };
4424 } else {
4425 let mut image_blob = BlobObject::create_and_deduplicate(
4426 context,
4427 Path::new(new_image),
4428 Path::new(new_image),
4429 )?;
4430 image_blob.recode_to_avatar_size(context).await?;
4431 chat.param.set(Param::ProfileImage, image_blob.as_name());
4432 msg.param.set(Param::Arg, image_blob.as_name());
4433 msg.text = if chat.typ == Chattype::OutBroadcast {
4434 stock_str::msg_broadcast_img_changed(context)
4435 } else {
4436 stock_str::msg_grp_img_changed(context, ContactId::SELF).await
4437 };
4438 }
4439 chat.update_param(context).await?;
4440 if chat.is_promoted() {
4441 msg.id = send_msg(context, chat_id, &mut msg).await?;
4442 context.emit_msgs_changed(chat_id, msg.id);
4443 }
4444 context.emit_event(EventType::ChatModified(chat_id));
4445 chatlist_events::emit_chatlist_item_changed(context, chat_id);
4446 Ok(())
4447}
4448
4449pub async fn forward_msgs(context: &Context, msg_ids: &[MsgId], chat_id: ChatId) -> Result<()> {
4451 forward_msgs_2ctx(context, msg_ids, context, chat_id).await
4452}
4453
4454#[expect(clippy::arithmetic_side_effects)]
4456pub async fn forward_msgs_2ctx(
4457 ctx_src: &Context,
4458 msg_ids: &[MsgId],
4459 ctx_dst: &Context,
4460 chat_id: ChatId,
4461) -> Result<()> {
4462 ensure!(!msg_ids.is_empty(), "empty msgs_ids: nothing to forward");
4463 ensure!(!chat_id.is_special(), "can not forward to special chat");
4464
4465 let mut created_msgs: Vec<MsgId> = Vec::new();
4466 let mut curr_timestamp: i64;
4467
4468 chat_id
4469 .unarchive_if_not_muted(ctx_dst, MessageState::Undefined)
4470 .await?;
4471 let mut chat = Chat::load_from_db(ctx_dst, chat_id).await?;
4472 if let Some(reason) = chat.why_cant_send(ctx_dst).await? {
4473 bail!("cannot send to {chat_id}: {reason}");
4474 }
4475 curr_timestamp = create_smeared_timestamps(ctx_dst, msg_ids.len());
4476 let mut msgs = Vec::with_capacity(msg_ids.len());
4477 for id in msg_ids {
4478 let ts: i64 = ctx_src
4479 .sql
4480 .query_get_value("SELECT timestamp FROM msgs WHERE id=?", (id,))
4481 .await?
4482 .with_context(|| format!("No message {id}"))?;
4483 msgs.push((ts, *id));
4484 }
4485 msgs.sort_unstable();
4486 for (_, id) in msgs {
4487 let src_msg_id: MsgId = id;
4488 let mut msg = Message::load_from_db(ctx_src, src_msg_id).await?;
4489 if msg.state == MessageState::OutDraft {
4490 bail!("cannot forward drafts.");
4491 }
4492
4493 let mut param = msg.param;
4494 msg.param = Params::new();
4495
4496 if msg.get_viewtype() != Viewtype::Sticker {
4497 let forwarded_msg_id = match ctx_src.blobdir == ctx_dst.blobdir {
4498 true => src_msg_id,
4499 false => MsgId::new_unset(),
4500 };
4501 msg.param
4502 .set_int(Param::Forwarded, forwarded_msg_id.to_u32() as i32);
4503 }
4504
4505 if msg.get_viewtype() == Viewtype::Call {
4506 msg.viewtype = Viewtype::Text;
4507 }
4508 msg.text += &msg.additional_text;
4509
4510 let param = &mut param;
4511
4512 if ctx_src.blobdir == ctx_dst.blobdir {
4515 msg.param.steal(param, Param::File);
4516 } else if let Some(src_path) = param.get_file_path(ctx_src)? {
4517 let new_blob = BlobObject::create_and_deduplicate(ctx_dst, &src_path, &src_path)
4518 .context("Failed to copy blob file to destination account")?;
4519 msg.param.set(Param::File, new_blob.as_name());
4520 }
4521 msg.param.steal(param, Param::Filename);
4522 msg.param.steal(param, Param::Width);
4523 msg.param.steal(param, Param::Height);
4524 msg.param.steal(param, Param::Duration);
4525 msg.param.steal(param, Param::MimeType);
4526 msg.param.steal(param, Param::ProtectQuote);
4527 msg.param.steal(param, Param::Quote);
4528 msg.param.steal(param, Param::Summary1);
4529 if msg.has_html() {
4530 msg.set_html(src_msg_id.get_html(ctx_src).await?);
4531 }
4532 msg.in_reply_to = None;
4533
4534 msg.subject = "".to_string();
4536
4537 msg.state = MessageState::OutPending;
4538 msg.rfc724_mid = create_outgoing_rfc724_mid();
4539 msg.pre_rfc724_mid.clear();
4540 msg.timestamp_sort = curr_timestamp;
4541 chat.prepare_msg_raw(ctx_dst, &mut msg, None).await?;
4542
4543 curr_timestamp += 1;
4544 if !create_send_msg_jobs(ctx_dst, &mut msg).await?.is_empty() {
4545 ctx_dst.scheduler.interrupt_smtp().await;
4546 }
4547 created_msgs.push(msg.id);
4548 }
4549 for msg_id in created_msgs {
4550 ctx_dst.emit_msgs_changed(chat_id, msg_id);
4551 }
4552 Ok(())
4553}
4554
4555pub async fn save_msgs(context: &Context, msg_ids: &[MsgId]) -> Result<()> {
4558 let mut msgs = Vec::with_capacity(msg_ids.len());
4559 for id in msg_ids {
4560 let ts: i64 = context
4561 .sql
4562 .query_get_value("SELECT timestamp FROM msgs WHERE id=?", (id,))
4563 .await?
4564 .with_context(|| format!("No message {id}"))?;
4565 msgs.push((ts, *id));
4566 }
4567 msgs.sort_unstable();
4568 for (_, src_msg_id) in msgs {
4569 let dest_rfc724_mid = create_outgoing_rfc724_mid();
4570 let src_rfc724_mid = save_copy_in_self_talk(context, src_msg_id, &dest_rfc724_mid).await?;
4571 context
4572 .add_sync_item(SyncData::SaveMessage {
4573 src: src_rfc724_mid,
4574 dest: dest_rfc724_mid,
4575 })
4576 .await?;
4577 }
4578 context.scheduler.interrupt_smtp().await;
4579 Ok(())
4580}
4581
4582pub(crate) async fn save_copy_in_self_talk(
4588 context: &Context,
4589 src_msg_id: MsgId,
4590 dest_rfc724_mid: &String,
4591) -> Result<String> {
4592 let dest_chat_id = ChatId::create_for_contact(context, ContactId::SELF).await?;
4593 let mut msg = Message::load_from_db(context, src_msg_id).await?;
4594 msg.param.remove(Param::Cmd);
4595 msg.param.remove(Param::WebxdcDocument);
4596 msg.param.remove(Param::WebxdcDocumentTimestamp);
4597 msg.param.remove(Param::WebxdcSummary);
4598 msg.param.remove(Param::WebxdcSummaryTimestamp);
4599 msg.param.remove(Param::PostMessageFileBytes);
4600 msg.param.remove(Param::PostMessageViewtype);
4601
4602 msg.text += &msg.additional_text;
4603
4604 if !msg.original_msg_id.is_unset() {
4605 bail!("message already saved.");
4606 }
4607
4608 let copy_fields = "from_id, to_id, timestamp_rcvd, type,
4609 mime_modified, mime_headers, mime_compressed, mime_in_reply_to, subject, msgrmsg";
4610 let row_id = context
4611 .sql
4612 .insert(
4613 &format!(
4614 "INSERT INTO msgs ({copy_fields},
4615 timestamp_sent,
4616 txt, chat_id, rfc724_mid, state, timestamp, param, starred)
4617 SELECT {copy_fields},
4618 -- Outgoing messages on originating device
4619 -- have timestamp_sent == 0.
4620 -- We copy sort timestamp instead
4621 -- so UIs display the same timestamp
4622 -- for saved and original message.
4623 IIF(timestamp_sent == 0, timestamp, timestamp_sent),
4624 ?, ?, ?, ?, ?, ?, ?
4625 FROM msgs WHERE id=?;"
4626 ),
4627 (
4628 msg.text,
4629 dest_chat_id,
4630 dest_rfc724_mid,
4631 if msg.from_id == ContactId::SELF {
4632 MessageState::OutDelivered
4633 } else {
4634 MessageState::InSeen
4635 },
4636 create_smeared_timestamp(context),
4637 msg.param.to_string(),
4638 src_msg_id,
4639 src_msg_id,
4640 ),
4641 )
4642 .await?;
4643 let dest_msg_id = MsgId::new(row_id.try_into()?);
4644
4645 context.emit_msgs_changed(msg.chat_id, src_msg_id);
4646 context.emit_msgs_changed(dest_chat_id, dest_msg_id);
4647 chatlist_events::emit_chatlist_changed(context);
4648 chatlist_events::emit_chatlist_item_changed(context, dest_chat_id);
4649
4650 Ok(msg.rfc724_mid)
4651}
4652
4653pub async fn resend_msgs(context: &Context, msg_ids: &[MsgId]) -> Result<()> {
4657 resend_msgs_ex(context, msg_ids, None).await
4658}
4659
4660pub(crate) async fn resend_msgs_ex(
4668 context: &Context,
4669 msg_ids: &[MsgId],
4670 to_fingerprint: Option<Fingerprint>,
4671) -> Result<()> {
4672 let to_fingerprint = to_fingerprint.map(|f| f.hex());
4673 let mut msgs: Vec<Message> = Vec::new();
4674 for msg_id in msg_ids {
4675 let msg = Message::load_from_db(context, *msg_id).await?;
4676 ensure!(
4677 msg.from_id == ContactId::SELF,
4678 "can resend only own messages"
4679 );
4680 ensure!(!msg.is_info(), "cannot resend info messages");
4681 msgs.push(msg)
4682 }
4683
4684 for mut msg in msgs {
4685 match msg.get_state() {
4686 MessageState::OutPending
4688 | MessageState::OutFailed
4689 | MessageState::OutDelivered
4690 | MessageState::OutMdnRcvd => {
4691 if to_fingerprint.is_none() {
4694 message::update_msg_state(context, msg.id, MessageState::OutPending).await?;
4695 }
4696 }
4697 msg_state => bail!("Unexpected message state {msg_state}"),
4698 }
4699 if let Some(to_fingerprint) = &to_fingerprint {
4700 msg.param.set(Param::Arg4, to_fingerprint.clone());
4701 }
4702 if create_send_msg_jobs(context, &mut msg).await?.is_empty() {
4703 continue;
4704 }
4705
4706 context.emit_event(EventType::MsgsChanged {
4710 chat_id: msg.chat_id,
4711 msg_id: msg.id,
4712 });
4713 chatlist_events::emit_chatlist_item_changed(context, msg.chat_id);
4716
4717 if msg.viewtype == Viewtype::Webxdc {
4718 let conn_fn = |conn: &mut rusqlite::Connection| {
4719 let range = conn.query_row(
4720 "SELECT IFNULL(min(id), 1), IFNULL(max(id), 0) \
4721 FROM msgs_status_updates WHERE msg_id=?",
4722 (msg.id,),
4723 |row| {
4724 let min_id: StatusUpdateSerial = row.get(0)?;
4725 let max_id: StatusUpdateSerial = row.get(1)?;
4726 Ok((min_id, max_id))
4727 },
4728 )?;
4729 if range.0 > range.1 {
4730 return Ok(());
4731 };
4732 conn.execute(
4736 "INSERT INTO smtp_status_updates (msg_id, first_serial, last_serial, descr) \
4737 VALUES(?, ?, ?, '') \
4738 ON CONFLICT(msg_id) \
4739 DO UPDATE SET first_serial=min(first_serial - 1, excluded.first_serial)",
4740 (msg.id, range.0, range.1),
4741 )?;
4742 Ok(())
4743 };
4744 context.sql.call_write(conn_fn).await?;
4745 }
4746 context.scheduler.interrupt_smtp().await;
4747 }
4748 Ok(())
4749}
4750
4751pub(crate) async fn get_chat_cnt(context: &Context) -> Result<usize> {
4752 if context.sql.is_open().await {
4753 let count = context
4755 .sql
4756 .count("SELECT COUNT(*) FROM chats WHERE id>9 AND blocked=0;", ())
4757 .await?;
4758 Ok(count)
4759 } else {
4760 Ok(0)
4761 }
4762}
4763
4764pub(crate) async fn get_chat_id_by_grpid(
4766 context: &Context,
4767 grpid: &str,
4768) -> Result<Option<(ChatId, Blocked)>> {
4769 context
4770 .sql
4771 .query_row_optional(
4772 "SELECT id, blocked FROM chats WHERE grpid=?;",
4773 (grpid,),
4774 |row| {
4775 let chat_id = row.get::<_, ChatId>(0)?;
4776
4777 let b = row.get::<_, Option<Blocked>>(1)?.unwrap_or_default();
4778 Ok((chat_id, b))
4779 },
4780 )
4781 .await
4782}
4783
4784#[expect(clippy::arithmetic_side_effects)]
4789pub async fn add_device_msg_with_importance(
4790 context: &Context,
4791 label: Option<&str>,
4792 msg: Option<&mut Message>,
4793 important: bool,
4794) -> Result<MsgId> {
4795 ensure!(
4796 label.is_some() || msg.is_some(),
4797 "device-messages need label, msg or both"
4798 );
4799 let mut chat_id = ChatId::new(0);
4800 let mut msg_id = MsgId::new_unset();
4801
4802 if let Some(label) = label
4803 && was_device_msg_ever_added(context, label).await?
4804 {
4805 info!(context, "Device-message {label} already added.");
4806 return Ok(msg_id);
4807 }
4808
4809 if let Some(msg) = msg {
4810 chat_id = ChatId::get_for_contact(context, ContactId::DEVICE).await?;
4811
4812 let rfc724_mid = create_outgoing_rfc724_mid();
4813 let timestamp_sent = create_smeared_timestamp(context);
4814
4815 msg.timestamp_sort = timestamp_sent;
4818 if let Some(last_msg_time) = chat_id.get_timestamp(context).await?
4819 && msg.timestamp_sort <= last_msg_time
4820 {
4821 msg.timestamp_sort = last_msg_time + 1;
4822 }
4823 prepare_msg_blob(context, msg).await?;
4824 let state = MessageState::InFresh;
4825 let row_id = context
4826 .sql
4827 .insert(
4828 "INSERT INTO msgs (
4829 chat_id,
4830 from_id,
4831 to_id,
4832 timestamp,
4833 timestamp_sent,
4834 timestamp_rcvd,
4835 type,state,
4836 txt,
4837 txt_normalized,
4838 param,
4839 rfc724_mid)
4840 VALUES (?,?,?,?,?,?,?,?,?,?,?,?);",
4841 (
4842 chat_id,
4843 ContactId::DEVICE,
4844 ContactId::SELF,
4845 msg.timestamp_sort,
4846 timestamp_sent,
4847 timestamp_sent, msg.viewtype,
4849 state,
4850 &msg.text,
4851 normalize_text(&msg.text),
4852 msg.param.to_string(),
4853 rfc724_mid,
4854 ),
4855 )
4856 .await?;
4857 context.new_msgs_notify.notify_one();
4858
4859 msg_id = MsgId::new(u32::try_from(row_id)?);
4860 if !msg.hidden {
4861 chat_id.unarchive_if_not_muted(context, state).await?;
4862 }
4863 }
4864
4865 if let Some(label) = label {
4866 context
4867 .sql
4868 .execute("INSERT INTO devmsglabels (label) VALUES (?);", (label,))
4869 .await?;
4870 }
4871
4872 if !msg_id.is_unset() {
4873 chat_id.emit_msg_event(context, msg_id, important);
4874 }
4875
4876 Ok(msg_id)
4877}
4878
4879pub async fn add_device_msg(
4881 context: &Context,
4882 label: Option<&str>,
4883 msg: Option<&mut Message>,
4884) -> Result<MsgId> {
4885 add_device_msg_with_importance(context, label, msg, false).await
4886}
4887
4888pub async fn was_device_msg_ever_added(context: &Context, label: &str) -> Result<bool> {
4890 ensure!(!label.is_empty(), "empty label");
4891 let exists = context
4892 .sql
4893 .exists(
4894 "SELECT COUNT(label) FROM devmsglabels WHERE label=?",
4895 (label,),
4896 )
4897 .await?;
4898
4899 Ok(exists)
4900}
4901
4902pub(crate) async fn delete_and_reset_all_device_msgs(context: &Context) -> Result<()> {
4908 context
4909 .sql
4910 .execute("DELETE FROM msgs WHERE from_id=?;", (ContactId::DEVICE,))
4911 .await?;
4912 context.sql.execute("DELETE FROM devmsglabels;", ()).await?;
4913
4914 context
4916 .sql
4917 .execute(
4918 r#"INSERT INTO devmsglabels (label) VALUES ("core-welcome-image"), ("core-welcome")"#,
4919 (),
4920 )
4921 .await?;
4922 Ok(())
4923}
4924
4925#[expect(clippy::too_many_arguments)]
4930pub(crate) async fn add_info_msg_with_cmd(
4931 context: &Context,
4932 chat_id: ChatId,
4933 text: &str,
4934 cmd: SystemMessage,
4935 timestamp_sort: Option<i64>,
4938 timestamp_sent_rcvd: i64,
4940 parent: Option<&Message>,
4941 from_id: Option<ContactId>,
4942 added_removed_id: Option<ContactId>,
4943) -> Result<MsgId> {
4944 let rfc724_mid = create_outgoing_rfc724_mid();
4945 let ephemeral_timer = chat_id.get_ephemeral_timer(context).await?;
4946
4947 let mut param = Params::new();
4948 if cmd != SystemMessage::Unknown {
4949 param.set_cmd(cmd);
4950 }
4951 if let Some(contact_id) = added_removed_id {
4952 param.set(Param::ContactAddedRemoved, contact_id.to_u32().to_string());
4953 }
4954
4955 let timestamp_sort = if let Some(ts) = timestamp_sort {
4956 ts
4957 } else {
4958 let sort_to_bottom = true;
4959 chat_id
4960 .calc_sort_timestamp(context, smeared_time(context), sort_to_bottom)
4961 .await?
4962 };
4963
4964 let row_id =
4965 context.sql.insert(
4966 "INSERT INTO msgs (chat_id,from_id,to_id,timestamp,timestamp_sent,timestamp_rcvd,type,state,txt,txt_normalized,rfc724_mid,ephemeral_timer,param,mime_in_reply_to)
4967 VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?);",
4968 (
4969 chat_id,
4970 from_id.unwrap_or(ContactId::INFO),
4971 ContactId::INFO,
4972 timestamp_sort,
4973 timestamp_sent_rcvd,
4974 timestamp_sent_rcvd,
4975 Viewtype::Text,
4976 MessageState::InNoticed,
4977 text,
4978 normalize_text(text),
4979 rfc724_mid,
4980 ephemeral_timer,
4981 param.to_string(),
4982 parent.map(|msg|msg.rfc724_mid.clone()).unwrap_or_default()
4983 )
4984 ).await?;
4985 context.new_msgs_notify.notify_one();
4986
4987 let msg_id = MsgId::new(row_id.try_into()?);
4988 context.emit_msgs_changed(chat_id, msg_id);
4989
4990 Ok(msg_id)
4991}
4992
4993pub(crate) async fn add_info_msg(context: &Context, chat_id: ChatId, text: &str) -> Result<MsgId> {
4995 add_info_msg_with_cmd(
4996 context,
4997 chat_id,
4998 text,
4999 SystemMessage::Unknown,
5000 None,
5001 time(),
5002 None,
5003 None,
5004 None,
5005 )
5006 .await
5007}
5008
5009pub(crate) async fn update_msg_text_and_timestamp(
5010 context: &Context,
5011 chat_id: ChatId,
5012 msg_id: MsgId,
5013 text: &str,
5014 timestamp: i64,
5015) -> Result<()> {
5016 context
5017 .sql
5018 .execute(
5019 "UPDATE msgs SET txt=?, txt_normalized=?, timestamp=? WHERE id=?;",
5020 (text, normalize_text(text), timestamp, msg_id),
5021 )
5022 .await?;
5023 context.emit_msgs_changed(chat_id, msg_id);
5024 Ok(())
5025}
5026
5027async fn set_contacts_by_addrs(context: &Context, id: ChatId, addrs: &[String]) -> Result<()> {
5029 let chat = Chat::load_from_db(context, id).await?;
5030 ensure!(
5031 !chat.is_encrypted(context).await?,
5032 "Cannot add address-contacts to encrypted chat {id}"
5033 );
5034 ensure!(
5035 chat.typ == Chattype::OutBroadcast,
5036 "{id} is not a broadcast list",
5037 );
5038 let mut contacts = BTreeSet::new();
5039 for addr in addrs {
5040 let contact_addr = ContactAddress::new(addr)?;
5041 let contact = Contact::add_or_lookup(context, "", &contact_addr, Origin::Hidden)
5042 .await?
5043 .0;
5044 contacts.insert(contact);
5045 }
5046 let contacts_old = BTreeSet::<ContactId>::from_iter(get_chat_contacts(context, id).await?);
5047 if contacts == contacts_old {
5048 return Ok(());
5049 }
5050 context
5051 .sql
5052 .transaction(move |transaction| {
5053 transaction.execute("DELETE FROM chats_contacts WHERE chat_id=?", (id,))?;
5054
5055 let mut statement = transaction
5058 .prepare("INSERT INTO chats_contacts (chat_id, contact_id) VALUES (?, ?)")?;
5059 for contact_id in &contacts {
5060 statement.execute((id, contact_id))?;
5061 }
5062 Ok(())
5063 })
5064 .await?;
5065 context.emit_event(EventType::ChatModified(id));
5066 Ok(())
5067}
5068
5069async fn set_contacts_by_fingerprints(
5073 context: &Context,
5074 id: ChatId,
5075 fingerprint_addrs: &[(String, String)],
5076) -> Result<()> {
5077 let chat = Chat::load_from_db(context, id).await?;
5078 ensure!(
5079 chat.is_encrypted(context).await?,
5080 "Cannot add key-contacts to unencrypted chat {id}"
5081 );
5082 ensure!(
5083 matches!(chat.typ, Chattype::Group | Chattype::OutBroadcast),
5084 "{id} is not a group or broadcast",
5085 );
5086 let mut contacts = BTreeSet::new();
5087 for (fingerprint, addr) in fingerprint_addrs {
5088 let contact = Contact::add_or_lookup_ex(context, "", addr, fingerprint, Origin::Hidden)
5089 .await?
5090 .0;
5091 contacts.insert(contact);
5092 }
5093 let contacts_old = BTreeSet::<ContactId>::from_iter(get_chat_contacts(context, id).await?);
5094 if contacts == contacts_old {
5095 return Ok(());
5096 }
5097 let broadcast_contacts_added = context
5098 .sql
5099 .transaction(move |transaction| {
5100 if chat.typ != Chattype::OutBroadcast {
5106 transaction.execute("DELETE FROM chats_contacts WHERE chat_id=?", (id,))?;
5107 }
5108
5109 let mut statement = transaction.prepare(
5112 "INSERT OR IGNORE INTO chats_contacts (chat_id, contact_id) VALUES (?, ?)",
5113 )?;
5114 let mut broadcast_contacts_added = Vec::new();
5115 for contact_id in &contacts {
5116 if statement.execute((id, contact_id))? > 0 && chat.typ == Chattype::OutBroadcast {
5117 broadcast_contacts_added.push(*contact_id);
5118 }
5119 }
5120 Ok(broadcast_contacts_added)
5121 })
5122 .await?;
5123 let timestamp = smeared_time(context);
5124 for added_id in broadcast_contacts_added {
5125 let msg = stock_str::msg_add_member_local(context, added_id, ContactId::UNDEFINED).await;
5126 add_info_msg_with_cmd(
5127 context,
5128 id,
5129 &msg,
5130 SystemMessage::MemberAddedToGroup,
5131 Some(timestamp),
5132 timestamp,
5133 None,
5134 Some(ContactId::SELF),
5135 Some(added_id),
5136 )
5137 .await?;
5138 }
5139 context.emit_event(EventType::ChatModified(id));
5140 Ok(())
5141}
5142
5143#[derive(Debug, Serialize, Deserialize, PartialEq)]
5145pub(crate) enum SyncId {
5146 ContactAddr(String),
5148
5149 ContactFingerprint(String),
5151
5152 Grpid(String),
5153 Msgids(Vec<String>),
5155
5156 Device,
5158}
5159
5160#[derive(Debug, Serialize, Deserialize, PartialEq)]
5162pub(crate) enum SyncAction {
5163 Block,
5164 Unblock,
5165 Accept,
5166 SetVisibility(ChatVisibility),
5167 SetMuted(MuteDuration),
5168 CreateOutBroadcast {
5170 chat_name: String,
5171 secret: String,
5172 },
5173 CreateGroupEncrypted(String),
5175 Rename(String),
5176 SetContacts(Vec<String>),
5178 SetPgpContacts(Vec<(String, String)>),
5182 SetDescription(String),
5183 Delete,
5184}
5185
5186impl Context {
5187 pub(crate) async fn sync_alter_chat(&self, id: &SyncId, action: &SyncAction) -> Result<()> {
5189 let chat_id = match id {
5190 SyncId::ContactAddr(addr) => {
5191 if let SyncAction::Rename(to) = action {
5192 Contact::create_ex(self, Nosync, to, addr).await?;
5193 return Ok(());
5194 }
5195 let addr = ContactAddress::new(addr).context("Invalid address")?;
5196 let (contact_id, _) =
5197 Contact::add_or_lookup(self, "", &addr, Origin::Hidden).await?;
5198 match action {
5199 SyncAction::Block => {
5200 return contact::set_blocked(self, Nosync, contact_id, true).await;
5201 }
5202 SyncAction::Unblock => {
5203 return contact::set_blocked(self, Nosync, contact_id, false).await;
5204 }
5205 _ => (),
5206 }
5207 ChatIdBlocked::get_for_contact(self, contact_id, Blocked::Request)
5210 .await?
5211 .id
5212 }
5213 SyncId::ContactFingerprint(fingerprint) => {
5214 let name = "";
5215 let addr = "";
5216 let (contact_id, _) =
5217 Contact::add_or_lookup_ex(self, name, addr, fingerprint, Origin::Hidden)
5218 .await?;
5219 match action {
5220 SyncAction::Rename(to) => {
5221 contact_id.set_name_ex(self, Nosync, to).await?;
5222 self.emit_event(EventType::ContactsChanged(Some(contact_id)));
5223 return Ok(());
5224 }
5225 SyncAction::Block => {
5226 return contact::set_blocked(self, Nosync, contact_id, true).await;
5227 }
5228 SyncAction::Unblock => {
5229 return contact::set_blocked(self, Nosync, contact_id, false).await;
5230 }
5231 _ => (),
5232 }
5233 ChatIdBlocked::get_for_contact(self, contact_id, Blocked::Request)
5234 .await?
5235 .id
5236 }
5237 SyncId::Grpid(grpid) => {
5238 match action {
5239 SyncAction::CreateOutBroadcast { chat_name, secret } => {
5240 create_out_broadcast_ex(
5241 self,
5242 Nosync,
5243 grpid.to_string(),
5244 chat_name.clone(),
5245 secret.to_string(),
5246 )
5247 .await?;
5248 return Ok(());
5249 }
5250 SyncAction::CreateGroupEncrypted(name) => {
5251 create_group_ex(self, Nosync, grpid.clone(), name).await?;
5252 return Ok(());
5253 }
5254 _ => {}
5255 }
5256 get_chat_id_by_grpid(self, grpid)
5257 .await?
5258 .with_context(|| format!("No chat for grpid '{grpid}'"))?
5259 .0
5260 }
5261 SyncId::Msgids(msgids) => {
5262 let msg = message::get_by_rfc724_mids(self, msgids)
5263 .await?
5264 .with_context(|| format!("No message found for Message-IDs {msgids:?}"))?;
5265 ChatId::lookup_by_message(&msg)
5266 .with_context(|| format!("No chat found for Message-IDs {msgids:?}"))?
5267 }
5268 SyncId::Device => ChatId::get_for_contact(self, ContactId::DEVICE).await?,
5269 };
5270 match action {
5271 SyncAction::Block => chat_id.block_ex(self, Nosync).await,
5272 SyncAction::Unblock => chat_id.unblock_ex(self, Nosync).await,
5273 SyncAction::Accept => chat_id.accept_ex(self, Nosync).await,
5274 SyncAction::SetVisibility(v) => chat_id.set_visibility_ex(self, Nosync, *v).await,
5275 SyncAction::SetMuted(duration) => set_muted_ex(self, Nosync, chat_id, *duration).await,
5276 SyncAction::CreateOutBroadcast { .. } | SyncAction::CreateGroupEncrypted(..) => {
5277 Err(anyhow!("sync_alter_chat({id:?}, {action:?}): Bad request."))
5279 }
5280 SyncAction::Rename(to) => rename_ex(self, Nosync, chat_id, to).await,
5281 SyncAction::SetDescription(to) => {
5282 set_chat_description_ex(self, Nosync, chat_id, to).await
5283 }
5284 SyncAction::SetContacts(addrs) => set_contacts_by_addrs(self, chat_id, addrs).await,
5285 SyncAction::SetPgpContacts(fingerprint_addrs) => {
5286 set_contacts_by_fingerprints(self, chat_id, fingerprint_addrs).await
5287 }
5288 SyncAction::Delete => chat_id.delete_ex(self, Nosync).await,
5289 }
5290 }
5291
5292 pub(crate) fn on_archived_chats_maybe_noticed(&self) {
5297 self.emit_msgs_changed_without_msg_id(DC_CHAT_ID_ARCHIVED_LINK);
5298 }
5299}
5300
5301#[cfg(test)]
5302mod chat_tests;