Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 90: Add additional instrumentation for flash messages. #173

Merged
merged 7 commits into from
Nov 11, 2021
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions example/w-flash/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ into cookies and reads them back out:

```ocaml
let () =
Dream.set_log_level "dream.flash" `Debug;
Dream.run
@@ Dream.logger
@@ Dream.memory_sessions
Expand Down Expand Up @@ -75,6 +76,16 @@ let () =
@@ Dream.not_found
```

The example configures a custom log level for flash messages using
`Dream.set_log_level`. Setting this to "debug" means the server logs
will display a log point summarizing the flash messages on every
request, like this:

```
10.11.21 01:48:21.629 dream.log INFO REQ 3 GET /result ::1:39808 Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0
10.11.21 01:48:21.629 dream.flash DEBUG REQ 3 Flash messages: Info: Some Message
```

<pre><code><b>$ cd example/w-flash</b>
<b>$ npm install esy && npx esy</b>
<b>$ npx esy start</b></code></pre>
Expand Down
1 change: 1 addition & 0 deletions example/w-flash/flash.eml.ml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ let result request =
</html>

let () =
Dream.set_log_level "dream.flash" `Debug;
Dream.run
@@ Dream.logger
@@ Dream.memory_sessions
Expand Down
63 changes: 40 additions & 23 deletions src/middleware/flash.ml
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,9 @@ let storage =
let flash_cookie =
"dream.flash"



let flash_messages inner_handler request =
let outbox = ref [] in
let request = Dream.with_local storage outbox request in
let%lwt response = inner_handler request in
let entries = List.rev !outbox in
let existing = Dream.cookie flash_cookie request in
let response =
match existing, entries with
| None, [] -> response
| Some _, [] ->
Dream.set_cookie flash_cookie "" request response ~expires:0.
| _, _ ->
let content =
List.fold_right (fun (x,y) a -> `String x :: `String y :: a) entries []
in
let value = `List content |> Yojson.Basic.to_string in
Dream.set_cookie flash_cookie value request response ~max_age:five_minutes
in
Lwt.return response


(* This is a soft limit. Encryption and base64 encoding increase the
original size of the cookie text by ~4/3.*)
let content_byte_size_limit = 3072

let (|>?) =
Option.bind
Expand Down Expand Up @@ -76,3 +56,40 @@ let put_flash category message request =
failwith message
in
outbox := (category, message)::!outbox

let flash_messages inner_handler request =
let outbox = ref [] in
let request = Dream.with_local storage outbox request in
let existing = Dream.cookie flash_cookie request in
log.debug (fun log ->
let current =
flash request
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this display the contents of outbox, rather than reading the cookie, which AFAIK is the flash messages returned in the request? If you'd like to display incoming flash messages as I think this is doing, I think it should be done before the call to inner_handler.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the issue, @thangngoc89 wrote that it was "frustrating to debug why flash messages aren't rendered". I thought it made sense to log the flash messages from the current request's cookie because those are the ones available for rendering a response. This also appears to match the behavior of the example code in the issue description.

I've fixed the ordering with inner_handler; that was an oversight on my part.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The question is, in the original ordering, why read the cookie on the request (flash request), rather than reading outbox? Aren't the messages in the outbox the ones that will be put in the response?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah okay, I understood you. I got double-negative-confused by myself :) Okay, I now think this is doing what #90 was asking, and the ordering makes sense now.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you move the debug print all the way to the top of the middleware? It doesn't seem to depend on any of the values bound before it now, and having them bound there makes it seem like it might depend. It's a clean print of the flash messages being returned to the server. It will especially make it clear that the logging does not depend on the rebinding of request to one that has the outbox attached.

|> List.map (fun (p,q) -> p ^ ": " ^ q)
|> String.concat ", " in
if String.length current > 0 then
log ~request "Flash messages: %s" current
else
log ~request "%s" "No flash messages."
);
let%lwt response = inner_handler request in
let entries = List.rev !outbox in
let response =
match existing, entries with
| None, [] -> response
| Some _, [] ->
Dream.set_cookie flash_cookie "" request response ~expires:0.
| _, _ ->
let content =
List.fold_right (fun (x,y) a -> `String x :: `String y :: a) entries []
in
let value = `List content |> Yojson.Basic.to_string in
let () = if String.length value >= content_byte_size_limit
then
log.warning (fun log ->
log ~request
"Flash messages exceed soft size limit (%d bytes)"
content_byte_size_limit)
else () in
Dream.set_cookie flash_cookie value request response ~max_age:five_minutes
in
Lwt.return response
3 changes: 3 additions & 0 deletions src/middleware/log.ml
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,9 @@ let initialize_log
()

let set_log_level name level =
(* If logging hasn't been initialized, trigger this so that
configuration of log levels can proceed. *)
let `Initialized = initialized () in
let level = to_logs_level level in
custom_log_levels :=
(name, level)::(List.remove_assoc name !custom_log_levels);
Expand Down