mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-07-29 11:18:30 +00:00
39 lines
1.1 KiB
Rust
39 lines
1.1 KiB
Rust
use ruma::{DeviceId, TransactionId, UserId};
|
|
|
|
use crate::{database::KeyValueDatabase, service, Result};
|
|
|
|
impl service::transaction_ids::Data for KeyValueDatabase {
|
|
fn add_txnid(
|
|
&self,
|
|
user_id: &UserId,
|
|
device_id: Option<&DeviceId>,
|
|
txn_id: &TransactionId,
|
|
data: &[u8],
|
|
) -> Result<()> {
|
|
let mut key = user_id.as_bytes().to_vec();
|
|
key.push(0xff);
|
|
key.extend_from_slice(device_id.map(|d| d.as_bytes()).unwrap_or_default());
|
|
key.push(0xff);
|
|
key.extend_from_slice(txn_id.as_bytes());
|
|
|
|
self.userdevicetxnid_response.insert(&key, data)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn existing_txnid(
|
|
&self,
|
|
user_id: &UserId,
|
|
device_id: Option<&DeviceId>,
|
|
txn_id: &TransactionId,
|
|
) -> Result<Option<Vec<u8>>> {
|
|
let mut key = user_id.as_bytes().to_vec();
|
|
key.push(0xff);
|
|
key.extend_from_slice(device_id.map(|d| d.as_bytes()).unwrap_or_default());
|
|
key.push(0xff);
|
|
key.extend_from_slice(txn_id.as_bytes());
|
|
|
|
// If there's no entry, this is a new transaction
|
|
self.userdevicetxnid_response.get(&key)
|
|
}
|
|
}
|