fix: command line with no password
[electrum-nvc.git] / lib / commands.py
1 #!/usr/bin/env python
2 #
3 # Electrum - lightweight Bitcoin client
4 # Copyright (C) 2011 thomasv@gitorious
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19
20 from util import *
21 from bitcoin import *
22 from decimal import Decimal
23 import bitcoin
24
25 known_commands = {}
26 offline_commands = []
27 protected_commands = []
28
29 def register_command(name, min_args, max_args, is_protected, is_offline, description, syntax = '', options_syntax = ''):
30     global known_commands, protected_commands, offline_commands
31     known_commands[name] = (min_args, max_args, description, syntax, options_syntax)
32     if is_protected:
33         protected_commands.append(name)
34     if is_offline:
35         offline_commands.append(name)
36
37
38 payto_options = ' --fee, -f: set transaction fee\n --fromaddr, -s: send from address -\n --changeaddr, -c: send change to address'
39 listaddr_options = " -a: show all addresses, including change addresses\n -b: include balance in results\n -l: include labels in results"
40
41
42 register_command('contacts',             0, 0, False, True,  'Show your list of contacts')
43 register_command('create',               0, 0, False, True,  'Create a new wallet')
44 register_command('createmultisig',       2, 2, False, True,  'similar to bitcoind\'s command')
45 register_command('createrawtransaction', 2, 2, False, True,  'similar to bitcoind\'s command')
46 register_command('deseed',               0, 0, False, True,  'Create a seedless, watching-only wallet.')
47 register_command('decoderawtransaction', 1, 1, False, True,  'similar to bitcoind\'s command')
48 register_command('dumpprivkey',          1, 1, True,  True,  'similar to bitcoind\'s command')
49 register_command('dumpprivkeys',         0, 0, True,  True,  'dump all private keys')
50 register_command('eval',                 1, 1, False, True,  'Run python eval() on an object', 'eval <expression>\nExample: eval \"wallet.aliases\"')
51 register_command('freeze',               1, 1, False, True,  'Freeze the funds at one of your wallet\'s addresses')
52 register_command('getbalance',           0, 1, False, False, 'Display the balance of your wallet or of an address', 'getbalance [<address>]')
53 register_command('getaddresshistory',    1, 1, False, False, 'get history for an address')
54 register_command('getconfig',            1, 1, False, True,  'Return a configuration variable', 'getconfig <name>')
55 register_command('getseed',              0, 0, True,  True,  'Print the generation seed of your wallet.')
56 register_command('help',                 0, 1, False, True,  'Prints this help')
57 register_command('history',              0, 0, False, False, 'Returns the transaction history of your wallet')
58 register_command('importprivkey',        1, 1, True,  True,  'Import a private key', 'importprivkey <privatekey>')
59 register_command('listaddresses',        3, 3, False, True,  'Returns your list of addresses.', '', listaddr_options)
60 register_command('listunspent',          0, 0, False, True,  'Returns a list of unspent inputs in your wallet.')
61 register_command('mktx',                 5, 5, True,  True,  'Create a signed transaction', 'mktx <recipient> <amount> [label]', payto_options)
62 register_command('payto',                5, 5, True,  False, 'Create and broadcast a transaction.', "payto <recipient> <amount> [label]\n<recipient> can be a bitcoin address or a label", payto_options)
63 register_command('password',             0, 0, True,  True,  'Change your password')
64 register_command('prioritize',           1, 1, False, True,  'Coins at prioritized addresses are spent first.', 'prioritize <address>')
65 register_command('restore',              0, 0, False, False, 'Restore a wallet')
66 register_command('setconfig',            2, 2, False, True,  'Set a configuration variable', 'setconfig <name> <value>')
67 register_command('setlabel',             2,-1, False, True,  'Assign a label to an item', 'setlabel <tx_hash> <label>')
68 register_command('sendrawtransaction',   1, 1, False, False, 'Broadcasts a transaction to the network.', 'sendrawtransaction <tx in hexadecimal>')
69 register_command('signrawtransaction',   1, 3, True,  True,  'similar to bitcoind\'s command')
70 register_command('signmessage',          2,-1, True,  True,  'Sign a message with a key', 'signmessage <address> <message>\nIf you want to lead or end a message with spaces, or want double spaces inside the message make sure you quote the string. I.e. " Hello  This is a weird String "')
71 register_command('unfreeze',             1, 1, False, True,  '')
72 register_command('unprioritize',         1, 1, False, True,  '')
73 register_command('validateaddress',      1, 1, False, True,  'Check that the address is valid')
74 register_command('verifymessage',        3,-1, False, True,  'Verifies a signature', 'verifymessage <address> <signature> <message>\nIf you want to lead or end a message with spaces, or want double spaces inside the message make sure you quote the string. I.e. " Hello  This is a weird String "')
75     
76
77
78
79 class Commands:
80
81     def __init__(self, wallet, interface, callback = None):
82         self.wallet = wallet
83         self.interface = interface
84         self._callback = callback
85         self.password = None
86
87     def _run(self, method, args, password_getter):
88         if method in protected_commands and self.wallet.use_encryption:
89             self.password = apply(password_getter,())
90         f = eval('self.'+method)
91         result = apply(f,args)
92         self.password = None
93         if self._callback:
94             apply(self._callback, ())
95         return result
96
97     def getaddresshistory(self, addr):
98         h = self.wallet.get_history(addr)
99         if h is None: h = self.wallet.interface.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0]
100         return h
101
102     def listunspent(self):
103         import copy
104         l = copy.deepcopy(self.wallet.get_unspent_coins())
105         for i in l: i["value"] = str(Decimal(i["value"])/100000000)
106         return l
107
108     def createrawtransaction(self, inputs, outputs):
109         # convert to own format
110         for i in inputs:
111             i['tx_hash'] = i['txid']
112             i['index'] = i['vout']
113         outputs = map(lambda x: (x[0],int(1e8*x[1])), outputs.items())
114         tx = Transaction.from_io(inputs, outputs)
115         return tx.as_dict()
116
117     def signrawtransaction(self, raw_tx, input_info, private_keys):
118         tx = Transaction(raw_tx)
119         self.wallet.signrawtransaction(tx, input_info, private_keys, self.password)
120         return tx.as_dict()
121
122     def decoderawtransaction(self, raw):
123         tx = Transaction(raw)
124         return tx.deserialize()
125
126     def sendrawtransaction(self, raw):
127         tx = Transaction(raw)
128         r, h = self.wallet.sendtx( tx )
129         return h
130
131     def createmultisig(self, num, pubkeys):
132         assert isinstance(pubkeys, list)
133         return Transaction.multisig_script(pubkeys, num)
134     
135     def freeze(self,addr):
136         return self.wallet.freeze(addr)
137         
138     def unfreeze(self,addr):
139         return self.wallet.unfreeze(addr)
140
141     def prioritize(self, addr):
142         return self.wallet.prioritize(addr)
143
144     def unprioritize(self, addr):
145         return self.wallet.unprioritize(addr)
146
147     def dumpprivkey(self, addr):
148         return self.wallet.get_private_key(addr, self.password)
149
150     def dumpprivkeys(self, addresses = None):
151         if addresses is None:
152             addresses = self.wallet.addresses(True)
153         return self.wallet.get_private_keys(addresses, self.password)
154
155     def validateaddress(self,addr):
156         isvalid = is_valid(addr)
157         out = { 'isvalid':isvalid }
158         if isvalid:
159             is_mine = self.wallet.is_mine(addr)
160             out['address'] = addr
161             out['ismine'] = is_mine
162             if is_mine:
163                 out['pubkey'] = self.wallet.get_public_key(addr)
164             
165         return out
166
167         
168     def getbalance(self, addresses = []):
169         if addresses == []:
170             c, u = self.wallet.get_balance()
171         else:
172             c = u = 0
173             for addr in addresses:
174                 cc, uu = self.wallet.get_addr_balance(addr)
175                 c += cc
176                 u += uu
177
178         out = { "confirmed": str(Decimal(c)/100000000) }
179         if u: out["unconfirmed"] = str(Decimal(u)/100000000)
180         return out
181
182
183     def getseed(self):
184         import mnemonic
185         seed = self.wallet.decode_seed(self.password)
186         return { "hex":seed, "mnemonic": ' '.join(mnemonic.mn_encode(seed)) }
187
188     def importprivkey(self, sec):
189         try:
190             addr = self.wallet.import_key(sec,self.password)
191             self.wallet.save()
192             out = "Keypair imported: ", addr
193         except BaseException as e:
194             out = "Error: Keypair import failed: " + str(e)
195         return out
196
197
198     def signmessage(self, address, message):
199         return self.wallet.sign_message(address, message, self.password)
200
201
202     def verifymessage(self, address, signature, message):
203         try:
204             EC_KEY.verify_message(address, signature, message)
205             return True
206         except BaseException as e:
207             print_error("Verification error: {0}".format(e))
208             return False
209
210
211     def _mktx(self, to_address, amount, fee = None, change_addr = None, from_addr = None):
212
213         if not is_valid(to_address):
214             raise BaseException("Invalid Bitcoin address", to_address)
215
216         if change_addr:
217             if not is_valid(change_addr):
218                 raise BaseException("Invalid Bitcoin address", change_addr)
219
220         if from_addr:
221             if not is_valid(from_addr):
222                 raise BaseException("invalid Bitcoin address", from_addr)
223             
224             if not self.wallet.is_mine(from_addr):
225                 raise BaseException("address not in wallet")
226
227         for k, v in self.wallet.labels.items():
228             if v == to_address:
229                 to_address = k
230                 print_msg("alias", to_address)
231                 break
232             if change_addr and v == change_addr:
233                 change_addr = k
234
235         amount = int(100000000*amount)
236         if fee: fee = int(100000000*fee)
237         return self.wallet.mktx( [(to_address, amount)], self.password, fee , change_addr, from_addr)
238
239
240     def mktx(self, to_address, amount, fee = None, change_addr = None, from_addr = None):
241         tx = self._mktx(to_address, amount, fee, change_addr, from_addr)
242         return tx.as_dict()
243
244
245     def payto(self, to_address, amount, fee = None, change_addr = None, from_addr = None):
246         tx = self._mktx(to_address, amount, fee, change_addr, from_addr)
247         r, h = self.wallet.sendtx( tx )
248         return h
249
250
251     def history(self):
252         import datetime
253         balance = 0
254         out = []
255         for item in self.wallet.get_tx_history():
256             tx_hash, conf, is_mine, value, fee, balance, timestamp = item
257             try:
258                 time_str = datetime.datetime.fromtimestamp( timestamp).isoformat(' ')[:-3]
259             except:
260                 time_str = "----"
261
262             label, is_default_label = self.wallet.get_label(tx_hash)
263             if not label: label = tx_hash
264             else: label = label + ' '*(64 - len(label) )
265
266             out.append( "%16s"%time_str + "  " + label + "  " + format_satoshis(value)+ "  "+ format_satoshis(balance) )
267         return out
268
269
270
271     def setlabel(self, tx, label):
272         self.wallet.labels[tx] = label
273         self.wallet.save()
274             
275
276     def contacts(self):
277         c = {}
278         for addr in self.wallet.addressbook:
279             c[addr] = self.wallet.labels.get(addr)
280         return c
281
282
283     def listaddresses(self, show_all = False, show_balance = False, show_label = False):
284         out = []
285         for addr in self.wallet.addresses(True):
286             if show_all or not self.wallet.is_change(addr):
287                 if show_balance or show_label:
288                     item = { 'address': addr }
289                     if show_balance:
290                         item['balance'] = str(Decimal(self.wallet.get_addr_balance(addr)[0])/100000000)
291                     if show_label:
292                         label = self.wallet.labels.get(addr,'')
293                         if label:
294                             item['label'] = label
295                 else:
296                     item = addr
297                 out.append( item )
298         return out
299                          
300     def help(self, cmd2=None):
301         if cmd2 not in known_commands:
302             print_msg("List of commands:", ', '.join(known_commands))
303         else:
304             _, _, description, syntax, options_syntax = known_commands[cmd2]
305             print_msg(description)
306             if syntax: print_msg("Syntax: " + syntax)
307             if options_syntax: print_msg("options:\n" + options_syntax)
308         return None
309
310