|
@@ -0,0 +1,104 @@
|
|
1
|
+#-*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+from EditorialModel.fieldtypes import EmField_integer
|
|
4
|
+from EditorialModel.components import EmComponent
|
|
5
|
+
|
|
6
|
+from Database import sqlutils
|
|
7
|
+import sqlalchemy as sqla
|
|
8
|
+
|
|
9
|
+import logging
|
|
10
|
+
|
|
11
|
+logger = logging.getLogger('Lodel2.EditorialModel')
|
|
12
|
+
|
|
13
|
+## Em_Field_Type (Class)
|
|
14
|
+#
|
|
15
|
+# Represents an association between a field and a type
|
|
16
|
+class Em_Field_Type(object):
|
|
17
|
+
|
|
18
|
+ table = 'em_field_type'
|
|
19
|
+ _fields = [('type_id', EmField_integer),('field_id', EmField_integer)]
|
|
20
|
+
|
|
21
|
+ ## __init__ (Function)
|
|
22
|
+ #
|
|
23
|
+ # Instanciates an Em_Field_Type object with data fetched from the database
|
|
24
|
+ #
|
|
25
|
+ # @param type_id integer: Identifier of the type
|
|
26
|
+ # @param field_id integer: Identifier of the field
|
|
27
|
+ def __init__(self, type_id, field_id):
|
|
28
|
+ self.table = Em_Field_Type.table
|
|
29
|
+ self._fields = self.__class__._fields
|
|
30
|
+ self.type_id = type_id
|
|
31
|
+ self.field_id = field_id
|
|
32
|
+
|
|
33
|
+ ## Create (Function)
|
|
34
|
+ #
|
|
35
|
+ # Creates a relation between a field and a type
|
|
36
|
+ #
|
|
37
|
+ # @static
|
|
38
|
+ #
|
|
39
|
+ # @param emType EmType: Object representing the Type
|
|
40
|
+ # @param emField EmField: Object representing the Field
|
|
41
|
+ # @return Em_Field_Type object
|
|
42
|
+ @classmethod
|
|
43
|
+ def create(cls, emType, emField):
|
|
44
|
+ values = {
|
|
45
|
+ 'type_id': emType.uid,
|
|
46
|
+ 'field_id': emField.uid
|
|
47
|
+ }
|
|
48
|
+
|
|
49
|
+ createdRelation = Em_Field_Type._createDb(**values)
|
|
50
|
+ return createdRelation
|
|
51
|
+
|
|
52
|
+ @classmethod
|
|
53
|
+ def _createDb(cls, **kwargs):
|
|
54
|
+ dbe = EmComponent.getDbE()
|
|
55
|
+ conn = dbe.connect()
|
|
56
|
+ table = sqla.Table(cls.table, sqlutils.meta(dbe))
|
|
57
|
+ req = table.insert(kwargs)
|
|
58
|
+ res = conn.execute(req)
|
|
59
|
+ conn.close()
|
|
60
|
+ return Em_Field_Type(kwargs['type_id'], kwargs['field_id'])
|
|
61
|
+
|
|
62
|
+ ## Delete (Function)
|
|
63
|
+ #
|
|
64
|
+ # Deletes a relation between a field and a type
|
|
65
|
+ #
|
|
66
|
+ # @return Boolean
|
|
67
|
+ def delete(self):
|
|
68
|
+ return _deleteDb()
|
|
69
|
+
|
|
70
|
+ def _deleteDb(self):
|
|
71
|
+ dbe = EmComponent.getDbe()
|
|
72
|
+ table = sqla.Table(self.table, sqlutils.meta(dbe))
|
|
73
|
+ req = table.Delete().Where(table.c.type_id==self.type_id).Where(table.c.field_id==self.field_id)
|
|
74
|
+ conn = dbe.connect()
|
|
75
|
+ try:
|
|
76
|
+ conn.execute(req)
|
|
77
|
+ res = True
|
|
78
|
+ except:
|
|
79
|
+ res = False
|
|
80
|
+ conn.close()
|
|
81
|
+
|
|
82
|
+ return res
|
|
83
|
+
|
|
84
|
+ ## Exists (Function)
|
|
85
|
+ #
|
|
86
|
+ # Checks if a the relation exists in the database
|
|
87
|
+ #
|
|
88
|
+ # @return True if success, False if failure
|
|
89
|
+ def exists(self):
|
|
90
|
+ return _existsDb()
|
|
91
|
+
|
|
92
|
+ ## _ExistsDb (Function)
|
|
93
|
+ #
|
|
94
|
+ # Queries the database to see if a relation exists or not
|
|
95
|
+ #
|
|
96
|
+ # @return True if success, False if failure
|
|
97
|
+ def _existsDb(self):
|
|
98
|
+ dbe = EmComponent.getDbe()
|
|
99
|
+ table = sqla.Table(self.table, sqlutils.meta(dbe))
|
|
100
|
+ req = table.Select().Where(table.c.type_id==self.type_id).Where(table.c.field_id==self.field_id)
|
|
101
|
+ conn = dbe.connect()
|
|
102
|
+ res = conn.execute(req).fetchall()
|
|
103
|
+ conn.close()
|
|
104
|
+ return len(res)>0
|