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 4.5KB

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