1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use super::handlers::*;
use crate::v0::context::SharedContext;
use warp::filters::BoxedFilter;
use warp::{Filter, Rejection, Reply};

pub async fn filter(
    root: BoxedFilter<()>,
    context: SharedContext,
) -> impl Filter<Extract = impl Reply, Error = Rejection> + Clone {
    let with_context = warp::any().map(move || context.clone());

    let challenges = warp::path::end()
        .and(warp::get())
        .and(with_context.clone())
        .and_then(get_challenges);

    let challenge_by_id = warp::path!(i32)
        .and(warp::get())
        .and(with_context.clone())
        .and_then(get_challenge_by_id);

    let challenge_by_id_and_group_id = warp::path!(i32 / String)
        .and(warp::get())
        .and(with_context)
        .and_then(get_challenge_by_id_and_group_id);

    root.and(
        challenge_by_id_and_group_id
            .or(challenge_by_id)
            .or(challenges),
    )
}