import.rs now uses the FuturesUnordered to remove a mutex around the vector of failed accounts
This commit is contained in:
parent
7f949e3cdc
commit
2c69882b13
@ -3,13 +3,13 @@ use crate::{
|
||||
handlers::{markups::deletion_markup, utils::package_handler, MainDialogue, State},
|
||||
models::{DecryptedAccount, User},
|
||||
};
|
||||
use futures::{stream, StreamExt, TryStreamExt};
|
||||
use futures::{future, stream::FuturesUnordered, StreamExt, TryStreamExt};
|
||||
use itertools::Itertools;
|
||||
use sea_orm::prelude::*;
|
||||
use serde_json::from_slice;
|
||||
use std::sync::Arc;
|
||||
use teloxide::{adaptors::Throttle, net::Download, prelude::*};
|
||||
use tokio::{sync::Mutex, task::spawn_blocking};
|
||||
use tokio::task::spawn_blocking;
|
||||
|
||||
/// Gets the master password, encryptes and adds the accounts to the DB
|
||||
async fn get_master_pass(
|
||||
@ -21,40 +21,33 @@ async fn get_master_pass(
|
||||
accounts: Vec<DecryptedAccount>,
|
||||
) -> crate::Result<()> {
|
||||
let user_id = msg.from().ok_or(NoUserInfo)?.id.0;
|
||||
let master_pass: Arc<str> = master_pass.into();
|
||||
let failed = Arc::new(Mutex::new(Vec::new()));
|
||||
stream::iter(accounts)
|
||||
.for_each_concurrent(None, |account| {
|
||||
let master_pass = Arc::clone(&master_pass);
|
||||
let failed = Arc::clone(&failed);
|
||||
let db = db.clone();
|
||||
let name = account.name.clone();
|
||||
async move {
|
||||
let result = spawn_blocking(move || {
|
||||
let failed: Vec<String> = {
|
||||
let master_pass: Arc<str> = master_pass.into();
|
||||
let db = &db;
|
||||
let futures: FuturesUnordered<_> = accounts
|
||||
.into_iter()
|
||||
.map(|account| {
|
||||
let master_pass = Arc::clone(&master_pass);
|
||||
async move {
|
||||
if !account.validate() {
|
||||
return Err(());
|
||||
return Err(account.name);
|
||||
}
|
||||
let name = account.name.clone();
|
||||
match spawn_blocking(move || account.into_account(user_id, &master_pass)).await
|
||||
{
|
||||
Ok(Ok(account)) => match account.insert(db).await {
|
||||
Ok(_) => Ok(()),
|
||||
Err(_) => Err(name),
|
||||
},
|
||||
_ => Err(name),
|
||||
}
|
||||
account.into_account(user_id, &master_pass).map_err(|_| ())
|
||||
})
|
||||
.await;
|
||||
match result {
|
||||
Ok(Ok(account)) => match account.insert(&db).await {
|
||||
Ok(_) => (),
|
||||
Err(_) => failed.lock().await.push(name),
|
||||
},
|
||||
_ => failed.lock().await.push(name),
|
||||
}
|
||||
}
|
||||
})
|
||||
.await;
|
||||
drop(master_pass);
|
||||
let failed = match Arc::try_unwrap(failed) {
|
||||
Ok(accounts) => accounts.into_inner(),
|
||||
Err(_) => {
|
||||
return Err(crate::Error::msg(
|
||||
"Couldn't get accounts from Arc in import.rs",
|
||||
))
|
||||
}
|
||||
})
|
||||
.collect();
|
||||
futures
|
||||
.filter_map(|result| future::ready(result.err()))
|
||||
.collect()
|
||||
.await
|
||||
};
|
||||
let message = if failed.is_empty() {
|
||||
"Success".to_owned()
|
||||
|
Loading…
Reference in New Issue
Block a user