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