Merge commit 'origin/master' into mdv-gpl3-py26
[odoo/odoo.git] / bin / tools / config.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 import ConfigParser
24 import optparse
25 import os
26 import sys
27 import netsvc
28 import logging
29 import release
30
31 def check_ssl():
32     try:
33         from OpenSSL import SSL
34         import socket
35
36         return hasattr(socket, 'ssl')
37     except:
38         return False
39
40 class configmanager(object):
41     def __init__(self, fname=None):
42         self.options = {
43             'email_from':False,
44             'interface': '',    # this will bind the server to all interfaces
45             'port': 8069,
46             'netinterface': '',
47             'netport': 8070,
48             'db_host': False,
49             'db_port': False,
50             'db_name': False,
51             'db_user': False,
52             'db_password': False,
53             'db_maxconn': 64,
54             'reportgz': False,
55             'netrpc': True,
56             'xmlrpc': True,
57             'soap': False,
58             'translate_in': None,
59             'translate_out': None,
60             'language': None,
61             'pg_path': None,
62             'admin_passwd': 'admin',
63             'csv_internal_sep': ',',
64             'addons_path': None,
65             'root_path': None,
66             'debug_mode': False,
67             'import_partial': "",
68             'pidfile': None,
69             'logfile': None,
70             'smtp_server': 'localhost',
71             'smtp_user': False,
72             'smtp_port':25,
73             'smtp_password': False,
74             'stop_after_init': False,   # this will stop the server after initialization
75             'price_accuracy': 2,
76             'secure' : False,
77             'syslog' : False,
78             'log_level': logging.INFO,
79             'assert_exit_level': logging.WARNING, # level above which a failed assert will be raise
80             'cache_timeout': 100000,
81         }
82
83         hasSSL = check_ssl()
84
85         loglevels = dict([(getattr(netsvc, 'LOG_%s' % x), getattr(logging, x))
86                           for x in ('CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG', 'DEBUG_RPC', 'NOTSET')])
87
88         version = "%s %s" % (release.description, release.version)
89         parser = optparse.OptionParser(version=version)
90
91         parser.add_option("-c", "--config", dest="config", help="specify alternate config file")
92         parser.add_option("-s", "--save", action="store_true", dest="save", default=False,
93                           help="save configuration to ~/.openerp_serverrc")
94         parser.add_option("--pidfile", dest="pidfile", help="file where the server pid will be stored")
95
96         parser.add_option("-n", "--interface", dest="interface", help="specify the TCP IP address")
97         parser.add_option("-p", "--port", dest="port", help="specify the TCP port", type="int")
98         parser.add_option("--net_interface", dest="netinterface", help="specify the TCP IP address for netrpc")
99         parser.add_option("--net_port", dest="netport", help="specify the TCP port for netrpc", type="int")
100         parser.add_option("--no-netrpc", dest="netrpc", action="store_false", default=True, help="disable netrpc")
101         parser.add_option("--no-xmlrpc", dest="xmlrpc", action="store_false", default=True, help="disable xmlrpc")
102         parser.add_option("-i", "--init", dest="init", help="init a module (use \"all\" for all modules)")
103         parser.add_option("--without-demo", dest="without_demo",
104                           help="load demo data for a module (use \"all\" for all modules)", default=False)
105         parser.add_option("-u", "--update", dest="update",
106                           help="update a module (use \"all\" for all modules)")
107         parser.add_option("--cache-timeout", dest="cache_timeout",
108                           help="set the timeout for the cache system", default=100000, type="int")
109
110         # stops the server from launching after initialization
111         parser.add_option("--stop-after-init", action="store_true", dest="stop_after_init", default=False,
112                           help="stop the server after it initializes")
113         parser.add_option('--debug', dest='debug_mode', action='store_true', default=False, help='enable debug mode')
114         parser.add_option("--assert-exit-level", dest='assert_exit_level', type="choice", choices=loglevels.keys(),
115                           help="specify the level at which a failed assertion will stop the server. Accepted values: %s" % (loglevels.keys(),))
116         if hasSSL:
117             group = optparse.OptionGroup(parser, "SSL Configuration")
118             group.add_option("-S", "--secure", dest="secure", action="store_true",
119                              help="launch server over https instead of http", default=False)
120             group.add_option("--cert-file", dest="secure_cert_file",
121                               default="server.cert",
122                               help="specify the certificate file for the SSL connection")
123             group.add_option("--pkey-file", dest="secure_pkey_file",
124                               default="server.pkey",
125                               help="specify the private key file for the SSL connection")
126             parser.add_option_group(group)
127
128         # Logging Group
129         group = optparse.OptionGroup(parser, "Logging Configuration")
130         group.add_option("--logfile", dest="logfile", help="file where the server log will be stored")
131         group.add_option("--syslog", action="store_true", dest="syslog",
132                          default=False, help="Send the log to the syslog server")
133         group.add_option('--log-level', dest='log_level', type='choice', choices=loglevels.keys(),
134                          help='specify the level of the logging. Accepted values: ' + str(loglevels.keys()))
135         parser.add_option_group(group)
136
137         # SMTP Group
138         group = optparse.OptionGroup(parser, "SMTP Configuration")
139         group.add_option('--email-from', dest='email_from', default='', help='specify the SMTP email address for sending email')
140         group.add_option('--smtp', dest='smtp_server', default='', help='specify the SMTP server for sending email')
141         group.add_option('--smtp-port', dest='smtp_port', default='25', help='specify the SMTP port', type="int")
142         if hasSSL:
143             group.add_option('--smtp-ssl', dest='smtp_ssl', default='', help='specify the SMTP server support SSL or not')
144         group.add_option('--smtp-user', dest='smtp_user', default='', help='specify the SMTP username for sending email')
145         group.add_option('--smtp-password', dest='smtp_password', default='', help='specify the SMTP password for sending email')
146         group.add_option('--price_accuracy', dest='price_accuracy', default='2', help='specify the price accuracy')
147         parser.add_option_group(group)
148
149         group = optparse.OptionGroup(parser, "Database related options")
150         group.add_option("-d", "--database", dest="db_name", help="specify the database name")
151         group.add_option("-r", "--db_user", dest="db_user", help="specify the database user name")
152         group.add_option("-w", "--db_password", dest="db_password", help="specify the database password")
153         group.add_option("--pg_path", dest="pg_path", help="specify the pg executable path")
154         group.add_option("--db_host", dest="db_host", help="specify the database host")
155         group.add_option("--db_port", dest="db_port", help="specify the database port", type="int")
156         group.add_option("--db_maxconn", dest="db_maxconn", default='64',
157                          help="specify the the maximum number of physical connections to posgresql")
158         group.add_option("-P", "--import-partial", dest="import_partial",
159                          help="Use this for big data importation, if it crashes you will be able to continue at the current state. Provide a filename to store intermediate importation states.", default=False)
160         parser.add_option_group(group)
161
162         group = optparse.OptionGroup(parser, "Internationalisation options",
163             "Use these options to translate OpenERP to another language."
164             "See i18n section of the user manual. Option '-d' is mandatory."
165             "Option '-l' is mandatory in case of importation"
166             )
167
168         group.add_option('-l', "--language", dest="language",
169                          help="specify the language of the translation file. Use it with --i18n-export or --i18n-import")
170         group.add_option("--i18n-export", dest="translate_out",
171                          help="export all sentences to be translated to a CSV file, a PO file or a TGZ archive and exit")
172         group.add_option("--i18n-import", dest="translate_in",
173                          help="import a CSV or a PO file with translations and exit. The '-l' option is required.")
174         group.add_option("--modules", dest="translate_modules",
175                          help="specify modules to export. Use in combination with --i18n-export")
176         group.add_option("--addons-path", dest="addons_path",
177                          help="specify an alternative addons path.",
178                          action="callback", callback=self._check_addons_path, nargs=1, type="string")
179         parser.add_option_group(group)
180
181         (opt, args) = parser.parse_args()
182
183         def die(cond, msg):
184             if cond:
185                 print msg
186                 sys.exit(1)
187
188         die(bool(opt.syslog) and bool(opt.logfile),
189             "the syslog and logfile options are exclusive")
190
191         die(opt.translate_in and (not opt.language or not opt.db_name),
192             "the i18n-import option cannot be used without the language (-l) and the database (-d) options")
193
194         die(opt.translate_out and (not opt.db_name),
195             "the i18n-export option cannot be used without the database (-d) option")
196
197         # place/search the config file on Win32 near the server installation
198         # (../etc from the server)
199         # if the server is run by an unprivileged user, he has to specify location of a config file where he has the rights to write,
200         # else he won't be able to save the configurations, or even to start the server...
201         if os.name == 'nt':
202             rcfilepath = os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])), 'openerp-server.conf')
203         else:
204             rcfilepath = os.path.expanduser('~/.openerp_serverrc')
205
206         self.rcfile = fname or opt.config or os.environ.get('OPENERP_SERVER') or rcfilepath
207         self.load()
208
209
210         # Verify that we want to log or not, if not the output will go to stdout
211         if self.options['logfile'] in ('None', 'False'):
212             self.options['logfile'] = False
213         # the same for the pidfile
214         if self.options['pidfile'] in ('None', 'False'):
215             self.options['pidfile'] = False
216
217         keys = ['interface', 'port', 'db_name', 'db_user', 'db_password', 'db_host',
218                 'db_port', 'logfile', 'pidfile', 'smtp_port', 'cache_timeout',
219                 'email_from', 'smtp_server', 'smtp_user', 'smtp_password', 'price_accuracy',
220                 'netinterface', 'netport', 'db_maxconn', 'import_partial', 'addons_path', 
221                 'netrpc', 'xmlrpc', 'syslog', 'without_demo']
222
223         if hasSSL:
224             keys.extend(['smtp_ssl', 'secure_cert_file', 'secure_pkey_file'])
225             keys.append('secure')
226
227         for arg in keys:
228             if getattr(opt, arg):
229                 self.options[arg] = getattr(opt, arg)
230
231         keys = ['language', 'translate_out', 'translate_in', 'debug_mode',
232                 'stop_after_init']
233
234         for arg in keys:
235             self.options[arg] = getattr(opt, arg)
236
237         if opt.assert_exit_level:
238             self.options['assert_exit_level'] = loglevels[opt.assert_exit_level]
239
240         if opt.log_level:
241             self.options['log_level'] = loglevels[opt.log_level]
242
243         if not self.options['root_path'] or self.options['root_path']=='None':
244             self.options['root_path'] = os.path.abspath(os.path.dirname(sys.argv[0]))
245         if not self.options['addons_path'] or self.options['addons_path']=='None':
246             self.options['addons_path'] = os.path.join(self.options['root_path'], 'addons')
247
248         self.options['init'] = opt.init and dict.fromkeys(opt.init.split(','), 1) or {}
249         self.options["demo"] = not opt.without_demo and self.options['init'] or {}
250         self.options['update'] = opt.update and dict.fromkeys(opt.update.split(','), 1) or {}
251
252         self.options['translate_modules'] = opt.translate_modules and map(lambda m: m.strip(), opt.translate_modules.split(',')) or ['all']
253         self.options['translate_modules'].sort()
254
255         if opt.pg_path:
256             self.options['pg_path'] = opt.pg_path
257
258         if self.options.get('language', False):
259             if len(self.options['language']) <= 5:
260                 raise Exception('ERROR: The Lang name must take max 5 chars, Eg: -lfr_BE')
261
262         if not self.options['db_user']:
263             try:
264                 import getpass
265                 self.options['db_user'] = getpass.getuser()
266             except:
267                 self.options['db_user'] = None
268
269         die(not self.options['db_user'], 'ERROR: No user specified for the connection to the database')
270
271         if self.options['db_password']:
272             if sys.platform == 'win32' and not self.options['db_host']:
273                 self.options['db_host'] = 'localhost'
274             #if self.options['db_host']:
275             #    self._generate_pgpassfile()
276
277         if opt.save:
278             self.save()
279
280     def _generate_pgpassfile(self):
281         """
282         Generate the pgpass file with the parameters from the command line (db_host, db_user,
283         db_password)
284
285         Used because pg_dump and pg_restore can not accept the password on the command line.
286         """
287         is_win32 = sys.platform == 'win32'
288         if is_win32:
289             filename = os.path.join(os.environ['APPDATA'], 'pgpass.conf')
290         else:
291             filename = os.path.join(os.environ['HOME'], '.pgpass')
292
293         text_to_add = "%(db_host)s:*:*:%(db_user)s:%(db_password)s" % self.options
294
295         if os.path.exists(filename):
296             content = [x.strip() for x in file(filename, 'r').readlines()]
297             if text_to_add in content:
298                 return
299
300         fp = file(filename, 'a+')
301         fp.write(text_to_add + "\n")
302         fp.close()
303
304         if is_win32:
305             import _winreg
306             x=_winreg.ConnectRegistry(None,_winreg.HKEY_LOCAL_MACHINE)
307             y = _winreg.OpenKey(x, r"SYSTEM\CurrentControlSet\Control\Session Manager\Environment", 0,_winreg.KEY_ALL_ACCESS)
308             _winreg.SetValueEx(y,"PGPASSFILE", 0, _winreg.REG_EXPAND_SZ, filename )
309             _winreg.CloseKey(y)
310             _winreg.CloseKey(x)
311         else:
312             import stat
313             os.chmod(filename, stat.S_IRUSR + stat.S_IWUSR)
314
315     def _check_addons_path(self, option, opt, value, parser):
316         res = os.path.abspath(os.path.expanduser(value))
317         if not os.path.exists(res):
318             raise optparse.OptionValueError("option %s: no such directory: %r" % (opt, value))
319         setattr(parser.values, option.dest, res)
320
321     def load(self):
322         p = ConfigParser.ConfigParser()
323         try:
324             p.read([self.rcfile])
325             for (name,value) in p.items('options'):
326                 if value=='True' or value=='true':
327                     value = True
328                 if value=='False' or value=='false':
329                     value = False
330                 self.options[name] = value
331         except IOError:
332             pass
333         except ConfigParser.NoSectionError:
334             pass
335
336     def save(self):
337         p = ConfigParser.ConfigParser()
338         p.add_section('options')
339         for o in [opt for opt in self.options.keys() if opt not in ('version','language','translate_out','translate_in','init','update')]:
340             p.set('options', o, self.options[o])
341
342         # try to create the directories and write the file
343         try:
344             if not os.path.exists(os.path.dirname(self.rcfile)):
345                 os.makedirs(os.path.dirname(self.rcfile))
346             try:
347                 p.write(file(self.rcfile, 'w'))
348             except IOError:
349                 sys.stderr.write("ERROR: couldn't write the config file\n")
350
351         except OSError:
352             # what to do if impossible?
353             sys.stderr.write("ERROR: couldn't create the config directory\n")
354
355     def get(self, key, default=None):
356         return self.options.get(key, default)
357
358     def __setitem__(self, key, value):
359         self.options[key] = value
360
361     def __getitem__(self, key):
362         return self.options[key]
363
364 config = configmanager()
365
366
367
368 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
369