Skip to content

roy-ganz/toql_rocket

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Toql Rocket

Use Toql with Rocket.

This crate adds:

  • Toql URL query parameters
  • Response headers with page count information
  • Responder for ToqlError

Add this to your Cargo.toml:

[dependencies]
toql_rocket = "0.3"

Then enjoy some simplifications in your rocket handlers:

use toql_rocket::prelude::{ToqlQUery, Counted};
#[get("/?<toql_query..>")]
pub async fn query(
    cache: &State<Cache>,
    mut conn: Connection<TodoDb>,
    toql_query: ToqlQuery,  //<!-- Get URL parameters with default values
) -> Result<Counted<Json<Vec<Todo>, MyError>>>  
{
    let mut toql = MySqlAsync::from(&mut *conn, &*cache);
    let (query, page) = toql_query.parse::<Todo>()?; //<!-- Parse into typesafe query
    let r = toql.load_page(query, page).await?;

    Ok(Counted(Json(r.0), r.1)) //<!-- Put page count information into headers
}

Check out the full featured REST server based on Rocket, Toql and MySQL.

License

Toql Rocket is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages