From: Lukas Wagner <l.wagner@proxmox.com>
To: pbs-devel@lists.proxmox.com
Subject: [pbs-devel] [PATCH proxmox-backup v2 06/10] notifications: add type for sync notification template data
Date: Thu, 27 Mar 2025 15:55:29 +0100 [thread overview]
Message-ID: <20250327145533.274348-7-l.wagner@proxmox.com> (raw)
In-Reply-To: <20250327145533.274348-1-l.wagner@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 | 52 +++++++++++++++-------
src/server/notifications/template_data.rs | 36 +++++++++++++++
templates/default/sync-err-body.txt.hbs | 14 +++---
templates/default/sync-err-subject.txt.hbs | 8 ++--
templates/default/sync-ok-body.txt.hbs | 14 +++---
templates/default/sync-ok-subject.txt.hbs | 6 +--
6 files changed, 92 insertions(+), 38 deletions(-)
diff --git a/src/server/notifications/mod.rs b/src/server/notifications/mod.rs
index e0dd92d2..9e069710 100644
--- a/src/server/notifications/mod.rs
+++ b/src/server/notifications/mod.rs
@@ -25,7 +25,8 @@ mod template_data;
use template_data::{
AcmeErrTemplateData, CommonData, GcErrTemplateData, GcOkTemplateData,
- PackageUpdatesTemplateData, PruneErrTemplateData, PruneOkTemplateData,
+ PackageUpdatesTemplateData, PruneErrTemplateData, PruneOkTemplateData, SyncErrTemplateData,
+ SyncOkTemplateData,
};
/// Initialize the notification system by setting context in proxmox_notify
@@ -320,21 +321,6 @@ pub fn send_prune_status(
}
pub fn send_sync_status(job: &SyncJobConfig, result: &Result<(), Error>) -> Result<(), Error> {
- let (fqdn, port) = get_server_url();
- let mut data = json!({
- "job": job,
- "fqdn": fqdn,
- "port": port,
- });
-
- let (template, severity) = match result {
- Ok(()) => ("sync-ok", Severity::Info),
- Err(err) => {
- data["error"] = err.to_string().into();
- ("sync-err", Severity::Error)
- }
- };
-
let metadata = HashMap::from([
("job-id".into(), job.id.clone()),
("datastore".into(), job.store.clone()),
@@ -342,7 +328,39 @@ pub fn send_sync_status(job: &SyncJobConfig, result: &Result<(), Error>) -> Resu
("type".into(), "sync".into()),
]);
- let notification = Notification::from_template(severity, template, data, metadata);
+ let notification = match result {
+ Ok(()) => {
+ let template_data = SyncOkTemplateData {
+ common: CommonData::new(),
+ datastore: job.store.clone(),
+ job_id: job.id.clone(),
+ remote: job.remote.clone(),
+ remote_datastore: job.remote_store.clone(),
+ };
+ Notification::from_template(
+ Severity::Info,
+ "sync-ok",
+ serde_json::to_value(template_data)?,
+ metadata,
+ )
+ }
+ Err(err) => {
+ let template_data = SyncErrTemplateData {
+ common: CommonData::new(),
+ datastore: job.store.clone(),
+ job_id: job.id.clone(),
+ remote: job.remote.clone(),
+ remote_datastore: job.remote_store.clone(),
+ error: format!("{err:#}"),
+ };
+ Notification::from_template(
+ Severity::Error,
+ "sync-err",
+ serde_json::to_value(template_data)?,
+ metadata,
+ )
+ }
+ };
let (email, notify, mode) = lookup_datastore_notify_settings(&job.store);
match mode {
diff --git a/src/server/notifications/template_data.rs b/src/server/notifications/template_data.rs
index 32c8ce17..095c7415 100644
--- a/src/server/notifications/template_data.rs
+++ b/src/server/notifications/template_data.rs
@@ -208,3 +208,39 @@ pub struct PruneErrTemplateData {
/// The error that occured during the prune job.
pub error: String,
}
+
+/// Template data for the sync-ok template.
+#[derive(Serialize)]
+#[serde(rename_all = "kebab-case")]
+pub struct SyncOkTemplateData {
+ /// Common properties.
+ #[serde(flatten)]
+ pub common: CommonData,
+ /// The datastore.
+ pub datastore: String,
+ /// The ID of the job.
+ pub job_id: String,
+ /// The remote.
+ pub remote: Option<String>,
+ /// The remote datastore we synced to/from.
+ pub remote_datastore: String,
+}
+
+/// Template data for the sync-err template.
+#[derive(Serialize)]
+#[serde(rename_all = "kebab-case")]
+pub struct SyncErrTemplateData {
+ /// Common properties.
+ #[serde(flatten)]
+ pub common: CommonData,
+ /// The datastore.
+ pub datastore: String,
+ /// The ID of the job.
+ pub job_id: String,
+ /// The remote.
+ pub remote: Option<String>,
+ /// The remote datastore we synced to/from.
+ pub remote_datastore: String,
+ /// The error that occurred during the sync job.
+ pub error: String,
+}
diff --git a/templates/default/sync-err-body.txt.hbs b/templates/default/sync-err-body.txt.hbs
index a56d9d22..d47a5d6c 100644
--- a/templates/default/sync-err-body.txt.hbs
+++ b/templates/default/sync-err-body.txt.hbs
@@ -1,14 +1,14 @@
-Job ID: {{job.id}}
-Datastore: {{job.store}}
-{{#if job.remote~}}
-Remote: {{job.remote}}
-Remote Store: {{job.remote-store}}
+Job ID: {{job-id}}
+Datastore: {{datastore}}
+{{#if remote~}}
+Remote: {{remote}}
+Remote Store: {{remote-datastore}}
{{else~}}
-Local Source Store: {{job.remote-store}}
+Local Source Store: {{remote-datastore}}
{{/if}}
Synchronization failed: {{error}}
Please visit the web interface for further details:
-<https://{{fqdn}}:{{port}}/#pbsServerAdministration:tasks>
+<{{base-url}}/#pbsServerAdministration:tasks>
diff --git a/templates/default/sync-err-subject.txt.hbs b/templates/default/sync-err-subject.txt.hbs
index a1464802..a4aee3e4 100644
--- a/templates/default/sync-err-subject.txt.hbs
+++ b/templates/default/sync-err-subject.txt.hbs
@@ -1,5 +1,5 @@
-{{#if job.remote~}}
-Sync remote '{{ job.remote }}' datastore '{{ job.remote-store }}' failed
+{{#if remote~}}
+Sync remote '{{remote}}' datastore '{{remote-datastore}}' failed
{{else~}}
-Sync local datastore '{{ job.remote-store }}' failed
-{{/if}}
+Sync local datastore '{{remote-datastore}}' failed
+{{/if}}
diff --git a/templates/default/sync-ok-body.txt.hbs b/templates/default/sync-ok-body.txt.hbs
index 25c4b33b..6ef5993d 100644
--- a/templates/default/sync-ok-body.txt.hbs
+++ b/templates/default/sync-ok-body.txt.hbs
@@ -1,14 +1,14 @@
-Job ID: {{job.id}}
-Datastore: {{job.store}}
-{{#if job.remote~}}
-Remote: {{job.remote}}
-Remote Store: {{job.remote-store}}
+Job ID: {{job-id}}
+Datastore: {{datastore}}
+{{#if remote~}}
+Remote: {{remote}}
+Remote Store: {{remote-datastore}}
{{else~}}
-Local Source Store: {{job.remote-store}}
+Local Source Store: {{remote-datastore}}
{{/if}}
Synchronization successful.
Please visit the web interface for further details:
-<https://{{fqdn}}:{{port}}/#DataStore-{{job.store}}>
+<{{base-url}}/#DataStore-{{datastore}}>
diff --git a/templates/default/sync-ok-subject.txt.hbs b/templates/default/sync-ok-subject.txt.hbs
index 76616b5c..35fac2ce 100644
--- a/templates/default/sync-ok-subject.txt.hbs
+++ b/templates/default/sync-ok-subject.txt.hbs
@@ -1,5 +1,5 @@
-{{#if job.remote~}}
-Sync remote '{{ job.remote }}' datastore '{{ job.remote-store }}' successful
+{{#if remote~}}
+Sync remote '{{remote}}' datastore '{{remote-datastore}}' successful
{{else~}}
-Sync local datastore '{{ job.remote-store }}' successful
+Sync local datastore '{{remote-datastore}}' successful
{{/if}}
--
2.39.5
_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel
next prev parent reply other threads:[~2025-03-27 14:55 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-27 14:55 [pbs-devel] [PATCH proxmox-backup v2 00/10] notifications: cleanup in preparation of overridable templates Lukas Wagner
2025-03-27 14:55 ` [pbs-devel] [PATCH proxmox-backup v2 01/10] notifications: move make notifications module a dir-style module Lukas Wagner
2025-03-27 14:55 ` [pbs-devel] [PATCH proxmox-backup v2 02/10] notifications: add type for GC notification template data Lukas Wagner
2025-03-27 14:55 ` [pbs-devel] [PATCH proxmox-backup v2 03/10] notifications: add type for ACME " Lukas Wagner
2025-03-27 14:55 ` [pbs-devel] [PATCH proxmox-backup v2 04/10] notifications: add type for APT " Lukas Wagner
2025-03-27 14:55 ` [pbs-devel] [PATCH proxmox-backup v2 05/10] notifications: add type for prune " Lukas Wagner
2025-03-27 14:55 ` Lukas Wagner [this message]
2025-03-27 14:55 ` [pbs-devel] [PATCH proxmox-backup v2 07/10] notifications: add type for tape backup " Lukas Wagner
2025-03-27 14:55 ` [pbs-devel] [PATCH proxmox-backup v2 08/10] notifications: add type for tape load " Lukas Wagner
2025-03-27 14:55 ` [pbs-devel] [PATCH proxmox-backup v2 09/10] notifications: add type for verify " Lukas Wagner
2025-03-27 14:55 ` [pbs-devel] [PATCH proxmox-backup v2 10/10] notifications: remove HTML template for test notification Lukas Wagner
2025-03-28 10:23 ` [pbs-devel] superseded: [PATCH proxmox-backup v2 00/10] notifications: cleanup in preparation of overridable templates Lukas Wagner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250327145533.274348-7-l.wagner@proxmox.com \
--to=l.wagner@proxmox.com \
--cc=pbs-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal