/* * Copyright (c) 2022-2024 Niko Bonnieure, Par le Peuple, NextGraph.org developers * All rights reserved. * Licensed under the Apache License, Version 2.0 * * or the MIT license , * at your option. All files in the project carrying such * notice may not be copied, modified, or distributed except * according to those terms. */ #![cfg(target_arch = "wasm32")] mod model; use std::collections::HashMap; use std::net::IpAddr; use std::str::FromStr; use std::sync::Arc; use once_cell::sync::Lazy; use serde::{Deserialize, Serialize}; #[allow(unused_imports)] use serde_json::json; // use js_sys::Reflect; use async_std::stream::StreamExt; use js_sys::Array; use oxrdf::Triple; use wasm_bindgen::prelude::*; use wasm_bindgen_futures::JsFuture; #[allow(unused_imports)] use ng_repo::errors::{NgError, ProtocolError}; use ng_repo::log::*; use ng_repo::types::*; #[allow(unused_imports)] use ng_repo::utils::{decode_key, decode_priv_key}; use ng_net::app_protocol::*; use ng_net::broker::*; #[allow(unused_imports)] use ng_net::types::{BindAddress, ClientInfo, ClientInfoV0, ClientType, CreateAccountBSP, IP}; #[allow(unused_imports)] use ng_net::utils::{ decode_invitation_string, parse_ip_and_port_for, retrieve_local_bootstrap, retrieve_local_url, spawn_and_log_error, Receiver, ResultSend, }; #[allow(unused_imports)] use ng_net::{actor::*, actors::admin::*}; #[allow(unused_imports)] use ng_net::{WS_PORT, WS_PORT_REVERSE_PROXY}; use ng_client_ws::remote_ws_wasm::ConnectionWebSocket; use ng_wallet::types::*; use ng_wallet::*; use nextgraph::local_broker::*; use crate::model::*; #[wasm_bindgen] pub async fn get_local_bootstrap(location: String, invite: JsValue) -> JsValue { let res = retrieve_local_bootstrap(location, invite.as_string(), false).await; if res.is_some() { serde_wasm_bindgen::to_value(&res.unwrap()).unwrap() } else { JsValue::FALSE } } #[wasm_bindgen] pub async fn get_local_bootstrap_with_public(location: String, invite: JsValue) -> JsValue { let res = retrieve_local_bootstrap(location, invite.as_string(), true).await; if res.is_some() { serde_wasm_bindgen::to_value(&res.unwrap()).unwrap() } else { JsValue::FALSE } } #[wasm_bindgen] pub async fn decode_invitation(invite: String) -> JsValue { let res = decode_invitation_string(invite); if res.is_some() { serde_wasm_bindgen::to_value(&res.unwrap()).unwrap() } else { JsValue::FALSE } } #[wasm_bindgen] pub async fn get_local_url(location: String) -> JsValue { let res = retrieve_local_url(location).await; if res.is_some() { serde_wasm_bindgen::to_value(&res.unwrap()).unwrap() } else { JsValue::FALSE } } #[wasm_bindgen] pub async fn get_ngone_url_of_invitation(invitation_string: String) -> JsValue { let res = decode_invitation_string(invitation_string); if res.is_some() { serde_wasm_bindgen::to_value(&res.unwrap().get_urls()[0]).unwrap() } else { JsValue::FALSE } } #[wasm_bindgen] pub fn wallet_gen_shuffle_for_pazzle_opening(pazzle_length: u8) -> JsValue { let res = gen_shuffle_for_pazzle_opening(pazzle_length); serde_wasm_bindgen::to_value(&res).unwrap() } #[wasm_bindgen] pub fn wallet_gen_shuffle_for_pin() -> Vec { gen_shuffle_for_pin() } #[wasm_bindgen] pub fn wallet_open_with_pazzle( js_wallet: JsValue, pazzle: Vec, js_pin: JsValue, ) -> Result { let encrypted_wallet = serde_wasm_bindgen::from_value::(js_wallet) .map_err(|_| "Deserialization error of wallet")?; let pin = serde_wasm_bindgen::from_value::<[u8; 4]>(js_pin) .map_err(|_| "Deserialization error of pin")?; let res = nextgraph::local_broker::wallet_open_with_pazzle(&encrypted_wallet, pazzle, pin); match res { Ok(r) => Ok(r .serialize(&serde_wasm_bindgen::Serializer::new().serialize_maps_as_objects(true)) .unwrap()), Err(e) => Err(e.to_string().into()), } } #[wasm_bindgen] pub fn wallet_update(js_wallet_id: JsValue, js_operations: JsValue) -> Result { let _wallet = serde_wasm_bindgen::from_value::(js_wallet_id) .map_err(|_| "Deserialization error of WalletId")?; let _operations = serde_wasm_bindgen::from_value::>(js_operations) .map_err(|_| "Deserialization error of operations")?; unimplemented!(); // match res { // Ok(r) => Ok(serde_wasm_bindgen::to_value(&r).unwrap()), // Err(e) => Err(e.to_string().into()), // } } #[wasm_bindgen] pub async fn get_wallets() -> Result { init_local_broker_with_lazy(&INIT_LOCAL_BROKER).await; let res = wallets_get_all().await.map_err(|e| { log_err!("wallets_get_all error {}", e.to_string()); }); if res.is_ok() { return Ok(serde_wasm_bindgen::to_value(&res.unwrap()).unwrap()); } Ok(JsValue::UNDEFINED) } #[wasm_bindgen] pub async fn session_start(wallet_name: String, user_js: JsValue) -> Result { let user_id = serde_wasm_bindgen::from_value::(user_js) .map_err(|_| "Deserialization error of user_id")?; let config = SessionConfig::new_save(&user_id, &wallet_name); let res: SessionInfoString = nextgraph::local_broker::session_start(config) .await .map_err(|e: NgError| e.to_string())? .into(); Ok(serde_wasm_bindgen::to_value(&res).unwrap()) } #[cfg(wasmpack_target = "nodejs")] #[wasm_bindgen] pub async fn session_headless_start(user_js: String) -> Result { let user_id = decode_key(&user_js).map_err(|_| "Invalid user_id")?; let config = SessionConfig::new_headless(user_id); let res: SessionInfoString = nextgraph::local_broker::session_start(config) .await .map_err(|e: NgError| e.to_string())? .into(); Ok(serde_wasm_bindgen::to_value(&res).unwrap()) } #[cfg(wasmpack_target = "nodejs")] #[wasm_bindgen] pub async fn session_headless_stop(session_id: JsValue, force_close: bool) -> Result<(), String> { let session_id: u64 = serde_wasm_bindgen::from_value::(session_id) .map_err(|_| "Invalid session_id".to_string())?; let _ = nextgraph::local_broker::session_headless_stop(session_id, force_close) .await .map_err(|e: NgError| e.to_string())?; Ok(()) } #[cfg(wasmpack_target = "nodejs")] #[wasm_bindgen] pub async fn sparql_query(session_id: JsValue, sparql: String) -> Result { let session_id: u64 = serde_wasm_bindgen::from_value::(session_id) .map_err(|_| "Invalid session_id".to_string())?; let request = AppRequest::V0(AppRequestV0 { command: AppRequestCommandV0::new_read_query(), nuri: NuriV0::new_entire_user_site(), payload: Some(AppRequestPayload::new_sparql_query(sparql)), session_id, }); let response = nextgraph::local_broker::app_request(request) .await .map_err(|e: NgError| e.to_string())?; let AppResponse::V0(res) = response; match res { AppResponseV0::False => return Ok(JsValue::FALSE), AppResponseV0::True => return Ok(JsValue::TRUE), AppResponseV0::Graph(graph) => { let triples: Vec = serde_bare::from_slice(&graph) .map_err(|_| "Deserialization error of graph".to_string())?; let results = Array::new(); for triple in triples { results.push(&JsQuad::from(triple).into()); } Ok(results.into()) } AppResponseV0::QueryResult(buf) => { let string = String::from_utf8(buf) .map_err(|_| "Deserialization error of JSON QueryResult String".to_string())?; js_sys::JSON::parse(&string) } AppResponseV0::Error(e) => Err(e.to_string().into()), _ => Err("invalid AppResponse".to_string().into()), } } #[cfg(wasmpack_target = "nodejs")] #[wasm_bindgen] pub async fn sparql_update(session_id: JsValue, sparql: String) -> Result<(), String> { let session_id: u64 = serde_wasm_bindgen::from_value::(session_id) .map_err(|_| "Invalid session_id".to_string())?; let request = AppRequest::V0(AppRequestV0 { command: AppRequestCommandV0::new_write_query(), nuri: NuriV0::new_entire_user_site(), payload: Some(AppRequestPayload::new_sparql_query(sparql)), session_id, }); let _ = nextgraph::local_broker::app_request(request) .await .map_err(|e: NgError| e.to_string())?; Ok(()) } #[cfg(wasmpack_target = "nodejs")] #[wasm_bindgen] pub async fn admin_create_user(js_config: JsValue) -> Result { let config = HeadLessConfigStrings::load(js_config)?; let admin_user_key = config .admin_user_key .ok_or("No admin_user_key found in config nor env var.".to_string())?; let res = nextgraph::local_broker::admin_create_user( config.server_peer_id, admin_user_key, config.server_addr, ) .await .map_err(|e: ProtocolError| e.to_string())?; Ok(serde_wasm_bindgen::to_value(&res.to_string()).unwrap()) } #[wasm_bindgen] pub async fn session_start_remote( wallet_name: String, user_js: JsValue, peer_id_js: JsValue, ) -> Result { let user_id = serde_wasm_bindgen::from_value::(user_js) .map_err(|_| "Deserialization error of user_id")?; let peer_id = serde_wasm_bindgen::from_value::>(peer_id_js) .map_err(|_| "Deserialization error of peer_id")?; let config = SessionConfig::new_remote(&user_id, &wallet_name, peer_id); let res: SessionInfoString = nextgraph::local_broker::session_start(config) .await .map_err(|e: NgError| e.to_string())? .into(); Ok(serde_wasm_bindgen::to_value(&res).unwrap()) } #[wasm_bindgen] pub async fn wallets_reload() -> Result<(), String> { init_local_broker_with_lazy(&INIT_LOCAL_BROKER).await; nextgraph::local_broker::wallets_reload() .await .map_err(|e: NgError| e.to_string()) } #[wasm_bindgen] pub async fn add_in_memory_wallet(lws_js: JsValue) -> Result<(), String> { let lws = serde_wasm_bindgen::from_value::(lws_js) .map_err(|_| "Deserialization error of lws")?; if !lws.in_memory { return Err("This is not an in memory wallet".to_string()); } nextgraph::local_broker::wallet_add(lws) .await .map_err(|e: NgError| e.to_string()) } #[cfg(not(wasmpack_target = "nodejs"))] #[wasm_bindgen(module = "/js/browser.js")] extern "C" { fn session_save(key: String, value: String) -> Option; fn session_get(key: String) -> Option; fn session_remove(key: String); fn local_save(key: String, value: String) -> Option; fn local_get(key: String) -> Option; fn is_browser() -> bool; fn storage_clear(); } #[cfg(wasmpack_target = "nodejs")] #[wasm_bindgen(module = "/js/node.js")] extern "C" { fn session_save(key: String, value: String) -> Option; fn session_get(key: String) -> Option; fn session_remove(key: String); fn local_save(key: String, value: String) -> Option; fn local_get(key: String) -> Option; fn is_browser() -> bool; fn storage_clear(); } fn local_read(key: String) -> Result { local_get(key).ok_or(NgError::JsStorageReadError) } fn local_write(key: String, value: String) -> Result<(), NgError> { match local_save(key, value) { Some(err) => Err(NgError::JsStorageWriteError(err)), None => Ok(()), } } fn session_read(key: String) -> Result { session_get(key).ok_or(NgError::JsStorageReadError) } fn session_write(key: String, value: String) -> Result<(), NgError> { match session_save(key, value) { Some(err) => Err(NgError::JsStorageWriteError(err)), None => Ok(()), } } fn session_del(key: String) -> Result<(), NgError> { session_remove(key); Ok(()) } fn clear() { storage_clear(); } static INIT_LOCAL_BROKER: Lazy> = Lazy::new(|| { Box::new(|| { LocalBrokerConfig::JsStorage(JsStorageConfig { local_read: Box::new(local_read), local_write: Box::new(local_write), session_read: Arc::new(Box::new(session_read)), session_write: Arc::new(Box::new(session_write)), session_del: Arc::new(Box::new(session_del)), clear: Arc::new(Box::new(clear)), is_browser: is_browser(), }) }) }); #[wasm_bindgen] pub async fn wallet_create(js_params: JsValue) -> Result { init_local_broker_with_lazy(&INIT_LOCAL_BROKER).await; let mut params = serde_wasm_bindgen::from_value::(js_params) .map_err(|_| "Deserialization error of args")?; params.result_with_wallet_file = true; let res = nextgraph::local_broker::wallet_create_v0(params).await; match res { Ok(r) => Ok(serde_wasm_bindgen::to_value(&r).unwrap()), Err(e) => Err(e.to_string().into()), } } #[wasm_bindgen] pub async fn wallet_get_file(wallet_name: String) -> Result { init_local_broker_with_lazy(&INIT_LOCAL_BROKER).await; let res = nextgraph::local_broker::wallet_get_file(&wallet_name).await; match res { Ok(r) => Ok(serde_wasm_bindgen::to_value(&serde_bytes::ByteBuf::from(r)).unwrap()), Err(e) => Err(e.to_string().into()), } } #[wasm_bindgen] pub async fn wallet_read_file(js_file: JsValue) -> Result { init_local_broker_with_lazy(&INIT_LOCAL_BROKER).await; let file = serde_wasm_bindgen::from_value::(js_file) .map_err(|_| "Deserialization error of file".to_string())?; let wallet = nextgraph::local_broker::wallet_read_file(file.into_vec()) .await .map_err(|e: NgError| e.to_string())?; Ok(serde_wasm_bindgen::to_value(&wallet).unwrap()) } #[wasm_bindgen] pub async fn wallet_was_opened( js_opened_wallet: JsValue, //SensitiveWallet ) -> Result { let opened_wallet = serde_wasm_bindgen::from_value::(js_opened_wallet) .map_err(|_| "Deserialization error of SensitiveWallet".to_string())?; let client = nextgraph::local_broker::wallet_was_opened(opened_wallet) .await .map_err(|e: NgError| e.to_string())?; Ok(serde_wasm_bindgen::to_value(&client).unwrap()) } #[wasm_bindgen] pub async fn wallet_import( js_encrypted_wallet: JsValue, //Wallet, js_opened_wallet: JsValue, //SensitiveWallet in_memory: bool, ) -> Result { let encrypted_wallet = serde_wasm_bindgen::from_value::(js_encrypted_wallet) .map_err(|_| "Deserialization error of Wallet".to_string())?; let opened_wallet = serde_wasm_bindgen::from_value::(js_opened_wallet) .map_err(|_| "Deserialization error of SensitiveWallet".to_string())?; let client = nextgraph::local_broker::wallet_import(encrypted_wallet, opened_wallet, in_memory) .await .map_err(|e: NgError| e.to_string())?; Ok(serde_wasm_bindgen::to_value(&client).unwrap()) } #[cfg(wasmpack_target = "nodejs")] #[wasm_bindgen(module = "/js/node.js")] extern "C" { fn client_details() -> String; fn version() -> String; fn get_env_vars() -> JsValue; } #[cfg(wasmpack_target = "nodejs")] #[wasm_bindgen] pub fn client_info() -> JsValue { let res = ClientInfo::V0(client_info_()); //res serde_wasm_bindgen::to_value(&res).unwrap() } #[wasm_bindgen] pub fn encode_create_account(payload: JsValue) -> JsValue { //log_debug!("{:?}", payload); let create_account = serde_wasm_bindgen::from_value::(payload).unwrap(); //log_debug!("create_account {:?}", create_account); let res = create_account.encode(); //log_debug!("res {:?}", res); serde_wasm_bindgen::to_value(&res).unwrap() } #[cfg(not(wasmpack_target = "nodejs"))] #[wasm_bindgen(module = "/js/browser.js")] extern "C" { fn client_details() -> String; } #[cfg(not(wasmpack_target = "nodejs"))] #[wasm_bindgen(module = "/js/bowser.js")] extern "C" { type Bowser; #[wasm_bindgen(static_method_of = Bowser)] fn parse(UA: String) -> JsValue; } #[cfg(not(wasmpack_target = "nodejs"))] #[wasm_bindgen(module = "/js/browser.js")] extern "C" { fn client_details2(val: JsValue, version: String) -> String; } #[cfg(all(not(wasmpack_target = "nodejs"), target_arch = "wasm32"))] pub fn client_info_() -> ClientInfoV0 { let ua = client_details(); let bowser = Bowser::parse(ua); //log_debug!("{:?}", bowser); let details_string = client_details2(bowser, env!("CARGO_PKG_VERSION").to_string()); let res = ClientInfoV0 { client_type: ClientType::Web, details: details_string, version: "".to_string(), timestamp_install: 0, timestamp_updated: 0, }; res //serde_wasm_bindgen::to_value(&res).unwrap() } #[cfg(all(wasmpack_target = "nodejs", target_arch = "wasm32"))] pub fn client_info_() -> ClientInfoV0 { let res = ClientInfoV0 { client_type: ClientType::NodeService, details: client_details(), version: version(), timestamp_install: 0, timestamp_updated: 0, }; res //serde_wasm_bindgen::to_value(&res).unwrap() } #[cfg(all(not(wasmpack_target = "nodejs"), target_arch = "wasm32"))] #[wasm_bindgen] pub fn client_info() -> JsValue { let res = ClientInfo::V0(client_info_()); serde_wasm_bindgen::to_value(&res).unwrap() } #[wasm_bindgen] pub async fn test() { init_local_broker_with_lazy(&INIT_LOCAL_BROKER).await; //log_debug!("test is {}", BROKER.read().await.test()); #[cfg(debug_assertions)] let client_info = client_info(); log_debug!("{:?}", client_info); } #[wasm_bindgen] pub async fn app_request_stream( // js_session_id: JsValue, js_request: JsValue, callback: &js_sys::Function, ) -> Result { // let session_id: u64 = serde_wasm_bindgen::from_value::(js_session_id) // .map_err(|_| "Deserialization error of session_id".to_string())?; let request = serde_wasm_bindgen::from_value::(js_request) .map_err(|_| "Deserialization error of AppRequest".to_string())?; let (reader, cancel) = nextgraph::local_broker::app_request_stream(request) .await .map_err(|e: NgError| e.to_string())?; async fn inner_task( mut reader: Receiver, callback: js_sys::Function, ) -> ResultSend<()> { while let Some(app_response) = reader.next().await { let response_js = serde_wasm_bindgen::to_value(&app_response).unwrap(); let this = JsValue::null(); match callback.call1(&this, &response_js) { Ok(jsval) => { let promise_res: Result = jsval.dyn_into(); match promise_res { Ok(promise) => { let _ = JsFuture::from(promise).await; } Err(_) => {} } } Err(e) => { log_err!("JS callback for app_request_stream failed with {:?}", e); } } } Ok(()) } spawn_and_log_error(inner_task(reader, callback.clone())); let cb = Closure::once(move || { log_info!("cancelling"); //sender.close_channel() cancel(); }); //Closure::wrap(Box::new(move |sender| sender.close_channel()) as Box)>); let ret = cb.as_ref().clone(); cb.forget(); Ok(ret) } #[wasm_bindgen] pub async fn app_request(js_request: JsValue) -> Result { // let session_id: u64 = serde_wasm_bindgen::from_value::(js_session_id) // .map_err(|_| "Deserialization error of session_id".to_string())?; let request = serde_wasm_bindgen::from_value::(js_request) .map_err(|_| "Deserialization error of AppRequest".to_string())?; let response = nextgraph::local_broker::app_request(request) .await .map_err(|e: NgError| e.to_string())?; Ok(serde_wasm_bindgen::to_value(&response).unwrap()) } #[wasm_bindgen] pub async fn upload_chunk( js_session_id: JsValue, js_upload_id: JsValue, js_chunk: JsValue, js_nuri: JsValue, ) -> Result { //log_debug!("upload_chunk {:?}", js_nuri); let session_id: u64 = serde_wasm_bindgen::from_value::(js_session_id) .map_err(|_| "Deserialization error of session_id".to_string())?; let upload_id: u32 = serde_wasm_bindgen::from_value::(js_upload_id) .map_err(|_| "Deserialization error of upload_id".to_string())?; let chunk: serde_bytes::ByteBuf = serde_wasm_bindgen::from_value::(js_chunk) .map_err(|_| "Deserialization error of chunk".to_string())?; let nuri: NuriV0 = serde_wasm_bindgen::from_value::(js_nuri) .map_err(|_| "Deserialization error of nuri".to_string())?; let mut request = AppRequest::new( AppRequestCommandV0::FilePut, nuri, Some(AppRequestPayload::V0( AppRequestPayloadV0::RandomAccessFilePutChunk((upload_id, chunk)), )), ); request.set_session_id(session_id); let response = nextgraph::local_broker::app_request(request) .await .map_err(|e: NgError| e.to_string())?; Ok(serde_wasm_bindgen::to_value(&response).unwrap()) } #[wasm_bindgen] pub async fn doc_fetch_private_subscribe() -> Result { let request = AppRequest::new( AppRequestCommandV0::Fetch(AppFetchContentV0::get_or_subscribe(true)), NuriV0::new_private_store_target(), None, ); Ok(serde_wasm_bindgen::to_value(&request).unwrap()) } #[wasm_bindgen] pub async fn doc_fetch_repo_subscribe(repo_id: String) -> Result { let request = AppRequest::new( AppRequestCommandV0::Fetch(AppFetchContentV0::get_or_subscribe(true)), NuriV0::new_repo_target_from_string(repo_id).map_err(|e| e.to_string())?, None, ); Ok(serde_wasm_bindgen::to_value(&request).unwrap()) } // // #[wasm_bindgen] // pub async fn get_readcap() -> Result { // let request = ObjectRef::nil(); // Ok(serde_wasm_bindgen::to_value(&request).unwrap()) // } #[wasm_bindgen] pub async fn disconnections_subscribe(callback: &js_sys::Function) -> Result { init_local_broker_with_lazy(&INIT_LOCAL_BROKER).await; let reader = nextgraph::local_broker::take_disconnections_receiver() .await .map_err(|_e: NgError| false)?; async fn inner_task( mut reader: Receiver, callback: js_sys::Function, ) -> ResultSend<()> { while let Some(user_id) = reader.next().await { let this = JsValue::null(); let user_id_js = serde_wasm_bindgen::to_value(&user_id).unwrap(); match callback.call1(&this, &user_id_js) { Ok(jsval) => { let promise_res: Result = jsval.dyn_into(); match promise_res { Ok(promise) => { let _ = JsFuture::from(promise).await; } Err(_) => {} } } Err(e) => { log_err!( "JS callback for disconnections_subscribe failed with {:?}", e ); } } } log_debug!("END OF disconnections reader"); Ok(()) } spawn_and_log_error(inner_task(reader, callback.clone())); Ok(true.into()) } #[wasm_bindgen] pub async fn probe() { let _res = BROKER .write() .await .probe( Box::new(ConnectionWebSocket {}), IP::try_from(&IpAddr::from_str("127.0.0.1").unwrap()).unwrap(), WS_PORT, ) .await; log_debug!("broker.probe : {:?}", _res); let _ = Broker::join_shutdown_with_timeout(std::time::Duration::from_secs(5)).await; } #[cfg(wasmpack_target = "nodejs")] #[derive(Serialize, Deserialize)] struct HeadLessConfigStrings { server_addr: Option, server_peer_id: Option, client_peer_key: Option, admin_user_key: Option, } #[cfg(wasmpack_target = "nodejs")] impl HeadLessConfigStrings { fn load(js_config: JsValue) -> Result { let string_config = if js_config.is_object() { serde_wasm_bindgen::from_value::(js_config) .map_err(|_| "Deserialization error of config object".to_string())? } else { HeadLessConfigStrings { server_addr: None, server_peer_id: None, client_peer_key: None, admin_user_key: None, } }; let var_env_config = serde_wasm_bindgen::from_value::(get_env_vars()) .map_err(|_| "Deserialization error of env vars".to_string())?; let server_addr = if let Some(s) = string_config.server_addr { parse_ip_and_port_for(s, "server_addr").map_err(|e: NgError| e.to_string())? } else { if let Some(s) = var_env_config.server_addr { parse_ip_and_port_for(s, "server_addr from var env") .map_err(|e: NgError| e.to_string())? } else { BindAddress::new_localhost_with_port(WS_PORT_REVERSE_PROXY) } }; let server_peer_id = if let Some(s) = string_config.server_peer_id { Some(decode_key(&s).map_err(|e: NgError| e.to_string())?) } else { if let Some(s) = var_env_config.server_peer_id { Some(decode_key(&s).map_err(|e: NgError| e.to_string())?) } else { None } } .ok_or("No server_peer_id found in config nor env var.".to_string())?; let client_peer_key = if let Some(s) = string_config.client_peer_key { Some(decode_priv_key(&s).map_err(|e: NgError| e.to_string())?) } else { if let Some(s) = var_env_config.client_peer_key { Some(decode_priv_key(&s).map_err(|e: NgError| e.to_string())?) } else { None } }; let admin_user_key = if let Some(s) = string_config.admin_user_key { Some(decode_priv_key(&s).map_err(|e: NgError| e.to_string())?) } else { if let Some(s) = var_env_config.admin_user_key { Some(decode_priv_key(&s).map_err(|e: NgError| e.to_string())?) } else { None } }; Ok(HeadlessConfig { server_addr, server_peer_id, client_peer_key, admin_user_key, }) } } /* #[doc(hidden)] #[derive(Debug)] pub struct HeadlessConfig { // parse_ip_and_port_for(string, "verifier_server") pub server_addr: Option, // decode_key(string) pub server_peer_id: PubKey, // decode_priv_key(string) pub client_peer_key: PrivKey, }*/ #[cfg(wasmpack_target = "nodejs")] #[wasm_bindgen] pub async fn init_headless(js_config: JsValue) -> Result<(), String> { //log_info!("{:?}", js_config); let config = HeadLessConfigStrings::load(js_config)?; let _ = config .client_peer_key .as_ref() .ok_or("No client_peer_key found in config nor env var.".to_string())?; init_local_broker(Box::new(move || { LocalBrokerConfig::Headless(config.clone()) })) .await; Ok(()) } #[wasm_bindgen] pub async fn start() { async fn inner_task() -> ResultSend<()> { Ok(()) } spawn_and_log_error(inner_task()).await; } #[wasm_bindgen] pub async fn session_stop(user_id_js: String) -> Result<(), String> { let user_id = decode_key(&user_id_js).map_err(|_| "Invalid user_id")?; nextgraph::local_broker::session_stop(&user_id) .await .map_err(|e: NgError| e.to_string()) } #[wasm_bindgen] pub async fn user_disconnect(user_id_js: String) -> Result<(), String> { let user_id = decode_key(&user_id_js).map_err(|_| "Invalid user_id")?; nextgraph::local_broker::user_disconnect(&user_id) .await .map_err(|e: NgError| e.to_string()) } #[wasm_bindgen] pub async fn wallet_close(wallet_name: String) -> Result<(), String> { nextgraph::local_broker::wallet_close(&wallet_name) .await .map_err(|e: NgError| e.to_string()) } #[wasm_bindgen] pub async fn user_connect( client_info_js: JsValue, user_id_js: String, location: Option, ) -> Result { let info = serde_wasm_bindgen::from_value::(client_info_js) .map_err(|_| "serde error on info")?; let user_id = decode_key(&user_id_js).map_err(|_| "Invalid user_id")?; #[derive(Serialize, Deserialize)] struct ConnectionInfo { pub server_id: String, pub server_ip: String, pub error: Option, #[serde(with = "serde_wasm_bindgen::preserve")] pub since: js_sys::Date, } let mut opened_connections: HashMap = HashMap::new(); let results = nextgraph::local_broker::user_connect_with_device_info(info, &user_id, location) .await .map_err(|e: NgError| e.to_string())?; log_debug!("{:?}", results); for result in results { let date = js_sys::Date::new_0(); date.set_time(result.4); opened_connections.insert( result.0, ConnectionInfo { server_id: result.1, server_ip: result.2, error: result.3, since: date, }, ); } //BROKER.read().await.print_status(); Ok(opened_connections .serialize(&serde_wasm_bindgen::Serializer::new().serialize_maps_as_objects(true)) .unwrap()) } #[cfg(test)] mod test { use wasm_bindgen_test::*; wasm_bindgen_test_configure!(run_in_browser); //use crate::probe; use crate::start; #[wasm_bindgen_test] pub async fn test_connection() { //probe().await; start().await; } }