fej/src/ivago/mod.rs

33 lines
1014 B
Rust
Raw Normal View History

2021-03-15 14:48:20 +01:00
mod controller;
2021-04-02 21:20:36 +02:00
#[cfg(test)]
mod tests;
2021-03-06 00:25:40 +01:00
2021-04-04 13:03:08 +02:00
use crate::errors::FejError;
use rocket::http::Status;
2021-04-02 21:20:36 +02:00
use rocket_contrib::json::Json;
2021-03-12 22:17:59 +01:00
2021-03-06 00:25:40 +01:00
pub fn routes() -> Vec<rocket::Route> {
routes![route_search_streets, route_get_pickup_times]
2021-03-06 00:25:40 +01:00
}
// URL: https://www.ivago.be/nl/particulier/autocomplete/garbage/streets?q=Lange
2021-03-23 12:16:01 +01:00
#[get("/search?<street>")]
pub fn route_search_streets(street: String) -> Result<Json<Vec<controller::Street>>, Status> {
2021-04-04 13:03:08 +02:00
let result = controller::search_streets(&street)?;
Ok(Json(result))
2021-03-06 00:25:40 +01:00
}
2021-03-21 16:18:53 +01:00
#[get("/?<street>&<number>&<start_date>&<end_date>")]
pub fn route_get_pickup_times(
street: controller::Street,
number: u32,
start_date: controller::BasicDate,
end_date: controller::BasicDate,
) -> Result<Json<Vec<controller::PickupTime>>, Status> {
match controller::get_pickup_times(street, number, start_date, end_date) {
// TODO provide more meaningful status codes here
Err(_) => Err(Status::InternalServerError),
Ok(times) => Ok(Json(times)),
}
2021-03-21 16:18:53 +01:00
}