diff --git a/src/defs.rs b/src/defs.rs index c873dc7..5db8564 100644 --- a/src/defs.rs +++ b/src/defs.rs @@ -90,33 +90,35 @@ impl AppDataConn { pub async fn new(name: String, stores_settings: Vec, key: &str) -> Self { let mut datastores: HashMap = HashMap::new(); for settings in stores_settings.iter() { - match settings.datastore { - DataStore::Redis => { - datastores.insert( - settings.id.to_owned(), - DataPool::Redis(RedisPool::new(settings.to_owned()).connect_pool().await) - ); - }, - DataStore::Mysql => { - datastores.insert( - settings.id.to_owned(), - DataPool::Mysql(MysqlPool::new(settings.to_owned(),key).await.connect_pool().await) - ); - }, - DataStore::Postgres => { - datastores.insert( - settings.id.to_owned(), - DataPool::Postgres(PostgresPool::new(settings.to_owned(),key).await.connect_pool().await) - ); - }, - DataStore::Sqlite => { - datastores.insert( - settings.id.to_owned(), - DataPool::Sqlite(SqlitePool::new(settings.to_owned()).connect_pool().await) - ); - }, - _ => continue, - }; + if !settings.id.is_empty() { // && datastores_settings.len() == 1usize { + match settings.datastore { + DataStore::Redis => { + datastores.insert( + settings.id.to_owned(), + DataPool::Redis(RedisPool::new(settings.to_owned()).connect_pool().await) + ); + }, + DataStore::Mysql => { + datastores.insert( + settings.id.to_owned(), + DataPool::Mysql(MysqlPool::new(settings.to_owned(),key).await.connect_pool().await) + ); + }, + DataStore::Postgres => { + datastores.insert( + settings.id.to_owned(), + DataPool::Postgres(PostgresPool::new(settings.to_owned(),key).await.connect_pool().await) + ); + }, + DataStore::Sqlite => { + datastores.insert( + settings.id.to_owned(), + DataPool::Sqlite(SqlitePool::new(settings.to_owned()).connect_pool().await) + ); + }, + _ => continue, + }; + } } Self { name, @@ -174,29 +176,33 @@ impl AppDataConn { let debug = envmnt::get_isize("DEBUG",0); let mut status = false; for con in &datastores_settings { - match con.datastore { - DataStore::Redis => { - status = match self.get_redis(&con.id).await { - Ok(_pool) => { - if debug > 0 { - println!("app_data_conn found redis pool"); - } - true - }, - Err(e) => { - if StoreSettings::check_required_id(datastores_settings.to_owned(),&con.id) { - panic!("Error app_data_conn required: {}",e); - } else { - println!("Error app_data_conn: {}",e); - } - false - }, + if con.id.is_empty() { // && datastores_settings.len() == 1usize { + status = true; + } else { + match con.datastore { + DataStore::Redis => { + status = match self.get_redis(&con.id).await { + Ok(_pool) => { + if debug > 0 { + println!("app_data_conn found redis pool"); + } + true + }, + Err(e) => { + if StoreSettings::check_required_id(datastores_settings.to_owned(),&con.id) { + panic!("Error app_data_conn required: {}",e); + } else { + println!("Error app_data_conn: {}",e); + } + false + }, + } + } + _ => { + continue; } - } - _ => { - continue; - } - }; + }; + } } status }