2025-09-21 17:44:14 +02:00
|
|
|
(* MTE - the MirageOS Taler Exchange
|
|
|
|
|
Copyright (C) 2025 Olivier Pierre <swrup@protonmail.com>
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
2025-09-28 16:58:47 +02:00
|
|
|
the Free Software Foundation, version 3.
|
2025-09-21 17:44:14 +02:00
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. *)
|
|
|
|
|
|
2025-11-30 02:21:17 +01:00
|
|
|
let detail_tag : string Logs.Tag.def =
|
|
|
|
|
Logs.Tag.def "Detail tag" ~doc:"" Fmt.string
|
|
|
|
|
|
|
|
|
|
let detail s = Logs.Tag.(empty |> add detail_tag s)
|
|
|
|
|
let time_anchor = Ptime_clock.now () |> Ptime.to_span
|
|
|
|
|
|
|
|
|
|
let log_level_color = function
|
|
|
|
|
| Logs.App -> `White
|
|
|
|
|
| Error -> `Red
|
|
|
|
|
| Warning -> `Yellow
|
|
|
|
|
| Info -> `Blue
|
|
|
|
|
| Debug -> `Magenta
|
|
|
|
|
|
|
|
|
|
let reporter : Logs.reporter =
|
|
|
|
|
let open Fmt in
|
|
|
|
|
let pp_header ppf v =
|
|
|
|
|
let color = fst v |> log_level_color in
|
|
|
|
|
let pp = styled (`Fg color) Logs.pp_header in
|
|
|
|
|
pf ppf "%a" pp v
|
|
|
|
|
in
|
|
|
|
|
let pp_src ppf v =
|
|
|
|
|
let pp = using Logs.Src.name (styled `Cyan string) in
|
|
|
|
|
if not @@ Logs.Src.equal Logs.default v then pp ppf v
|
|
|
|
|
in
|
|
|
|
|
let pp_detail = option (styled `Green (fmt " (%s)")) in
|
|
|
|
|
let report src lvl ~over k msgf =
|
|
|
|
|
let ppf = stderr in
|
|
|
|
|
let k _ppf = over (); k () in
|
|
|
|
|
let with_detail h tags k user_fmt =
|
|
|
|
|
let detail = Option.bind tags (Logs.Tag.find detail_tag) in
|
|
|
|
|
let dt =
|
|
|
|
|
Ptime.sub_span (Ptime_clock.now ()) time_anchor
|
|
|
|
|
|> Option.get
|
|
|
|
|
|> Ptime.to_float_s
|
|
|
|
|
in
|
|
|
|
|
let k ppf = kpf k ppf "%a@." pp_detail detail in
|
|
|
|
|
let k ppf = kpf k ppf user_fmt in
|
|
|
|
|
kpf k ppf "%a %a %a"
|
|
|
|
|
(styled `Faint (styled (`Fg `White) (fmt "%04.02f")))
|
|
|
|
|
dt pp_header (lvl, h) pp_src src
|
|
|
|
|
in
|
|
|
|
|
msgf @@ fun ?header ?tags fmt -> with_detail header tags k fmt
|
|
|
|
|
in
|
|
|
|
|
{ report }
|
|
|
|
|
|
|
|
|
|
let () =
|
|
|
|
|
Fmt_tty.setup_std_outputs ~style_renderer:`Ansi_tty ~utf_8:true ();
|
|
|
|
|
Logs.set_reporter reporter;
|
|
|
|
|
Logs.set_level ~all:false (Some Logs.Debug);
|
|
|
|
|
Logs.Src.set_level Logs.default (Some Logs.Debug);
|
|
|
|
|
Logs_threaded.enable ();
|
|
|
|
|
Printexc.record_backtrace true;
|
|
|
|
|
()
|
|
|
|
|
|
2025-10-01 17:26:50 +02:00
|
|
|
let error_detail ?hint _status =
|
2025-11-21 19:16:31 +01:00
|
|
|
let open Api in
|
2025-10-01 17:26:50 +02:00
|
|
|
let code = -1 in
|
2025-10-07 15:08:35 +02:00
|
|
|
let s = encode_exn ErrorDetail.jsont { code; hint } in
|
2025-10-01 17:26:50 +02:00
|
|
|
s
|
2025-09-28 22:12:16 +02:00
|
|
|
|
|
|
|
|
module Respond_with = struct
|
|
|
|
|
open Vif.Response
|
|
|
|
|
open Syntax
|
|
|
|
|
|
2025-09-28 22:50:33 +02:00
|
|
|
let bad_request ?hint req =
|
|
|
|
|
let body = error_detail ?hint `Bad_request in
|
|
|
|
|
let* () = with_string ?compression:None req body in
|
|
|
|
|
respond `Bad_request
|
|
|
|
|
|
2025-09-28 22:12:16 +02:00
|
|
|
let not_modified () =
|
|
|
|
|
let* () = empty in
|
|
|
|
|
respond `Not_modified
|
|
|
|
|
|
|
|
|
|
let unsupported_media_type req =
|
|
|
|
|
let body =
|
|
|
|
|
error_detail ~hint:"no acceptable mimetype" `Unsupported_media_type
|
|
|
|
|
in
|
|
|
|
|
let* () = with_string ?compression:None req body in
|
|
|
|
|
let* () = add ~field:"accept" Headers.accept_header_value in
|
|
|
|
|
respond `Unsupported_media_type
|
|
|
|
|
end
|
|
|
|
|
|
2025-09-28 20:52:25 +02:00
|
|
|
(* TODO check for mathcing ETAG with a middleware instead? *)
|
2025-09-28 18:36:25 +02:00
|
|
|
(* /terms + /privacy
|
|
|
|
|
- try to find a response with an acceptable mime-type
|
|
|
|
|
- pick the version in the most preferred language of the user
|
|
|
|
|
- apply compression if that is allowed by the client
|
|
|
|
|
- set ETAG header
|
|
|
|
|
- If it did not change, a "304 Not Modified" response will be returned
|
|
|
|
|
- A "Taler-Terms-Version" header is generated to indicate the legal version of the terms
|
|
|
|
|
- When returning a full response (not a "304 Not Modified"),
|
|
|
|
|
include a "Avail-Languages" header: a comma-separated list of the languages available *)
|
2025-09-23 20:58:34 +02:00
|
|
|
module Static = struct
|
2025-09-28 22:12:16 +02:00
|
|
|
let f kind req _server _env =
|
2025-09-28 21:27:15 +02:00
|
|
|
let etag = Assets.etag kind in
|
2025-09-23 20:58:34 +02:00
|
|
|
let headers = Vif.Request.headers req in
|
2025-09-28 17:24:32 +02:00
|
|
|
let has_matching_etag =
|
|
|
|
|
match Vif.Headers.get headers "if-none-match" with
|
2025-09-28 22:50:33 +02:00
|
|
|
| None -> Ok false
|
2025-09-28 17:24:32 +02:00
|
|
|
| Some s ->
|
2025-09-28 22:50:33 +02:00
|
|
|
Headers_lib.Etag.parse s
|
|
|
|
|
|> Result.map (Headers_lib.Etag.evaluate etag)
|
2025-09-23 20:58:34 +02:00
|
|
|
in
|
2025-09-28 17:24:32 +02:00
|
|
|
match has_matching_etag with
|
2025-09-28 22:50:33 +02:00
|
|
|
| Error e -> Respond_with.bad_request ~hint:e req
|
|
|
|
|
| Ok true -> Respond_with.not_modified ()
|
|
|
|
|
| Ok false -> (
|
2025-09-28 22:12:16 +02:00
|
|
|
match Headers.select_mimetype headers with
|
|
|
|
|
| None -> Respond_with.unsupported_media_type req
|
|
|
|
|
| Some mime ->
|
|
|
|
|
let lang = Headers.select_language headers in
|
|
|
|
|
let compression = Headers.select_encoding headers in
|
|
|
|
|
let data = Assets.get_content ~mime ~lang kind in
|
|
|
|
|
(* -- *)
|
|
|
|
|
let open Vif.Response in
|
|
|
|
|
let open Syntax in
|
|
|
|
|
let* () = with_string ?compression req data in
|
|
|
|
|
let* () =
|
|
|
|
|
let etag_field_value = Headers_lib.Etag.to_field_value etag in
|
|
|
|
|
add ~field:"etag" etag_field_value
|
|
|
|
|
in
|
|
|
|
|
let* () =
|
|
|
|
|
(* todo: is it "taler-privacy-version" for /policy ? *)
|
2025-10-13 11:48:29 +02:00
|
|
|
add ~field:"taler-terms-version" Assets.terms_legal_version
|
2025-09-28 22:12:16 +02:00
|
|
|
in
|
|
|
|
|
let* () =
|
|
|
|
|
add ~field:"avail-languages" Headers.avail_languages_header_value
|
|
|
|
|
in
|
|
|
|
|
let* () =
|
2025-10-13 00:29:33 +02:00
|
|
|
let content_type = Fmt.str "%a" Assets.Mimetype.pp_mime mime in
|
2025-09-28 22:12:16 +02:00
|
|
|
add ~field:"content-type" content_type
|
|
|
|
|
in
|
|
|
|
|
respond `OK)
|
2025-09-23 20:58:34 +02:00
|
|
|
|
2025-09-28 22:12:16 +02:00
|
|
|
let terms = f Assets.Terms
|
|
|
|
|
let privacy = f Assets.Privacy
|
2025-09-23 20:58:34 +02:00
|
|
|
end
|
2025-09-13 15:56:19 +02:00
|
|
|
|
2025-09-28 20:04:52 +02:00
|
|
|
let hello req _server _env =
|
2025-09-28 22:12:16 +02:00
|
|
|
let open Vif.Response in
|
|
|
|
|
let open Syntax in
|
|
|
|
|
let* () = with_string req "Hello~~\n" in
|
|
|
|
|
let* () = add ~field:"content-type" "text/plain" in
|
|
|
|
|
respond `OK
|
2025-09-28 20:04:52 +02:00
|
|
|
|
2025-09-13 15:56:19 +02:00
|
|
|
let routes =
|
|
|
|
|
let open Vif.Uri in
|
|
|
|
|
let open Vif.Route in
|
2025-11-28 19:17:25 +01:00
|
|
|
let open Vif.Type in
|
2025-09-13 15:56:19 +02:00
|
|
|
[
|
2025-11-29 19:36:35 +01:00
|
|
|
get (rel /?? nil) --> hello; get (rel / "terms" /?? nil) --> Static.terms;
|
2025-10-06 21:42:24 +02:00
|
|
|
get (rel / "privacy" /?? nil) --> Static.privacy;
|
2025-11-29 19:36:35 +01:00
|
|
|
get (rel / "management" / "keys" /?? nil) --> Management.keys_get;
|
|
|
|
|
post any (rel / "management" / "keys" /?? nil) --> Management.keys_post;
|
2025-09-13 15:56:19 +02:00
|
|
|
]
|
|
|
|
|
|
2025-09-13 17:57:29 +02:00
|
|
|
let () =
|
2025-11-30 02:21:17 +01:00
|
|
|
(*Logs.set_reporter (Logs_fmt.reporter ());*)
|
2025-09-28 20:52:25 +02:00
|
|
|
let cfg =
|
2025-10-13 11:48:29 +02:00
|
|
|
let port = Config.Exchange.port in
|
2025-09-28 20:52:25 +02:00
|
|
|
let sockaddr = Unix.(ADDR_INET (inet_addr_loopback, port)) in
|
|
|
|
|
Vif.config sockaddr
|
|
|
|
|
in
|
2025-09-13 17:57:29 +02:00
|
|
|
Miou_unix.run @@ fun () ->
|
2025-11-11 03:12:12 +01:00
|
|
|
Caqti_miou.Switch.run @@ fun caqti_switch ->
|
|
|
|
|
let env : Devices.env =
|
|
|
|
|
{ caqti_switch; db_uri= Config.Exchangedb_postgres.config }
|
|
|
|
|
in
|
|
|
|
|
let devices =
|
2025-11-22 21:40:24 +01:00
|
|
|
Vif.Devices.
|
2025-11-28 07:47:51 +01:00
|
|
|
[ Devices.db_connection; Devices.secmod_signkey; Devices.secmod_denom ]
|
2025-11-11 03:12:12 +01:00
|
|
|
in
|
2025-09-13 17:57:29 +02:00
|
|
|
let middlewares = Vif.Middlewares.[] in
|
2025-11-30 02:21:17 +01:00
|
|
|
Logs.info (fun m -> m ~tags:(detail "~~!") "Starting MTE server");
|
2025-10-18 18:19:09 +02:00
|
|
|
Vif.run ~cfg ~devices ~middlewares routes env
|