set command: authorize by default, forbid only when dangerous
[electrum-nvc.git] / electrum
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 import re
20 import sys
21 import optparse
22
23 try:
24     from lib.util import print_error
25 except ImportError:
26     from electrum.util import print_error
27
28 try:
29     import ecdsa  
30 except ImportError:
31     sys.exit("Error: python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'")
32
33 try:
34     import aes
35 except ImportError:
36     sys.exit("Error: AES does not seem to be installed. Try 'sudo pip install slowaes'")
37
38 try:
39     from lib import Wallet, Interface, WalletSynchronizer, WalletVerifier, format_satoshis, mnemonic, SimpleConfig, pick_random_server
40 except ImportError:
41     from electrum import Wallet, Interface, WalletSynchronizer, WalletVerifier, format_satoshis, mnemonic, SimpleConfig, pick_random_server
42
43 from decimal import Decimal
44
45 known_commands = {
46     'help':'Prints this help',
47     'validateaddress':'Check that the address is valid', 
48     'balance': "Display the balance of your wallet or of an address.\nSyntax: balance [<address>]", 
49     'contacts': "Show your list of contacts", 
50     'create':'Create a wallet', 
51     'restore':'Restore a wallet', 
52     'payto':"""Create and broadcast a transaction.
53 Syntax: payto <recipient> <amount> [label]
54 <recipient> can be a bitcoin address or a label
55 options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
56             """,
57     'sendtx':
58             'Broadcasts a transaction to the network. \nSyntax: sendtx <tx>\n<tx> must be in hexadecimal.',
59     'password': 
60             "Changes your password",
61     'addresses':  
62             """Shows your list of addresses.
63 options:
64   -a: show all addresses, including change addresses
65   -k: show private keys
66   -b: show the balance of addresses""",
67
68     'history':"Shows the transaction history",
69     'label':'Assign a label to an item\nSyntax: label <tx_hash> <label>',
70     'mktx':
71         """Create a signed transaction, password protected.
72 Syntax: mktx <recipient> <amount> [label]
73 options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
74         """,
75     'seed':
76             "Print the generation seed of your wallet.",
77     'import': 
78             'Imports a key pair\nSyntax: import <address>:<privatekey>',
79     'signmessage':
80             'Signs a message with a key\nSyntax: 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 "',
81     'verifymessage':
82              'Verifies a signature\nSyntax: 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 "',
83     'eval':  
84              "Run python eval() on an object\nSyntax: eval <expression>\nExample: eval \"wallet.aliases\"",
85     'set': 
86              "Set wallet parameter. (gui)",
87     'deseed':
88             "Remove seed from the wallet. The seed is stored in a file that has the name of the wallet plus '.seed'",
89     'reseed':
90             "Restore seed of the wallet. The wallet must have no seed, and the seed must match the wallet's master public key.",
91     'freeze':'',
92     'unfreeze':'',
93     'prioritize':'',
94     'unprioritize':'',
95     }
96
97
98
99 offline_commands = [ 'password', 'mktx',
100                      'label', 'contacts',
101                      'help', 'validateaddress',
102                      'signmessage', 'verifymessage',
103                      'eval', 'set', 'create', 'addresses',
104                      'import', 'seed',
105                      'deseed','reseed',
106                      'freeze','unfreeze',
107                      'prioritize','unprioritize']
108
109
110 protected_commands = ['payto', 'password', 'mktx', 'seed', 'import','signmessage' ]
111
112 # get password routine
113 def prompt_password(prompt, confirm=True):
114     import getpass
115     if sys.stdin.isatty():
116         password = getpass.getpass(prompt)
117         if password and confirm:
118             password2 = getpass.getpass("Confirm: ")
119             if password != password2:
120                 sys.exit("Error: Passwords do not match.")
121     else:
122         password = raw_input(prompt)
123     if not password:
124         password = None
125     return password
126
127
128
129 if __name__ == '__main__':
130
131     usage = "usage: %prog [options] command\nCommands: "+ (', '.join(known_commands))
132     parser = optparse.OptionParser(prog=usage)
133     parser.add_option("-g", "--gui", dest="gui", help="User interface: qt, lite, gtk or text")
134     parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
135     parser.add_option("-o", "--offline", action="store_true", dest="offline", default=False, help="remain offline")
136     parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
137     parser.add_option("-b", "--balance", action="store_true", dest="show_balance", default=False, help="show the balance at listed addresses")
138     parser.add_option("-k", "--keys",action="store_true", dest="show_keys",default=False, help="show the private keys of listed addresses")
139     parser.add_option("-f", "--fee", dest="tx_fee", default="0.005", help="set tx fee")
140     parser.add_option("-F", "--fromaddr", dest="from_addr", default=None, help="set source address for payto/mktx. if it isn't in the wallet, it will ask for the private key unless supplied in the format public_key:private_key. It's not saved in the wallet.")
141     parser.add_option("-c", "--changeaddr", dest="change_addr", default=None, help="set the change address for payto/mktx. default is a spare address, or the source address if it's not in the wallet")
142     parser.add_option("-s", "--server", dest="server", default=None, help="set server host:port:protocol, where protocol is t or h")
143     parser.add_option("-p", "--proxy", dest="proxy", default=None, help="set proxy [type:]host[:port], where type is socks4,socks5 or http")
144     options, args = parser.parse_args()
145
146     # config is an object passed to the various constructors (wallet, interface, gui)
147     config = SimpleConfig(options)
148     wallet = Wallet(config)
149
150     if len(args)==0:
151         url = None
152         cmd = 'gui'
153     elif len(args)==1 and re.match('^bitcoin:', args[0]):
154         url = args[0]
155         cmd = 'gui'
156     else:
157         cmd = args[0]
158         firstarg = args[1] if len(args) > 1 else ''
159        
160     #this entire if/else block is just concerned with importing the 
161     #right GUI toolkit based the GUI command line option given 
162     if cmd == 'gui':
163         pref_gui = config.get('gui','classic')
164         if pref_gui == 'gtk':
165             try:
166                 import lib.gui as gui
167             except ImportError:
168                 import electrum.gui as gui
169         elif pref_gui in ['classic', 'qt']:
170             try:
171                 import lib.gui_qt as gui
172             except ImportError:
173                 import electrum.gui_qt as gui
174         elif pref_gui == 'lite':
175               try:
176                   import lib.gui_lite as gui
177               except ImportError:
178                   import electrum.gui_lite as gui
179         elif pref_gui == 'text':
180               try:
181                   import lib.gui_text as gui
182               except ImportError:
183                   import electrum.gui_text as gui
184         else:
185             sys.exit("Error: Unknown GUI: " + pref_gui )
186
187         interface = Interface(config, True)
188         wallet.interface = interface
189         gui = gui.ElectrumGui(wallet, config)
190         interface.register_callback('peers', gui.server_list_changed)
191
192         interface.start()
193         WalletSynchronizer(wallet, config).start()
194
195         verifier = WalletVerifier(interface, config, wallet.get_tx_hashes)
196         verifier.start()
197         wallet.verifier = verifier
198
199         try:
200             found = config.wallet_file_exists
201             if not found:
202                 found = gui.restore_or_create()
203         except SystemExit, e:
204             exit(e)
205         except BaseException, e:
206             import traceback
207             traceback.print_exc(file=sys.stdout)
208             #gui.show_message(e.message)
209             exit(1)
210
211         if not found:
212             exit(1)
213         gui.main(url)
214         wallet.save()
215         sys.exit(0)
216
217     if cmd not in known_commands:
218         cmd = 'help'
219
220     if not config.wallet_file_exists and cmd not in ['help','create','restore']:
221         print "Error: Wallet file not found."
222         print "Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option"
223         sys.exit(0)
224     
225     if cmd in ['create', 'restore']:
226         if config.wallet_file_exists:
227             sys.exit("Error: Remove the existing wallet first!")
228         password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):")
229
230         server = config.get('server')
231         if not server: server = pick_random_server()
232         w_host, w_port, w_protocol = server.split(':')
233         host = raw_input("server (default:%s):"%w_host)
234         port = raw_input("port (default:%s):"%w_port)
235         protocol = raw_input("protocol [t=tcp;h=http;n=native] (default:%s):"%w_protocol)
236         fee = raw_input("fee (default:%s):"%( str(Decimal(wallet.fee)/100000000)) )
237         gap = raw_input("gap limit (default 5):")
238         if host: w_host = host
239         if port: w_port = port
240         if protocol: w_protocol = protocol
241         wallet.config.set_key('server', w_host + ':' + w_port + ':' +w_protocol)
242         if fee: wallet.fee = float(fee)
243         if gap: wallet.gap_limit = int(gap)
244
245         if cmd == 'restore':
246             seed = raw_input("seed:")
247             try:
248                 seed.decode('hex')
249             except:
250                 print_error("Warning: Not hex, trying decode.")
251                 seed = mnemonic.mn_decode( seed.split(' ') )
252             if not seed:
253                 sys.exit("Error: No seed")
254
255             wallet.seed = str(seed)
256             wallet.init_mpk( wallet.seed )
257             if not options.offline:
258                 WalletSynchronizer(wallet, config).start()
259                 print "Recovering wallet..."
260                 wallet.up_to_date_event.clear()
261                 wallet.up_to_date = False
262                 wallet.update()
263                 if wallet.is_found():
264                     print "Recovery successful"
265                 else:
266                     print_error("Warning: Found no history for this wallet")
267             else:
268                 wallet.synchronize()
269             wallet.fill_addressbook()
270             wallet.save()
271             print_error("Wallet saved in '" + wallet.path)
272         else:
273             wallet.new_seed(None)
274             wallet.init_mpk( wallet.seed )
275             wallet.synchronize() # there is no wallet thread 
276             wallet.save()
277             print "Your wallet generation seed is: " + wallet.seed
278             print "Please keep it in a safe place; if you lose it, you will not be able to restore your wallet."
279             print "Equivalently, your wallet seed can be stored and recovered with the following mnemonic code:"
280             print "\""+' '.join(mnemonic.mn_encode(wallet.seed))+"\""
281             print "Wallet saved in '%s'"%wallet.config.path
282             
283         if password:
284             wallet.update_password(wallet.seed, None, password)
285
286     # check syntax
287     if cmd in ['payto', 'mktx']:
288         try:
289             to_address = args[1]
290             amount = int( 100000000 * Decimal(args[2]) )
291             change_addr = None
292             label = ' '.join(args[3:])
293             if options.tx_fee: 
294                 options.tx_fee = int( 100000000 * Decimal(options.tx_fee) )
295         except:
296             firstarg = cmd
297             cmd = 'help'
298
299     # open session
300     if cmd not in offline_commands and not options.offline:
301         interface = Interface(config)
302         interface.register_callback('connected', lambda: print_error("Connected to " + interface.connection_msg))
303         interface.start()
304         wallet.interface = interface
305         WalletSynchronizer(wallet, config).start()
306         wallet.update()
307         wallet.save()
308
309     # check if --from_addr not in wallet (for mktx/payto)
310     is_temporary = False
311     from_addr = None
312     if options.from_addr:
313         from_addr = options.from_addr
314         if from_addr not in wallet.all_addresses():
315             is_temporary = True
316                 
317     # important warning
318     if cmd=='addresses' and options.show_keys:
319         print "WARNING: ALL your private keys are secret."
320         print "Exposing a single private key can compromise your entire wallet!"
321         print "In particular, DO NOT use 'redeem private key' services proposed by third parties."
322
323     # commands needing password
324     if cmd in protected_commands or ( cmd=='addresses' and options.show_keys):
325         password = prompt_password('Password:', False) if wallet.use_encryption and not is_temporary else None
326         # check password
327         try:
328             wallet.pw_decode( wallet.seed, password)
329         except:
330             print_error("Error: This password does not decode this wallet.")
331             exit(1)
332
333     if cmd == 'import':
334         # See if they specificed a key on the cmd line, if not prompt
335         if len(args) > 1:
336             keypair = args[1]
337         else:
338             keypair = prompt_password('Enter Address:PrivateKey (will not echo):', False)
339         try:
340             wallet.import_key(keypair,password)
341             wallet.save()
342             print "Keypair imported"
343         except BaseException, e:
344             print_error("Error: Keypair import failed: " + str(e))
345
346     if cmd == 'help':
347         cmd2 = firstarg
348         if cmd2 not in known_commands:
349             parser.print_help()
350             print "Type 'electrum help <command>' to see the help for a specific command"
351             print "Type 'electrum --help' to see the list of options"
352             print "List of commands:", ', '.join(known_commands)
353         else:
354             print known_commands[cmd2]
355
356     elif cmd == 'seed':
357         seed = wallet.pw_decode( wallet.seed, password)
358         print seed + ' "' + ' '.join(mnemonic.mn_encode(seed)) + '"'
359
360     elif cmd == 'deseed':
361         if not wallet.seed:
362             print_error("Error: This wallet has no seed")
363         elif wallet.use_encryption:
364             print_error("Error: This wallet is encrypted")
365         else:
366             ns = wallet.path + '.seed'
367             print "Warning: you are going to extract the seed from '%s'\nThe seed will be saved in '%s'"%(wallet.path,ns)
368             if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
369                 f = open(ns,'w')
370                 f.write(repr({'seed':wallet.seed, 'imported_keys':wallet.imported_keys})+"\n")
371                 f.close()
372                 wallet.seed = ''
373                 for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = ''
374                 wallet.save()
375                 print "Done."
376             else:
377                 print_error("Action canceled.")
378
379     elif cmd == 'reseed':
380         if wallet.seed:
381             print "Warning: This wallet already has a seed", wallet.seed
382         else:
383             ns = wallet.path + '.seed'
384             try:
385                 f = open(ns,'r')
386                 data = f.read()
387                 f.close()
388             except IOError:
389                 sys.exit("Error: Seed file not found")
390             try:
391                 import ast
392                 d = ast.literal_eval( data )
393                 seed = d['seed']
394                 imported_keys = d.get('imported_keys',{})
395             except:
396                 sys.exit("Error: Error with seed file")
397
398             mpk = wallet.master_public_key
399             wallet.seed = seed
400             wallet.imported_keys = imported_keys
401             wallet.use_encryption = False
402             wallet.init_mpk(seed)
403             if mpk == wallet.master_public_key:
404                 wallet.save()
405                 print "Done: " + wallet.path
406             else:
407                 print_error("Error: Master public key does not match")
408
409     elif cmd == 'validateaddress':
410         addr = args[1]
411         print wallet.is_valid(addr)
412
413     elif cmd == 'balance':
414         try:
415             addrs = args[1:]
416         except:
417             pass
418         if addrs == []:
419             c, u = wallet.get_balance()
420             if u:
421                 print Decimal( c ) / 100000000 , Decimal( u ) / 100000000
422             else:
423                 print Decimal( c ) / 100000000
424         else:
425             for addr in addrs:
426                 c, u = wallet.get_addr_balance(addr)
427                 if u:
428                     print "%s %s, %s" % (addr, str(Decimal(c)/100000000), str(Decimal(u)/100000000))
429                 else:
430                     print "%s %s" % (addr, str(Decimal(c)/100000000))
431
432     elif cmd in [ 'contacts']:
433         for addr in wallet.addressbook:
434             print addr, "   ", wallet.labels.get(addr)
435
436     elif cmd == 'eval':
437         print eval(args[1])
438         wallet.save()
439
440     elif cmd == 'set':
441         key, value = args[1:3]
442         if key not in ['seed_version', 'master_public_key', 'use_encryption']:
443             wallet.config.set_key(key, value, True)
444             print True
445         else:
446             print False
447
448     elif cmd in [ 'addresses']:
449         for addr in wallet.all_addresses():
450             if options.show_all or not wallet.is_change(addr):
451
452                 flags = wallet.get_address_flags(addr)
453                 label = wallet.labels.get(addr,'')
454                 
455                 if label: label = "\"%s\""%label
456
457                 if options.show_balance:
458                     h = wallet.history.get(addr,[])
459                     #ni = no = 0
460                     #for item in h:
461                     #    if item['is_input']:  ni += 1
462                     #    else:              no += 1
463                     b = format_satoshis(wallet.get_addr_balance(addr)[0])
464                 else: b=''
465                 m_addr = "%34s"%addr
466                 if options.show_keys:
467                     m_addr += ':' + str(wallet.get_private_key_base58(addr, password))
468                 print flags, m_addr, b, label
469
470     if cmd == 'history':
471         lines = wallet.get_tx_history()
472         b = 0 
473         for line in lines:
474             import datetime
475             v = line['value'] 
476             b += v
477             try:
478                 time_str = str( datetime.datetime.fromtimestamp( line['timestamp']))
479             except:
480                 print line['timestamp']
481                 time_str = 'pending'
482             label = line.get('label')
483             if not label: label = line['tx_hash']
484             else: label = label + ' '*(64 - len(label) )
485
486             print time_str , "  " + label + "  " + format_satoshis(v)+ "  "+ format_satoshis(b)
487         print "# balance: ", format_satoshis(b)
488
489     elif cmd == 'label':
490         try:
491             tx = args[1]
492             label = ' '.join(args[2:])
493         except:
494             print_error("Error. Syntax:  label <tx_hash> <text>")
495             sys.exit(1)
496         wallet.labels[tx] = label
497         wallet.save()
498             
499     elif cmd in ['payto', 'mktx']:
500         if from_addr and is_temporary:
501             if from_addr.find(":") == -1:
502                 keypair = from_addr + ":" + prompt_password('Private key:', False)
503             else:
504                 keypair = from_addr
505                 from_addr = keypair.split(':')[0]
506             if not wallet.import_key(keypair,password):
507                 print_error("Error: Invalid key pair")
508                 exit(1)
509             wallet.history[from_addr] = interface.retrieve_history(from_addr)
510             wallet.update_tx_history()
511             change_addr = from_addr
512
513         if options.change_addr:
514             change_addr = options.change_addr
515
516         for k, v in wallet.labels.items():
517             if v == to_address:
518                 to_address = k
519                 print "alias", to_address
520                 break
521             if change_addr and v == change_addr:
522                 change_addr = k
523         try:
524             tx = wallet.mktx( to_address, amount, label, password,
525                 fee = options.tx_fee, change_addr = change_addr, from_addr = from_addr )
526         except:
527             import traceback
528             traceback.print_exc(file=sys.stdout)
529             tx = None
530
531         if tx and cmd=='payto': 
532             r, h = wallet.sendtx( tx )
533             print h
534         else:
535             print tx
536
537         if is_temporary:
538             wallet.imported_keys.pop(from_addr)
539             del(wallet.history[from_addr])
540         wallet.save()
541
542     elif cmd == 'sendtx':
543         tx = args[1]
544         r, h = wallet.sendtx( tx )
545         print h
546
547     elif cmd == 'password':
548         try:
549             seed = wallet.pw_decode( wallet.seed, password)
550         except ValueError:
551             sys.exit("Error: Password does not decrypt this wallet.")
552
553         new_password = prompt_password('New password:')
554         wallet.update_password(seed, password, new_password)
555
556     elif cmd == 'signmessage':
557         if len(args) < 3:
558             print_error("Error: Invalid usage of signmessage.")
559             print known_commands[cmd]
560             sys.exit(1)
561         address = args[1]
562         message = ' '.join(args[2:])
563         if len(args) > 3:
564             print "Warning: Message was reconstructed from several arguments:", repr(message)
565         print wallet.sign_message(address, message, password)
566
567     elif cmd == 'verifymessage':
568         try:
569             address = args[1]
570             signature = args[2]
571             message = ' '.join(args[3:])
572         except:
573             print_error("Error: Not all parameters were given, displaying help instead.")
574             print known_commands[cmd]
575             sys.exit(1)
576         if len(args) > 4:
577             print "Warning: Message was reconstructed from several arguments:", repr(message)
578         try:
579             wallet.verify_message(address, signature, message)
580             print True
581         except BaseException as e:
582             print "Verification error: {0}".format(e)
583             print False
584
585     elif cmd == 'freeze':
586         addr = args[1]
587         print wallet.freeze(addr)
588         
589     elif cmd == 'unfreeze':
590         addr = args[1]
591         print wallet.unfreeze(addr)
592
593     elif cmd == 'prioritize':
594         addr = args[1]
595         print wallet.prioritize(addr)
596
597     elif cmd == 'unprioritize':
598         addr = args[1]
599         print wallet.unprioritize(addr)
600