|
@@ -1,51 +1,67 @@
|
1
|
1
|
#-*- coding: utf-8 -*-
|
2
|
2
|
|
3
|
|
-from EditorialModel.components import EmComponent
|
|
3
|
+from EditorialModel.components import EmComponent, EmComponentNotExistError
|
|
4
|
+from Database.sqlobject import SqlObject
|
|
5
|
+
|
|
6
|
+import EditorialModel
|
4
|
7
|
|
5
|
8
|
class EmFieldGroup(EmComponent):
|
6
|
9
|
""" Represents groups of EmField
|
7
|
|
-
|
|
10
|
+
|
8
|
11
|
EmClass fields representation is organised with EmFieldGroup
|
9
|
12
|
@see EmField
|
10
|
13
|
"""
|
11
|
|
-
|
12
|
14
|
|
13
|
|
- def __init__(id_or_name):
|
14
|
|
- """ Instanciate an EmFieldGroupe with data fetched from db
|
|
15
|
+ table = 'em_fieldgroup'
|
|
16
|
+
|
|
17
|
+ def __init__(self, id_or_name):
|
|
18
|
+ """ Instanciate an EmFieldGroup with data fetched from db
|
15
|
19
|
@param id_or_name str|int: Identify the EmFieldGroup by name or by global_id
|
16
|
20
|
@throw TypeError
|
17
|
21
|
@see component::EmComponent::__init__()
|
18
|
22
|
"""
|
19
|
|
- super(EmFieldGroup, self).__init__()
|
20
|
|
- pass
|
|
23
|
+ self.table = EmFieldGroup.table
|
|
24
|
+ super(EmFieldGroup, self).__init__(id_or_name)
|
21
|
25
|
|
22
|
26
|
@staticmethod
|
23
|
|
- def create(name, em_class, ml_repr = None, ml_help = None, icon = None):
|
24
|
|
- """ Create a new EmType and instanciate it
|
25
|
|
-
|
26
|
|
- @todo Change the icon param type
|
27
|
|
- @todo em_class == None => Error ?
|
28
|
|
- @todo change staticmethod to classmethod ?
|
29
|
|
-
|
30
|
|
- @param name str: The name of the new Type
|
|
27
|
+ def create(name, em_class):
|
|
28
|
+ """ Create a new EmFieldGroup, save it and instanciate it
|
|
29
|
+
|
|
30
|
+ @param name str: The name of the new fielgroup
|
31
|
31
|
@param em_class EmClass: The new EmFieldGroup will belong to this class
|
32
|
|
- @param ml_repr MlString|None: Multilingual representation of the type
|
33
|
|
- @param ml_help MlString|None: Multilingual help for the type
|
34
|
|
- @param The string|None: filename of the icon
|
35
|
|
- @return An EmFieldGroup instance
|
36
|
|
- @see EmComponent::__init__()
|
37
|
32
|
"""
|
38
|
|
- pass
|
|
33
|
+ try:
|
|
34
|
+ exists = EmFieldGroup(name)
|
|
35
|
+ except EmComponentNotExistError:
|
|
36
|
+ uids = SqlObject('uids')
|
|
37
|
+ res = uids.wexec(uids.table.insert().values(table=EmFieldGroup.table))
|
|
38
|
+ uid = res.inserted_primary_key
|
|
39
|
+
|
|
40
|
+ emfieldgroup = SqlObject(EmFieldGroup.table)
|
|
41
|
+ res = emfieldgroup.wexec(emfieldgroup.table.insert().values(uid=uid, name=name, class_id=em_class.id))
|
|
42
|
+ return EmFieldGroup(name)
|
39
|
43
|
|
40
|
|
- def fields():
|
|
44
|
+ return exists
|
|
45
|
+
|
|
46
|
+ """ Use dictionary (from database) to populate the object
|
|
47
|
+ """
|
|
48
|
+ def populate(self):
|
|
49
|
+ row = super(EmFieldGroup, self).populate()
|
|
50
|
+ self.em_class = EditorialModel.classes.EmClass(int(row.class_id))
|
|
51
|
+
|
|
52
|
+ def save(self):
|
|
53
|
+ # should not be here, but cannot see how to do this
|
|
54
|
+ if self.name is None:
|
|
55
|
+ self.populate()
|
|
56
|
+
|
|
57
|
+ values = {
|
|
58
|
+ 'class_id' : self.em_class.id,
|
|
59
|
+ }
|
|
60
|
+
|
|
61
|
+ return super(EmFieldGroup, self).save(values)
|
|
62
|
+
|
|
63
|
+ def fields(self):
|
41
|
64
|
""" Get the list of associated fields
|
42
|
65
|
@return A list of EmField
|
43
|
66
|
"""
|
44
|
67
|
pass
|
45
|
|
-
|
46
|
|
- def field():
|
47
|
|
- """ ???
|
48
|
|
- @todo : find what this function is for
|
49
|
|
- """
|
50
|
|
- pass
|
51
|
|
-
|