about summary refs log tree commit diff
path: root/src/database/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add protected locations that are visible only to logged-in usersVika2021-12-071-1/+3
|
* Code cleanup and small bugfixing in templatesVika2021-12-051-21/+37
|
* frontend: Added listing feeds to the header barVika2021-12-051-7/+3
|
* Get rid of the unsafe codeVika2021-12-021-7/+4
| | | | | | Thanks to @Kloenk I was able to get rid of the unsafety and tell the compiler how to properly check what I needed for the StorageError to be declared thread-safe.
* Deprecated Redis backend and added a database migration tool (untested, beware)Vika2021-10-271-13/+29
|
* Code cleanup and Cargo.lock updatesVika2021-09-271-2/+3
|
* Implemented support for channelsVika2021-09-271-0/+49
|
* Moved integration tests and allowed the binary to use file backendVika2021-09-261-0/+6
| | | | | | Now the Redis dependencies are optional and only required if you want to test the backend or actually use it in production. The app displays a hint if you try to launch with an unsupported backend.
* Added file updates and fixed a bug with truncated JSON filesVika2021-09-261-0/+54
| | | | | | | | | | | There was a bug where `File::write()` would not write the entire buffer, and this condition was left unchecked by the code. All `File::write()` calls are now replaced with `File::write_all()` which ensures the whole buffer is written to the backing file. Additionally added a smoke check for the file updates. It is in no way comprehensive nor it is able to catch all the possible failures but it's a good way of testing the functionality without way too much hassle.
* Added a WIP file backendVika2021-08-151-30/+37
| | | | | | | Currently unavailable for use and only has basic GET and POST operations implemented. A lot more work is needed to make it truly usable. Locking is implemented using flock() system call on Linux.
* Fixed a VERY WRONG way to handle stream errorsVika2021-08-041-1/+9
| | | | | | for future reference: stream operations returning Result satisfy conditions for the futures::stream::TryStreamExt trait, allowing you to use `TryStreamExt::try_collect::<T>()` and receive a Result<T>.
* Appease rustfmt, clippy and cargo checkVika2021-07-291-2/+8
|
* Relaxed anti-takeover URL check to simply not place redirects at foreign URLsVika Shleina2021-07-191-3/+3
|
* Make rustfmt happyVika2021-05-171-44/+106
|
* Added setting store per-userVika2021-05-171-0/+18
|
* Refactored the Redis instance spawning in tests to automatically kill RedisVika2021-05-051-10/+6
|
* Removed the in-memory database, it's dragging me downVika2021-05-051-15/+0
|
* Moved the Redis spawner to the Redis module where it belongs, refactored ↵Vika2021-05-051-42/+10
| | | | tests to use the Redis database instead of a fake one
* Made some StorageError fields private and added getters insteadVika2021-05-051-2/+5
|
* Clippy lintsVika2021-05-041-4/+4
|
* Made StorageErrors directly convertible into Micropub JSON responsesVika2021-05-041-0/+16
|
* Fixed Redis testsVika2021-05-041-3/+5
|
* Implemented MemoryStorage::update_post()Vika2021-05-041-0/+2
|
* Refactored the database module and its testsVika2021-05-041-0/+263