aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Implement User handling and authenticationYigit Sever2021-04-125-39/+233
| | | | | | | | | | | | | | | | | | | | | | | | New struct: User, corresponds to a student Blocks and users are persistent (written to a text file) PostgreSQL would've been overkill, we have 30 students AuthRequest is the representation for incoming register requests and User is the inner representation Students who are enrolled to the class are hardcoded, only they can register new accounts There are two new tests, one checks if a priviliged (=enrolled) user can create an account and the other checks if a unpriviliged one cannot There are quick verbose error messages that I'm not married to, might move on to something better honestly There's nothing stopping a malicious user to pre-register everyone with mock public keys and effectively lock everyone out, what's a good secret we can use?
* Remove unused code and clean up commentsYigit Sever2021-04-091-197/+18
|
* Remove unused code from filtersYigit Sever2021-04-091-5/+0
|
* Add test TODO items to routesYigit Sever2021-04-091-0/+4
|
* Add routes testsYigit Sever2021-04-091-0/+148
|
* Remove old routes testsYigit Sever2021-04-091-276/+0
|
* Remove unused code from routesYigit Sever2021-04-091-59/+4
| | | | Original repo here: https://github.com/blurbyte/restful-rust
* Cleared unused code from handlersYigit Sever2021-04-091-80/+0
| | | | The original repo is here: https://github.com/blurbyte/restful-rust
* Implement Block GET/PUT with new schemaYigit Sever2021-04-075-54/+152
| | | | | | | | | | | | | | - `Arc`+`Mutex` is replaced by `parking_lot::RwLock,` decoupled Read+Write and ability to upgrade read locks into write locks if needed - Schema has changed, `Db` is now a struct that implements `new()` to return a new instance of itself, pros/cons listed in code but tl;dr blockchain and pending transactions are separate now - `custom_filters` now supports extracting Block json and Transaction json in separate functions too - /block GET and PUT implemented, `Blocks` currently have one check (transactions appear in pending transaction) - debug is working after something, dunno how I fixed it
* Initial commitYigit Sever2021-04-076-0/+795