No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fields.py 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. #-*- coding: utf-8 -*-
  2. from EditorialModel.components import EmComponent, EmComponentNotExistError
  3. from EditorialModel.fieldtypes import *
  4. from EditorialModel.fields_types import Em_Field_Type
  5. from Database import sqlutils
  6. from Database.sqlwrapper import SqlWrapper
  7. from Database.sqlquerybuilder import SqlQueryBuilder
  8. import sqlalchemy as sql
  9. import EditorialModel
  10. import logging
  11. logger = logging.getLogger('Lodel2.EditorialModel')
  12. ## EmField (Class)
  13. #
  14. # Represents one data for a lodel2 document
  15. class EmField(EmComponent):
  16. table = 'em_field'
  17. _fields = [
  18. ('fieldtype', EmField_char),
  19. ('fieldgroup_id', EmField_integer),
  20. ('rel_to_type_id', EmField_integer),
  21. ('rel_field_id', EmField_integer),
  22. ('optional', EmField_boolean),
  23. ('internal', EmField_boolean),
  24. ('icon', EmField_integer)
  25. ]
  26. ## Create (Function)
  27. #
  28. # Creates a new EmField and instanciates it
  29. #
  30. # @static
  31. #
  32. # @param name str: The name of the new Type
  33. # @param em_fieldgroup EmFieldGroup: The new field will belong to this fieldgroup
  34. # @param em_fieldtype EmFieldType: The new field will have this type
  35. # @param optional bool: Is the field optional ?
  36. # @param optional bool: Is the field internal ?
  37. #
  38. # @throw TypeError
  39. # @see EmComponent::__init__()
  40. # @staticmethod
  41. @classmethod
  42. def create(c, name, em_fieldgroup, em_fieldtype, optional=True, internal=False):
  43. try:
  44. exists = EmField(name)
  45. except EmComponentNotExistError:
  46. values = {
  47. #'uid' : None,
  48. 'name' : name,
  49. 'fieldgroup_id' : em_fieldgroup.uid,
  50. 'fieldtype' : em_fieldtype.name,
  51. 'optional' : 1 if optional else 0,
  52. 'internal' : 1 if internal else 0,
  53. }
  54. createdField = super(EmField,c).create(**values)
  55. if createdField:
  56. # The field was created, we then add its column in the corresponding class' table
  57. is_field_column_added = EmField.addFieldColumnToClassTable(createdField)
  58. if is_field_column_added:
  59. return createdField
  60. exists = createdField
  61. return exists
  62. ## addFieldColumnToClassTable (Function)
  63. #
  64. # Adds a column representing the field in its class' table
  65. #
  66. # @static
  67. #
  68. # @param emField EmField: the object representing the field
  69. # @return True in case of success, False if not
  70. @classmethod
  71. def addFieldColumnToClassTable(c, emField):
  72. field_type = EditorialModel.fieldtypes.get_field_type(emField.em_fieldtype)
  73. field_sqlalchemy_args = field_type.sqlalchemy_args()
  74. field_sqlalchemy_args['name'] = emField.name
  75. field_sqlalchemy_column_object = sqlwrapper.createColumn(**field_sqlalchemy_args)
  76. field_uid = emField.uid
  77. field_class_table = emField.get_class_table()
  78. return sqlwrapper.addColumnObject(tname=field_class_table, column=field_sqlalchemy_column_object)
  79. ## get_class_table (Function)
  80. #
  81. # Gets the name of the table of the class corresponding to the field
  82. #
  83. # @return Name of the table
  84. def get_class_table(self):
  85. return self._get_class_tableDb()
  86. ## _get_class_tableDb (Function)
  87. #
  88. # Executes a request to the database to get the name of the table in which to add the field
  89. #
  90. # @return Name of the table
  91. def _get_class_tableDb(self):
  92. dbe = self.getDbE()
  93. uidtable = sql.Table('uids', sqlutils.meta(dbe))
  94. conn = dbe.connect()
  95. sql_wrapper = SqlWrapper(read_db='default', write_db='default', alchemy_logs=False)
  96. columns=('table')
  97. query_builder = SqlQueryBuilder(sql_wrapper,'uids')
  98. query_builder.Select(columns)
  99. query_builder.From(uidtable)
  100. query_builder.Where('uids.uid=%s' % self.uid)
  101. records = query_builder.Execute().fetchall()
  102. table_records = []
  103. for record in records:
  104. table_records.append(dict(zip(record.keys(), record)))
  105. table_record = table_records[0]
  106. table_name = table_record['table']
  107. return table_name
  108. ## Populate (Function)
  109. #
  110. # Sets the object's properties using the values from the database
  111. def populate(self):
  112. row = super(EmField, self).populate()
  113. self.em_fieldgroup = EditorialModel.fieldgroups.EmFieldGroup(int(row.fieldgroup_id))
  114. self.em_fieldtype = EditorialModel.fieldtypes.get_field_type(row.fieldtype)
  115. self.optional = True if row.optional == 1 else False;
  116. self.internal = True if row.internal == 1 else False;
  117. self.icon = row.icon
  118. self.rel_to_type_id = EditorialModel.fieldtypes.EmFieldType(int(row.rel_to_type_id)) if row.rel_to_type_id else None
  119. self.rel_field_id = EmField(int(row.rel_field_id)) if row.rel_field_id else None
  120. ## Save (Function)
  121. #
  122. # Saves the properties of the object as a record in the database
  123. #
  124. # @return True in case of success, False if not
  125. def save(self):
  126. # should not be here, but cannot see how to do this
  127. if self.name is None:
  128. self.populate()
  129. values = {
  130. 'fieldgroup_id' : self.em_fieldgroup.id,
  131. 'fieldtype' : self.em_fieldtype.name,
  132. 'optional' : 1 if self.optional else 0,
  133. 'internal' : 1 if self.internal else 0,
  134. 'icon' : self.icon,
  135. 'rel_to_type_id' : self.rel_to_type_id.id if self.rel_to_type_id is not None else None,
  136. 'rel_field_id' : self.rel_field_id.id if self.rel_field_id is not None else None
  137. }
  138. return super(EmField, self).save(values)