2021-01-08 12:47:17 +00:00
|
|
|
module Asn = struct
|
|
|
|
let decode_strict codec cs =
|
|
|
|
match Asn.decode codec cs with
|
|
|
|
| Ok (a, cs) ->
|
|
|
|
if Cstruct.len cs = 0
|
|
|
|
then Ok a
|
|
|
|
else Error "trailing bytes"
|
|
|
|
| Error (`Parse msg) -> Error ("parse error: " ^ msg)
|
|
|
|
|
|
|
|
let projections_of asn =
|
|
|
|
let c = Asn.codec Asn.der asn in
|
|
|
|
(decode_strict c, Asn.encode c)
|
|
|
|
|
|
|
|
let console =
|
|
|
|
Asn.S.(sequence_of
|
|
|
|
(sequence2
|
|
|
|
(required ~label:"delta" int)
|
|
|
|
(required ~label:"data" utf8_string)))
|
|
|
|
|
|
|
|
let console_of_cs, console_to_cs = projections_of console
|
|
|
|
end
|
|
|
|
|
|
|
|
type id = int64
|
|
|
|
let id = Caqti_type.int64
|
|
|
|
|
2021-01-28 11:17:06 +00:00
|
|
|
type file = {
|
|
|
|
filepath : Fpath.t;
|
|
|
|
localpath : Fpath.t;
|
|
|
|
sha256 : Cstruct.t;
|
2021-02-25 14:27:45 +00:00
|
|
|
size : int;
|
2021-01-28 11:17:06 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 12:47:17 +00:00
|
|
|
let uuid =
|
|
|
|
let encode uuid = Ok (Uuidm.to_bytes uuid) in
|
|
|
|
let decode s =
|
|
|
|
Uuidm.of_bytes s
|
|
|
|
|> Option.to_result ~none:"failed to decode uuid"
|
|
|
|
in
|
|
|
|
Caqti_type.custom ~encode ~decode Caqti_type.string
|
|
|
|
|
|
|
|
|
|
|
|
let ptime =
|
|
|
|
let encode t = Ok (Ptime.Span.to_d_ps (Ptime.to_span t)) in
|
|
|
|
let decode (d, ps) = Ok (Ptime.v (d, ps))
|
|
|
|
in
|
|
|
|
let rep = Caqti_type.(tup2 int int64) in
|
|
|
|
Caqti_type.custom ~encode ~decode rep
|
|
|
|
|
|
|
|
let fpath =
|
|
|
|
let encode t = Ok (Fpath.to_string t) in
|
|
|
|
let decode s = Fpath.of_string s
|
|
|
|
|> Result.map_error (fun (`Msg s) -> s) in
|
|
|
|
Caqti_type.custom ~encode ~decode Caqti_type.string
|
|
|
|
|
|
|
|
let cstruct =
|
|
|
|
let encode t = Ok (Cstruct.to_string t) in
|
|
|
|
let decode s = Ok (Cstruct.of_string s) in
|
|
|
|
Caqti_type.custom ~encode ~decode Caqti_type.octets
|
|
|
|
|
2021-01-28 11:17:06 +00:00
|
|
|
let file =
|
2021-02-23 14:37:30 +00:00
|
|
|
let encode { filepath; localpath; sha256; size } =
|
|
|
|
Ok (filepath, localpath, sha256, size) in
|
|
|
|
let decode (filepath, localpath, sha256, size) =
|
|
|
|
Ok { filepath; localpath; sha256; size } in
|
2021-02-25 14:27:45 +00:00
|
|
|
Caqti_type.custom ~encode ~decode Caqti_type.(tup4 fpath fpath cstruct int)
|
2021-01-28 11:17:06 +00:00
|
|
|
|
|
|
|
let file_opt =
|
2021-02-25 14:27:45 +00:00
|
|
|
let rep = Caqti_type.(tup4 (option fpath) (option fpath) (option cstruct) (option int)) in
|
2021-01-28 11:17:06 +00:00
|
|
|
let encode = function
|
2021-02-23 14:37:30 +00:00
|
|
|
| Some { filepath; localpath; sha256; size } ->
|
|
|
|
Ok (Some filepath, Some localpath, Some sha256, Some size)
|
2021-01-28 11:17:06 +00:00
|
|
|
| None ->
|
2021-02-23 14:37:30 +00:00
|
|
|
Ok (None, None, None, None)
|
2021-01-28 11:17:06 +00:00
|
|
|
in
|
|
|
|
let decode = function
|
2021-02-23 14:37:30 +00:00
|
|
|
| (Some filepath, Some localpath, Some sha256, Some size) ->
|
|
|
|
Ok (Some { filepath; localpath; sha256; size })
|
|
|
|
| (None, None, None, None) ->
|
2021-01-28 11:17:06 +00:00
|
|
|
Ok None
|
|
|
|
| _ ->
|
|
|
|
(* This should not happen if the database is well-formed *)
|
|
|
|
Error "Some but not all fields NULL"
|
|
|
|
in
|
|
|
|
Caqti_type.custom ~encode ~decode rep
|
|
|
|
|
2021-01-08 12:47:17 +00:00
|
|
|
let execution_result =
|
|
|
|
let encode = function
|
|
|
|
| Builder.Exited v -> Ok (0, Some v, None)
|
|
|
|
| Builder.Signalled v -> Ok (1, Some v, None)
|
|
|
|
| Builder.Stopped v -> Ok (2, Some v, None)
|
|
|
|
| Builder.Msg msg -> Ok (3, None, Some msg)
|
|
|
|
in
|
|
|
|
let decode (kind, code, msg) =
|
|
|
|
match kind, code, msg with
|
|
|
|
| 0, Some v, None -> Ok (Builder.Exited v)
|
|
|
|
| 1, Some v, None -> Ok (Builder.Signalled v)
|
|
|
|
| 2, Some v, None -> Ok (Builder.Stopped v)
|
|
|
|
| 3, None, Some msg -> Ok (Builder.Msg msg)
|
|
|
|
| _ -> Error "bad encoding"
|
|
|
|
in
|
|
|
|
let rep = Caqti_type.(tup3 int (option int) (option string)) in
|
|
|
|
Caqti_type.custom ~encode ~decode rep
|
|
|
|
|
|
|
|
let console =
|
|
|
|
let encode console = Ok (Asn.console_to_cs console) in
|
|
|
|
let decode data = Asn.console_of_cs data in
|
|
|
|
Caqti_type.custom ~encode ~decode cstruct
|
2021-01-20 21:50:35 +00:00
|
|
|
|
|
|
|
let user_info =
|
2021-02-23 15:20:18 +00:00
|
|
|
let rep = Caqti_type.(tup4 string cstruct cstruct (tup3 int int int)) in
|
|
|
|
let encode { Builder_web_auth.username;
|
|
|
|
password_hash = `Scrypt (password_hash, password_salt, {
|
|
|
|
Builder_web_auth.scrypt_n; scrypt_r; scrypt_p
|
|
|
|
}) }
|
|
|
|
=
|
|
|
|
Ok (username, password_hash, password_salt, (scrypt_n, scrypt_r, scrypt_p))
|
2021-01-20 21:50:35 +00:00
|
|
|
in
|
2021-02-23 15:20:18 +00:00
|
|
|
let decode (username, password_hash, password_salt, (scrypt_n, scrypt_r, scrypt_p)) =
|
|
|
|
Ok { Builder_web_auth.username;
|
|
|
|
password_hash =
|
|
|
|
`Scrypt (password_hash, password_salt,
|
|
|
|
{ Builder_web_auth.scrypt_n;
|
|
|
|
scrypt_r; scrypt_p }) } in
|
2021-01-20 21:50:35 +00:00
|
|
|
Caqti_type.custom ~encode ~decode rep
|