-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.py
168 lines (146 loc) · 6.15 KB
/
base.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
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
##############################################################################
#
# OpenERP, Open Source Management Solution
#
# This program is free software: you can redistribute it and/or modify
# 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 Affero General Public License for more details.
#
# 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/>.
#
##############################################################################
# -*- coding: utf-8 -*-
from openerp.osv import osv
from openerp.tools.translate import _
from openerp.addons.base.ir.ir_actions import VIEW_TYPES
from logging import getLogger
from lxml import etree
_logger = getLogger(__name__)
VIEW_TYPE = ('chart-d3', _('Chart D3'))
VIEW_TYPES.append(VIEW_TYPE)
class IrUiView(osv.Model):
_inherit = 'ir.ui.view'
def __init__(self, pool, cr):
res = super(IrUiView, self).__init__(pool, cr)
select = [k for k, v in self._columns['type'].selection]
if VIEW_TYPE[0] not in select:
self._columns['type'].selection.append(VIEW_TYPE)
return res
def valid_type_chart_d3_field_exist(self, cr, uid, model, field,
context=None):
domain = [
('model', '=', model),
('name', '=', field),
]
if not self.pool.get('ir.model.fields').search(cr, uid, domain,
context=context):
return False
return True
def valid_type_chart_d3_options(self, cr, uid, arch, context=None):
res = True
# TODO
return res
def valid_type_chart_d3_x_axis(self, cr, uid, arch, model, context=None):
axis = 'x-axis'
res = True
_axis = arch.xpath(axis)
if not _axis:
res = False
_logger.error("The %r node must have %r node" % (
VIEW_TYPE[0], axis))
elif len(_axis) > 1:
res = False
_logger.error(
"the %r node must only have 1 %r node" % (VIEW_TYPE[0], axis))
else:
fields = _axis[0].getchildren()
if not fields:
res = False
_logger.error("the %r.%r node must have %r nodes" % (
VIEW_TYPE[0], axis, 'field'))
for field in fields:
fname = field.attrib.get('name')
if not self.valid_type_chart_d3_field_exist(cr, uid, model,
fname,
context=context):
res = False
_logger.error(
"the field %r in the %r.%r node doesn't exist" %
(fname, axis, 'field'))
return res
def valid_type_chart_d3_y_axis(self, cr, uid, arch, model, context=None):
axis = 'y-axis'
res = True
_axis = arch.xpath(axis)
if not _axis:
res = False
_logger.error("The %r node must have %r node" % (
VIEW_TYPE[0], axis))
elif len(_axis) > 1:
res = False
_logger.error(
"the %r node must only have 1 %r node" % (VIEW_TYPE[0], axis))
else:
fields = _axis[0].getchildren()
if not fields:
res = False
_logger.error("the %r.%r node must have %r nodes" % (
VIEW_TYPE[0], axis, 'field'))
for field in fields:
fname = field.attrib.get('name')
if not self.valid_type_chart_d3_field_exist(cr, uid, model,
fname,
context=context):
res = False
_logger.error(
"the field %r in the %r.%r node doesn't exist" %
(fname, axis, 'field'))
return res
def valid_type_chart_d3(self, cr, uid, arch, model, context=None):
res = True
if arch.tag == VIEW_TYPE[0] and not arch.attrib.get('type'):
res = False
_logger.error(
"The %r node must have 'type' attribute" % VIEW_TYPE[0])
if not self.valid_type_chart_d3_x_axis(cr, uid, arch, model,
context=context):
res = False
if not self.valid_type_chart_d3_y_axis(cr, uid, arch, model,
context=context):
res = False
if not self.valid_type_chart_d3_options(cr, uid, arch, context=context):
res = False
return res
def _check_xml_chart_d3(self, cr, uid, ids, context=None):
domain = [
('id', 'in', ids),
('type', '=', VIEW_TYPE[0]),
]
view_ids = self.search(cr, uid, domain, context=context)
for view in self.browse(cr, uid, view_ids, context=context):
fvg = self.pool.get(view.model).fields_view_get(
cr, uid, view_id=view.id, view_type=view.type, context=context)
view_arch_utf8 = fvg['arch']
view_docs = [etree.fromstring(view_arch_utf8)]
if view_docs[0].tag == 'data':
view_docs = view_docs[0]
for view_arch in view_docs:
if not self.valid_type_chart_d3(cr, uid, view_arch, view.model,
context=context):
return False
return True
_constraints = [
(
_check_xml_chart_d3,
'Invalide XML for chart D3 view architecture',
['arch'],
),
]
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: