4 stable releases

3.0.0 Jan 2, 2022
2.0.0 Jun 17, 2021
1.1.0 May 6, 2020
1.0.0 May 2, 2020

#1070 in HTTP server

Download history 40/week @ 2023-11-24 91/week @ 2023-12-01 256/week @ 2023-12-08 89/week @ 2023-12-15 19/week @ 2023-12-22 14/week @ 2023-12-29 45/week @ 2024-01-05 68/week @ 2024-01-12 38/week @ 2024-01-19 59/week @ 2024-01-26 17/week @ 2024-02-02 78/week @ 2024-02-09 149/week @ 2024-02-16 64/week @ 2024-02-23 184/week @ 2024-03-01 118/week @ 2024-03-08

523 downloads per month
Used in minidsp-daemon

MIT license

12KB

Github Actions Status crates.io Documentation MIT

routerify-query

A Routerify middleware which parses the request query string and populates in the req object.

Docs

Install

Add this to your Cargo.toml:

[dependencies]
routerify = "3"
routerify-query = "3" 

Example

use hyper::{Body, Request, Response, Server};
use routerify::{Router, RouterService};
// Import the query_parser function and the RequestQueryExt trait.
use routerify_query::{query_parser, RequestQueryExt};
use std::{convert::Infallible, net::SocketAddr};

// A handler for "/" page. Visit: "/?username=Alice&bookname=HarryPotter" to see query values.
async fn home_handler(req: Request<Body>) -> Result<Response<Body>, Infallible> {
    // Access the query values.
    let user_name = req.query("username").unwrap();
    let book_name = req.query("bookname").unwrap();

    Ok(Response::new(Body::from(format!(
        "User: {}, Book: {}",
        user_name, book_name
    ))))
}

// Create a router.
fn router() -> Router<Body, Infallible> {
    Router::builder()
        // Attach the query_parser middleware.
        .middleware(query_parser())
        .get("/", home_handler)
        .build()
        .unwrap()
}

#[tokio::main]
async fn main() {
    let router = router();

    // Create a Service from the router above to handle incoming requests.
    let service = RouterService::new(router).unwrap();

    // The address on which the server will be listening.
    let addr = SocketAddr::from(([127, 0, 0, 1], 3001));

    // Create a server by passing the created service to `.serve` method.
    let server = Server::bind(&addr).serve(service);

    println!("App is running on: {}", addr);
    if let Err(err) = server.await {
        eprintln!("Server error: {}", err);
    }
}

Contributing

Your PRs and suggestions are always welcome.

Dependencies

~9–21MB
~281K SLoC