mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
76cfff7533
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
58 lines
1.6 KiB
C
58 lines
1.6 KiB
C
#include "config.h"
|
|
#include <common/json_blinded_path.h>
|
|
#include <common/json_parse.h>
|
|
#include <wire/onion_wire.h>
|
|
|
|
struct blinded_path *
|
|
json_to_blinded_path(const tal_t *ctx, const char *buffer, const jsmntok_t *tok)
|
|
{
|
|
struct blinded_path *rpath;
|
|
const jsmntok_t *hops, *t;
|
|
size_t i;
|
|
const char *err;
|
|
struct pubkey first_node_id;
|
|
struct short_channel_id_dir first_scidd;
|
|
|
|
rpath = tal(ctx, struct blinded_path);
|
|
|
|
/* It will give us either scid or node_id */
|
|
memset(&first_scidd, 0, sizeof(first_scidd));
|
|
err = json_scan(tmpctx, buffer, tok,
|
|
"{first_path_key:%,"
|
|
"first_node_id?:%,"
|
|
"first_scid?:%,"
|
|
"first_scid_dir?:%}",
|
|
JSON_SCAN(json_to_pubkey, &rpath->first_path_key),
|
|
JSON_SCAN(json_to_pubkey, &first_node_id),
|
|
JSON_SCAN(json_to_short_channel_id, &first_scidd.scid),
|
|
JSON_SCAN(json_to_int, &first_scidd.dir),
|
|
NULL);
|
|
if (err)
|
|
return tal_free(rpath);
|
|
|
|
if (first_scidd.scid.u64 != 0)
|
|
sciddir_or_pubkey_from_scidd(&rpath->first_node_id, &first_scidd);
|
|
else
|
|
sciddir_or_pubkey_from_pubkey(&rpath->first_node_id, &first_node_id);
|
|
|
|
hops = json_get_member(buffer, tok, "hops");
|
|
if (!hops || hops->size < 1)
|
|
return tal_free(rpath);
|
|
|
|
rpath->path = tal_arr(rpath, struct blinded_path_hop *, hops->size);
|
|
json_for_each_arr(i, t, hops) {
|
|
rpath->path[i] = tal(rpath->path, struct blinded_path_hop);
|
|
err = json_scan(tmpctx, buffer, t, "{blinded_node_id:%,encrypted_recipient_data:%}",
|
|
JSON_SCAN(json_to_pubkey,
|
|
&rpath->path[i]->blinded_node_id),
|
|
JSON_SCAN_TAL(rpath->path[i],
|
|
json_tok_bin_from_hex,
|
|
&rpath->path[i]->encrypted_recipient_data));
|
|
if (err)
|
|
return tal_free(rpath);
|
|
}
|
|
|
|
return rpath;
|
|
}
|
|
|