Signed-off-by: Lukas Wagner <l.wag...@proxmox.com> --- common/src/notify.rs | 106 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+)
diff --git a/common/src/notify.rs b/common/src/notify.rs index 4fbd705..8a6d76e 100644 --- a/common/src/notify.rs +++ b/common/src/notify.rs @@ -15,6 +15,10 @@ mod export { use proxmox_notify::endpoints::sendmail::{ DeleteableSendmailProperty, SendmailConfig, SendmailConfigUpdater, }; + use proxmox_notify::endpoints::smtp::{ + DeleteableSmtpProperty, SmtpConfig, SmtpConfigUpdater, SmtpMode, SmtpPrivateConfig, + SmtpPrivateConfigUpdater, + }; use proxmox_notify::matcher::{ CalendarMatcher, DeleteableMatcherProperty, FieldMatcher, MatchModeOperator, MatcherConfig, MatcherConfigUpdater, SeverityMatcher, @@ -271,6 +275,108 @@ mod export { api::gotify::delete_gotify_endpoint(&mut config, name) } + #[export(serialize_error)] + fn get_smtp_endpoints( + #[try_from_ref] this: &NotificationConfig, + ) -> Result<Vec<SmtpConfig>, HttpError> { + let config = this.config.lock().unwrap(); + api::smtp::get_endpoints(&config) + } + + #[export(serialize_error)] + fn get_smtp_endpoint( + #[try_from_ref] this: &NotificationConfig, + id: &str, + ) -> Result<SmtpConfig, HttpError> { + let config = this.config.lock().unwrap(); + api::smtp::get_endpoint(&config, id) + } + + #[export(serialize_error)] + #[allow(clippy::too_many_arguments)] + fn add_smtp_endpoint( + #[try_from_ref] this: &NotificationConfig, + name: String, + server: String, + port: Option<u16>, + mode: Option<SmtpMode>, + username: Option<String>, + password: Option<String>, + mailto: Option<Vec<String>>, + mailto_user: Option<Vec<String>>, + from_address: String, + author: Option<String>, + comment: Option<String>, + ) -> Result<(), HttpError> { + let mut config = this.config.lock().unwrap(); + api::smtp::add_endpoint( + &mut config, + &SmtpConfig { + name: name.clone(), + server, + port, + mode, + username, + mailto, + mailto_user, + from_address, + author, + comment, + }, + &SmtpPrivateConfig { name, password }, + ) + } + + #[export(serialize_error)] + #[allow(clippy::too_many_arguments)] + fn update_smtp_endpoint( + #[try_from_ref] this: &NotificationConfig, + name: &str, + server: Option<String>, + port: Option<u16>, + mode: Option<SmtpMode>, + username: Option<String>, + password: Option<String>, + mailto: Option<Vec<String>>, + mailto_user: Option<Vec<String>>, + from_address: Option<String>, + author: Option<String>, + comment: Option<String>, + delete: Option<Vec<DeleteableSmtpProperty>>, + digest: Option<&str>, + ) -> Result<(), HttpError> { + let mut config = this.config.lock().unwrap(); + let digest = decode_digest(digest)?; + + api::smtp::update_endpoint( + &mut config, + name, + &SmtpConfigUpdater { + server, + port, + mode, + username, + mailto, + mailto_user, + from_address, + author, + comment, + }, + &SmtpPrivateConfigUpdater { password }, + delete.as_deref(), + digest.as_deref(), + ) + } + + #[export(serialize_error)] + fn delete_smtp_endpoint( + #[try_from_ref] this: &NotificationConfig, + name: &str, + ) -> Result<(), HttpError> { + let mut config = this.config.lock().unwrap(); + api::smtp::delete_endpoint(&mut config, name) + } + #[export(serialize_error)] fn get_matchers( #[try_from_ref] this: &NotificationConfig, -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel