-
Notifications
You must be signed in to change notification settings - Fork 7
Backport credential activity history to v0.21.4 #533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
VanshKhanna
merged 7 commits into
codex/backport-base-v0.21.4
from
codex/activity-backport-sqlite-isolation
Sep 10, 2026
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
af9ea57
Introduce Credential Activity History Store (#481)
ketzusaka 8af79bc
feat: minor improvements to activity history (#506)
paolodamico b6e3d2b
fix(db): isolate SQLite in activity-only backport
5a4b835
docs: record activity candidate build validation
699b8bf
chore: finish candidate validation notes and whitespace
e72ed0e
docs: defer backport CI wiring pending workflow access
afc510a
refactor: separate SQLite fix from activity backport
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| # Credential activity backport to v0.21.4 | ||
|
|
||
| This candidate starts at `v0.21.4` (`f0e3795`) and backports the credential | ||
| activity changes from #481 and #506. PR #533 targets | ||
| `codex/backport-base-v0.21.4`, which is pinned to that release commit. | ||
|
|
||
| The backport includes recording activity, paginated history, aggregate | ||
| metadata, clearing history, change listeners, and their schema and tests. | ||
| Imports use the original `walletkit-db` crate. The small | ||
| `Transaction::query_row_optional` helper is required by the activity code. | ||
|
|
||
| The SQLite engine, linkage, encryption open sequence, dependency lockfile, | ||
| workspace manifest, and toolchain pins remain those of v0.21.4. Other 0.22.0 | ||
| changes are excluded. The native SQLite isolation fix is developed separately | ||
| on `codex/sqlite-isolation-v0.21.4` and is not part of this PR. | ||
|
|
||
| ## Validation | ||
|
|
||
| Run the storage suite with the repository's pinned toolchain: | ||
|
|
||
| ```sh | ||
| cargo test -p walletkit-core --lib storage:: --locked | ||
| cargo fmt --all -- --check | ||
| git diff --check | ||
| ``` | ||
|
|
||
| Build and test results recorded for the earlier combined activity/SQLite | ||
| candidate do not establish validation of this activity-only revision. | ||
| The PR description records the checks performed after splitting the changes. | ||
|
|
||
| ## Release scope | ||
|
|
||
| Activity history adds its own cache table; the credential vault and envelope | ||
| formats remain unchanged. The activity schema and behavior follow #481/#506. | ||
| Validate activity persistence and host-app integration before distribution. | ||
|
|
||
| The source retains v0.21.4 version numbers. Assign a distinct reviewed | ||
| backport version before publishing any package or binary. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,351 @@ | ||
| use crate::storage::error::{StorageError, StorageResult}; | ||
| use crate::storage::types::{ | ||
| ActivityEntry, ActivityMetadata, ActivityOutcome, ActivityQuery, ProtocolVersion, | ||
| }; | ||
| use crate::storage::ActivityFailureReason; | ||
| use walletkit_db::{params, Connection, Row, StepResult}; | ||
|
|
||
| use super::util::{map_db_err, to_i64, to_u64}; | ||
|
|
||
| pub(super) fn record( | ||
| conn: &Connection, | ||
| entry: &ActivityEntry, | ||
| now: u64, | ||
| ) -> StorageResult<u64> { | ||
| match (entry.outcome, entry.failure_reason) { | ||
| (ActivityOutcome::Failed, None) => { | ||
| return Err(StorageError::ActivityInvalidRecord( | ||
| "failure_reason must be present when outcome is Failed".to_string(), | ||
| )); | ||
| } | ||
| (outcome, Some(_)) if outcome != ActivityOutcome::Failed => { | ||
| return Err(StorageError::ActivityInvalidRecord( | ||
| "failure_reason must be absent unless outcome is Failed".to_string(), | ||
| )); | ||
| } | ||
| _ => {} | ||
| } | ||
|
|
||
| let now_i64 = to_i64(now, "now")?; | ||
|
|
||
| let entry_id = conn | ||
| .query_row( | ||
| "INSERT INTO activity_entries ( | ||
| client_id, protocol, created_at, | ||
| outcome, app_identifier, issuer_schema_ids, failure_reason | ||
| ) VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7) | ||
| RETURNING entry_id", | ||
| params![ | ||
| entry.client_id.as_str(), | ||
| entry.protocol.as_i64(), | ||
| now_i64, | ||
| entry.outcome.to_string(), | ||
| entry.rp_id.to_string(), | ||
| encode_issuer_schema_ids(&entry.issuer_schema_ids), | ||
| entry | ||
| .failure_reason | ||
| .map(|v| v.to_string()) | ||
| .unwrap_or_default(), | ||
| ], | ||
| |stmt| Ok(stmt.column_i64(0)), | ||
| ) | ||
| .map_err(|err| map_db_err(&err))?; | ||
|
|
||
| to_u64(entry_id, "entry_id") | ||
| } | ||
|
|
||
| /// Lists activity entries, most recent first. | ||
| pub(super) fn list( | ||
| conn: &Connection, | ||
| query: ActivityQuery, | ||
| limit: u32, | ||
| offset: u32, | ||
| ) -> StorageResult<Vec<ActivityEntry>> { | ||
| let _ = query; | ||
| let limit_i64 = i64::from(limit); | ||
| let offset_i64 = i64::from(offset); | ||
|
|
||
| let sql = "SELECT entry_id, client_id, protocol, created_at, outcome, | ||
| app_identifier, issuer_schema_ids, failure_reason | ||
| FROM activity_entries | ||
| ORDER BY created_at DESC, entry_id DESC | ||
| LIMIT ?1 OFFSET ?2"; | ||
|
|
||
| let mut entries = Vec::new(); | ||
|
|
||
| let mut stmt = conn.prepare(sql).map_err(|err| map_db_err(&err))?; | ||
|
|
||
| stmt.bind_values(params![limit_i64, offset_i64]) | ||
| .map_err(|err| map_db_err(&err))?; | ||
|
|
||
| while let StepResult::Row(row) = stmt.step().map_err(|err| map_db_err(&err))? { | ||
| entries.push(map_entry(&row)?); | ||
| } | ||
|
|
||
| Ok(entries) | ||
| } | ||
|
|
||
| /// Returns aggregate activity metadata. | ||
| pub(super) fn metadata(conn: &Connection) -> StorageResult<ActivityMetadata> { | ||
| let total_count = conn | ||
| .query_row("SELECT COUNT(*) FROM activity_entries", &[], |stmt| { | ||
| Ok(stmt.column_i64(0)) | ||
| }) | ||
| .map_err(|err| map_db_err(&err))?; | ||
|
|
||
| Ok(ActivityMetadata { | ||
| total_count: to_u64(total_count, "total_count")?, | ||
| }) | ||
| } | ||
|
|
||
| pub(super) fn clear(conn: &Connection) -> StorageResult<u64> { | ||
| let deleted = conn | ||
| .execute("DELETE FROM activity_entries", &[]) | ||
| .map_err(|err| map_db_err(&err))?; | ||
|
|
||
| Ok(deleted as u64) | ||
| } | ||
|
|
||
| fn encode_issuer_schema_ids(issuer_schema_ids: &[u64]) -> Vec<u8> { | ||
| let mut bytes = Vec::with_capacity(issuer_schema_ids.len() * 8); | ||
| for id in issuer_schema_ids { | ||
| bytes.extend_from_slice(&id.to_be_bytes()); | ||
| } | ||
| bytes | ||
| } | ||
|
|
||
| fn decode_issuer_schema_ids(bytes: &[u8]) -> StorageResult<Vec<u64>> { | ||
| if !bytes.len().is_multiple_of(8) { | ||
| return Err(StorageError::ActivityDb(format!( | ||
| "invalid issuer_schema_ids blob length: {}", | ||
| bytes.len() | ||
| ))); | ||
| } | ||
|
|
||
| Ok(bytes | ||
| .chunks_exact(8) | ||
| .map(|chunk| { | ||
| let mut buf = [0u8; 8]; | ||
| buf.copy_from_slice(chunk); | ||
| u64::from_be_bytes(buf) | ||
| }) | ||
| .collect()) | ||
| } | ||
|
|
||
| fn map_entry(row: &Row<'_, '_>) -> StorageResult<ActivityEntry> { | ||
| let id = to_u64(row.column_i64(0), "entry_id")?; | ||
| let client_id = row.column_text(1); | ||
| let protocol = ProtocolVersion::try_from(row.column_i64(2))?; | ||
| let timestamp = to_u64(row.column_i64(3), "created_at")?; | ||
| let outcome_text = row.column_text(4); | ||
| let outcome: ActivityOutcome = outcome_text.parse().map_err(|_| { | ||
| StorageError::ActivityDb(format!("invalid outcome: {outcome_text}")) | ||
| })?; | ||
| let rp_id = parse_rp_id(&row.column_text(5))?; | ||
| let issuer_schema_ids = decode_issuer_schema_ids(&row.column_blob(6))?; | ||
|
|
||
| let failure_reason = row.column_text(7); | ||
|
|
||
| let failure_reason = if failure_reason.is_empty() { | ||
| None | ||
| } else { | ||
| Some( | ||
| row.column_text(7) | ||
| .parse::<ActivityFailureReason>() | ||
| .map_err(|_| { | ||
| StorageError::ActivityDb("invalid failure_reason in db".to_string()) | ||
| })?, | ||
| ) | ||
| }; | ||
|
|
||
| Ok(ActivityEntry { | ||
| id: Some(id), | ||
| client_id, | ||
| protocol, | ||
| timestamp: Some(timestamp), | ||
| outcome, | ||
| rp_id, | ||
| issuer_schema_ids, | ||
| failure_reason, | ||
| }) | ||
| } | ||
|
|
||
| fn parse_rp_id(text: &str) -> StorageResult<u64> { | ||
| text.parse().map_err(|_| { | ||
| StorageError::ActivityDb(format!("invalid app_identifier: {text}")) | ||
| }) | ||
| } | ||
|
|
||
| #[cfg(test)] | ||
| mod tests { | ||
| use super::*; | ||
| use crate::storage::cache::CacheDb; | ||
| use secrecy::SecretBox; | ||
| use std::fs; | ||
| use std::path::{Path, PathBuf}; | ||
| use uuid::Uuid; | ||
|
|
||
| fn temp_cache_path() -> PathBuf { | ||
| let mut path = std::env::temp_dir(); | ||
| path.push(format!( | ||
| "walletkit-cache-activity-{}.sqlite", | ||
| Uuid::new_v4() | ||
| )); | ||
| path | ||
| } | ||
|
|
||
| fn cleanup_cache_files(path: &Path) { | ||
| let _ = fs::remove_file(path); | ||
| let _ = fs::remove_file(path.with_extension("sqlite-wal")); | ||
| let _ = fs::remove_file(path.with_extension("sqlite-shm")); | ||
| } | ||
|
|
||
| fn sample_entry() -> ActivityEntry { | ||
| ActivityEntry { | ||
| id: None, | ||
| rp_id: 1, | ||
| client_id: "request-uuid-1".to_string(), | ||
| protocol: ProtocolVersion::V3, | ||
| timestamp: None, | ||
| issuer_schema_ids: vec![10], | ||
| outcome: ActivityOutcome::Completed, | ||
| failure_reason: None, | ||
| } | ||
| } | ||
|
|
||
| #[test] | ||
| fn test_record_and_list_activity() { | ||
| let path = temp_cache_path(); | ||
| let key = SecretBox::init_with(|| [0x42u8; 32]); | ||
| let db = CacheDb::new(&path, &key).expect("create cache"); | ||
|
|
||
| let entry_id = db | ||
| .record_activity(&sample_entry(), 1000) | ||
| .expect("record activity"); | ||
|
|
||
| let entries = db | ||
| .list_activities(ActivityQuery::default(), 10, 0) | ||
| .expect("list activities"); | ||
| assert_eq!(entries.len(), 1); | ||
| assert_eq!(entries[0].id, Some(entry_id)); | ||
| assert_eq!(entries[0].outcome, ActivityOutcome::Completed); | ||
| assert_eq!(entries[0].issuer_schema_ids.len(), 1); | ||
|
|
||
| cleanup_cache_files(&path); | ||
| } | ||
|
|
||
| #[test] | ||
| fn test_record_activity_failed_requires_failure_reason() { | ||
| let path = temp_cache_path(); | ||
| let key = SecretBox::init_with(|| [0x02u8; 32]); | ||
| let db = CacheDb::new(&path, &key).expect("create cache"); | ||
|
|
||
| let entry = ActivityEntry { | ||
| outcome: ActivityOutcome::Failed, | ||
| failure_reason: None, | ||
| ..sample_entry() | ||
| }; | ||
|
|
||
| let err = db | ||
| .record_activity(&entry, 1000) | ||
| .expect_err("Failed without failure_reason should be rejected"); | ||
|
|
||
| assert!(matches!(err, StorageError::ActivityInvalidRecord(_))); | ||
|
|
||
| cleanup_cache_files(&path); | ||
| } | ||
|
|
||
| #[test] | ||
| fn test_record_activity_rejects_failure_reason_without_failed_outcome() { | ||
| let path = temp_cache_path(); | ||
| let key = SecretBox::init_with(|| [0x03u8; 32]); | ||
| let db = CacheDb::new(&path, &key).expect("create cache"); | ||
|
|
||
| let entry = ActivityEntry { | ||
| outcome: ActivityOutcome::Completed, | ||
| failure_reason: Some(ActivityFailureReason::NetworkError), | ||
| ..sample_entry() | ||
| }; | ||
|
|
||
| let err = db | ||
| .record_activity(&entry, 1000) | ||
| .expect_err("failure_reason without Failed outcome should be rejected"); | ||
|
|
||
| assert!(matches!(err, StorageError::ActivityInvalidRecord(_))); | ||
|
|
||
| cleanup_cache_files(&path); | ||
| } | ||
|
|
||
| #[test] | ||
| fn test_list_activities_paginates_with_offset() { | ||
| let path = temp_cache_path(); | ||
| let key = SecretBox::init_with(|| [0x05u8; 32]); | ||
| let db = CacheDb::new(&path, &key).expect("create cache"); | ||
|
|
||
| for i in 0..5u64 { | ||
| db.record_activity(&sample_entry(), 1000 + i) | ||
| .expect("record activity"); | ||
| } | ||
|
|
||
| let page1 = db | ||
| .list_activities(ActivityQuery::default(), 2, 0) | ||
| .expect("list page 1"); | ||
| let page2 = db | ||
| .list_activities(ActivityQuery::default(), 2, 2) | ||
| .expect("list page 2"); | ||
| let page3 = db | ||
| .list_activities(ActivityQuery::default(), 2, 4) | ||
| .expect("list page 3"); | ||
|
|
||
| assert_eq!(page1.len(), 2); | ||
| assert_eq!(page2.len(), 2); | ||
| assert_eq!(page3.len(), 1); | ||
|
|
||
| assert_eq!(page1[0].timestamp, Some(1004)); | ||
| assert_eq!(page1[1].timestamp, Some(1003)); | ||
| assert_eq!(page2[0].timestamp, Some(1002)); | ||
| assert_eq!(page3[0].timestamp, Some(1000)); | ||
|
|
||
| cleanup_cache_files(&path); | ||
| } | ||
|
|
||
| #[test] | ||
| fn test_activity_metadata_total_count() { | ||
| let path = temp_cache_path(); | ||
| let key = SecretBox::init_with(|| [0x06u8; 32]); | ||
| let db = CacheDb::new(&path, &key).expect("create cache"); | ||
|
|
||
| assert_eq!(db.activity_metadata().expect("metadata").total_count, 0); | ||
|
|
||
| db.record_activity(&sample_entry(), 1000) | ||
| .expect("record activity"); | ||
| db.record_activity(&sample_entry(), 1001) | ||
| .expect("record activity"); | ||
|
|
||
| assert_eq!(db.activity_metadata().expect("metadata").total_count, 2); | ||
|
|
||
| cleanup_cache_files(&path); | ||
| } | ||
|
|
||
| #[test] | ||
| fn test_activity_survives_cache_reopen() { | ||
| let path = temp_cache_path(); | ||
| let key = SecretBox::init_with(|| [0x07u8; 32]); | ||
| let db = CacheDb::new(&path, &key).expect("create cache"); | ||
| db.record_activity(&sample_entry(), 1000) | ||
| .expect("record activity"); | ||
| drop(db); | ||
|
|
||
| let db = CacheDb::new(&path, &key).expect("reopen cache"); | ||
| let entries = db | ||
| .list_activities(ActivityQuery::default(), 10, 0) | ||
| .expect("list after reopen"); | ||
| assert_eq!( | ||
| entries.len(), | ||
| 1, | ||
| "activity history must survive a cache reopen" | ||
| ); | ||
|
|
||
| cleanup_cache_files(&path); | ||
| } | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This big-endian concatenation becomes a persisted database format, but the added tests only write and read through the same implementation and merely check the decoded vector length. A future simultaneous encoder/decoder change would therefore pass while making existing activity rows decode incorrectly; add a fixture asserting the exact bytes for representative IDs next to this code.
AGENTS.md reference: AGENTS.md:L9-L9
Useful? React with 👍 / 👎.