[FIX] hr_evaluation: Removed demo file from update tag (Already available with demo...
[odoo/odoo.git] / bin / openerp-server.py
index 7f90eb7..4fbebb8 100755 (executable)
@@ -1,23 +1,22 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 ##############################################################################
-#
-#    OpenERP, Open Source Management Solution  
-#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
-#    $Id$
+#    
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
 #
 #    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
+#    it under the terms of the GNU Affero General Public License as
+#    published by the Free Software Foundation, either version 3 of the
+#    License, or (at your option) any later version.
 #
 #    This program is distributed in the hope that it will be useful,
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
+#    GNU Affero General Public License for more details.
 #
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#    You should have received a copy of the GNU Affero General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
 #
 ##############################################################################
 
@@ -37,23 +36,18 @@ GNU Public Licence.
 import sys
 import os
 import signal
-#----------------------------------------------------------
-# ubuntu 8.04 has obsoleted `pyxml` package and installs here.
-# the path needs to be updated before any `import xml`
-# TODO: remove PyXML dependencies, use lxml instead.
-#----------------------------------------------------------
-_oldxml1 = '/usr/lib/python%s/site-packages/oldxml' % sys.version[:3]
-_oldxml2 = '/usr/lib/python%s/dist-packages/oldxml' % sys.version[:3]
-if os.path.exists(_oldxml1):
-    sys.path.insert(0,_oldxml1)
-elif os.path.exists(_oldxml2):
-    sys.path.insert(0,_oldxml2)    
-
+import pwd
 
 import release
 __author__ = release.author
 __version__ = release.version
 
+# We DON't log this using the standard logger, because we might mess
+# with the logfile's permissions. Just do a quick exit here.
+if pwd.getpwuid(os.getuid())[0] == 'root' :
+    sys.stderr.write("Attempted to run OpenERP server as root. This is not good, aborting.\n")
+    sys.exit(1)
+
 #----------------------------------------------------------
 # get logger
 #----------------------------------------------------------
@@ -72,11 +66,12 @@ for name, value in [('addons_path', tools.config['addons_path']),
                     ('database user', tools.config['db_user'])]:
     logger.notifyChannel("server", netsvc.LOG_INFO, "%s - %s" % ( name, value ))
 
-import time
+# Don't allow if the connection to PostgreSQL done by postgres user
+if tools.config['db_user'] == 'postgres':
+    logger.notifyChannel("server", netsvc.LOG_ERROR, "%s" % ("Attempted to connect database with postgres user. This is a security flaws, aborting."))
+    sys.exit(1)
 
-if sys.platform == 'win32':
-    import mx.DateTime
-    mx.DateTime.strptime = lambda x, y: mx.DateTime.mktime(time.strptime(x, y))
+import time
 
 #----------------------------------------------------------
 # init net service
@@ -106,6 +101,17 @@ import addons
 # Load and update databases if requested
 #----------------------------------------------------------
 
+import service.http_server
+
+if not ( tools.config["stop_after_init"] or \
+    tools.config["translate_in"] or \
+    tools.config["translate_out"] ):
+    service.http_server.init_servers()
+    service.http_server.init_xmlrpc()
+
+    import service.netrpc_server
+    service.netrpc_server.init_servers()
+
 if tools.config['db_name']:
     for db in tools.config['db_name'].split(','):
         pooler.get_db_and_pool(db, update_module=tools.config['init'] or tools.config['update'])
@@ -146,36 +152,9 @@ if tools.config["stop_after_init"]:
 
 
 #----------------------------------------------------------
-# Launch Server
+# Launch Servers
 #----------------------------------------------------------
 
-if tools.config['xmlrpc']:
-    port = int(tools.config['port'])
-    interface = tools.config["interface"]
-    secure = tools.config["secure"]
-
-    httpd = netsvc.HttpDaemon(interface, port, secure)
-
-    xml_gw = netsvc.xmlrpc.RpcGateway('web-services')
-    httpd.attach("/xmlrpc", xml_gw)
-    logger.notifyChannel("web-services", netsvc.LOG_INFO, 
-                         "starting XML-RPC%s services, port %s" % 
-                         ((tools.config['secure'] and ' Secure' or ''), port))
-
-#
-#if tools.config["soap"]:
-#   soap_gw = netsvc.xmlrpc.RpcGateway('web-services')
-#   httpd.attach("/soap", soap_gw )
-#   logger.notifyChannel("web-services", netsvc.LOG_INFO, 'starting SOAP services, port '+str(port))
-#
-
-if tools.config['netrpc']:
-    netport = int(tools.config['netport'])
-    netinterface = tools.config["netinterface"]
-    tinySocket = netsvc.TinySocketServerThread(netinterface, netport, False)
-    logger.notifyChannel("web-services", netsvc.LOG_INFO, 
-                         "starting NET-RPC service, port %d" % (netport,))
-
 LST_SIGNALS = ['SIGINT', 'SIGTERM']
 if os.name == 'posix':
     LST_SIGNALS.extend(['SIGUSR1','SIGQUIT'])
@@ -190,11 +169,8 @@ def handler(signum, _):
     :param signum: the signal number
     :param _: 
     """
-    if tools.config['netrpc']:
-        tinySocket.stop()
-    if tools.config['xmlrpc']:
-        httpd.stop()
     netsvc.Agent.quit()
+    netsvc.Server.quitAll()
     if tools.config['pidfile']:
         os.unlink(tools.config['pidfile'])
     logger.notifyChannel('shutdown', netsvc.LOG_INFO, 
@@ -211,15 +187,13 @@ if tools.config['pidfile']:
     fd.write(pidtext)
     fd.close()
 
+
+netsvc.Server.startAll()
+
 logger.notifyChannel("web-services", netsvc.LOG_INFO, 
                      'the server is running, waiting for connections...')
 
-if tools.config['netrpc']:
-    tinySocket.start()
-if tools.config['xmlrpc']:
-    httpd.start()
-
 while True:
-    time.sleep(1)
+    time.sleep(60)
 
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: