#![cfg_attr(
not(any(feature = "state-store", feature = "crypto-store")),
allow(dead_code, unused_imports)
)]
use std::path::Path;
use deadpool_sqlite::Object as SqliteConn;
use matrix_sdk_base::store::StoreConfig;
use matrix_sdk_store_encryption::StoreCipher;
#[cfg(feature = "crypto-store")]
mod crypto_store;
mod error;
#[cfg(feature = "state-store")]
mod state_store;
mod utils;
#[cfg(feature = "crypto-store")]
pub use self::crypto_store::SqliteCryptoStore;
pub use self::error::OpenStoreError;
#[cfg(feature = "state-store")]
pub use self::state_store::SqliteStateStore;
use self::utils::SqliteObjectStoreExt;
async fn get_or_create_store_cipher(
passphrase: &str,
conn: &SqliteConn,
) -> Result<StoreCipher, OpenStoreError> {
let encrypted_cipher = conn.get_kv("cipher").await.map_err(OpenStoreError::LoadCipher)?;
let cipher = if let Some(encrypted) = encrypted_cipher {
StoreCipher::import(passphrase, &encrypted)?
} else {
let cipher = StoreCipher::new()?;
#[cfg(not(test))]
let export = cipher.export(passphrase);
#[cfg(test)]
let export = cipher._insecure_export_fast_for_testing(passphrase);
conn.set_kv("cipher", export?).await.map_err(OpenStoreError::SaveCipher)?;
cipher
};
Ok(cipher)
}
#[cfg(test)]
matrix_sdk_test::init_tracing_for_tests!();
#[cfg(feature = "state-store")]
pub async fn make_store_config(
path: &Path,
passphrase: Option<&str>,
) -> Result<StoreConfig, OpenStoreError> {
let state_store = SqliteStateStore::open(path, passphrase).await?;
let config = StoreConfig::new().state_store(state_store);
#[cfg(feature = "crypto-store")]
{
let crypto_store = SqliteCryptoStore::open(path, passphrase).await?;
Ok(config.crypto_store(crypto_store))
}
#[cfg(not(feature = "crypto-store"))]
{
Ok(config)
}
}