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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
//! This crate provides one-time notification messages, or flash messages, for
//! `axum` applications.
//!
//! # Example
//!
//! ```rust,no_run
//! use std::net::SocketAddr;
//!
//! use axum::{
//!     response::{IntoResponse, Redirect},
//!     routing::get,
//!     Router,
//! };
//! use axum_messages::{Messages, MessagesManagerLayer};
//! use time::Duration;
//! use tower_sessions::{Expiry, MemoryStore, SessionManagerLayer};
//!
//! #[tokio::main]
//! async fn main() {
//!     let session_store = MemoryStore::default();
//!     let session_layer = SessionManagerLayer::new(session_store)
//!         .with_secure(false)
//!         .with_expiry(Expiry::OnInactivity(Duration::days(1)));
//!
//!     let app = Router::new()
//!         .route("/", get(set_messages_handler))
//!         .route("/read-messages", get(read_messages_handler))
//!         .layer(MessagesManagerLayer)
//!         .layer(session_layer);
//!
//!     let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
//!     let listener = tokio::net::TcpListener::bind(&addr).await.unwrap();
//!     axum::serve(listener, app.into_make_service())
//!         .await
//!         .unwrap();
//! }
//!
//! async fn read_messages_handler(messages: Messages) -> impl IntoResponse {
//!     let messages = messages
//!         .into_iter()
//!         .map(|message| format!("{:?}: {}", message.level, message))
//!         .collect::<Vec<_>>()
//!         .join(", ");
//!
//!     if messages.is_empty() {
//!         "No messages yet!".to_string()
//!     } else {
//!         messages
//!     }
//! }
//!
//! async fn set_messages_handler(messages: Messages) -> impl IntoResponse {
//!     messages
//!         .info("Hello, world!")
//!         .debug("This is a debug message.");
//!
//!     Redirect::to("/read-messages")
//! }
//! ```
#![warn(
    clippy::all,
    nonstandard_style,
    future_incompatible,
    missing_debug_implementations
)]
#![deny(missing_docs)]
#![forbid(unsafe_code)]

use core::fmt;
use std::{
    collections::VecDeque,
    future::Future,
    pin::Pin,
    sync::Arc,
    task::{Context, Poll},
};

use async_trait::async_trait;
use axum_core::{
    extract::{FromRequestParts, Request},
    response::Response,
};
use http::{request::Parts, StatusCode};
use parking_lot::Mutex;
use serde::{Deserialize, Serialize};
use tower::{Layer, Service};
use tower_sessions_core::{session, Session};

// N.B.: Code structure directly borrowed from `axum-flash`: https://github.com/davidpdrsn/axum-flash/blob/5e8b2bded97fd10bb275d5bc66f4d020dec465b9/src/lib.rs

/// Container for a message which provides a level and message content.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Message {
    /// Message level, i.e. `Level`.
    #[serde(rename = "l")]
    pub level: Level,

    /// The message itself.
    #[serde(rename = "m")]
    pub message: String,
}

impl fmt::Display for Message {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(&self.message)
    }
}

type MessageQueue = VecDeque<Message>;

/// Enumeration of message levels.
///
/// This folllows directly from the [Django
/// implementation][django-message-levels].
///
/// [django-message-levels]: https://docs.djangoproject.com/en/5.0/ref/contrib/messages/#message-levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
pub enum Level {
    /// Development-related messages that will be ignored (or removed) in a
    /// production deployment.
    Debug = 0,

    /// Informational messages for the user.
    Info = 1,

    /// An action was successful, e.g. “Your profile was updated successfully”.
    Success = 2,

    /// A failure did not occur but may be imminent.
    Warning = 3,

    /// An action was not successful or some other failure occurred.
    Error = 4,
}

#[derive(Debug, Clone, Default, Deserialize, Serialize)]
struct Data {
    pending_messages: MessageQueue,
    messages: MessageQueue,
}

/// An extractor which holds the state of messages, using the session to ensure
/// messages are persisted between requests.
#[derive(Debug, Clone)]
pub struct Messages {
    session: Session,
    data: Arc<Mutex<Data>>,
}

impl Messages {
    const DATA_KEY: &'static str = "axum-messages.data";

    fn new(session: Session, data: Data) -> Self {
        Self {
            session,
            data: Arc::new(Mutex::new(data)),
        }
    }

    /// Push a `Debug` message.
    pub fn debug(self, message: impl Into<String>) -> Self {
        self.push(Level::Debug, message)
    }

    /// Push an `Info` message.
    pub fn info(self, message: impl Into<String>) -> Self {
        self.push(Level::Info, message)
    }

    /// Push a `Success` message.
    pub fn success(self, message: impl Into<String>) -> Self {
        self.push(Level::Success, message)
    }

    /// Push a `Warning` message.
    pub fn warning(self, message: impl Into<String>) -> Self {
        self.push(Level::Warning, message)
    }

    /// Push an `Error` message.
    pub fn error(self, message: impl Into<String>) -> Self {
        self.push(Level::Error, message)
    }

    /// Push a message with the given level.
    pub fn push(self, level: Level, message: impl Into<String>) -> Self {
        {
            let mut data = self.data.lock();
            data.pending_messages.push_back(Message {
                message: message.into(),
                level,
            });
        }
        self
    }

