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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
//! Controllers are responsible for handling requests and returning responses to
//! the client.
//!
//! More specifically a Controller defines a list of endpoint (Handlers) that
//! handle a request and return a Future of a
//! [`Responder`](crate::responder::Responder). The Responder is responsible for
//! the [`Response`](crate::response::Response) being generated.
//!
//! To create a controller, simply implement the
//! [Controller](trait.Controller.html) trait on a struct:
//! ```rust
//! use saphir::prelude::*;
//!
//! struct BasicController;
//!
//! impl Controller for BasicController {
//!     const BASE_PATH: &'static str = "/basic";
//!
//!     fn handlers(&self) -> Vec<ControllerEndpoint<Self>>
//!     where
//!         Self: Sized {
//!         EndpointsBuilder::new()
//!             .add(Method::GET, "/healthz", BasicController::healthz)
//!             .build()
//!     }
//! }
//!
//! impl BasicController {
//!     async fn healthz(&self, req: Request<Body>) -> impl Responder {200}
//! }
//! ```

use crate::{
    body::Body,
    guard::{Builder as GuardBuilder, GuardChain, GuardChainEnd},
    request::Request,
    responder::{DynResponder, Responder},
};
use futures::future::BoxFuture;
use futures_util::future::{Future, FutureExt};
use http::Method;

/// Type definition to represent a endpoint within a controller
pub type ControllerEndpoint<C> = (
    Option<&'static str>,
    Method,
    &'static str,
    Box<dyn DynControllerHandler<C, Body> + Send + Sync>,
    Box<dyn GuardChain>,
);

/// Trait that defines how a controller handles its requests
pub trait Controller {
    /// Defines the base path from which requests are to be handled by this
    /// controller
    const BASE_PATH: &'static str;

    /// Returns a list of [`ControllerEndpoint`](type.ControllerEndpoint.html)
    ///
    /// Each [`ControllerEndpoint`](type.ControllerEndpoint.html) is then added
    /// to the router, which will dispatch requests accordingly
    fn handlers(&self) -> Vec<ControllerEndpoint<Self>>
    where
        Self: Sized;
}

/// Trait that defines a handler within a controller.
/// This trait is not meant to be implemented manually as there is a blanket
/// implementation for Async Fns
pub trait ControllerHandler<C, B> {
    /// An instance of a [`Responder`](../responder/trait.Responder.html) being
    /// returned by the handler
    type Responder: Responder;
    ///
    type Future: Future<Output = Self::Responder>;

    /// Handle the request dispatched from the
    /// [`Router`](../router/struct.Router.html)
    fn handle(&self, controller: &'static C, req: Request<B>) -> Self::Future;
}

///
pub trait DynControllerHandler<C, B> {
    ///
    fn dyn_handle(&self, controller: &'static C, req: Request<B>) -> BoxFuture<'static, Box<dyn DynResponder + Send>>;
}

/// Builder to simplify returning a list of endpoints in the `handlers` method
/// of the controller trait
#[derive(Default)]
pub struct EndpointsBuilder<C: Controller> {
    handlers: Vec<ControllerEndpoint<C>>,
}

impl<C: Controller> EndpointsBuilder<C> {
    /// Create a new endpoint builder
    #[inline]
    pub fn new() -> Self {
        Self { handlers: Default::default() }
    }

    /// Add a endpoint the the builder
    ///
    /// ```rust
    /// # use saphir::prelude::*;
    ///
    /// # struct BasicController;
    ///
    /// # impl Controller for BasicController {
    /// #     const BASE_PATH: &'static str = "/basic";
    /// #
    /// #     fn handlers(&self) -> Vec<ControllerEndpoint<Self>>
    /// #     where
    /// #         Self: Sized {
    /// #         EndpointsBuilder::new()
    /// #             .add(Method::GET, "/healthz", BasicController::healthz)
    /// #             .build()
    /// #     }
    /// # }
    /// #
    /// impl BasicController {
    ///     async fn healthz(&self, req: Request<Body>) -> impl Responder {200}
    /// }
    ///
    /// let b: EndpointsBuilder<BasicController> = EndpointsBuilder::new().add(Method::GET, "/healthz", BasicController::healthz);
    /// ```
    #[inline]
    pub fn add<H>(mut self, method: Method, route: &'static str, handler: H) -> Self
    where
        H: 'static + DynControllerHandler<C, Body> + Send + Sync,
    {
        self.handlers.push((None, method, route, Box::new(handler), GuardBuilder::default().build()));
        self
    }

    /// Add a guarded endpoint the the builder
    #[inline]
    pub fn add_with_guards<H, F, Chain>(mut self, method: Method, route: &'static str, handler: H, guards: F) -> Self
    where
        H: 'static + DynControllerHandler<C, Body> + Send + Sync,
        F: FnOnce(GuardBuilder<GuardChainEnd>) -> GuardBuilder<Chain>,
        Chain: GuardChain + 'static,
    {
        self.handlers
            .push((None, method, route, Box::new(handler), guards(GuardBuilder::default()).build()));
        self
    }

    /// Add but with a handler name
    #[inline]
    pub fn add_with_name<H>(mut self, handler_name: &'static str, method: Method, route: &'static str, handler: H) -> Self
    where
        H: 'static + DynControllerHandler<C, Body> + Send + Sync,
    {
        self.handlers
            .push((Some(handler_name), method, route, Box::new(handler), GuardBuilder::default().build()));
        self
    }

    /// Add with guard but with a handler name
    #[inline]
    pub fn add_with_guards_and_name<H, F, Chain>(mut self, handler_name: &'static str, method: Method, route: &'static str, handler: H, guards: F) -> Self
    where
        H: 'static + DynControllerHandler<C, Body> + Send + Sync,
        F: FnOnce(GuardBuilder<GuardChainEnd>) -> GuardBuilder<Chain>,
        Chain: GuardChain + 'static,
    {
        self.handlers
            .push((Some(handler_name), method, route, Box::new(handler), guards(GuardBuilder::default()).build()));
        self
    }

    /// Finish the builder into a `Vec<ControllerEndpoint<C>>`
    #[inline]
    pub fn build(self) -> Vec<ControllerEndpoint<C>> {
        self.handlers
    }
}

impl<C, B, Fun, Fut, R> ControllerHandler<C, B> for Fun
where
    C: 'static,
    Fun: Fn(&'static C, Request<B>) -> Fut,
    Fut: 'static + Future<Output = R> + Send,
    R: Responder,
{
    type Future = Box<dyn Future<Output = Self::Responder> + Unpin + Send>;
    type Responder = R;

    #[inline]
    fn handle(&self, controller: &'static C, req: Request<B>) -> Self::Future {
        Box::new(Box::pin((*self)(controller, req)))
    }
}

impl<C, T, H, Fut, R> DynControllerHandler<C, T> for H
where
    R: 'static + Responder + Send,
    Fut: 'static + Future<Output = R> + Unpin + Send,
    H: ControllerHandler<C, T, Future = Fut, Responder = R>,
{
    #[inline]
    fn dyn_handle(&self, controller: &'static C, req: Request<T>) -> BoxFuture<'static, Box<dyn DynResponder + Send>> {
        self.handle(controller, req).map(|r| Box::new(Some(r)) as Box<dyn DynResponder + Send>).boxed()
    }
}