mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 19:23:26 -03:00
[rpc] split wallet and non-wallet parts of DescribeAddressVisitor
This commit is contained in:
parent
3fa556aee2
commit
39633ecd5c
1 changed files with 63 additions and 26 deletions
|
@ -33,13 +33,62 @@
|
||||||
|
|
||||||
#include <univalue.h>
|
#include <univalue.h>
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
|
||||||
class DescribeAddressVisitor : public boost::static_visitor<UniValue>
|
class DescribeAddressVisitor : public boost::static_visitor<UniValue>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CWallet * const pwallet;
|
explicit DescribeAddressVisitor() {}
|
||||||
|
|
||||||
explicit DescribeAddressVisitor(CWallet *_pwallet) : pwallet(_pwallet) {}
|
UniValue operator()(const CNoDestination &dest) const { return UniValue(UniValue::VOBJ); }
|
||||||
|
|
||||||
|
UniValue operator()(const CKeyID &keyID) const {
|
||||||
|
UniValue obj(UniValue::VOBJ);
|
||||||
|
obj.pushKV("isscript", false);
|
||||||
|
obj.pushKV("iswitness", false);
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
UniValue operator()(const CScriptID &scriptID) const {
|
||||||
|
UniValue obj(UniValue::VOBJ);
|
||||||
|
obj.pushKV("isscript", true);
|
||||||
|
obj.pushKV("iswitness", false);
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
UniValue operator()(const WitnessV0KeyHash& id) const
|
||||||
|
{
|
||||||
|
UniValue obj(UniValue::VOBJ);
|
||||||
|
obj.pushKV("isscript", false);
|
||||||
|
obj.pushKV("iswitness", true);
|
||||||
|
obj.pushKV("witness_version", 0);
|
||||||
|
obj.pushKV("witness_program", HexStr(id.begin(), id.end()));
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
UniValue operator()(const WitnessV0ScriptHash& id) const
|
||||||
|
{
|
||||||
|
UniValue obj(UniValue::VOBJ);
|
||||||
|
obj.pushKV("isscript", true);
|
||||||
|
obj.pushKV("iswitness", true);
|
||||||
|
obj.pushKV("witness_version", 0);
|
||||||
|
obj.pushKV("witness_program", HexStr(id.begin(), id.end()));
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
UniValue operator()(const WitnessUnknown& id) const
|
||||||
|
{
|
||||||
|
UniValue obj(UniValue::VOBJ);
|
||||||
|
obj.pushKV("iswitness", true);
|
||||||
|
obj.pushKV("witness_version", (int)id.version);
|
||||||
|
obj.pushKV("witness_program", HexStr(id.program, id.program + id.length));
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
|
class DescribeWalletAddressVisitor : public boost::static_visitor<UniValue>
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
CWallet * const pwallet;
|
||||||
|
|
||||||
void ProcessSubScript(const CScript& subscript, UniValue& obj, bool include_addresses = false) const
|
void ProcessSubScript(const CScript& subscript, UniValue& obj, bool include_addresses = false) const
|
||||||
{
|
{
|
||||||
|
@ -54,7 +103,11 @@ public:
|
||||||
UniValue a(UniValue::VARR);
|
UniValue a(UniValue::VARR);
|
||||||
if (ExtractDestination(subscript, embedded)) {
|
if (ExtractDestination(subscript, embedded)) {
|
||||||
// Only when the script corresponds to an address.
|
// Only when the script corresponds to an address.
|
||||||
UniValue subobj = boost::apply_visitor(*this, embedded);
|
UniValue subobj(UniValue::VOBJ);
|
||||||
|
UniValue detail = boost::apply_visitor(DescribeAddressVisitor(), embedded);
|
||||||
|
subobj.pushKVs(detail);
|
||||||
|
UniValue wallet_detail = boost::apply_visitor(*this, embedded);
|
||||||
|
subobj.pushKVs(wallet_detail);
|
||||||
subobj.pushKV("address", EncodeDestination(embedded));
|
subobj.pushKV("address", EncodeDestination(embedded));
|
||||||
subobj.pushKV("scriptPubKey", HexStr(subscript.begin(), subscript.end()));
|
subobj.pushKV("scriptPubKey", HexStr(subscript.begin(), subscript.end()));
|
||||||
// Always report the pubkey at the top level, so that `getnewaddress()['pubkey']` always works.
|
// Always report the pubkey at the top level, so that `getnewaddress()['pubkey']` always works.
|
||||||
|
@ -81,13 +134,13 @@ public:
|
||||||
if (include_addresses) obj.pushKV("addresses", std::move(a));
|
if (include_addresses) obj.pushKV("addresses", std::move(a));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
explicit DescribeWalletAddressVisitor(CWallet *_pwallet) : pwallet(_pwallet) {}
|
||||||
|
|
||||||
UniValue operator()(const CNoDestination &dest) const { return UniValue(UniValue::VOBJ); }
|
UniValue operator()(const CNoDestination &dest) const { return UniValue(UniValue::VOBJ); }
|
||||||
|
|
||||||
UniValue operator()(const CKeyID &keyID) const {
|
UniValue operator()(const CKeyID &keyID) const {
|
||||||
UniValue obj(UniValue::VOBJ);
|
UniValue obj(UniValue::VOBJ);
|
||||||
CPubKey vchPubKey;
|
CPubKey vchPubKey;
|
||||||
obj.pushKV("isscript", false);
|
|
||||||
obj.pushKV("iswitness", false);
|
|
||||||
if (pwallet && pwallet->GetPubKey(keyID, vchPubKey)) {
|
if (pwallet && pwallet->GetPubKey(keyID, vchPubKey)) {
|
||||||
obj.pushKV("pubkey", HexStr(vchPubKey));
|
obj.pushKV("pubkey", HexStr(vchPubKey));
|
||||||
obj.pushKV("iscompressed", vchPubKey.IsCompressed());
|
obj.pushKV("iscompressed", vchPubKey.IsCompressed());
|
||||||
|
@ -98,8 +151,6 @@ public:
|
||||||
UniValue operator()(const CScriptID &scriptID) const {
|
UniValue operator()(const CScriptID &scriptID) const {
|
||||||
UniValue obj(UniValue::VOBJ);
|
UniValue obj(UniValue::VOBJ);
|
||||||
CScript subscript;
|
CScript subscript;
|
||||||
obj.pushKV("isscript", true);
|
|
||||||
obj.pushKV("iswitness", false);
|
|
||||||
if (pwallet && pwallet->GetCScript(scriptID, subscript)) {
|
if (pwallet && pwallet->GetCScript(scriptID, subscript)) {
|
||||||
ProcessSubScript(subscript, obj, true);
|
ProcessSubScript(subscript, obj, true);
|
||||||
}
|
}
|
||||||
|
@ -110,10 +161,6 @@ public:
|
||||||
{
|
{
|
||||||
UniValue obj(UniValue::VOBJ);
|
UniValue obj(UniValue::VOBJ);
|
||||||
CPubKey pubkey;
|
CPubKey pubkey;
|
||||||
obj.pushKV("isscript", false);
|
|
||||||
obj.pushKV("iswitness", true);
|
|
||||||
obj.pushKV("witness_version", 0);
|
|
||||||
obj.pushKV("witness_program", HexStr(id.begin(), id.end()));
|
|
||||||
if (pwallet && pwallet->GetPubKey(CKeyID(id), pubkey)) {
|
if (pwallet && pwallet->GetPubKey(CKeyID(id), pubkey)) {
|
||||||
obj.pushKV("pubkey", HexStr(pubkey));
|
obj.pushKV("pubkey", HexStr(pubkey));
|
||||||
}
|
}
|
||||||
|
@ -124,10 +171,6 @@ public:
|
||||||
{
|
{
|
||||||
UniValue obj(UniValue::VOBJ);
|
UniValue obj(UniValue::VOBJ);
|
||||||
CScript subscript;
|
CScript subscript;
|
||||||
obj.pushKV("isscript", true);
|
|
||||||
obj.pushKV("iswitness", true);
|
|
||||||
obj.pushKV("witness_version", 0);
|
|
||||||
obj.pushKV("witness_program", HexStr(id.begin(), id.end()));
|
|
||||||
CRIPEMD160 hasher;
|
CRIPEMD160 hasher;
|
||||||
uint160 hash;
|
uint160 hash;
|
||||||
hasher.Write(id.begin(), 32).Finalize(hash.begin());
|
hasher.Write(id.begin(), 32).Finalize(hash.begin());
|
||||||
|
@ -137,15 +180,7 @@ public:
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
UniValue operator()(const WitnessUnknown& id) const
|
UniValue operator()(const WitnessUnknown& id) const { return UniValue(UniValue::VOBJ); }
|
||||||
{
|
|
||||||
UniValue obj(UniValue::VOBJ);
|
|
||||||
CScript subscript;
|
|
||||||
obj.pushKV("iswitness", true);
|
|
||||||
obj.pushKV("witness_version", (int)id.version);
|
|
||||||
obj.pushKV("witness_program", HexStr(id.program, id.program + id.length));
|
|
||||||
return obj;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -219,8 +254,10 @@ UniValue validateaddress(const JSONRPCRequest& request)
|
||||||
isminetype mine = pwallet ? IsMine(*pwallet, dest) : ISMINE_NO;
|
isminetype mine = pwallet ? IsMine(*pwallet, dest) : ISMINE_NO;
|
||||||
ret.pushKV("ismine", bool(mine & ISMINE_SPENDABLE));
|
ret.pushKV("ismine", bool(mine & ISMINE_SPENDABLE));
|
||||||
ret.pushKV("iswatchonly", bool(mine & ISMINE_WATCH_ONLY));
|
ret.pushKV("iswatchonly", bool(mine & ISMINE_WATCH_ONLY));
|
||||||
UniValue detail = boost::apply_visitor(DescribeAddressVisitor(pwallet), dest);
|
UniValue detail = boost::apply_visitor(DescribeAddressVisitor(), dest);
|
||||||
ret.pushKVs(detail);
|
ret.pushKVs(detail);
|
||||||
|
UniValue wallet_detail = boost::apply_visitor(DescribeWalletAddressVisitor(pwallet), dest);
|
||||||
|
ret.pushKVs(wallet_detail);
|
||||||
if (pwallet && pwallet->mapAddressBook.count(dest)) {
|
if (pwallet && pwallet->mapAddressBook.count(dest)) {
|
||||||
ret.pushKV("account", pwallet->mapAddressBook[dest].name);
|
ret.pushKV("account", pwallet->mapAddressBook[dest].name);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue