Browse Source

EmClass : create, save and load

ArnAud 9 years ago
parent
commit
a17d889d3f
2 changed files with 65 additions and 53 deletions
  1. 36
    9
      EditorialModel/classes.py
  2. 29
    44
      EditorialModel/components.py

+ 36
- 9
EditorialModel/classes.py View File

@@ -8,10 +8,12 @@
8 8
 from EditorialModel.components import EmComponent, EmComponentNotExistError
9 9
 import EditorialModel.classtypes
10 10
 from Database.sqlwrapper import SqlWrapper
11
+from Database.sqlobject import SqlObject
11 12
 
12 13
 class EmClass(EmComponent):
14
+    table = 'em_class'
13 15
     def __init__(self, id_or_name):
14
-        self.table = 'em_class'
16
+        self.table = EmClass.table
15 17
         super(EmClass, self).__init__(id_or_name)
16 18
 
17 19
     """ create a new class
@@ -20,13 +22,38 @@ class EmClass(EmComponent):
20 22
     """
21 23
     @staticmethod
22 24
     def create(name, class_type):
23
-        #try:
24
-        exists = EmClass(name)
25
-        #except EmComponentNotExistError:
26
-            #print ("bin")
27
-            #pass
28
-        print (name, class_type)
29
-        pass
25
+        try:
26
+            exists = EmClass(name)
27
+        except EmComponentNotExistError:
28
+            uids = SqlObject('uids')
29
+            res = uids.wexec(uids.table.insert().values(table=EmClass.table))
30
+            uid = res.inserted_primary_key
31
+
32
+            emclass = SqlObject(EmClass.table)
33
+            res = emclass.wexec(emclass.table.insert().values(uid=uid, name=name, classtype=class_type['name']))
34
+            SqlWrapper.wc().execute("CREATE TABLE %s (uid VARCHAR(50))" % name)
35
+            return EmClass(name)
36
+
37
+        return False
38
+
39
+    def populate(self):
40
+        row = super(EmClass, self).populate()
41
+        self.classtype = row.classtype
42
+        self.icon = row.icon
43
+        self.sortcolumn = row.sortcolumn
44
+
45
+    def save(self):
46
+        # should not be here, but cannot see how to do this
47
+        if self.id is None:
48
+            self.populate()
49
+
50
+        values = {
51
+            'classtype' : self.classtype,
52
+            'icon' : self.icon,
53
+            'sortcolumn' : self.sortcolumn,
54
+        }
55
+
56
+        return super(EmClass, self).save(values)
30 57
 
31 58
     """ retrieve list of the field_groups of this class
32 59
         @return field_groups [EmFieldGroup]:
@@ -57,4 +84,4 @@ class EmClass(EmComponent):
57 84
         @return types [EmType]:
58 85
     """
59 86
     def linked_types():
60
-        pass
87
+        pass

+ 29
- 44
EditorialModel/components.py View File

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

Loading…
Cancel
Save