From ef63342e20f2bf5beba1c0fdefdc869dd40f4a19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Wed, 6 Feb 2019 17:32:13 +0100 Subject: [PATCH] Add reset user config button --- src/api/admin.rs | 6 ++++ src/config.rs | 52 +++++++++++++++++++---------- src/static/templates/admin/page.hbs | 16 ++++++++- 3 files changed, 55 insertions(+), 19 deletions(-) diff --git a/src/api/admin.rs b/src/api/admin.rs index 15c1c11a..983fa75c 100644 --- a/src/api/admin.rs +++ b/src/api/admin.rs @@ -27,6 +27,7 @@ pub fn routes() -> Vec { delete_user, deauth_user, post_config, + delete_config, ] } @@ -173,6 +174,11 @@ fn post_config(data: Json, _token: AdminToken) -> EmptyResult { CONFIG.update_config(data) } +#[post("/config/delete")] +fn delete_config(_token: AdminToken) -> EmptyResult { + CONFIG.delete_user_config() +} + pub struct AdminToken {} impl<'a, 'r> FromRequest<'a, 'r> for AdminToken { diff --git a/src/config.rs b/src/config.rs index 6df2bc63..6d7aedc1 100644 --- a/src/config.rs +++ b/src/config.rs @@ -13,17 +13,14 @@ lazy_static! { } macro_rules! make_config { - ( + ($( + $(#[doc = $groupdoc:literal])? + $group:ident $(: $group_enabled:ident)? { $( - $(#[doc = $groupdoc:literal])? - $group:ident $(: $group_enabled:ident)? { - $( - $(#[doc = $doc:literal])+ - $name:ident : $ty:ty, $editable:literal, $none_action:ident $(, $default:expr)?; - )+ - },)+ - - ) => { + $(#[doc = $doc:literal])+ + $name:ident : $ty:ty, $editable:literal, $none_action:ident $(, $default:expr)?; + )+}, + )+) => { pub struct Config { inner: RwLock } struct Inner { @@ -199,7 +196,7 @@ make_config! { rsa_key_filename: String, false, auto, |c| format!("{}/{}", c.data_folder, "rsa_key"); /// Web vault folder web_vault_folder: String, false, def, "web-vault/".to_string(); - }, + }, ws { /// Enable websocket notifications websocket_enabled: bool, false, def, false; @@ -208,7 +205,7 @@ make_config! { /// Websocket port websocket_port: u16, false, def, 3012; }, - + /// General settings settings { /// Domain URL |> This needs to be set to the URL used to access the server, including 'http[s]://' and port, if it's different than the default. Some server functions don't work correctly without this value @@ -236,7 +233,7 @@ make_config! { }, /// Advanced settings - advanced { + advanced { /// Positive icon cache expiry |> Number of seconds to consider that an already cached icon is fresh. After this period, the icon will be redownloaded icon_cache_ttl: u64, true, def, 2_592_000; /// Negative icon cache expiry |> Number of seconds before trying to download an icon that failed again. @@ -355,6 +352,28 @@ impl Config { Ok(()) } + pub fn delete_user_config(&self) -> Result<(), Error> { + crate::util::delete_file(&CONFIG_FILE)?; + + // Empty user config + let usr = ConfigBuilder::default(); + + // Config now is env + defaults + let config = { + let env = &self.inner.read().unwrap()._env; + env.build() + }; + + // Save configs + { + let mut writer = self.inner.write().unwrap(); + writer.config = config; + writer._usr = usr; + } + + Ok(()) + } + pub fn private_rsa_key(&self) -> String { format!("{}.der", CONFIG.rsa_key_filename()) } @@ -366,14 +385,11 @@ impl Config { } pub fn mail_enabled(&self) -> bool { let inner = &self.inner.read().unwrap().config; - inner._enable_smtp - && inner.smtp_host.is_some() + inner._enable_smtp && inner.smtp_host.is_some() } pub fn yubico_enabled(&self) -> bool { let inner = &self.inner.read().unwrap().config; - inner._enable_yubico - && inner.yubico_client_id.is_some() - && inner.yubico_secret_key.is_some() + inner._enable_yubico && inner.yubico_client_id.is_some() && inner.yubico_secret_key.is_some() } pub fn render_template( diff --git a/src/static/templates/admin/page.hbs b/src/static/templates/admin/page.hbs index 400d00f3..0fffe023 100644 --- a/src/static/templates/admin/page.hbs +++ b/src/static/templates/admin/page.hbs @@ -61,7 +61,7 @@ {{#each config}} {{#if groupdoc}}
-
{{#each elements}} @@ -95,6 +95,7 @@ {{/if}} {{/each}} +
@@ -176,6 +177,19 @@ "Error saving config", data); return false; } + function deleteConfig() { + var input = prompt("This will remove all user configurations, and restore the defaults and the " + + "values set by the environment. This operation could be dangerous. Type 'DELETE' to proceed:"); + if (input === "DELETE") { + _post("/admin/config/delete", + "Config deleted correctly", + "Error deleting config"); + } else { + alert("Wrong input, please try again") + } + + return false; + } function masterCheck(check_id, inputs_query) { function toggleEnabled(check_id, inputs_query, enabled) { $(inputs_query).prop("disabled", !enabled)