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