Skip to content

Commit

Permalink
port old router to new router
Browse files Browse the repository at this point in the history
Signed-off-by: Rudi Grinberg <[email protected]>
  • Loading branch information
rgrinberg committed Nov 15, 2020
1 parent a4a8bd2 commit ec8fe13
Show file tree
Hide file tree
Showing 10 changed files with 46 additions and 166 deletions.
1 change: 1 addition & 0 deletions opium/src/app.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ open Import
module Server = Httpaf_lwt_unix.Server
module Reqd = Httpaf.Reqd
open Lwt.Syntax
module Route = Router.Route

let err_invalid_host host =
Lwt.fail_invalid_arg ("Could not get host info for `" ^ host ^ "`")
Expand Down
46 changes: 20 additions & 26 deletions opium/src/middlewares/middleware_router.ml
Original file line number Diff line number Diff line change
Expand Up @@ -10,54 +10,48 @@ module Method_map = Map.Make (struct
;;
end)

type t = (Route.t * Rock.Handler.t) list Method_map.t
type t = Rock.Handler.t Method_map.t Router.t

let empty = Method_map.empty
let empty = Router.empty

let get t meth =
match Method_map.find_opt meth t with
| None -> []
| Some xs -> List.rev xs
;;

let add t ~route ~meth ~action =
Method_map.update
meth
(function
| None -> Some [ route, action ]
| Some xs -> Some ((route, action) :: xs))
t
let add (t : t) ~route ~meth ~action =
Router.update t route ~f:(function
| None -> Method_map.singleton meth action
| Some m -> Method_map.add meth action m)
;;

(** finds matching endpoint and returns it with the parsed list of parameters *)
let matching_endpoint endpoints meth uri =
let endpoints = get endpoints meth in
List.find_map endpoints ~f:(fun ep ->
uri |> Route.match_url (fst ep) |> Option.map (fun p -> ep, p))
let matching_endpoint (endpoints : t) meth uri =
match Router.match_url endpoints uri with
| None -> None
| Some (a, params) ->
(match Method_map.find_opt meth a with
| None -> None
| Some h -> Some (h, params))
;;

module Env = struct
let key : Route.matches Context.key =
Context.Key.create ("path_params", Route.sexp_of_matches)
let key : Router.Params.t Context.key =
Context.Key.create ("path_params", Router.Params.sexp_of_t)
;;
end

let splat req = Context.find_exn Env.key req.Request.env |> fun route -> route.Route.splat
let splat req = Context.find_exn Env.key req.Request.env |> Router.Params.unnamed

(* not param_exn since if the endpoint was selected it's likely that the parameter is
already there *)
let param req param =
let { Route.params; _ } = Context.find_exn Env.key req.Request.env in
List.assoc param params
let params = Context.find_exn Env.key req.Request.env in
Router.Params.named params param
;;

let m endpoints =
let filter default req =
match matching_endpoint endpoints req.Request.meth req.Request.target with
| None -> default req
| Some (endpoint, params) ->
| Some (handler, params) ->
let env_with_params = Context.add Env.key params req.Request.env in
(snd endpoint) { req with Request.env = env_with_params }
handler { req with Request.env = env_with_params }
in
Rock.Middleware.create ~name:"Router" ~filter
;;
2 changes: 1 addition & 1 deletion opium/src/middlewares/middleware_router.mli
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ type t

val m : t -> Rock.Middleware.t
val empty : t
val add : t -> route:Route.t -> meth:Method.t -> action:Rock.Handler.t -> t
val add : t -> route:Router.Route.t -> meth:Method.t -> action:Rock.Handler.t -> t
val param : Request.t -> string -> string
val splat : Request.t -> string list
2 changes: 1 addition & 1 deletion opium/src/opium.ml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module Body = Body
module Request = Request
module Response = Response
module App = App
module Route = Route
module Route = Router.Route
module Router = Middleware_router

module Handler = struct
Expand Down
2 changes: 1 addition & 1 deletion opium/src/opium.mli
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module Body = Body
module Request = Request
module Response = Response
module App = App
module Route = Route
module Route = Router.Route

module Router : sig
type t
Expand Down
107 changes: 0 additions & 107 deletions opium/src/route.ml

This file was deleted.

21 changes: 0 additions & 21 deletions opium/src/route.mli

This file was deleted.

18 changes: 15 additions & 3 deletions opium/src/router.ml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ module Route = struct

let equal = ( = )

let to_string t =
let rec loop acc = function
| Nil -> acc
| Full_splat -> "**" :: acc
| Literal (s, rest) -> loop (s :: acc) rest
| Param (s, rest) ->
let s = Option.value s ~default:"*" in
loop (s :: acc) rest
in
loop [] t |> List.rev |> String.concat ~sep:"/"
;;

let rec sexp_of_t (t : t) : Sexp.t =
match t with
| Nil -> Atom "Nil"
Expand Down Expand Up @@ -55,15 +67,15 @@ module Route = struct
else Literal (token, parse_tokens params tokens)
;;

let of_string_exn s =
let of_string s =
let tokens = String.split_on_char ~sep:'/' s in
match tokens with
| "" :: tokens -> parse_tokens [] tokens
| _ -> raise (E "route must start with /")
;;

let of_string s =
match of_string_exn s with
let of_string_result s =
match of_string s with
| exception E s -> Error s
| s -> Ok s
;;
Expand Down
5 changes: 3 additions & 2 deletions opium/src/router.mli
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ open Import
module Route : sig
type t

val of_string : string -> (t, string) result
val of_string_exn : string -> t
val of_string_result : string -> (t, string) result
val of_string : string -> t
val sexp_of_t : t -> Sexp.t
val to_string : t -> string
end

module Params : sig
Expand Down
8 changes: 4 additions & 4 deletions opium/test/opium_router_tests.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Router = Opium.Private.Router
open Router

let valid_route s =
match Route.of_string s with
match Route.of_string_result s with
| Error err -> print_endline ("[FAIL] invalid route " ^ err)
| Ok r -> Format.printf "[PASS] valid route:%a@." Sexp.pp_hum (Route.sexp_of_t r)
;;
Expand Down Expand Up @@ -71,15 +71,15 @@ let%expect_test "dummy router matches nothing" =
let%expect_test "we can add & match literal routes" =
let url = "/foo/bar" in
let route = Route.of_string_exn url in
let route = Route.of_string url in
let router = add empty route () in
test_match_url router url;
[%expect {|
matched with params: ((named ()) (unnamed ())) |}]
;;
let%expect_test "we can extract parameter after match" =
let route = Route.of_string_exn "/foo/*/:bar" in
let route = Route.of_string "/foo/*/:bar" in
let router = add empty route () in
test_match_url router "/foo/100/baz";
test_match_url router "/foo/100";
Expand All @@ -93,7 +93,7 @@ let%expect_test "we can extract parameter after match" =
let of_routes routes =
List.fold_left
(fun router (route, data) -> add router (Route.of_string_exn route) data)
(fun router (route, data) -> add router (Route.of_string route) data)
empty
routes
;;
Expand Down

0 comments on commit ec8fe13

Please sign in to comment.