mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
adds decoding of payment id as ascii
https://github.com/moneroexamples/onion-monero-blockchain-explorer/issues/81
This commit is contained in:
parent
a749f1cadd
commit
066a22823a
2 changed files with 13 additions and 0 deletions
12
src/page.h
12
src/page.h
|
@ -30,6 +30,7 @@
|
||||||
#include <limits>
|
#include <limits>
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
#include <future>
|
#include <future>
|
||||||
|
#include <regex>
|
||||||
|
|
||||||
#define TMPL_DIR "./templates"
|
#define TMPL_DIR "./templates"
|
||||||
#define TMPL_PARIALS_DIR TMPL_DIR "/partials"
|
#define TMPL_PARIALS_DIR TMPL_DIR "/partials"
|
||||||
|
@ -140,6 +141,8 @@ namespace xmreg
|
||||||
crypto::hash payment_id = null_hash; // normal
|
crypto::hash payment_id = null_hash; // normal
|
||||||
crypto::hash8 payment_id8 = null_hash8; // encrypted
|
crypto::hash8 payment_id8 = null_hash8; // encrypted
|
||||||
|
|
||||||
|
string payment_id_as_ascii;
|
||||||
|
|
||||||
std::vector<std::vector<crypto::signature>> signatures;
|
std::vector<std::vector<crypto::signature>> signatures;
|
||||||
|
|
||||||
// key images of inputs
|
// key images of inputs
|
||||||
|
@ -5274,6 +5277,9 @@ namespace xmreg
|
||||||
|
|
||||||
string tx_json = obj_to_json_str(tx);
|
string tx_json = obj_to_json_str(tx);
|
||||||
|
|
||||||
|
// use this regex to remove all non friendly characters in payment_id_as_ascii string
|
||||||
|
static std::regex e {"[^a-zA-Z0-9 ./\\\\!]"};
|
||||||
|
|
||||||
// initalise page tempate map with basic info about blockchain
|
// initalise page tempate map with basic info about blockchain
|
||||||
mstch::map context {
|
mstch::map context {
|
||||||
{"testnet" , testnet},
|
{"testnet" , testnet},
|
||||||
|
@ -5296,6 +5302,7 @@ namespace xmreg
|
||||||
{"has_payment_id8" , txd.payment_id8 != null_hash8},
|
{"has_payment_id8" , txd.payment_id8 != null_hash8},
|
||||||
{"confirmations" , txd.no_confirmations},
|
{"confirmations" , txd.no_confirmations},
|
||||||
{"payment_id" , pid_str},
|
{"payment_id" , pid_str},
|
||||||
|
{"payment_id_as_ascii" , std::regex_replace(txd.payment_id_as_ascii, e, " ")},
|
||||||
{"payment_id8" , pid8_str},
|
{"payment_id8" , pid8_str},
|
||||||
{"extra" , txd.get_extra_str()},
|
{"extra" , txd.get_extra_str()},
|
||||||
{"with_ring_signatures" , static_cast<bool>(
|
{"with_ring_signatures" , static_cast<bool>(
|
||||||
|
@ -5732,6 +5739,11 @@ namespace xmreg
|
||||||
|
|
||||||
txd.extra = tx.extra;
|
txd.extra = tx.extra;
|
||||||
|
|
||||||
|
if (txd.payment_id != null_hash)
|
||||||
|
{
|
||||||
|
txd.payment_id_as_ascii = std::string(txd.payment_id.data, crypto::HASH_SIZE);
|
||||||
|
}
|
||||||
|
|
||||||
// get tx signatures for each input
|
// get tx signatures for each input
|
||||||
txd.signatures = tx.signatures;
|
txd.signatures = tx.signatures;
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
{{#has_payment_id}}
|
{{#has_payment_id}}
|
||||||
<H5 style="margin:5px">Payment id: {{payment_id}}</H5>
|
<H5 style="margin:5px">Payment id: {{payment_id}}</H5>
|
||||||
|
<H5 style="margin:5px">Payment id as ascii ([a-zA-Z0-9 /!]): {{payment_id_as_ascii}}</H5>
|
||||||
{{/has_payment_id}}
|
{{/has_payment_id}}
|
||||||
|
|
||||||
{{#has_payment_id8}}
|
{{#has_payment_id8}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue