DEEPWELL is an experimental backend system to provide core wiki operations via an API for Wikijump. This is intended as an internal API consumed by the web server as part of its logical tasks.
The lint #![forbid(unsafe_code)]
is set, and therefore this crate has only safe code.
Available under the terms of the GNU Affero General Public License. See LICENSE.md.
If you have sea-orm-cli
, and have a local instance of Wikijump running, you can use the following script to autogenerate SeaORM model files:
sh
$ scripts/generate-models.sh
The primary organization of the crate is as follows:
api/
— Web server definition, such as its routes and related structures.
methods/
— Implementations for individual routes provision above.services/
— "Services", or logical encapsulations of different concepts or operations.
ParentService
allows retrieving and storing data related to parent-child page relationships. You can think of it as "wrapping" the page_parent
table.PageService
encapsulates the page
table, but also wraps all the other operations contained with the logical concept of the "page", such as creating new revisions using the RevisionService
as part of the "edit" method.locales/
— Provides localization methods, interpreting the Fluent translation files.models/
— Primarily auto-generated by Sea-ORM, these files allow for interfacing with the database.The routes are defined in api/
, with their implementations in methods/
, and the structures they rely on in services/<name>/structs.rs
. The services invoked to encapsulate logical operations are at services/<name>.rs
or services/<name>/service.rs
.
This executable targets the latest stable Rust. At time of writing, that is 1.61.0
.
sh
$ cargo build --release
Tests have not yet been implemented, but when they are, run:
sh
$ cargo test
Add -- --nocapture
to the end if you want to see test output.
sh
$ cargo fmt # Ensure code is formatted
$ cargo clippy # Check code for lints