Browse Source

EmFieldGroup: create, save and load. fieldgroups() method for EmClass.

ArnAud 9 years ago
parent
commit
22b9dfc4b6
2 changed files with 56 additions and 34 deletions
  1. 11
    5
      EditorialModel/classes.py
  2. 45
    29
      EditorialModel/fieldgroups.py

+ 11
- 5
EditorialModel/classes.py View File

@@ -8,9 +8,7 @@
8 8
 from EditorialModel.components import EmComponent, EmComponentNotExistError
9 9
 from Database.sqlwrapper import SqlWrapper
10 10
 from Database.sqlobject import SqlObject
11
-
12
-import EditorialModel.classtypes
13
-import EditorialModel.types
11
+import EditorialModel
14 12
 
15 13
 class EmClass(EmComponent):
16 14
     table = 'em_class'
@@ -61,8 +59,16 @@ class EmClass(EmComponent):
61 59
     """ retrieve list of the field_groups of this class
62 60
         @return field_groups [EmFieldGroup]:
63 61
     """
64
-    def field_groups(self):
65
-        pass
62
+    def fieldgroups(self):
63
+        fieldgroups_req = SqlObject(EditorialModel.fieldgroups.EmFieldGroup.table)
64
+        select = fieldgroups_req.sel
65
+        select.where(fieldgroups_req.col.class_id == self.id)
66
+
67
+        sqlresult = fieldgroups_req.rexec(select)
68
+        records = sqlresult.fetchall()
69
+        fieldgroups = [ EditorialModel.fieldgroups.EmFieldGroup(int(record.uid)) for record in records ]
70
+
71
+        return fieldgroups
66 72
 
67 73
     """ retrieve list of fields
68 74
         @return fields [EmField]:

+ 45
- 29
EditorialModel/fieldgroups.py View File

@@ -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
-

Loading…
Cancel
Save