From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <pbs-devel-bounces@lists.proxmox.com> Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id DE9141FF189 for <inbox@lore.proxmox.com>; Fri, 21 Mar 2025 13:25:38 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id E91B81CF51; Fri, 21 Mar 2025 13:25:34 +0100 (CET) From: Lukas Wagner <l.wagner@proxmox.com> To: pbs-devel@lists.proxmox.com Date: Fri, 21 Mar 2025 13:25:14 +0100 Message-Id: <20250321122521.198725-4-l.wagner@proxmox.com> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250321122521.198725-1-l.wagner@proxmox.com> References: <20250321122521.198725-1-l.wagner@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.009 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [mod.rs] Subject: [pbs-devel] [PATCH proxmox-backup 03/10] notifications: add type for ACME notification template data X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion <pbs-devel.lists.proxmox.com> List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pbs-devel>, <mailto:pbs-devel-request@lists.proxmox.com?subject=unsubscribe> List-Archive: <http://lists.proxmox.com/pipermail/pbs-devel/> List-Post: <mailto:pbs-devel@lists.proxmox.com> List-Help: <mailto:pbs-devel-request@lists.proxmox.com?subject=help> List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel>, <mailto:pbs-devel-request@lists.proxmox.com?subject=subscribe> Reply-To: Proxmox Backup Server development discussion <pbs-devel@lists.proxmox.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pbs-devel-bounces@lists.proxmox.com Sender: "pbs-devel" <pbs-devel-bounces@lists.proxmox.com> This commit adds a separate type for the data passed to this type of notification template. Also we make sure that we do not expose any non-primitive types to the template renderer, any data needed in the template is mapped into the new dedicated template data type. This ensures that any changes in types defined in other places do not leak into the template rendering process by accident. This commit also tries to unify the style and naming of template variables. Signed-off-by: Lukas Wagner <l.wagner@proxmox.com> --- src/server/notifications/mod.rs | 22 ++++++++++++---------- src/server/notifications/template_data.rs | 11 +++++++++++ templates/default/acme-err-body.txt.hbs | 2 +- 3 files changed, 24 insertions(+), 11 deletions(-) diff --git a/src/server/notifications/mod.rs b/src/server/notifications/mod.rs index 182af213..864c6e9f 100644 --- a/src/server/notifications/mod.rs +++ b/src/server/notifications/mod.rs @@ -23,7 +23,7 @@ const SPOOL_DIR: &str = concatcp!(pbs_buildcfg::PROXMOX_BACKUP_STATE_DIR, "/noti mod template_data; -use template_data::{GcErrTemplateData, GcOkTemplateData}; +use template_data::{AcmeErrTemplateData, CommonData, GcErrTemplateData, GcOkTemplateData}; /// Initialize the notification system by setting context in proxmox_notify pub fn init() -> Result<(), Error> { @@ -493,20 +493,22 @@ pub fn send_certificate_renewal_mail(result: &Result<(), Error>) -> Result<(), E _ => return Ok(()), }; - let (fqdn, port) = get_server_url(); - - let data = json!({ - "fqdn": fqdn, - "port": port, - "error": error, - }); - let metadata = HashMap::from([ ("hostname".into(), proxmox_sys::nodename().into()), ("type".into(), "acme".into()), ]); - let notification = Notification::from_template(Severity::Info, "acme-err", data, metadata); + let template_data = AcmeErrTemplateData { + common: CommonData::new(), + error, + }; + + let notification = Notification::from_template( + Severity::Info, + "acme-err", + serde_json::to_value(template_data)?, + metadata, + ); send_notification(notification)?; Ok(()) diff --git a/src/server/notifications/template_data.rs b/src/server/notifications/template_data.rs index 2d87b435..c3e31367 100644 --- a/src/server/notifications/template_data.rs +++ b/src/server/notifications/template_data.rs @@ -130,3 +130,14 @@ impl GcErrTemplateData { } } } + +/// Template data for the acme-err template. +#[derive(Serialize)] +#[serde(rename_all = "kebab-case")] +pub struct AcmeErrTemplateData { + /// Common properties. + #[serde(flatten)] + pub common: CommonData, + /// The error that occured when trying to request the certificate. + pub error: String, +} diff --git a/templates/default/acme-err-body.txt.hbs b/templates/default/acme-err-body.txt.hbs index 3cbfea4a..b9f52a25 100644 --- a/templates/default/acme-err-body.txt.hbs +++ b/templates/default/acme-err-body.txt.hbs @@ -4,4 +4,4 @@ Error: {{error}} Please visit the web interface for further details: -<https://{{fqdn}}:{{port}}/#pbsCertificateConfiguration> +<{{base-url}}/#pbsCertificateConfiguration> -- 2.39.5 _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel