Files
nym/wasm/client/src/config.rs
T
Jędrzej Stuczyński 4890c528bc feat: mixFetch - the final countdown (#3737)
* mixFetch

* clippy

* removed redundant Arc over 'WasmStorage' in the 'ClientStorage'

---------

Co-authored-by: Fouad <fmtabbara@hotmail.co.uk>
2023-09-07 12:45:03 +01:00

64 lines
1.8 KiB
Rust

// Copyright 2022-2023 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0
use crate::error::WasmClientError;
use serde::{Deserialize, Serialize};
use tsify::Tsify;
use wasm_bindgen::prelude::*;
use wasm_client_core::config::{new_base_client_config, BaseClientConfig, ConfigDebug, DebugWasm};
pub const DEFAULT_CLIENT_ID: &str = "nym-mixnet-client";
#[wasm_bindgen]
#[derive(Debug, Deserialize, PartialEq, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ClientConfig {
pub(crate) base: BaseClientConfig,
}
#[derive(Tsify, Debug, Clone, Serialize, Deserialize)]
#[tsify(into_wasm_abi, from_wasm_abi)]
#[serde(rename_all = "camelCase")]
pub struct ClientConfigOpts {
#[tsify(optional)]
pub id: Option<String>,
#[tsify(optional)]
pub nym_api: Option<String>,
#[tsify(optional)]
pub nyxd: Option<String>,
#[tsify(optional)]
pub debug: Option<DebugWasm>,
}
#[wasm_bindgen]
impl ClientConfig {
#[wasm_bindgen(constructor)]
pub fn new(opts: ClientConfigOpts) -> Result<ClientConfig, WasmClientError> {
let version = env!("CARGO_PKG_VERSION").to_string();
let id = opts.id.unwrap_or_else(|| DEFAULT_CLIENT_ID.to_string());
Ok(ClientConfig {
base: new_base_client_config(id, version, opts.nym_api, opts.nyxd, opts.debug)?,
})
}
#[cfg(feature = "node-tester")]
pub(crate) fn new_tester_config<S: Into<String>>(id: S) -> Self {
ClientConfig {
base: BaseClientConfig::new(id.into(), env!("CARGO_PKG_VERSION").to_string())
.with_disabled_credentials(true)
.with_disabled_cover_traffic(true)
.with_disabled_topology_refresh(true),
}
}
}
impl ClientConfig {
pub fn override_debug<D: Into<ConfigDebug>>(&mut self, debug: D) {
self.base.debug = debug.into();
}
}