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.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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 EditorialModel.fieldgroups import EmFieldGroup
  6. from EditorialModel.classes import EmClass
  7. from EditorialModel.types import EmType
  8. from Database import sqlutils
  9. from Database.sqlwrapper import SqlWrapper
  10. from Database.sqlquerybuilder import SqlQueryBuilder
  11. from Database.sqlalter import DropColumn
  12. import sqlalchemy as sql
  13. import EditorialModel
  14. import logging
  15. logger = logging.getLogger('Lodel2.EditorialModel')
  16. ## EmField (Class)
  17. #
  18. # Represents one data for a lodel2 document
  19. class EmField(EmComponent):
  20. table = 'em_field'
  21. _fields = [
  22. ('fieldtype', EmField_char),
  23. ('fieldgroup_id', EmField_integer),
  24. ('rel_to_type_id', EmField_integer),
  25. ('rel_field_id', EmField_integer),
  26. ('optional', EmField_boolean),
  27. ('internal', EmField_boolean),
  28. ('icon', EmField_integer)
  29. ]
  30. ## Create (Function)
  31. #
  32. # Creates a new EmField and instanciates it
  33. #
  34. # @static
  35. #
  36. # @param name str: Name of the field
  37. # @param fieldgroup EmFieldGroup: Field group in which the field is
  38. # @param fieldtype EmFieldType: Type of the field
  39. # @param optional int: is the field optional ? (default=0)
  40. # @param internal int: is the field internal ? (default=0)
  41. # @param rel_to_type_id int: default=0
  42. # @param rel_field_id int: default=0
  43. # @param icon int: default=0
  44. # @param kwargs dict: Dictionary of the values to insert in the field record
  45. #
  46. # @throw TypeError
  47. # @see EmComponent::__init__()
  48. # @staticmethod
  49. @classmethod
  50. def create(cls, name, fieldgroup, fieldtype, optional=0, internal=0, rel_to_type_id=0, rel_field_id=0, icon=0):
  51. try:
  52. exists = EmField(name)
  53. except EmComponentNotExistError:
  54. values = {
  55. 'name': name,
  56. 'fieldgroup_id': fieldgroup.uid,
  57. 'fieldtype': fieldtype.name,
  58. 'optional': optional,
  59. 'internal': internal,
  60. 'rel_to_type_id': rel_to_type_id,
  61. 'rel_field_id': rel_field_id,
  62. 'icon': icon
  63. }
  64. created_field = super(EmField, cls).create(**values)
  65. if created_field:
  66. # The field was created, we then add its column in the corresponding class' table
  67. is_field_column_added = created_field.add_field_column_to_class_table()
  68. if is_field_column_added:
  69. return created_field
  70. exists = created_field
  71. return exists
  72. ## @brief Delete a field if it's not linked
  73. # @return bool : True if deleted False if deletion aborded
  74. # @todo Check if unconditionnal deletion is correct
  75. def delete(self):
  76. dbe = self.__class__.getDbE()
  77. class_table = sql.Table(self.get_class_table(), sqlutils.meta(dbe))
  78. field_col = sql.Column(self.name)
  79. ddl = DropColumn(class_table, field_col)
  80. sqlutils.ddl_execute(ddl, self.__class__.getDbE())
  81. return super(EmField, self).delete()
  82. ## add_field_column_to_class_table (Function)
  83. #
  84. # Adds a column representing the field in its class' table
  85. #
  86. # @param emField EmField: the object representing the field
  87. # @return True in case of success, False if not
  88. def add_field_column_to_class_table(self):
  89. field_type = "%s%s" % (EditorialModel.fieldtypes.get_field_type(self.fieldtype).sql_column(), " DEFAULT 0" if self.fieldtype=='integer' else '')
  90. field_uid = self.uid
  91. field_class_table = self.get_class_table()
  92. return SqlWrapper().addColumn(tname=field_class_table, colname=self.name, coltype=field_type)
  93. ## get_class_table (Function)
  94. #
  95. # Gets the name of the table of the class corresponding to the field
  96. #
  97. # @return Name of the table
  98. def get_class_table(self):
  99. return self._get_class_tableDb()
  100. ## _get_class_tableDb (Function)
  101. #
  102. # Executes a request to the database to get the name of the table in which to add the field
  103. #
  104. # @return Name of the table
  105. def _get_class_tableDb(self):
  106. dbe = self.getDbE()
  107. conn = dbe.connect()
  108. fieldtable = sql.Table(EmField.table, sqlutils.meta(dbe))
  109. fieldgrouptable = sql.Table(EmFieldGroup.table, sqlutils.meta(dbe))
  110. reqGetClassId = fieldgrouptable.select().where(fieldgrouptable.c.uid == self.fieldgroup_id)
  111. resGetClassId = conn.execute(reqGetClassId).fetchall()
  112. class_id = dict(zip(resGetClassId[0].keys(), resGetClassId[0]))['class_id']
  113. classtable = sql.Table(EmClass.table, sqlutils.meta(dbe))
  114. reqGetClassTable = classtable.select().where(classtable.c.uid == class_id)
  115. resGetClassTable = conn.execute(reqGetClassTable).fetchall()
  116. classTableName = dict(zip(resGetClassTable[0].keys(), resGetClassTable[0]))['name']
  117. return classTableName