From 797ebad588f338800f372621c025357d4d95698a Mon Sep 17 00:00:00 2001 From: Ida Made Revindra Dikta Mahendra <idamaderevindra05@gmail.com> Date: Fri, 28 Mar 2025 08:55:15 +0700 Subject: [PATCH] [CHORE]: Implement update method in Subscriber model to send notification HTTP requests --- src/model/subscriber.rs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/model/subscriber.rs b/src/model/subscriber.rs index f067e84..bcea228 100644 --- a/src/model/subscriber.rs +++ b/src/model/subscriber.rs @@ -1,4 +1,3 @@ - use rocket::serde::{Deserialize, Serialize}; use rocket::log; use rocket::serde::json::to_string; @@ -11,4 +10,17 @@ use crate::model::notification::Notification; pub struct Subscriber { pub url: String, pub name: String, +} + +impl Subscriber{ + #[tokio::main] + pub async fn update(&self, payload: Notification){ + REQWEST_CLIENT + .post(&self.url) + .header("Content-Type", "JSON") + .body(to_string(&payload).unwrap()) + .send().await.ok(); + log::warn_!("Sent {} notification of: [{}] {}, to: {}", + payload.status, payload.product_type, payload.product_title, self.url); + } } \ No newline at end of file -- GitLab