fe9df925a7a81312f08e7ee3a46db5ebf09b5450
[novacoin.git] / src / rpcdump.cpp
1 // Copyright (c) 2009-2012 Bitcoin Developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5 #include "init.h" // for pwalletMain
6 #include "bitcoinrpc.h"
7 #include "ui_interface.h"
8 #include "base58.h"
9
10 #define printf OutputDebugStringF
11
12 using namespace json_spirit;
13 using namespace std;
14
15 void EnsureWalletIsUnlocked();
16
17 class CTxDump
18 {
19 public:
20     CBlockIndex *pindex;
21     int64 nValue;
22     bool fSpent;
23     CWalletTx* ptx;
24     int nOut;
25     CTxDump(CWalletTx* ptx = NULL, int nOut = -1)
26     {
27         pindex = NULL;
28         nValue = 0;
29         fSpent = false;
30         this->ptx = ptx;
31         this->nOut = nOut;
32     }
33 };
34
35 Value importprivkey(const Array& params, bool fHelp)
36 {
37     if (fHelp || params.size() < 1 || params.size() > 2)
38         throw runtime_error(
39             "importprivkey <novacoinprivkey> [label]\n"
40             "Adds a private key (as returned by dumpprivkey) to your wallet.");
41
42     string strSecret = params[0].get_str();
43     string strLabel = "";
44     if (params.size() > 1)
45         strLabel = params[1].get_str();
46     CBitcoinSecret vchSecret;
47     bool fGood = vchSecret.SetString(strSecret);
48
49     if (!fGood) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid private key");
50     if (fWalletUnlockMintOnly) // ppcoin: no importprivkey in mint-only mode
51         throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Wallet is unlocked for minting only.");
52
53     CKey key;
54     bool fCompressed;
55     CSecret secret = vchSecret.GetSecret(fCompressed);
56     key.SetSecret(secret, fCompressed);
57     CKeyID vchAddress = key.GetPubKey().GetID();
58     {
59         LOCK2(cs_main, pwalletMain->cs_wallet);
60
61         pwalletMain->MarkDirty();
62         pwalletMain->SetAddressBookName(vchAddress, strLabel);
63
64         if (!pwalletMain->AddKey(key))
65             throw JSONRPCError(RPC_WALLET_ERROR, "Error adding key to wallet");
66
67         pwalletMain->ScanForWalletTransactions(pindexGenesisBlock, true);
68         pwalletMain->ReacceptWalletTransactions();
69     }
70
71     return Value::null;
72 }
73
74 Value importaddress(const Array& params, bool fHelp)
75 {
76     if (fHelp || params.size() < 1 || params.size() > 3)
77         throw runtime_error(
78             "importaddress <address> [label] [rescan=true]\n"
79             "Adds an address that can be watched as if it were in your wallet but cannot be used to spend.");
80
81     CBitcoinAddress address(params[0].get_str());
82     if (!address.IsValid())
83         throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Bitcoin address");
84     CTxDestination dest;
85     dest = address.Get();
86
87     string strLabel = "";
88     if (params.size() > 1)
89         strLabel = params[1].get_str();
90
91     // Whether to perform rescan after import
92     bool fRescan = true;
93     if (params.size() > 2)
94         fRescan = params[2].get_bool();
95
96     {
97         LOCK2(cs_main, pwalletMain->cs_wallet);
98
99         // Don't throw error in case an address is already there
100         if (pwalletMain->HaveWatchOnly(dest))
101             return Value::null;
102
103         pwalletMain->MarkDirty();
104         pwalletMain->SetAddressBookName(dest, strLabel);
105
106         if (!pwalletMain->AddWatchOnly(dest))
107             throw JSONRPCError(RPC_WALLET_ERROR, "Error adding address to wallet");
108
109         if (fRescan)
110         {
111             pwalletMain->ScanForWalletTransactions(pindexGenesisBlock, true);
112             pwalletMain->ReacceptWalletTransactions();
113         }
114     }
115
116     return Value::null;
117 }
118
119 Value importwallet(const Array& params, bool fHelp)
120 {
121     if (fHelp || params.size() != 1)
122         throw runtime_error(
123             "importwallet <filename>\n"
124             "Imports keys from a wallet dump file (see dumpwallet)."
125             + HelpRequiringPassphrase());
126
127     EnsureWalletIsUnlocked();
128
129     if(!ImportWallet(pwalletMain, params[0].get_str().c_str()))
130        throw JSONRPCError(RPC_WALLET_ERROR, "Error adding some keys to wallet");
131
132     return Value::null;
133 }
134
135 Value dumpprivkey(const Array& params, bool fHelp)
136 {
137     if (fHelp || params.size() != 1)
138         throw runtime_error(
139             "dumpprivkey <novacoinaddress>\n"
140             "Reveals the private key corresponding to <novacoinaddress>.");
141
142     EnsureWalletIsUnlocked();
143
144     string strAddress = params[0].get_str();
145     CBitcoinAddress address;
146     if (!address.SetString(strAddress))
147         throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid NovaCoin address");
148     if (fWalletUnlockMintOnly) // ppcoin: no dumpprivkey in mint-only mode
149         throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Wallet is unlocked for minting only.");
150     CKeyID keyID;
151     if (!address.GetKeyID(keyID))
152         throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to a key");
153     CSecret vchSecret;
154     bool fCompressed;
155     if (!pwalletMain->GetSecret(keyID, vchSecret, fCompressed))
156         throw JSONRPCError(RPC_WALLET_ERROR, "Private key for address " + strAddress + " is not known");
157     return CBitcoinSecret(vchSecret, fCompressed).ToString();
158 }
159
160 Value dumpwallet(const Array& params, bool fHelp)
161 {
162     if (fHelp || params.size() != 1)
163         throw runtime_error(
164             "dumpwallet <filename>\n"
165             "Dumps all wallet keys in a human-readable format."
166             + HelpRequiringPassphrase());
167
168     EnsureWalletIsUnlocked();
169
170     if(!DumpWallet(pwalletMain, params[0].get_str().c_str() ))
171       throw JSONRPCError(RPC_WALLET_ERROR, "Error dumping wallet keys to file");
172
173     return Value::null;
174 }