new commands: encrypt and decrypt messages
[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 from util import *
20 from bitcoin import *
21 from decimal import Decimal
22 import bitcoin
23 from transaction import Transaction
24
25 class Command:
26     def __init__(self, name, min_args, max_args, requires_network, requires_wallet, requires_password, description, syntax = '', options_syntax = ''):
27         self.name = name
28         self.min_args=min_args
29         self.max_args = max_args
30         self.requires_network = requires_network
31         self.requires_wallet = requires_wallet
32         self.requires_password = requires_password
33         self.description = description
34         self.syntax = syntax
35         self.options = options_syntax
36
37 known_commands = {}
38 def register_command(*args):
39     global known_commands
40     name = args[0]
41     known_commands[name] = Command(*args)
42
43
44
45 payto_options = ' --fee, -f: set transaction fee\n --fromaddr, -F: send from address -\n --changeaddr, -c: send change to address'
46 listaddr_options = " -a: show all addresses, including change addresses\n -l: include labels in results"
47 restore_options = " accepts a seed or master public key."
48 mksendmany_syntax = 'mksendmanytx <recipient> <amount> [<recipient> <amount> ...]'
49 payto_syntax = "payto <recipient> <amount> [label]\n<recipient> can be a bitcoin address or a label"
50 paytomany_syntax = "paytomany <recipient> <amount> [<recipient> <amount> ...]\n<recipient> can be a bitcoin address or a label"
51 signmessage_syntax = '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 "'
52 verifymessage_syntax = '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 "'
53
54
55 #                command
56 #                                              requires_network
57 #                                                     requires_wallet
58 #                                                            requires_password
59 register_command('contacts',             0, 0, False, True,  False, 'Show your list of contacts')
60 register_command('create',               0, 0, False, True,  False, 'Create a new wallet')
61 register_command('createmultisig',       2, 2, False, True,  False, 'similar to bitcoind\'s command')
62 register_command('createrawtransaction', 2, 2, False, True,  False, 'similar to bitcoind\'s command')
63 register_command('deseed',               0, 0, False, True,  False, 'Remove seed from wallet, creating a seedless, watching-only wallet.')
64 register_command('decoderawtransaction', 1, 1, False, False, False, 'similar to bitcoind\'s command')
65 register_command('dumpprivkey',          1, 1, False, True,  True,  'Dumps a specified private key for a given address', 'dumpprivkey <bitcoin address>')
66 register_command('dumpprivkeys',         0, 0, False, True,  True,  'dump all private keys')
67 register_command('freeze',               1, 1, False, True,  True,  'Freeze the funds at one of your wallet\'s addresses', 'freeze <address>')
68 register_command('getbalance',           0, 1, True,  True,  False, 'Return the balance of your wallet, or of one account in your wallet', 'getbalance [<account>]')
69 register_command('getservers',           0, 0, True,  False, False, 'Return the list of available servers')
70 register_command('getversion',           0, 0, False, False, False, 'Return the version of your client', 'getversion')
71 register_command('getaddressbalance',    1, 1, True,  False, False, 'Return the balance of an address', 'getaddressbalance <address>')
72 register_command('getaddresshistory',    1, 1, True,  False, False, 'Return the transaction history of a wallet address', 'getaddresshistory <address>')
73 register_command('getconfig',            1, 1, False, False, False, 'Return a configuration variable', 'getconfig <name>')
74 register_command('getpubkeys',           1, 1, False, True,  False, 'Return the public keys for a wallet address', 'getpubkeys <bitcoin address>')
75 register_command('getrawtransaction',    1, 1, True,  False, False, 'Retrieve a transaction', 'getrawtransaction <txhash>')
76 register_command('getseed',              0, 0, False, True,  True,  'Print the generation seed of your wallet.')
77 register_command('getmpk',               0, 0, False, True,  False, 'Return your wallet\'s master public key', 'getmpk')
78 register_command('help',                 0, 1, False, False, False, 'Prints this help')
79 register_command('history',              0, 0, True,  True,  False, 'Returns the transaction history of your wallet')
80 register_command('importprivkey',        1, 1, False, True,  True,  'Import a private key', 'importprivkey <privatekey>')
81 register_command('listaddresses',        2, 2, False, True,  False, 'Returns your list of addresses.', '', listaddr_options)
82 register_command('listunspent',          0, 0, True,  False, False, 'Returns the list of unspent inputs in your wallet.')
83 register_command('getaddressunspent',    1, 1, True,  False, False, 'Returns the list of unspent inputs in your wallet.')
84 register_command('mktx',                 5, 5, False, True,  True,  'Create a signed transaction', 'mktx <recipient> <amount> [label]', payto_options)
85 register_command('mksendmanytx',         4, 4, False, True,  True,  'Create a signed transaction', mksendmany_syntax, payto_options)
86 register_command('payto',                5, 5, True,  True,  True,  'Create and broadcast a transaction.', payto_syntax, payto_options)
87 register_command('paytomany',            4, 4, True,  True,  True,  'Create and broadcast a transaction.', paytomany_syntax, payto_options)
88 register_command('password',             0, 0, False, True,  True,  'Change your password')
89 register_command('restore',              0, 0, True,  True,  False, 'Restore a wallet', '', restore_options)
90 register_command('setconfig',            2, 2, False, False, False, 'Set a configuration variable', 'setconfig <name> <value>')
91 register_command('setlabel',             2,-1, False, True,  False, 'Assign a label to an item', 'setlabel <tx_hash> <label>')
92 register_command('sendrawtransaction',   1, 1, True,  False, False, 'Broadcasts a transaction to the network.', 'sendrawtransaction <tx in hexadecimal>')
93 register_command('signrawtransaction',   1, 3, False, True,  True,  'similar to bitcoind\'s command')
94 register_command('signmessage',          2,-1, False, True,  True,  'Sign a message with a key', signmessage_syntax)
95 register_command('unfreeze',             1, 1, False, True,  False, 'Unfreeze the funds at one of your wallet\'s address', 'unfreeze <address>')
96 register_command('validateaddress',      1, 1, False, False, False, 'Check that the address is valid', 'validateaddress <address>')
97 register_command('verifymessage',        3,-1, False, False, False, 'Verifies a signature', verifymessage_syntax)
98 register_command('encrypt',              2,-1, False, False, False, 'encrypt a message with pubkey')
99 register_command('decrypt',              2,-1, False, False, False, 'decrypt a message with privkey')
100
101 register_command('daemon',               1, 1, True, False, False, 'start/stop daemon')
102 register_command('getproof',             1, 1, True, False, False, 'start/stop daemon')
103
104
105
106
107 class Commands:
108
109     def __init__(self, wallet, network, callback = None):
110         self.wallet = wallet
111         self.network = network
112         self._callback = callback
113         self.password = None
114
115
116     def _run(self, method, args, password_getter):
117         cmd = known_commands[method]
118         if cmd.requires_password and self.wallet.use_encryption:
119             self.password = apply(password_getter,())
120         f = getattr(self, method)
121         result = f(*args)
122         self.password = None
123         if self._callback:
124             apply(self._callback, ())
125         return result
126
127
128     def getaddresshistory(self, addr):
129         return self.network.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0]
130
131
132     def daemon(self, arg):
133         if arg=='stop':
134             return self.network.stop()
135         elif arg=='status':
136             return { 
137                 'server':self.network.main_server(), 
138                 'connected':self.network.is_connected()
139             }
140         else:
141             return "unknown command \"%s\""% arg
142
143
144     def listunspent(self):
145         import copy
146         l = copy.deepcopy(self.wallet.get_unspent_coins())
147         for i in l: i["value"] = str(Decimal(i["value"])/100000000)
148         return l
149
150
151     def getaddressunspent(self, addr):
152         return self.network.synchronous_get([ ('blockchain.address.listunspent',[addr]) ])[0]
153
154
155     def createrawtransaction(self, inputs, outputs):
156         # convert to own format
157         for i in inputs:
158             i['tx_hash'] = i['txid']
159             i['index'] = i['vout']
160         outputs = map(lambda x: (x[0],int(1e8*x[1])), outputs.items())
161         tx = Transaction.from_io(inputs, outputs)
162         return tx
163
164     def signrawtransaction(self, raw_tx, input_info, private_keys):
165         tx = Transaction(raw_tx)
166         self.wallet.signrawtransaction(tx, input_info, private_keys, self.password)
167         return tx
168
169     def decoderawtransaction(self, raw):
170         tx = Transaction(raw)
171         return tx.deserialize()
172
173     def sendrawtransaction(self, raw):
174         tx = Transaction(raw)
175         return self.network.synchronous_get([('blockchain.transaction.broadcast', [str(tx)])])[0]
176
177     def createmultisig(self, num, pubkeys):
178         assert isinstance(pubkeys, list)
179         redeem_script = Transaction.multisig_script(pubkeys, num)
180         address = hash_160_to_bc_address(hash_160(redeem_script.decode('hex')), 5)
181         return {'address':address, 'redeemScript':redeem_script}
182     
183     def freeze(self,addr):
184         return self.wallet.freeze(addr)
185         
186     def unfreeze(self,addr):
187         return self.wallet.unfreeze(addr)
188
189     def dumpprivkey(self, addr):
190         return self.wallet.get_private_key(addr, self.password)
191
192     def dumpprivkeys(self, addresses = None):
193         if addresses is None:
194             addresses = self.wallet.addresses(True)
195         return [self.wallet.get_private_key(address, self.password) for address in addresses]
196
197     def validateaddress(self, addr):
198         isvalid = is_valid(addr)
199         out = { 'isvalid':isvalid }
200         if isvalid:
201             out['address'] = addr
202         return out
203
204     def getpubkeys(self, addr):
205         assert is_valid(addr) and self.wallet.is_mine(addr)
206         out = { 'address':addr }
207         account, sequence = self.wallet.get_address_index(addr)
208         if account != -1:
209             a = self.wallet.accounts[account]
210             out['pubkeys'] = a.get_pubkeys( sequence )
211
212         return out
213
214     def getbalance(self, account= None):
215         if account is None:
216             c, u = self.wallet.get_balance()
217         else:
218             c, u = self.wallet.get_account_balance(account)
219
220         out = { "confirmed": str(Decimal(c)/100000000) }
221         if u: out["unconfirmed"] = str(Decimal(u)/100000000)
222         return out
223
224     def getaddressbalance(self, addr):
225         b = self.network.synchronous_get([ ('blockchain.address.get_balance',[addr]) ])[0]
226         return str(Decimal(b)/100000000)
227
228     def getproof(self, addr):
229         p = self.network.synchronous_get([ ('blockchain.address.get_proof',[addr]) ])[0]
230         out = []
231         for i,s in p:
232             out.append(i)
233         return out
234
235     def getservers(self):
236         return self.network.get_servers()
237
238     def getversion(self):
239         import electrum 
240         return electrum.ELECTRUM_VERSION
241  
242     def getmpk(self):
243         return self.wallet.get_master_public_key()
244
245     def getseed(self):
246         mnemonic = self.wallet.get_mnemonic(self.password)
247         seed = self.wallet.get_seed(self.password)
248         return { 'mnemonic':mnemonic, 'seed':seed, 'version':self.wallet.seed_version }
249
250     def importprivkey(self, sec):
251         try:
252             addr = self.wallet.import_key(sec,self.password)
253             out = "Keypair imported: ", addr
254         except Exception as e:
255             out = "Error: Keypair import failed: " + str(e)
256         return out
257
258
259     def signmessage(self, address, message):
260         return self.wallet.sign_message(address, message, self.password)
261
262
263     def verifymessage(self, address, signature, message):
264         return bitcoin.verify_message(address, signature, message)
265
266
267     def _mktx(self, outputs, fee = None, change_addr = None, domain = None):
268
269         for to_address, amount in outputs:
270             if not is_valid(to_address):
271                 raise Exception("Invalid Bitcoin address", to_address)
272
273         if change_addr:
274             if not is_valid(change_addr):
275                 raise Exception("Invalid Bitcoin address", change_addr)
276
277         if domain is not None:
278             for addr in domain:
279                 if not is_valid(addr):
280                     raise Exception("invalid Bitcoin address", addr)
281             
282                 if not self.wallet.is_mine(addr):
283                     raise Exception("address not in wallet", addr)
284
285         for k, v in self.wallet.labels.items():
286             if change_addr and v == change_addr:
287                 change_addr = k
288
289         final_outputs = []
290         for to_address, amount in outputs:
291             for k, v in self.wallet.labels.items():
292                 if v == to_address:
293                     to_address = k
294                     print_msg("alias", to_address)
295                     break
296
297             amount = int(100000000*amount)
298             final_outputs.append((to_address, amount))
299             
300         if fee: fee = int(100000000*fee)
301         return self.wallet.mktx(final_outputs, self.password, fee , change_addr, domain)
302
303
304     def mktx(self, to_address, amount, fee = None, change_addr = None, domain = None):
305         tx = self._mktx([(to_address, amount)], fee, change_addr, domain)
306         return tx
307
308     def mksendmanytx(self, outputs, fee = None, change_addr = None, domain = None):
309         tx = self._mktx(outputs, fee, change_addr, domain)
310         return tx
311
312
313     def payto(self, to_address, amount, fee = None, change_addr = None, domain = None):
314         tx = self._mktx([(to_address, amount)], fee, change_addr, domain)
315         r, h = self.wallet.sendtx( tx )
316         return h
317
318     def paytomany(self, outputs, fee = None, change_addr = None, domain = None):
319         tx = self._mktx(outputs, fee, change_addr, domain)
320         r, h = self.wallet.sendtx( tx )
321         return h
322
323
324     def history(self):
325         import datetime
326         balance = 0
327         out = []
328         for item in self.wallet.get_tx_history():
329             tx_hash, conf, is_mine, value, fee, balance, timestamp = item
330             try:
331                 time_str = datetime.datetime.fromtimestamp( timestamp).isoformat(' ')[:-3]
332             except Exception:
333                 time_str = "----"
334
335             label, is_default_label = self.wallet.get_label(tx_hash)
336             if not label: label = tx_hash
337             else: label = label + ' '*(64 - len(label) )
338
339             out.append( "%16s"%time_str + "  " + label + "  " + format_satoshis(value)+ "  "+ format_satoshis(balance) )
340         return out
341
342
343
344     def setlabel(self, key, label):
345         self.wallet.set_label(key, label)
346
347             
348
349     def contacts(self):
350         c = {}
351         for addr in self.wallet.addressbook:
352             c[addr] = self.wallet.labels.get(addr)
353         return c
354
355
356     def listaddresses(self, show_all = False, show_label = False):
357         out = []
358         for addr in self.wallet.addresses(True):
359             if show_all or not self.wallet.is_change(addr):
360                 if show_label:
361                     item = { 'address': addr }
362                     if show_label:
363                         label = self.wallet.labels.get(addr,'')
364                         if label:
365                             item['label'] = label
366                 else:
367                     item = addr
368                 out.append( item )
369         return out
370                          
371     def help(self, cmd=None):
372         if cmd not in known_commands:
373             print_msg("\nList of commands:", ', '.join(sorted(known_commands)))
374         else:
375             cmd = known_commands[cmd]
376             print_msg(cmd.description)
377             if cmd.syntax: print_msg("Syntax: " + cmd.syntax)
378             if cmd.options: print_msg("options:\n" + cmd.options)
379         return None
380
381
382     def getrawtransaction(self, tx_hash):
383         import transaction
384         if self.wallet:
385             tx = self.wallet.transactions.get(tx_hash)
386             if tx:
387                 return tx
388
389         r = self.network.synchronous_get([ ('blockchain.transaction.get',[tx_hash]) ])[0]
390         if r:
391             return transaction.Transaction(r)
392         else:
393             return "unknown transaction"
394
395     def encrypt(self, pubkey, message):
396         return EC_KEY.encrypt_message(message, pubkey.decode('hex'))
397
398     def decrypt(self, private_key, message):
399         eck = EC_KEY(private_key.decode('hex'))
400         decrypted = eck.decrypt_message(message)
401         return decrypted[0]
402
403
404