crypto: Restore the account if we're using the sqlite store.
parent
4aba058695
commit
5adab040e6
|
@ -89,20 +89,21 @@ impl OlmMachine {
|
||||||
path: P,
|
path: P,
|
||||||
passphrase: String,
|
passphrase: String,
|
||||||
) -> Result<Self> {
|
) -> Result<Self> {
|
||||||
|
let mut store =
|
||||||
|
SqliteStore::open_with_passphrase(&user_id.to_string(), device_id, path, passphrase)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
let account = match store.load_account().await? {
|
||||||
|
Some(a) => a,
|
||||||
|
None => Account::new(),
|
||||||
|
};
|
||||||
|
|
||||||
Ok(OlmMachine {
|
Ok(OlmMachine {
|
||||||
user_id: user_id.clone(),
|
user_id: user_id.clone(),
|
||||||
device_id: device_id.to_owned(),
|
device_id: device_id.to_owned(),
|
||||||
account: Arc::new(Mutex::new(Account::new())),
|
account: Arc::new(Mutex::new(account)),
|
||||||
uploaded_signed_key_count: None,
|
uploaded_signed_key_count: None,
|
||||||
store: Box::new(
|
store: Box::new(store),
|
||||||
SqliteStore::open_with_passphrase(
|
|
||||||
&user_id.to_string(),
|
|
||||||
device_id,
|
|
||||||
path,
|
|
||||||
passphrase,
|
|
||||||
)
|
|
||||||
.await?,
|
|
||||||
),
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,16 +19,6 @@ pub struct SqliteStore {
|
||||||
pickle_passphrase: Option<Zeroizing<String>>,
|
pickle_passphrase: Option<Zeroizing<String>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl std::fmt::Debug for SqliteStore {
|
|
||||||
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> StdResult<(), std::fmt::Error> {
|
|
||||||
write!(
|
|
||||||
fmt,
|
|
||||||
"SqliteStore {{ user_id: {}, device_id: {}, path: {:?} }}",
|
|
||||||
self.user_id, self.device_id, self.path
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static DATABASE_NAME: &str = "matrix-sdk-crypto.db";
|
static DATABASE_NAME: &str = "matrix-sdk-crypto.db";
|
||||||
|
|
||||||
impl SqliteStore {
|
impl SqliteStore {
|
||||||
|
@ -166,6 +156,16 @@ impl CryptoStore for SqliteStore {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl std::fmt::Debug for SqliteStore {
|
||||||
|
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> StdResult<(), std::fmt::Error> {
|
||||||
|
write!(
|
||||||
|
fmt,
|
||||||
|
"SqliteStore {{ user_id: {}, device_id: {}, path: {:?} }}",
|
||||||
|
self.user_id, self.device_id, self.path
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
Loading…
Reference in New Issue