    async fn save(self) -> Result<Self, session::Error> {
        self.session
            .insert(Self::DATA_KEY, self.data.clone())
            .await?;
        Ok(self)
    }

    fn load(self) -> Self {
        {
            // Load messages by taking them from the pending queue.
            let mut data = self.data.lock();
            data.messages = std::mem::take(&mut data.pending_messages);
        }
        self
    }
}

impl Iterator for Messages {
    type Item = Message;

    fn next(&mut self) -> Option<Self::Item> {
        let mut data = self.data.lock();
        data.messages.pop_front()
    }
}

/// MIddleware provider `Messages` as a request extension.
#[derive(Debug, Clone)]
pub struct MessagesManager<S> {
    inner: S,
}

impl<ReqBody, ResBody, S> Service<Request<ReqBody>> for MessagesManager<S>
where
    S: Service<Request<ReqBody>, Response = Response<ResBody>> + Clone + Send + 'static,
    S::Future: Send + 'static,
    S::Error: Send,
    ReqBody: Send + 'static,
    ResBody: Default + Send,
{
    type Response = S::Response;
    type Error = S::Error;
    type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + Send>>;

    #[inline]
    fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        self.inner.poll_ready(cx)
    }

    fn call(&mut self, mut req: Request<ReqBody>) -> Self::Future {
        // Because the inner service can panic until ready, we need to ensure we only
        // use the ready service.
        //
        // See: https://docs.rs/tower/latest/tower/trait.Service.html#be-careful-when-cloning-inner-services
        let clone = self.inner.clone();
        let mut inner = std::mem::replace(&mut self.inner, clone);

        Box::pin(async move {
            let Some(session) = req.extensions().get::<Session>().cloned() else {
                let mut res = Response::default();
                *res.status_mut() = http::StatusCode::INTERNAL_SERVER_ERROR;
                return Ok(res);
            };

            let data = match session.get::<Data>(Messages::DATA_KEY).await {
                Ok(Some(data)) => data,
                Ok(None) => Data::default(),
                Err(_) => {
                    let mut res = Response::default();
                    *res.status_mut() = http::StatusCode::INTERNAL_SERVER_ERROR;
                    return Ok(res);
                }
            };

            let messages = Messages::new(session, data);

            req.extensions_mut().insert(messages.clone());

            let res = inner.call(req).await;

            if messages.save().await.is_err() {
                let mut res = Response::default();
                *res.status_mut() = http::StatusCode::INTERNAL_SERVER_ERROR;
                return Ok(res);
            };

            res
        })
    }
}

/// Layer for `MessagesManager`.
#[derive(Debug, Clone)]
pub struct MessagesManagerLayer;

impl<S> Layer<S> for MessagesManagerLayer {
    type Service = MessagesManager<S>;

    fn layer(&self, inner: S) -> Self::Service {
        MessagesManager { inner }
    }
}

#[async_trait]
impl<S> FromRequestParts<S> for Messages
where
    S: Send + Sync,
{
    type Rejection = (StatusCode, &'static str);

    async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> {
        parts
            .extensions
            .get::<Messages>()
            .cloned()
            .ok_or((
                StatusCode::INTERNAL_SERVER_ERROR,
                "Could not extract messages. Is `MessagesManagerLayer` installed?",
            ))
            .map(|messages| messages.load())
    }
}

#[cfg(test)]
mod tests {
    use axum::{response::Redirect, routing::get, Router};
    use axum_core::{body::Body, extract::Request, response::IntoResponse};
    use http::header;
    use http_body_util::BodyExt;
    use time::Duration;
    use tower::ServiceExt;
    use tower_sessions::{Expiry, MemoryStore, SessionManagerLayer};

    use super::*;

    #[tokio::test]
    async fn basic() {
        let session_store = MemoryStore::default();
        let session_layer = SessionManagerLayer::new(session_store)
            .with_secure(false)
            .with_expiry(Expiry::OnInactivity(Duration::days(1)));

        let app = Router::new()
            .route("/", get(root))
            .route("/set-message", get(set_message))
            .layer(MessagesManagerLayer)
            .layer(session_layer);

        async fn root(messages: Messages) -> impl IntoResponse {
            messages
                .into_iter()
                .map(|message| format!("{:?}: {}", message.level, message))
                .collect::<Vec<_>>()
                .join(", ")
        }

        #[axum::debug_handler]
        async fn set_message(messages: Messages) -> impl IntoResponse {
            messages
                .debug("Hello, world!")
                .info("This is an info message.");
            Redirect::to("/")
        }

        let request = Request::builder()
            .uri("/set-message")
            .body(Body::empty())
            .unwrap();
        let mut response = app.clone().oneshot(request).await.unwrap();
        assert!(response.status().is_redirection());
        let cookie = response.headers_mut().remove(header::SET_COOKIE).unwrap();

        let request = Request::builder()
            .uri("/")
            .header(header::COOKIE, cookie)
            .body(Body::empty())
            .unwrap();
        let response = app.oneshot(request).await.unwrap();

        let bytes = response.into_body().collect().await.unwrap().to_bytes();
        let body = String::from_utf8(bytes.to_vec()).unwrap();
        assert_eq!(body, "Debug: Hello, world!, Info: This is an info message.");
    }
}