axum-restful
A restful framework based on axum
and sea-orm
. Inspired by django-rest-framework
.
The goal of the project is to build an enterprise-level production framework.
struct
generated by sea-orm
to provide with GET, PUT, DELETE methodstls
supportprometheus
metrics and metrics servergraceful shutdown
supportswagger document
generate based on aide
A full example is exists at axum-restful/examples/demo
.
First, you can create a new crate like cargo new axum-restful-demo
.
You should have a database service before. It is recommended to use postgresql
database.
you can use docker and docker compose to start a postgresql
create a compose.yaml
in the same directory as Cargo.toml
```yaml services: postgres: image: postgres:15-bullseye containername: demo-postgres restart: always volumes: - demo-postgres:/var/lib/postgresql/data ports: - "127.0.0.1:5432:5432" environment: - POSTGRESDB=${POSTGRESDB} - POSTGRESUSER=${POSTGRESUSER} - POSTGRESPASSWORD=${POSTGRES_PASSWORD}
volumes: demo-postgres: {} ```
a .env
file like
DATABASE_URL=postgres://demo-user:demo-password@localhost:5432/demo
finally, you can build a service with docker compose up -d
For more details, please refer to the sea-orm
documentation.
Install the sea-orm-cli
with cargo
shell
$ cargo install sea-orm-cli
Configure dependencies and workspace in Cargo.toml
```toml [package] name = "demo" version = "0.1.0" edition = "2021"
[workspace] members = [".", "migration"]
[dependencies] aide = "0.12" axum = "0.6" axum-restful = "0.4" chrono = "0.4" migration = { path = "./migration" } oncecell = "1" schemars = { version = "0.8", features = ["chrono"] } sea-orm = { version = "0.12", features = ["macros", "sqlx-postgres", "runtime-tokio-rustls"] } sea-orm-migration = { version = "0.12", features = ["sqlx-postgres", "runtime-tokio-rustls",] } serde = { version = "1.0", features = ["derive"] } serdejson = "1.0" tokio = { version = "1", features = ["full"] } tracing = "0.1" tracing-subscriber = "0.3" ```
Setup the migration directory in ./migration
shell
$ sea-orm-cli migrate init
project structure changed into
├── Cargo.lock
├── Cargo.toml
├── compose.yaml
├── migration
│ ├── Cargo.toml
│ ├── README.md
│ └── src
│ ├── lib.rs
│ ├── m20220101_000001_create_table.rs
│ └── main.rs
└── src
└── main.rs
edit the m20****_******_create_table.rs
file blow ./migration/src
```rust use seaormmigration::prelude::*;
pub struct Migration;
impl MigrationTrait for Migration { async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> { // Replace the sample below with your own migration scripts manager .createtable( Table::create() .table(Student::Table) .ifnotexists() .col( ColumnDef::new(Student::Id) .biginteger() .notnull() .autoincrement() .primarykey(), ) .col(ColumnDef::new(Student::Name).string().notnull()) .col(ColumnDef::new(Student::Region).string().notnull()) .col(ColumnDef::new(Student::Age).smallinteger().notnull()) .col(ColumnDef::new(Student::CreateTime).datetime().notnull()) .col(ColumnDef::new(Student::Score).double().notnull()) .col( ColumnDef::new(Student::Gender) .boolean() .notnull() .default(Expr::value(true)), ) .toowned(), ) .await }
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
// Replace the sample below with your own migration scripts
manager
.drop_table(Table::drop().table(Student::Table).to_owned())
.await
}
}
/// Learn more at https://docs.rs/sea-query#iden
enum Student { Table, Id, Name, Region, Age, CreateTime, Score, Gender, } ```
edit migration/Cargo.toml
to add dependencies
toml
[dependencies]
...
axum-restful = "0.4"
edit migration/src/main.rs
to specific a database connection an migrate
```rust use seaormmigration::prelude::*;
async fn main() { // cli::runcli(migration::Migrator).await; let db = axumrestful::getdbconnection_pool().await; migration::Migrator::up(db, None).await.unwrap(); } ```
migrate the migration files
shell
$ cd migration
$ cargo run
finally, you can see two tables named sql_migrations
and student
generated.
at the project root path
shell
$ sea-orm-cli generate entity -o src/entities
will generate entities configure and code, now project structure changed into
├── Cargo.lock
├── Cargo.toml
├── compose.yaml
├── migration
│ ├── Cargo.toml
│ ├── README.md
│ └── src
│ ├── lib.rs
│ ├── m20220101_000001_create_table.rs
│ └── main.rs
└── src
├── entities
│ ├── mod.rs
│ ├── prelude.rs
│ └── student.rs
└── main.rs
edit the src/entities/student.rs
to add derive Default, Serialize, Deserialize
``rust
//!
SeaORM` Entity. Generated by sea-orm-codegen 0.11.0
use schemars::JsonSchema; use sea_orm::entity::prelude::*; use serde::{Deserialize, Serialize};
pub struct Model { #[seaorm(primarykey)] pub id: i64, pub name: String, pub region: String, pub age: i16, pub createtime: DateTime, #[seaorm(column_type = "Double")] pub score: f64, pub gender: bool, }
pub enum Relation {}
impl ActiveModelBehavior for ActiveModel {}
```
edit src/main.rs
```rust use schemars::JsonSchema; use seaormmigration::prelude::MigratorTrait;
use axumrestful::swagger::SwaggerGenerator; use axumrestful::views::ModelView;
use crate::entities::student;
mod check; mod entities;
async fn main() { tracingsubscriber::fmt::init(); let db = axumrestful::getdbconnection_pool().await; let _ = migration::Migrator::down(db, None).await; migration::Migrator::up(db, None).await.unwrap(); tracing::info!("migrate success");
/// student
#[derive(JsonSchema)]
struct StudentView;
impl ModelView<student::ActiveModel> for StudentView {
fn order_by_desc() -> student::Column {
student::Column::Id
}
}
let path = "/api/student";
let app = StudentView::http_router(path);
check::check_curd_operate_correct(app.clone(), path, db).await;
// if you want to generate swagger docs
// impl OperationInput and SwaggerGenerator and change app into http_routers_with_swagger
impl aide::operation::OperationInput for student::Model {}
impl axum_restful::swagger::SwaggerGenerator<student::ActiveModel> for StudentView {}
let app = StudentView::http_router_with_swagger(path, StudentView::model_api_router());
let addr = "0.0.0.0:3000";
tracing::info!("listen at {addr}");
tracing::info!("visit http://127.0.0.1:3000/docs/swagger/ for swagger api");
axum::Server::bind(&addr.parse().unwrap())
.serve(app.into_make_service())
.await
.unwrap()
} ```
StudentView impl the ModelView<T>
, the T
is student::ActiveModel
that represent the student table configure
in the database, if will has full HTTP methods with GET, POST, PUT, DELETE.
you can see the server is listen at port 3000
if you impl axum_restful::swagger::SwaggerGenerator
above, then you can visit http://127.0.0.1:3000/docs/swagger/
at your browser, you will see a swagger document is generated
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.