chore: clear boundary between context and inbox to store dependencies

This commit is contained in:
kaichaosun 2026-04-06 16:53:09 +08:00
parent ec663858f3
commit 666864f03a
No known key found for this signature in database
GPG Key ID: 223E0F992F4F03BF
2 changed files with 24 additions and 34 deletions

View File

@ -146,21 +146,16 @@ impl<T: ChatStore> Context<T> {
&mut self,
enc_payload: EncryptedPayload,
) -> Result<Option<ContentData>, ChatError> {
// Look up the ephemeral key from storage
let key_hex = Inbox::<T>::extract_ephemeral_key_hex(&enc_payload)?;
let ephemeral_key = self
.store
.borrow()
.load_ephemeral_key(&key_hex)?
.ok_or(ChatError::UnknownEphemeralKey())?;
let (convo, content) = self.inbox.handle_frame(&ephemeral_key, enc_payload)?;
let public_key_hex = Inbox::<T>::extract_ephemeral_key_hex(&enc_payload)?;
let (convo, content) = self.inbox.handle_frame(enc_payload, &public_key_hex)?;
match convo {
Conversation::Private(convo) => self.persist_convo(&convo)?,
};
self.store.borrow_mut().remove_ephemeral_key(&key_hex)?;
self.store
.borrow_mut()
.remove_ephemeral_key(&public_key_hex)?;
Ok(content)
}
@ -182,10 +177,7 @@ impl<T: ChatStore> Context<T> {
}
pub fn create_intro_bundle(&mut self) -> Result<Vec<u8>, ChatError> {
let (intro, public_key_hex, private_key) = self.inbox.create_intro_bundle();
self.store
.borrow_mut()
.save_ephemeral_key(&public_key_hex, &private_key)?;
let intro = self.inbox.create_intro_bundle()?;
Ok(intro.into())
}

View File

@ -50,14 +50,18 @@ impl<S: EphemeralKeyStore> Inbox<S> {
/// Creates an intro bundle and returns the Introduction along with the
/// generated ephemeral key pair (public_key_hex, private_key) for the caller to persist.
pub fn create_intro_bundle(&self) -> (Introduction, String, PrivateKey) {
pub fn create_intro_bundle(&self) -> Result<Introduction, ChatError> {
let ephemeral = PrivateKey::random();
let ephemeral_key: PublicKey = (&ephemeral).into();
let public_key_hex = hex::encode(ephemeral_key.as_bytes());
self.store
.borrow_mut()
.save_ephemeral_key(&public_key_hex, &ephemeral)?;
let intro = Introduction::new(self.ident.secret(), ephemeral_key, OsRng);
(intro, public_key_hex, ephemeral)
Ok(intro)
}
pub fn invite_to_private_convo(
@ -117,9 +121,15 @@ impl<S: EphemeralKeyStore> Inbox<S> {
/// looked up from storage. Returns the created conversation and optional content data.
pub fn handle_frame(
&self,
ephemeral_key: &PrivateKey,
enc_payload: EncryptedPayload,
public_key_hex: &str,
) -> Result<(Conversation, Option<ContentData>), ChatError> {
let ephemeral_key = self
.store
.borrow()
.load_ephemeral_key(public_key_hex)?
.ok_or(ChatError::UnknownEphemeralKey())?;
let handshake = Self::extract_payload(enc_payload)?;
let header = handshake
@ -127,11 +137,12 @@ impl<S: EphemeralKeyStore> Inbox<S> {
.ok_or(ChatError::UnexpectedPayload("InboxV1Header".into()))?;
// Perform handshake and decrypt frame
let (seed_key, frame) = self.perform_handshake(ephemeral_key, header, handshake.payload)?;
let (seed_key, frame) =
self.perform_handshake(&ephemeral_key, header, handshake.payload)?;
match frame.frame_type.unwrap() {
proto::inbox_v1_frame::FrameType::InvitePrivateV1(_invite_private_v1) => {
let mut convo = PrivateV1Convo::new_responder(seed_key, ephemeral_key);
let mut convo = PrivateV1Convo::new_responder(seed_key, &ephemeral_key);
let Some(enc_payload) = _invite_private_v1.initial_message else {
return Err(ChatError::Protocol("missing initial encpayload".into()));
@ -246,7 +257,6 @@ mod tests {
use super::*;
use sqlite::{ChatStorage, StorageConfig};
use storage::EphemeralKeyStore;
#[test]
fn test_invite_privatev1_roundtrip() {
@ -260,28 +270,16 @@ mod tests {
let raya_ident = Identity::new("raya");
let raya_inbox = Inbox::new(raya_ident.into(), Rc::clone(&storage));
let (bundle, key_hex, private_key) = raya_inbox.create_intro_bundle();
storage
.borrow_mut()
.save_ephemeral_key(&key_hex, &private_key)
.unwrap();
let bundle = raya_inbox.create_intro_bundle().unwrap();
let (_, mut payloads) = saro_inbox
.invite_to_private_convo(&bundle, "hello".as_bytes())
.unwrap();
let payload = payloads.remove(0);
// Look up ephemeral key from storage
let key_hex = Inbox::<ChatStorage>::extract_ephemeral_key_hex(&payload.data).unwrap();
let ephemeral_key = storage
.borrow()
.load_ephemeral_key(&key_hex)
.unwrap()
.unwrap();
// Test handle_frame with valid payload
let result = raya_inbox.handle_frame(&ephemeral_key, payload.data);
let result = raya_inbox.handle_frame(payload.data, &key_hex);
assert!(
result.is_ok(),