Merge pull request #374 from nolith/master
[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 pkgutil
21 import sys, os, time, json
22 import optparse
23 import platform
24 from decimal import Decimal
25 import traceback
26
27 try:
28     import ecdsa  
29 except ImportError:
30     sys.exit("Error: python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'")
31
32 try:
33     import aes
34 except ImportError:
35     sys.exit("Error: AES does not seem to be installed. Try 'sudo pip install slowaes'")
36
37
38 is_local = os.path.dirname(os.path.realpath(__file__)) == os.getcwd()
39 is_android = 'ANDROID_DATA' in os.environ
40
41 import __builtin__
42 __builtin__.use_local_modules = is_local or is_android
43
44 # load local module as electrum
45 if __builtin__.use_local_modules:
46     import imp
47     imp.load_module('electrum', *imp.find_module('lib'))
48     imp.load_module('electrum_gui', *imp.find_module('gui'))
49
50 from electrum import *
51
52 # get password routine
53 def prompt_password(prompt, confirm=True):
54     import getpass
55     if sys.stdin.isatty():
56         password = getpass.getpass(prompt)
57         if password and confirm:
58             password2 = getpass.getpass("Confirm: ")
59             if password != password2:
60                 sys.exit("Error: Passwords do not match.")
61     else:
62         password = raw_input(prompt)
63     if not password:
64         password = None
65     return password
66
67 def arg_parser():
68     usage = "%prog [options] command" 
69     parser = optparse.OptionParser(prog=usage, add_help_option = False)
70     parser.add_option("-h", "--help", action="callback", callback=print_help_cb, help="show this help text")
71     parser.add_option("-g", "--gui", dest="gui", help="User interface: qt, lite, gtk, text or stdio")
72     parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
73     parser.add_option("-o", "--offline", action="store_true", dest="offline", default=False, help="remain offline")
74     parser.add_option("-C", "--concealed", action="store_true", dest="concealed", default=False, help="don't echo seed to console when restoring")
75     parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
76     parser.add_option("-l", "--labels", action="store_true", dest="show_labels", default=False, help="show the labels of listed addresses")
77     parser.add_option("-f", "--fee", dest="tx_fee", default=None, help="set tx fee")
78     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.")
79     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")
80     parser.add_option("-s", "--server", dest="server", default=None, help="set server host:port:protocol, where protocol is either t (tcp), h (http), s (tcp+ssl), or g (https)")
81     parser.add_option("-p", "--proxy", dest="proxy", default=None, help="set proxy [type:]host[:port], where type is socks4,socks5 or http")
82     parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="show debugging information")
83     parser.add_option("-P", "--portable", action="store_true", dest="portable", default=False, help="portable wallet")
84     parser.add_option("-L", "--lang", dest="language", default=None, help="defaut language used in GUI")
85     parser.add_option("-u", "--usb", dest="bitkey", action="store_true", help="Turn on support for hardware wallets (EXPERIMENTAL)")
86     parser.add_option("-G", "--gap", dest="gap_limit", default=None, help="gap limit")
87     parser.add_option("-W", "--password", dest="password", default=None, help="set password for usage with commands (currently only implemented for create command, do not use it for longrunning gui session since the password is visible in /proc)")
88     parser.add_option("-1", "--oneserver", action="store_true", dest="oneserver", default=False, help="connect to one server only")
89     return parser
90
91 def print_help(parser):
92     parser.print_help()
93     print_msg("Type 'electrum help <command>' to see the help for a specific command")
94     print_msg("Type 'electrum --help' to see the list of options")
95     run_command('help')
96     exit(1)
97
98 def print_help_cb(self, opt, value, parser):
99     print_help(parser)
100
101 def run_command(cmd, password = None, args = []):
102     cmd_runner = Commands(wallet, network)
103     func = eval('cmd_runner.' + cmd)
104     cmd_runner.password = password
105     try:
106         result = func(*args[1:])
107     except Exception as e:
108         import traceback
109         traceback.print_exc(file=sys.stdout)
110         sys.exit(1)
111
112     if type(result) == str:
113         util.print_msg(result)
114     elif result is not None:
115         util.print_json(result)
116
117
118 if __name__ == '__main__':
119
120     parser = arg_parser()
121     options, args = parser.parse_args()
122     if options.portable and options.wallet_path is None:
123         options.electrum_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'electrum_data')
124
125     # config is an object passed to the various constructors (wallet, interface, gui)
126     if is_android:
127         config_options = {'portable':True, 'verbose':True, 'gui':'android', 'auto_cycle':True}
128     else:
129         config_options = eval(str(options))
130         for k, v in config_options.items():
131             if v is None: config_options.pop(k)
132
133     set_verbosity(config_options.get('verbose'))
134
135     config = SimpleConfig(config_options)
136
137     if len(args)==0:
138         url = None
139         cmd = 'gui'
140     elif len(args)==1 and re.match('^bitcoin:', args[0]):
141         url = args[0]
142         cmd = 'gui'
143     else:
144         cmd = args[0]
145        
146
147     if cmd == 'gui':
148         gui_name = config.get('gui','classic')
149         if gui_name in ['lite', 'classic']: gui_name = 'qt'
150         try:
151             gui = __import__('electrum_gui.' + gui_name, fromlist=['electrum_gui'])
152         except ImportError:
153             traceback.print_exc(file=sys.stdout)
154             sys.exit()
155             #sys.exit("Error: Unknown GUI: " + gui_name )
156         
157         # network interface
158         if not options.offline:
159             network = Network(config)
160             network.start()
161         else:
162             network = None
163
164         gui = gui.ElectrumGui(config, network)
165         gui.main(url)
166         
167         if network:
168             network.stop()
169
170         # we use daemon threads, their termination is enforced.
171         # this sleep command gives them time to terminate cleanly. 
172         time.sleep(0.1)
173         sys.exit(0)
174
175     if cmd not in known_commands:
176         cmd = 'help'
177
178     cmd = known_commands[cmd]
179
180     # instanciate wallet for command-line
181     storage = WalletStorage(config)
182
183     if cmd.requires_wallet:
184         wallet = Wallet(storage)
185     else:
186         wallet = None
187
188     if cmd.name not in ['create', 'restore'] and cmd.requires_wallet and not storage.file_exists:
189         print_msg("Error: Wallet file not found.")
190         print_msg("Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option")
191         sys.exit(0)
192     
193     if cmd.name in ['create', 'restore']:
194         if storage.file_exists:
195             sys.exit("Error: Remove the existing wallet first!")
196         if options.password != None:
197             password = options.password
198         else:
199             password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):")
200
201         # if config.server is set, the user either passed the server on command line
202         # or chose it previously already. if he didn't pass a server on the command line,
203         # we just pick up a random one.
204         if not config.get('server'):
205             config.set_key('server', pick_random_server())
206
207         fee = options.tx_fee if options.tx_fee else raw_input("fee (default:%s):"%( str(Decimal(wallet.fee)/100000000)) )
208         gap = options.gap_limit if options.gap_limit else raw_input("gap limit (default 5):")
209
210         if fee: wallet.set_fee(float(fee)*100000000)
211         if gap: wallet.change_gap_limit(int(gap))
212
213         if cmd.name == 'restore':
214             import getpass
215             seed = getpass.getpass(prompt = "seed:", stream = None) if options.concealed else raw_input("seed:")
216             try:
217                 seed.decode('hex')
218             except:
219                 print_error("Warning: Not hex, trying decode.")
220                 seed = mnemonic_decode( seed.split(' ') )
221             if not seed:
222                 sys.exit("Error: No seed")
223
224             wallet.init_seed( str(seed) )
225             wallet.save_seed()
226             if not options.offline:
227                 network = Network(config)
228                 network.start()
229                 wallet.start_threads(network)
230
231                 print_msg("Recovering wallet...")
232                 wallet.restore(lambda x: x)
233
234                 if wallet.is_found():
235                     print_msg("Recovery successful")
236                 else:
237                     print_msg("Warning: Found no history for this wallet")
238             else:
239                 wallet.create_accounts()
240                 wallet.synchronize()
241                 print_msg("Warning: This wallet was restored offline. It may contain more addresses than displayed.")
242
243         else:
244             wallet.init_seed(None)
245             wallet.save_seed()
246             wallet.create_accounts()
247             wallet.synchronize()
248             print_msg("Your wallet generation seed is:\n\"%s\""% wallet.get_mnemonic(None))
249             print_msg("Please keep it in a safe place; if you lose it, you will not be able to restore your wallet.")
250
251         print_msg("Wallet saved in '%s'"%wallet.storage.path)
252             
253         if password:
254             wallet.update_password(None, password)
255
256         # terminate
257         sys.exit(0)
258
259
260
261     # important warning
262     if cmd.name in ['dumpprivkey', 'dumpprivkeys']:
263         print_msg("WARNING: ALL your private keys are secret.")
264         print_msg("Exposing a single private key can compromise your entire wallet!")
265         print_msg("In particular, DO NOT use 'redeem private key' services proposed by third parties.")
266
267     # commands needing password
268     if cmd.requires_password:
269         if wallet.use_encryption:
270             password = prompt_password('Password:', False)
271             if not password:
272                 print_msg("Error: Password required")
273                 exit(1)
274             # check password
275             try:
276                 seed = wallet.get_seed(password)
277             except:
278                 print_msg("Error: This password does not decode this wallet.")
279                 exit(1)
280         else:
281             password = None
282             seed = wallet.get_seed(None)
283     else:
284         password = None
285
286
287     # add missing arguments, do type conversions
288     if cmd.name == 'importprivkey':
289         # See if they specificed a key on the cmd line, if not prompt
290         if len(args) == 1:
291             args[1] = prompt_password('Enter PrivateKey (will not echo):', False)
292
293     elif cmd.name == 'signrawtransaction':
294         args = [ cmd, args[1], json.loads(args[2]) if len(args)>2 else [], json.loads(args[3]) if len(args)>3 else []]
295
296     elif cmd.name == 'createmultisig':
297         args = [ cmd, int(args[1]), json.loads(args[2])]
298
299     elif cmd.name == 'createrawtransaction':
300         args = [ cmd, json.loads(args[1]), json.loads(args[2])]
301
302     elif cmd.name == 'listaddresses':
303         args = [cmd, options.show_all, options.show_labels]
304
305     elif cmd.name in ['payto', 'mktx']:
306         domain = [options.from_addr] if options.from_addr else None
307         args = [ 'mktx', args[1], Decimal(args[2]), Decimal(options.tx_fee) if options.tx_fee else None, options.change_addr, domain ]
308         
309     elif cmd.name in ['paytomany', 'mksendmanytx']:
310         domain = [options.from_addr] if options.from_addr else None
311         outputs = []
312         for i in range(1, len(args), 2):
313             if len(args) < i+2:
314                 print_msg("Error: Mismatched arguments.")
315                 exit(1)
316             outputs.append((args[i], Decimal(args[i+1])))
317         args = [ 'mksendmanytx', outputs, Decimal(options.tx_fee) if options.tx_fee else None, options.change_addr, domain ]        
318
319     elif cmd.name == 'help':
320         if len(args) < 2:
321             print_help(parser)
322
323                 
324
325     # check the number of arguments
326     if len(args) - 1 < cmd.min_args:
327         print_msg("Not enough arguments")
328         print_msg("Syntax:", cmd.syntax)
329         sys.exit(1)
330
331     if cmd.max_args >= 0 and len(args) - 1 > cmd.max_args:
332         print_msg("too many arguments", args)
333         print_msg("Syntax:", cmd.syntax)
334         sys.exit(1)
335
336     if cmd.max_args < 0:
337         if len(args) > cmd.min_args + 1:
338             message = ' '.join(args[cmd.min_args:])
339             print_msg("Warning: Final argument was reconstructed from several arguments:", repr(message))
340             args = args[0:cmd.min_args] + [ message ]
341
342
343     # open session
344     if cmd.requires_network and not options.offline:
345         network = Network(config)
346         if not network.start(wait=True):
347             print_msg("Not connected, aborting.")
348             sys.exit(1)
349         print_error("Connected to " + network.interface.connection_msg)
350
351         if wallet:
352             wallet.start_threads(network)
353             wallet.update()
354     else:
355         network = None
356
357
358
359     # run the command
360
361     if cmd.name == 'deseed':
362         if not wallet.seed:
363             print_msg("Error: This wallet has no seed")
364         else:
365             ns = wallet.storage.path + '.seedless'
366             print_msg("Warning: you are going to create a seedless wallet'\nIt will be saved in '%s'"%ns)
367             if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
368                 wallet.storage.path = ns
369                 wallet.seed = ''
370                 wallet.storage.put('seed', '', True)
371                 wallet.use_encryption = False
372                 wallet.storage.put('use_encryption', wallet.use_encryption, True)
373                 for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = ''
374                 wallet.storage.put('imported_keys',wallet.imported_keys, True)
375                 print_msg("Done.")
376             else:
377                 print_msg("Action canceled.")
378
379     elif cmd.name == 'getconfig':
380         key = args[1]
381         out = config.get(key)
382         print_msg(out)
383
384     elif cmd.name == 'setconfig':
385         key, value = args[1:3]
386         config.set_key(key, value, True)
387         print_msg(True)
388
389     elif cmd.name == 'password':
390         new_password = prompt_password('New password:')
391         wallet.update_password(seed, password, new_password)
392
393     else:
394         run_command(cmd.name, password, args)
395         
396
397     if network:
398         if wallet:
399             wallet.stop_threads()
400         network.stop()
401         time.sleep(0.1)
402         sys.exit(0)