From 562c32939d6c9090ade9b2c3eb0bb26bec9d6b9d Mon Sep 17 00:00:00 2001 From: philipp Date: Thu, 30 May 2024 10:39:55 +0200 Subject: [PATCH 1/3] better phrasing of text --- src/model/event.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/model/event.rs b/src/model/event.rs index c0c8349..cc7664c 100644 --- a/src/model/event.rs +++ b/src/model/event.rs @@ -282,16 +282,17 @@ WHERE trip_details.id=? let rower = Registration::all_rower(db, self.trip_details_id).await; for user in rower { if let Some(user) = User::find_by_name(db, &user.name).await { - let notes = match update.notes { - Some(n) if !n.is_empty() => n, - _ => ".", + let notes = if let Some(notes) = update.notes { + format!("Grund der Absage: {notes}") + } else { + String::from("") }; Notification::create( db, &user, &format!( - "Die Ausfahrt {} am {} um {} wurde abgesagt{}", + "Die Ausfahrt {} am {} um {} wurde abgesagt. {}", self.name, self.day, self.planned_starting_time, notes ), "Absage Ausfahrt", From 1bd643f6f471a5bb30bb42bb5e0f61489daf7bec Mon Sep 17 00:00:00 2001 From: philipp Date: Thu, 30 May 2024 11:11:08 +0200 Subject: [PATCH 2/3] try --- src/model/notification.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/model/notification.rs b/src/model/notification.rs index 9bb242e..d3bcd81 100644 --- a/src/model/notification.rs +++ b/src/model/notification.rs @@ -135,12 +135,22 @@ ORDER BY read_at DESC, created_at DESC; .await .unwrap(); + println!("in mark_read"); + if let Some(action) = self.action_after_reading.as_ref() { + println!("{action:#?}"); // User read notification about cancelled trip/event let re = Regex::new(r"^remove_user_trip_with_trip_details_id:(\d+)$").unwrap(); if let Some(caps) = re.captures(action) { + println!("in 2nd if"); if let Some(matched) = caps.get(1) { + println!("in 3rd if"); if let Ok(number) = matched.as_str().parse::() { + println!("number: {number}"); + println!( + "DELETE FROM user_trip WHERE user_id = {} AND trip_details_id = {}", + self.user_id, number + ); let _ = sqlx::query!( "DELETE FROM user_trip WHERE user_id = ? AND trip_details_id = ?", self.user_id, From e8d467217679c643cf359c1e698eaf99e22fe4af Mon Sep 17 00:00:00 2001 From: philipp Date: Thu, 30 May 2024 11:34:01 +0200 Subject: [PATCH 3/3] try --- src/model/notification.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/notification.rs b/src/model/notification.rs index d3bcd81..b535aae 100644 --- a/src/model/notification.rs +++ b/src/model/notification.rs @@ -21,7 +21,7 @@ pub struct Notification { impl Notification { pub async fn find_by_id(db: &SqlitePool, id: i64) -> Option { - sqlx::query_as!(Self, "SELECT * FROM notification WHERE id like ?", id) + sqlx::query_as!(Self, "SELECT id, user_id, message, read_at, created_at, category, link, action_after_reading FROM notification WHERE id like ?", id) .fetch_one(db) .await .ok()