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 [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id A12F21FF164 for <inbox@lore.proxmox.com>; Fri, 28 Mar 2025 11:23:30 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 06B8736D96; Fri, 28 Mar 2025 11:23:24 +0100 (CET) From: Lukas Wagner <l.wagner@proxmox.com> To: pbs-devel@lists.proxmox.com Date: Fri, 28 Mar 2025 11:22:40 +0100 Message-Id: <20250328102242.75539-9-l.wagner@proxmox.com> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250328102242.75539-1-l.wagner@proxmox.com> References: <20250328102242.75539-1-l.wagner@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.013 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 SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pbs-devel] [PATCH proxmox-backup v3 08/10] notifications: add type for tape load 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> Reviewed-by: Maximiliano Sandoval <m.sandoval@proxmox.com> --- src/server/notifications/mod.rs | 31 +++++++++++++-------- src/server/notifications/template_data.rs | 19 +++++++++++++ templates/default/tape-load-body.txt.hbs | 14 +++++----- templates/default/tape-load-subject.txt.hbs | 2 +- 4 files changed, 46 insertions(+), 20 deletions(-) diff --git a/src/server/notifications/mod.rs b/src/server/notifications/mod.rs index f15044a1..04790126 100644 --- a/src/server/notifications/mod.rs +++ b/src/server/notifications/mod.rs @@ -26,7 +26,7 @@ mod template_data; use template_data::{ AcmeErrTemplateData, CommonData, GcErrTemplateData, GcOkTemplateData, PackageUpdatesTemplateData, PruneErrTemplateData, PruneOkTemplateData, SyncErrTemplateData, - SyncOkTemplateData, TapeBackupErrTemplateData, TapeBackupOkTemplateData, + SyncOkTemplateData, TapeBackupErrTemplateData, TapeBackupOkTemplateData, TapeLoadTemplateData, }; /// Initialize the notification system by setting context in proxmox_notify @@ -470,21 +470,28 @@ pub fn send_load_media_notification( label_text: &str, reason: Option<String>, ) -> Result<(), Error> { - let device_type = if changer { "changer" } else { "drive" }; - - let data = json!({ - "device-type": device_type, - "device": device, - "label-text": label_text, - "reason": reason, - "is-changer": changer, - }); - let metadata = HashMap::from([ ("hostname".into(), proxmox_sys::nodename().into()), ("type".into(), "tape-load".into()), ]); - let notification = Notification::from_template(Severity::Notice, "tape-load", data, metadata); + + let device_type = if changer { "changer" } else { "drive" }; + + let template_data = TapeLoadTemplateData { + common: CommonData::new(), + load_reason: reason, + tape_drive: device.into(), + drive_type: device_type.into(), + drive_is_changer: changer, + tape_label: label_text.into(), + }; + + let notification = Notification::from_template( + Severity::Notice, + "tape-load", + serde_json::to_value(template_data)?, + metadata, + ); match mode { TapeNotificationMode::LegacySendmail { notify_user } => { diff --git a/src/server/notifications/template_data.rs b/src/server/notifications/template_data.rs index 1e6c278b..a585401c 100644 --- a/src/server/notifications/template_data.rs +++ b/src/server/notifications/template_data.rs @@ -295,3 +295,22 @@ pub struct TapeBackupErrTemplateData { /// The error that happend during the backup job. pub error: String, } + +/// Template data for the tape-load template. +#[derive(Serialize)] +#[serde(rename_all = "kebab-case")] +pub struct TapeLoadTemplateData { + /// Common properties. + #[serde(flatten)] + pub common: CommonData, + /// The reason why the tape must be loaded. + pub load_reason: Option<String>, + /// The tape drive. + pub tape_drive: String, + /// The type of the drive (changer/drive) + pub drive_type: String, + /// The drive is a tape changer. + pub drive_is_changer: bool, + /// The label of the tape. + pub tape_label: String, +} diff --git a/templates/default/tape-load-body.txt.hbs b/templates/default/tape-load-body.txt.hbs index ddc8a9e1..1e2562c9 100644 --- a/templates/default/tape-load-body.txt.hbs +++ b/templates/default/tape-load-body.txt.hbs @@ -1,15 +1,15 @@ -{{#if reason~}} -The {{ device-type }} has the wrong or no tape(s) inserted. Error: -{{ reason }} +{{#if load-reason~}} +The {{drive-type}} has the wrong or no tape(s) inserted. Error: +{{load-reason}} {{/if~}} -{{#if is-changer~}} +{{#if drive-is-changer~}} Please insert the requested media into the changer. -Changer: {{ device }} +Changer: {{tape-drive}} {{else}} Please insert the requested media into the backup drive. -Drive: {{ device }} +Drive: {{tape-drive}} {{/if}} -Media: {{ label-text }} +Media: {{tape-label}} diff --git a/templates/default/tape-load-subject.txt.hbs b/templates/default/tape-load-subject.txt.hbs index 10f6a02e..a680415b 100644 --- a/templates/default/tape-load-subject.txt.hbs +++ b/templates/default/tape-load-subject.txt.hbs @@ -1 +1 @@ -Load Media '{{ label-text }}' request for {{ device-type }} '{{ device }}' +Load Media '{{tape-label}}' request for {{drive-type}} '{{tape-drive}}' -- 2.39.5 _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel