package octez-libs
A package that contains multiple base libraries used by the Octez suite
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-18.1.tar.gz
sha256=aa2f5bc99cc4ca2217c52a1af2a2cdfd3b383208cb859ca2e79ca0903396ca1d
sha512=d68bb3eb615e3dcccc845fddfc9901c95b3c6dc8e105e39522ce97637b1308a7fa7aa1d271351d5933febd7476b2819e1694f31198f1f0919681f1f9cc97cb3a
doc/src/octez-libs.rpc-http-server/RPC_middleware.ml.html
Source file RPC_middleware.ml
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
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2022 Nomadic Labs, <contact@nomadic-labs.com> *) (* *) (* Permission is hereby granted, free of charge, to any person obtaining a *) (* copy of this software and associated documentation files (the "Software"),*) (* to deal in the Software without restriction, including without limitation *) (* the rights to use, copy, modify, merge, publish, distribute, sublicense, *) (* and/or sell copies of the Software, and to permit persons to whom the *) (* Software is furnished to do so, subject to the following conditions: *) (* *) (* The above copyright notice and this permission notice shall be included *) (* in all copies or substantial portions of the Software. *) (* *) (* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*) (* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *) (* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *) (* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*) (* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *) (* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *) (* DEALINGS IN THE SOFTWARE. *) (* *) (*****************************************************************************) let make_transform_callback forwarding_endpoint callback conn req body = let open Lwt_syntax in let open Cohttp in (* Using a [Cohttp_lwt.Body.t] destructs it. As we may need it twice, we explicitly clone the underlying [Lwt_stream.t]. *) let body_stream = Cohttp_lwt.Body.to_stream body in let* answer = callback conn req (Cohttp_lwt.Body.of_stream (Lwt_stream.clone body_stream)) in let answer_has_not_found_status = function | `Expert (response, _) | `Response (response, _) -> Response.status response = `Not_found in if answer_has_not_found_status answer then let uri = Request.uri req in let uri = Uri.make ?scheme:(Uri.scheme forwarding_endpoint) ?userinfo:(Uri.userinfo forwarding_endpoint) ?host:(Uri.host forwarding_endpoint) ?port:(Uri.port forwarding_endpoint) ~path:(Filename.concat (Uri.path forwarding_endpoint) (Uri.path uri)) ~query:(Uri.query uri) ?fragment:(Uri.fragment uri) () in (* Strip out hop-by-hop connection headers (stolen from cohttp-lwt-unix/bin/cohttp_proxy_lwt.ml from github.com/mirage/ocaml-cohttp) *) let headers = Request.headers req |> fun h -> Header.remove h "accept-encoding" |> fun h -> Header.remove h "content-length" |> fun h -> Header.remove h "transfer-encoding" |> fun h -> Header.remove h "connection" |> fun h -> Header.add h "accept-encoding" "identity" in let* resp, body = Cohttp_lwt_unix.Client.call ~headers ~body:(Cohttp_lwt.Body.of_stream body_stream) (Request.meth req) uri in let status = Response.status resp in let headers = Response.headers resp |> fun h -> Header.remove h "transfer-encoding" |> fun h -> Header.remove h "content-length" |> fun h -> Header.remove h "connection" in let* answer = Cohttp_lwt_unix.Server.respond ~headers ~status ~body () in Lwt.return (`Response answer) else Lwt.return answer let rpc_metrics_transform_callback ~update_metrics dir callback conn req body = let open Lwt_result_syntax in let do_call () = callback conn req body in let cohttp_meth = Cohttp.Request.meth req in let uri = Cohttp.Request.uri req in let path = Uri.path uri in let decoded = Resto.Utils.decode_split_path path in let*! description = let* resto_meth = match cohttp_meth with | #Resto.meth as meth -> Lwt.return_ok meth | _ -> Lwt.return_error @@ `Method_not_allowed [] in let* uri_desc = Tezos_rpc.Directory.lookup_uri_desc dir () resto_meth decoded in Lwt.return_ok (uri_desc, Resto.string_of_meth resto_meth) in match description with | Ok (uri, meth) -> (* We update the metric only if the URI can succesfully be matched in the directory tree. *) update_metrics uri meth do_call | Error _ -> (* Otherwise, the call must be done anyway. *) do_call () let proxy_server_query_forwarder forwarding_endpoint = make_transform_callback forwarding_endpoint
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>