|
@@ -23,9 +23,9 @@ class EmComponent(object):
|
23
|
23
|
SqlWrapper.start()
|
24
|
24
|
if self is EmComponent:
|
25
|
25
|
raise EnvironmentError('Abstract class')
|
26
|
|
- if type(id_or_name) is int:
|
|
26
|
+ if isinstance(id_or_name, int):
|
27
|
27
|
self.id = id_or_name
|
28
|
|
- elif type(id_or_name) is str:
|
|
28
|
+ elif isinstance(id_or_name, str):
|
29
|
29
|
self.id = None
|
30
|
30
|
self.name = id_or_name
|
31
|
31
|
self.populate()
|
|
@@ -35,43 +35,50 @@ class EmComponent(object):
|
35
|
35
|
""" Lookup in the database properties of the object to populate the properties
|
36
|
36
|
"""
|
37
|
37
|
def populate(self):
|
38
|
|
- dbo = SqlObject(self.table)
|
39
|
|
-
|
40
|
|
- req = dbo.sel
|
41
|
|
-
|
|
38
|
+ table = SqlObject(self.table)
|
|
39
|
+ select = table.sel
|
|
40
|
+
|
42
|
41
|
if self.id is None:
|
43
|
|
- req.where(dbo.col.name == self.name)
|
|
42
|
+ select.where(table.col.name == self.name)
|
44
|
43
|
else:
|
45
|
|
- req.where(dbo.col.id == self.id)
|
46
|
|
-
|
47
|
|
- sqlresult = dbo.rexec(req)
|
|
44
|
+ select.where(table.col.id == self.id)
|
48
|
45
|
|
49
|
|
- # Transformation du résultat en une liste de dictionnaires
|
|
46
|
+ sqlresult = table.rexec(select)
|
50
|
47
|
records = sqlresult.fetchall()
|
51
|
|
- print (records)
|
52
|
48
|
|
53
|
|
- for record in records:
|
54
|
|
- selected_lines.append(dict(zip(record.keys(), record)))
|
55
|
|
-
|
56
|
|
- if not row:
|
|
49
|
+ if not records:
|
57
|
50
|
# could have two possible Error message for id and for name
|
58
|
51
|
raise EmComponentNotExistError("Bad id_or_name: could not find the component")
|
59
|
52
|
|
|
53
|
+ for record in records:
|
|
54
|
+ row = type('row', (object,), {})()
|
|
55
|
+ for k in record.keys():
|
|
56
|
+ setattr(row, k, record[k])
|
|
57
|
+
|
|
58
|
+ self.id = row.uid
|
60
|
59
|
self.name = row.name
|
61
|
|
- self.rank = int(row.rank)
|
|
60
|
+ self.rank = 0 if row.rank is None else int(row.rank)
|
62
|
61
|
self.date_update = row.date_update
|
63
|
62
|
self.date_create = row.date_create
|
64
|
|
- self.string = MlString.from_json(row.string)
|
65
|
|
- self.help = MlString.from_json(row.help)
|
66
|
|
- self.icon = row.icon
|
|
63
|
+ self.string = MlString.load(row.string)
|
|
64
|
+ self.help = MlString.load(row.help)
|
67
|
65
|
|
68
|
66
|
return row
|
69
|
67
|
|
70
|
68
|
""" write the representation of the component in the database
|
71
|
69
|
@return bool
|
72
|
70
|
"""
|
73
|
|
- def save(self):
|
74
|
|
- pass
|
|
71
|
+ def save(self, values):
|
|
72
|
+ values['name'] = self.name
|
|
73
|
+ values['rank'] = self.rank
|
|
74
|
+ values['date_update'] = self.date_update
|
|
75
|
+ values['date_create'] = self.date_create
|
|
76
|
+ values['string'] = str(self.string)
|
|
77
|
+ values['help']= str(self.help)
|
|
78
|
+
|
|
79
|
+ emclass = SqlObject(self.table)
|
|
80
|
+ update = emclass.table.update(values=values)
|
|
81
|
+ res = emclass.wexec(update)
|
75
|
82
|
|
76
|
83
|
""" delete this component data in the database
|
77
|
84
|
@return bool
|
|
@@ -85,27 +92,5 @@ class EmComponent(object):
|
85
|
92
|
def modify_rank(self, new_rank):
|
86
|
93
|
pass
|
87
|
94
|
|
88
|
|
- """ set a string representation of the component for a given language
|
89
|
|
- @param lang str: iso 639-2 code of the language http://en.wikipedia.org/wiki/List_of_ISO_639-2_codes
|
90
|
|
- @param text str: text to set
|
91
|
|
- @return bool
|
92
|
|
- """
|
93
|
|
- def set_string(self, lang, text):
|
94
|
|
- pass
|
95
|
|
-
|
96
|
|
- """ set the string representation of the component
|
97
|
|
- @param ml_string MlString: strings for all language
|
98
|
|
- @return bool
|
99
|
|
- """
|
100
|
|
- def set_strings(self, ml_string):
|
101
|
|
- pass
|
102
|
|
-
|
103
|
|
- """ get the string representation of the component for the given language
|
104
|
|
- @param lang str: iso 639-2 code of the language
|
105
|
|
- @return text str:
|
106
|
|
- """
|
107
|
|
- def get_string(self, lang):
|
108
|
|
- pass
|
109
|
|
-
|
110
|
95
|
class EmComponentNotExistError(Exception):
|
111
|
96
|
pass
|