Rocket
Postgres Todo App
This article walks you through how you can easily set up a simple to-do app using Rocket and SQLx with PostgresQL.
Description
This example shows how to make a simple TODO app using Rocket and a shared Shuttle Postgres DB.
The following routes are provided:
- GET
/todos/<id>
- Get a to-do item by ID. - POST
/todos
- Create a to-do item. Takes “note” as a JSON body parameter.
You can clone the example below by running the following (you’ll need cargo-shuttle
installed):
cargo shuttle init --from shuttle-hq/shuttle-examples \
--subfolder rocket/postgres
Code
#[macro_use]
extern crate rocket;
use rocket::response::status::BadRequest;
use rocket::serde::json::Json;
use rocket::State;
use serde::{Deserialize, Serialize};
use shuttle_runtime::CustomError;
use sqlx::{Executor, FromRow, PgPool};
#[get("/<id>")]
async fn retrieve(id: i32, state: &State<MyState>) -> Result<Json<Todo>, BadRequest<String>> {
let todo = sqlx::query_as("SELECT * FROM todos WHERE id = $1")
.bind(id)
.fetch_one(&state.pool)
.await
.map_err(|e| BadRequest(e.to_string()))?;
Ok(Json(todo))
}
#[post("/", data = "<data>")]
async fn add(
data: Json<TodoNew>,
state: &State<MyState>,
) -> Result<Json<Todo>, BadRequest<String>> {
let todo = sqlx::query_as("INSERT INTO todos(note) VALUES ($1) RETURNING id, note")
.bind(&data.note)
.fetch_one(&state.pool)
.await
.map_err(|e| BadRequest(e.to_string()))?;
Ok(Json(todo))
}
struct MyState {
pool: PgPool,
}
#[shuttle_runtime::main]
async fn rocket(#[shuttle_shared_db::Postgres] pool: PgPool) -> shuttle_rocket::ShuttleRocket {
pool.execute(include_str!("../schema.sql"))
.await
.map_err(CustomError::new)?;
let state = MyState { pool };
let rocket = rocket::build()
.mount("/todos", routes![retrieve, add])
.manage(state);
Ok(rocket.into())
}
#[derive(Deserialize)]
struct TodoNew {
pub note: String,
}
#[derive(Serialize, FromRow)]
struct Todo {
pub id: i32,
pub note: String,
}
Usage
Once you’ve cloned the example, try launching it locally using cargo shuttle run
. Once you’ve verified that it runs successfully, try using cURL in a new terminal to send a POST request:
curl -X POST -d '{"note":"Hello world!"}' -H 'Content-Type: application/json' \
http://localhost:8000/todos
Assuming the request was successful, you’ll get back a JSON response with the ID and Note of the record you just created. If you try the following cURL command, you should be able to then retrieve the message you stored:
curl http://localhost:8000/todos/<id>
Interested in extending this example? Here’s as couple of ideas:
- Add update and delete routes
- Add static files to show your records
If you want to explore other frameworks, we have more examples with popular ones like Tower and Warp. You can find them right here.
Be sure to check out the examples repo for many more examples!
Was this page helpful?