-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathodooSimpleWebServer.py
135 lines (103 loc) · 3.98 KB
/
odooSimpleWebServer.py
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
# other: mafiaboys
import xmlrpc.client as xmlrpclib
from functools import partial
from termcolor import colored ,cprint
from sys import exit
databases = {
'default': {
'URI': 'http://localhost:8069/',
'database': 'database',
'username':'admin',
'password':'password'
}
}
class XmlrpcClient(object):
__attributes__ = ['URI','database','username','password']
def __init__(self ,databases=databases ,attribute='default'):
super(XmlrpcClient, self).__init__()
if self.hasAttributes(databases ,[attribute]):
this = databases[attribute]
if not self.hasAttributes(databases[attribute] ,self.__attributes__):
self.reportError('databases not has Attributes')
_user = this['username']
else:
self.reportError('databases not attribute <{attr}>'.format(attr=attribute))
_pass = this['password']
URI = self.addLinkURI(this['URI'] ,'xmlrpc/2')
commonURI = self.addLinkURI(URI ,'common')
common = xmlrpclib.ServerProxy (commonURI)
try:
UID = common.login(this['database'] ,_user ,_pass)
except Exception as e:
self.reportError("Server Error")
objectURI = self.addLinkURI(URI,'object')
self.execute_command = partial(xmlrpclib.ServerProxy(
objectURI).execute,this['database'] ,
UID,
_pass)
def search(self,model_id ,domain=[],*args):
resu = None
try:
resu = self.execute_command(model_id ,'search' ,domain ,*args)
except xmlrpclib.Fault as e:
self.reportError('?')
return resu
def read(self,model_id ,domain=[],*args):
_read = None
try:
_read = self.execute_command(model_id ,'search_read' ,domain ,*args)
except xmlrpclib.Fault as e:
self.reportError('read()')
return _read
def write(self,model_id ,ids=[],fields={}):
_write = None
try:
_write = self.execute_command(model_id ,'write' ,ids ,fields)
except xmlrpclib.Fault as e:
self.reportError(xmlrpclib.dumps(e))
return _write
def checkPermissions(self,model_id,permissions=[],raise_exception=False):
_permission = False
try:
_permission = self.execute_command(model_id,'check_access_rights',
[permissions],{'raise_exception':raise_exception})
except xmlrpclib.Fault as e:
self.reportError('checkPermissions()')
return _permission
def hasAttributes(self,_dict,attributes=[]):
dictAttributeError = True
if _dict and attributes:
try:
for attribute in attributes:
if not attribute in _dict:
dictAttributeError = not dictAttributeError
break
except AttributeError as e:
return not dictAttributeError
if dictAttributeError:
for attribute in attributes:
if not _dict[attribute]:
dictAttributeError = not dictAttributeError
break
return dictAttributeError
def addLinkURI(self,URI ,_subURI , sepURI='/',mode=False):
if _subURI and URI:
if not _subURI.endswith(sepURI) and mode:
_subURI += sepURI
if not URI.endswith(sepURI):
URI += sepURI
return URI + _subURI
return URI
def reportError(self,messageError=None):
if messageError:
print (messageError)
exit (1)
if __name__ == '__main__':
# # # # # # # # # # # # # # # # # # # # # # # # test model ir.module.module
# serverA = XmlrpcClient(attribute='<tagnameA>')
# model_id = 'ir.module.module'
# if serverA.checkPermissions(model_id,['read','write']):
# records = serverA.read(model_id,[('state','=','installed')])
# for record in records:
# print (record['id'],record['name'],record['state'])
# copyLeft @ all rights changed