/usr/lib/python2.7/dist-packages/tryton/rpc.py is in tryton-client 3.8.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | # This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import httplib
import logging
import socket
import os
from functools import partial
from tryton.jsonrpc import ServerProxy, ServerPool, Fault
from tryton.fingerprints import Fingerprints
from tryton.config import get_config_dir
from tryton.ipc import Server as IPCServer
from tryton.exceptions import TrytonServerError, TrytonServerUnavailable
from tryton.config import CONFIG
CONNECTION = None
_USER = None
_USERNAME = ''
_SESSION = ''
_HOST = ''
_PORT = None
_DATABASE = ''
CONTEXT = {}
_VIEW_CACHE = {}
_TOOLBAR_CACHE = {}
_KEYWORD_CACHE = {}
_CA_CERTS = os.path.join(get_config_dir(), 'ca_certs')
if not os.path.isfile(_CA_CERTS):
_CA_CERTS = None
_FINGERPRINTS = Fingerprints()
ServerProxy = partial(ServerProxy, fingerprints=_FINGERPRINTS,
ca_certs=_CA_CERTS)
ServerPool = partial(ServerPool, fingerprints=_FINGERPRINTS,
ca_certs=_CA_CERTS)
def db_list(host, port):
try:
connection = ServerProxy(host, port)
logging.getLogger(__name__).info('common.db.list(None, None)')
result = connection.common.db.list(None, None)
logging.getLogger(__name__).debug(repr(result))
return result
except Fault, exception:
if exception.faultCode == 'AccessDenied':
logging.getLogger(__name__).debug(-2)
return -2
else:
logging.getLogger(__name__).debug(repr(None))
return None
def db_exec(host, port, method, *args):
connection = ServerProxy(host, port)
logging.getLogger(__name__).info('common.db.%s(None, None, %s)' %
(method, args))
result = getattr(connection.common.db, method)(None, None, *args)
logging.getLogger(__name__).debug(repr(result))
return result
def server_version(host, port):
try:
connection = ServerProxy(host, port)
logging.getLogger(__name__).info(
'common.server.version(None, None)')
result = connection.common.server.version(None, None)
logging.getLogger(__name__).debug(repr(result))
return result
except (Fault, socket.error):
raise
def login(username, password, host, port, database):
global CONNECTION, _USER, _USERNAME, _SESSION, _HOST, _PORT, _DATABASE
global _VIEW_CACHE, _TOOLBAR_CACHE, _KEYWORD_CACHE
_VIEW_CACHE = {}
_TOOLBAR_CACHE = {}
_KEYWORD_CACHE = {}
try:
if CONNECTION is not None:
CONNECTION.close()
CONNECTION = ServerPool(host, port, database)
logging.getLogger(__name__).info('common.db.login(%s, %s)' %
(username, 'x' * 10))
with CONNECTION() as conn:
result = conn.common.db.login(username, password)
logging.getLogger(__name__).debug(repr(result))
except socket.error:
_USER = None
_SESSION = ''
return -1
if not result:
_USER = None
_SESSION = ''
return -2
_USER = result[0]
_USERNAME = username
_SESSION = result[1]
_HOST = host
_PORT = port
_DATABASE = database
IPCServer(host, port, database).run()
return 1
def logout():
global CONNECTION, _USER, _USERNAME, _SESSION, _HOST, _PORT, _DATABASE
global _VIEW_CACHE, _TOOLBAR_CACHE, _KEYWORD_CACHE
if IPCServer.instance:
IPCServer.instance.stop()
if CONNECTION is not None:
try:
logging.getLogger(__name__).info('common.db.logout(%s, %s)' %
(_USER, _SESSION))
with CONNECTION() as conn:
conn.common.db.logout(_USER, _SESSION)
except (Fault, socket.error, httplib.CannotSendRequest):
pass
CONNECTION.close()
CONNECTION = None
_USER = None
_USERNAME = ''
_SESSION = ''
_HOST = ''
_PORT = None
_DATABASE = ''
_VIEW_CACHE = {}
_TOOLBAR_CACHE = {}
_KEYWORD_CACHE = {}
def _execute(blocking, *args):
global CONNECTION, _USER, _SESSION
if CONNECTION is None:
raise TrytonServerError('NotLogged')
key = False
model = args[1]
method = args[2]
if not CONFIG['dev']:
if method == 'fields_view_get':
key = str(args)
if key in _VIEW_CACHE:
return _VIEW_CACHE[key]
elif method == 'view_toolbar_get':
key = str(args)
if key in _TOOLBAR_CACHE:
return _TOOLBAR_CACHE[key]
elif model == 'ir.action.keyword' and method == 'get_keyword':
key = str(args)
if key in _KEYWORD_CACHE:
return _KEYWORD_CACHE[key]
try:
name = '.'.join(args[:3])
args = (_USER, _SESSION) + args[3:]
logging.getLogger(__name__).info('%s%s' % (name, args))
with CONNECTION() as conn:
result = getattr(conn, name)(*args)
except (httplib.CannotSendRequest, socket.error), exception:
raise TrytonServerUnavailable(*exception.args)
if not CONFIG['dev']:
if key and method == 'fields_view_get':
_VIEW_CACHE[key] = result
elif key and method == 'view_toolbar_get':
_TOOLBAR_CACHE[key] = result
elif key and model == 'ir.action.keyword' and method == 'get_keyword':
_KEYWORD_CACHE[key] = result
logging.getLogger(__name__).debug(repr(result))
return result
def execute(*args):
return _execute(True, *args)
def execute_nonblocking(*args):
return _execute(False, *args)
|