-
Notifications
You must be signed in to change notification settings - Fork 28
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
Create 2025-04-02-data-validation-in-juno-best-practices-and-security #373
base: main
Are you sure you want to change the base?
Conversation
Added a draft for an article on proper data validation in Juno. - Functions still need some work and better comments. - Maybe needs an image somewhere, but what to use here? - it is a bit long, maybe cut out the longer examples and additional resources at the end.
|
||
# Data Validation in Juno: Best Practices and Security | ||
|
||
## Why Data Validation Matters in Decentralized Apps |
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.
suggestion: Data validation matters regardless of the type of app and environment, so I would suggest a more generic introduction here.
if user_data.username.len() < 3 { | ||
// Step 3: If validation fails, delete the document | ||
delete_doc( | ||
String::from("users"), |
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.
What's String::from("users")
? I guess here you want to use ic_cdk::id()
instead (the principal of the Satellite which itself is considered as an administrator since the code runs on the backend)
} | ||
).await?; | ||
|
||
return Err("Username must be at least 3 characters".to_string()); |
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.
If you return an error, the hook will trap. If it traps, all changes will be reverted and therefore your delete_doc
won't have any effect. If you want to log and commit the deletation you should:
ic_cdk::print("Username must be at least 3 characters");
return Ok(())
or just omit the return.
**Issues:** | ||
|
||
- Only executes AFTER data is already written to the database, which is not ideal for validation. | ||
- Can trigger cascading effects if not carefully managed |
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.
What casciding effects do you foreseen?
|
||
Custom Endpoints are Juno serverless functions that expose new API endpoints through Candid (the Internet Computer's interface description language). They provide a validation layer through custom API routes before data reaches Juno's datastore, allowing for complex multi-step operations with custom validation logic. | ||
|
||
```rust |
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.
I'm not sure what you are providing snippets for assert_set_doc
and on_set_doc
in this particular chapter.
} | ||
``` | ||
|
||
### on_set_doc Example |
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.
To shorten a bit the blog post and given that assert_set_doc
is the way to go, I suggest to remove this on_set_doc
and custom end point examples.
|
||
Remember: Security is about preventing unauthorized or invalid operations, not just making them difficult. assert_set_doc hooks provide the only guaranteed way to validate all data operations in Juno's Datastore. | ||
|
||
## Reference: Available Juno Hooks and Context Types |
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.
I would remove the references because they duplicate their docs, for maintanability reason as we are publishign this post on the website.
}; | ||
``` | ||
|
||
### Hook Types and Use Cases |
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.
Same, I would remove this chapter
- `assert_upload_asset`: Confirms an asset upload can be committed | ||
- `assert_delete_asset`: Checks that an asset can be deleted | ||
|
||
### Feature Selection |
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.
Same, I would remove this chapter
junobuild-satellite = { version = "0.0.21", default-features = false, features = ["on_set_doc", "assert_set_doc"] } | ||
``` | ||
|
||
### Best Practices |
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.
Same, I would remove this chapter
Added a draft for an article on proper data validation in Juno.