[Merge] Merge with Trunk Server
[odoo/odoo.git] / bin / tools / config.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import ConfigParser
23 import optparse
24 import os
25 import sys
26 import netsvc
27 import logging
28 import release
29
30 def check_ssl():
31     try:
32         from OpenSSL import SSL
33         import socket
34
35         return hasattr(socket, 'ssl')
36     except:
37         return False
38
39 class configmanager(object):
40     def __init__(self, fname=None):
41         self.options = {
42             'email_from':False,
43             'interface': '',    # this will bind the server to all interfaces
44             'port': 8069,
45             'netinterface': '',
46             'netport': 8070,
47             'db_host': False,
48             'db_port': False,
49             'db_name': False,
50             'db_user': False,
51             'db_password': False,
52             'db_maxconn': 64,
53             'reportgz': False,
54             'netrpc': True,
55             'xmlrpc': True,
56             'soap': False,
57             'translate_in': None,
58             'translate_out': None,
59             'language': None,
60             'pg_path': None,
61             'admin_passwd': 'admin',
62             'csv_internal_sep': ',',
63             'addons_path': None,
64             'root_path': None,
65             'debug_mode': False,
66             'import_partial': "",
67             'pidfile': None,
68             'logfile': None,
69             'logrotate': '1',
70             'smtp_server': 'localhost',
71             'smtp_user': False,
72             'smtp_port':25,
73             'smtp_ssl':False,
74             'smtp_password': False,
75             'stop_after_init': False,   # this will stop the server after initialization
76             'price_accuracy': 2,
77             'secure' : False,
78             'syslog' : False,
79             'log_level': logging.INFO,
80             'assert_exit_level': logging.ERROR, # level above which a failed assert will be raised
81             'cache_timeout': 100000,
82             'login_message': False,
83             'list_db' : True,
84             'timezone' : False, # to override the default TZ
85             'test-disable' : False,
86             'test-commit' : False,
87         }
88
89         self.misc = {}
90         self.config_file = fname
91         self.has_ssl = check_ssl()
92
93         self._LOGLEVELS = dict([(getattr(netsvc, 'LOG_%s' % x), getattr(logging, x))
94                           for x in ('CRITICAL', 'ERROR', 'WARNING', 'INFO', 'TEST', 'DEBUG', 'DEBUG_RPC', 'NOTSET')])
95
96         version = "%s %s" % (release.description, release.version)
97         self.parser = parser = optparse.OptionParser(version=version)
98
99         parser.add_option("-c", "--config", dest="config", help="specify alternate config file")
100         parser.add_option("-s", "--save", action="store_true", dest="save", default=False,
101                           help="save configuration to ~/.openerp_serverrc")
102         parser.add_option("--pidfile", dest="pidfile", help="file where the server pid will be stored")
103
104         parser.add_option("-n", "--interface", dest="interface", help="specify the TCP IP address")
105         parser.add_option("-p", "--port", dest="port", help="specify the TCP port", type="int")
106         parser.add_option("--net_interface", dest="netinterface", help="specify the TCP IP address for netrpc")
107         parser.add_option("--net_port", dest="netport", help="specify the TCP port for netrpc", type="int")
108         parser.add_option("--no-netrpc", dest="netrpc", action="store_false", help="disable netrpc")
109         parser.add_option("--no-xmlrpc", dest="xmlrpc", action="store_false", help="disable xmlrpc")
110         parser.add_option("-i", "--init", dest="init", help="init a module (use \"all\" for all modules)")
111         parser.add_option("--without-demo", dest="without_demo",
112                           help="load demo data for a module (use \"all\" for all modules)", default=False)
113         parser.add_option("-u", "--update", dest="update",
114                           help="update a module (use \"all\" for all modules)")
115         parser.add_option("--cache-timeout", dest="cache_timeout",
116                           help="set the timeout for the cache system", default=100000, type="int")
117         parser.add_option("-t", "--timezone", dest="timezone", help="specify reference timezone for the server (e.g. Europe/Brussels")
118
119         # stops the server from launching after initialization
120         parser.add_option("--stop-after-init", action="store_true", dest="stop_after_init", default=False,
121                           help="stop the server after it initializes")
122         parser.add_option('--debug', dest='debug_mode', action='store_true', default=False, help='enable debug mode')
123         parser.add_option("--assert-exit-level", dest='assert_exit_level', type="choice", choices=self._LOGLEVELS.keys(),
124                           help="specify the level at which a failed assertion will stop the server. Accepted values: %s" % (self._LOGLEVELS.keys(),))
125         parser.add_option('--price_accuracy', dest='price_accuracy', default='2', help='deprecated since v6.0, replaced by module decimal_precision')
126
127         if self.has_ssl:
128             group = optparse.OptionGroup(parser, "SSL Configuration")
129             group.add_option("-S", "--secure", dest="secure",
130                              help="launch server over https instead of http")
131             group.add_option("--cert-file", dest="secure_cert_file",
132                               default="server.cert",
133                               help="specify the certificate file for the SSL connection")
134             group.add_option("--pkey-file", dest="secure_pkey_file",
135                               default="server.pkey",
136                               help="specify the private key file for the SSL connection")
137             parser.add_option_group(group)
138
139         # Testing Group
140         group = optparse.OptionGroup(parser, "Testing Configuration")
141         group.add_option("--test-disable", action="store_true", dest="test_disable",
142                          default=False, help="Disable loading test files.")
143         group.add_option("--test-commit", action="store_true", dest="test_commit",
144                          default=False, help="Commit database changes performed by tests.")
145         parser.add_option_group(group)
146
147         # Logging Group
148         group = optparse.OptionGroup(parser, "Logging Configuration")
149         group.add_option("--logfile", dest="logfile", help="file where the server log will be stored")
150         group.add_option("--no-logrotate", dest="logrotate", action="store_false",
151                          default=None, help="do not rotate the logfile")
152         group.add_option("--syslog", action="store_true", dest="syslog",
153                          default=False, help="Send the log to the syslog server")
154         group.add_option('--log-level', dest='log_level', type='choice', choices=self._LOGLEVELS.keys(),
155                          help='specify the level of the logging. Accepted values: ' + str(self._LOGLEVELS.keys()))
156         parser.add_option_group(group)
157
158         # SMTP Group
159         group = optparse.OptionGroup(parser, "SMTP Configuration")
160         group.add_option('--email-from', dest='email_from', default='', help='specify the SMTP email address for sending email')
161         group.add_option('--smtp', dest='smtp_server', default='', help='specify the SMTP server for sending email')
162         group.add_option('--smtp-port', dest='smtp_port', default='25', help='specify the SMTP port', type="int")
163         group.add_option('--smtp-ssl', dest='smtp_ssl', default='', help='specify the SMTP server support SSL or not')
164         group.add_option('--smtp-user', dest='smtp_user', default='', help='specify the SMTP username for sending email')
165         group.add_option('--smtp-password', dest='smtp_password', default='', help='specify the SMTP password for sending email')
166         parser.add_option_group(group)
167
168         group = optparse.OptionGroup(parser, "Database related options")
169         group.add_option("-d", "--database", dest="db_name", help="specify the database name")
170         group.add_option("-r", "--db_user", dest="db_user", help="specify the database user name")
171         group.add_option("-w", "--db_password", dest="db_password", help="specify the database password")
172         group.add_option("--pg_path", dest="pg_path", help="specify the pg executable path")
173         group.add_option("--db_host", dest="db_host", help="specify the database host")
174         group.add_option("--db_port", dest="db_port", help="specify the database port", type="int")
175         group.add_option("--db_maxconn", dest="db_maxconn", default='64',
176                          help="specify the the maximum number of physical connections to posgresql")
177         group.add_option("-P", "--import-partial", dest="import_partial",
178                          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)
179         parser.add_option_group(group)
180
181         group = optparse.OptionGroup(parser, "Internationalisation options",
182             "Use these options to translate OpenERP to another language."
183             "See i18n section of the user manual. Option '-d' is mandatory."
184             "Option '-l' is mandatory in case of importation"
185             )
186
187         group.add_option('-l', "--language", dest="language",
188                          help="specify the language of the translation file. Use it with --i18n-export or --i18n-import")
189         group.add_option("--i18n-export", dest="translate_out",
190                          help="export all sentences to be translated to a CSV file, a PO file or a TGZ archive and exit")
191         group.add_option("--i18n-import", dest="translate_in",
192                          help="import a CSV or a PO file with translations and exit. The '-l' option is required.")
193         group.add_option("--modules", dest="translate_modules",
194                          help="specify modules to export. Use in combination with --i18n-export")
195         group.add_option("--addons-path", dest="addons_path",
196                          help="specify an alternative addons path.",
197                          action="callback", callback=self._check_addons_path, nargs=1, type="string")
198         parser.add_option_group(group)
199
200         security = optparse.OptionGroup(parser, 'Security-related options')
201         security.add_option('--no-database-list', action="store_false", dest='list_db', default=True, help="disable the ability to return the list of databases")
202         security.add_option('--enable-code-actions', action='store_true',
203                             dest='server_actions_allow_code', default=False,
204                             help='Enables server actions of state "code". Warning, this is a security risk.')
205         parser.add_option_group(security)
206
207     def parse_config(self):
208         (opt, args) = self.parser.parse_args()
209
210         def die(cond, msg):
211             if cond:
212                 print msg
213                 sys.exit(1)
214
215         die(bool(opt.syslog) and bool(opt.logfile),
216             "the syslog and logfile options are exclusive")
217
218         die(opt.translate_in and (not opt.language or not opt.db_name),
219             "the i18n-import option cannot be used without the language (-l) and the database (-d) options")
220
221         die(opt.translate_out and (not opt.db_name),
222             "the i18n-export option cannot be used without the database (-d) option")
223
224         # Check if the config file exists (-c used, but not -s)
225         die(not opt.save and opt.config and not os.path.exists(opt.config),
226             "The config file '%s' selected with -c/--config doesn't exist, "\
227             "use -s/--save if you want to generate it"%(opt.config))
228
229         # place/search the config file on Win32 near the server installation
230         # (../etc from the server)
231         # 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,
232         # else he won't be able to save the configurations, or even to start the server...
233         if os.name == 'nt':
234             rcfilepath = os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])), 'openerp-server.conf')
235         else:
236             rcfilepath = os.path.expanduser('~/.openerp_serverrc')
237
238         self.rcfile = os.path.abspath(
239             self.config_file or opt.config \
240                 or os.environ.get('OPENERP_SERVER') or rcfilepath)
241         self.load()
242
243
244         # Verify that we want to log or not, if not the output will go to stdout
245         if self.options['logfile'] in ('None', 'False'):
246             self.options['logfile'] = False
247         # the same for the pidfile
248         if self.options['pidfile'] in ('None', 'False'):
249             self.options['pidfile'] = False
250
251         keys = ['interface', 'port', 'db_name', 'db_user', 'db_password', 'db_host',
252                 'db_port', 'list_db', 'logfile', 'pidfile', 'smtp_port', 'cache_timeout','smtp_ssl',
253                 'email_from', 'smtp_server', 'smtp_user', 'smtp_password', 'price_accuracy',
254                 'netinterface', 'netport', 'db_maxconn', 'import_partial', 'addons_path',
255                 'netrpc', 'xmlrpc', 'syslog', 'without_demo', 'timezone',]
256
257         if self.has_ssl:
258             keys.extend(['secure_cert_file', 'secure_pkey_file'])
259             keys.append('secure')
260
261         for arg in keys:
262             if getattr(opt, arg):
263                 self.options[arg] = getattr(opt, arg)
264
265         keys = ['language', 'translate_out', 'translate_in', 'debug_mode',
266                 'stop_after_init', 'logrotate', 'without_demo', 'netrpc', 'xmlrpc', 'syslog',
267                 'list_db', 'server_actions_allow_code']
268
269         if self.has_ssl and not self.options['secure']:
270             keys.append('secure')
271
272         for arg in keys:
273             if getattr(opt, arg) is not None:
274                 self.options[arg] = getattr(opt, arg)
275
276         if opt.assert_exit_level:
277             self.options['assert_exit_level'] = self._LOGLEVELS[opt.assert_exit_level]
278         else:
279             self.options['assert_exit_level'] = self._LOGLEVELS.get(self.options['assert_exit_level']) or int(self.options['assert_exit_level'])
280
281         if opt.log_level:
282             self.options['log_level'] = self._LOGLEVELS[opt.log_level]
283         else:
284             self.options['log_level'] = self._LOGLEVELS.get(self.options['log_level']) or int(self.options['log_level'])
285
286         if not self.options['root_path'] or self.options['root_path']=='None':
287             self.options['root_path'] = os.path.abspath(os.path.dirname(sys.argv[0]))
288         if not self.options['addons_path'] or self.options['addons_path']=='None':
289             self.options['addons_path'] = os.path.join(self.options['root_path'], 'addons')
290
291         self.options['init'] = opt.init and dict.fromkeys(opt.init.split(','), 1) or {}
292         self.options["demo"] = not opt.without_demo and self.options['init'] or {}
293         self.options["test-disable"] =  opt.test_disable
294         self.options["test-commit"] =  opt.test_commit
295         self.options['update'] = opt.update and dict.fromkeys(opt.update.split(','), 1) or {}
296
297         self.options['translate_modules'] = opt.translate_modules and map(lambda m: m.strip(), opt.translate_modules.split(',')) or ['all']
298         self.options['translate_modules'].sort()
299
300         if self.options['timezone']:
301             # If an explicit TZ was provided in the config, make sure it is known
302             try:
303                 import pytz
304                 tz = pytz.timezone(self.options['timezone'])
305             except pytz.UnknownTimeZoneError:
306                 die(True, "The specified timezone (%s) is invalid" % self.options['timezone'])
307             except:
308                 # If pytz is missing, don't check the provided TZ, it will be ignored anyway.
309                 pass
310
311         if opt.pg_path:
312             self.options['pg_path'] = opt.pg_path
313
314         if self.options.get('language', False):
315             if len(self.options['language']) > 5:
316                 raise Exception('ERROR: The Lang name must take max 5 chars, Eg: -lfr_BE')
317
318         if not self.options['db_user']:
319             try:
320                 import getpass
321                 self.options['db_user'] = getpass.getuser()
322             except:
323                 self.options['db_user'] = None
324
325         die(not self.options['db_user'], 'ERROR: No user specified for the connection to the database')
326
327         if self.options['db_password']:
328             if sys.platform == 'win32' and not self.options['db_host']:
329                 self.options['db_host'] = 'localhost'
330             #if self.options['db_host']:
331             #    self._generate_pgpassfile()
332
333         if opt.save:
334             self.save()
335
336     def _generate_pgpassfile(self):
337         """
338         Generate the pgpass file with the parameters from the command line (db_host, db_user,
339         db_password)
340
341         Used because pg_dump and pg_restore can not accept the password on the command line.
342         """
343         is_win32 = sys.platform == 'win32'
344         if is_win32:
345             filename = os.path.join(os.environ['APPDATA'], 'pgpass.conf')
346         else:
347             filename = os.path.join(os.environ['HOME'], '.pgpass')
348
349         text_to_add = "%(db_host)s:*:*:%(db_user)s:%(db_password)s" % self.options
350
351         if os.path.exists(filename):
352             content = [x.strip() for x in file(filename, 'r').readlines()]
353             if text_to_add in content:
354                 return
355
356         fp = file(filename, 'a+')
357         fp.write(text_to_add + "\n")
358         fp.close()
359
360         if is_win32:
361             import _winreg
362             x=_winreg.ConnectRegistry(None,_winreg.HKEY_LOCAL_MACHINE)
363             y = _winreg.OpenKey(x, r"SYSTEM\CurrentControlSet\Control\Session Manager\Environment", 0,_winreg.KEY_ALL_ACCESS)
364             _winreg.SetValueEx(y,"PGPASSFILE", 0, _winreg.REG_EXPAND_SZ, filename )
365             _winreg.CloseKey(y)
366             _winreg.CloseKey(x)
367         else:
368             import stat
369             os.chmod(filename, stat.S_IRUSR + stat.S_IWUSR)
370
371     def _check_addons_path(self, option, opt, value, parser):
372         res = os.path.abspath(os.path.expanduser(value))
373         if not os.path.exists(res):
374             raise optparse.OptionValueError("option %s: no such directory: %r" % (opt, value))
375
376         contains_addons = False
377         for f in os.listdir(res):
378             modpath = os.path.join(res, f)
379             if os.path.isdir(modpath) and \
380                os.path.exists(os.path.join(modpath, '__init__.py')) and \
381                (os.path.exists(os.path.join(modpath, '__openerp__.py')) or \
382                 os.path.exists(os.path.join(modpath, '__terp__.py'))):
383
384                 contains_addons = True
385                 break
386
387         if not contains_addons:
388             raise optparse.OptionValueError("option %s: The addons-path %r does not seem to a be a valid Addons Directory!" % (opt, value))
389
390         setattr(parser.values, option.dest, res)
391
392     def load(self):
393         p = ConfigParser.ConfigParser()
394         try:
395             p.read([self.rcfile])
396             for (name,value) in p.items('options'):
397                 if value=='True' or value=='true':
398                     value = True
399                 if value=='False' or value=='false':
400                     value = False
401                 self.options[name] = value
402             #parse the other sections, as well
403             for sec in p.sections():
404                 if sec == 'options':
405                     continue
406                 if not self.misc.has_key(sec):
407                     self.misc[sec]= {}
408                 for (name, value) in p.items(sec):
409                     if value=='True' or value=='true':
410                         value = True
411                     if value=='False' or value=='false':
412                         value = False
413                     self.misc[sec][name] = value
414         except IOError:
415             pass
416         except ConfigParser.NoSectionError:
417             pass
418
419     def save(self):
420         p = ConfigParser.ConfigParser()
421         loglevelnames = dict(zip(self._LOGLEVELS.values(), self._LOGLEVELS.keys()))
422         p.add_section('options')
423         for opt in self.options.keys():
424             if opt in ('version', 'language', 'translate_out', 'translate_in', 'init', 'update'):
425                 continue
426             if opt in ('log_level', 'assert_exit_level'):
427                 p.set('options', opt, loglevelnames.get(self.options[opt], self.options[opt]))
428             else:
429                 p.set('options', opt, self.options[opt])
430
431         for sec in self.misc.keys():
432             for opt in self.misc[sec].keys():
433                 p.set(sec,opt,self.misc[sec][opt])
434
435         # try to create the directories and write the file
436         try:
437             if not os.path.exists(os.path.dirname(self.rcfile)):
438                 os.makedirs(os.path.dirname(self.rcfile))
439             try:
440                 p.write(file(self.rcfile, 'w'))
441                 os.chmod(self.rcfile, 0600)
442             except IOError:
443                 sys.stderr.write("ERROR: couldn't write the config file\n")
444
445         except OSError:
446             # what to do if impossible?
447             sys.stderr.write("ERROR: couldn't create the config directory\n")
448
449     def get(self, key, default=None):
450         return self.options.get(key, default)
451
452     def get_misc(self, sect, key, default=None):
453         return self.misc.get(sect,{}).get(key, default)
454
455     def __setitem__(self, key, value):
456         self.options[key] = value
457
458     def __getitem__(self, key):
459         return self.options[key]
460
461 config = configmanager()
462
463 # FIXME:following line should be called explicitly by the server
464 # when it starts, to allow doing 'import tools.config' from
465 # other python executables without parsing *their* args.
466 config.parse_config()
467
468 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
469