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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #-*- coding: utf-8 -*-
  2. from EditorialModel.components import EmComponent, EmComponentNotExistError
  3. from Database import sqlutils
  4. import sqlalchemy as sql
  5. import EditorialModel
  6. """Represent one data for a lodel2 document"""
  7. class EmField(EmComponent):
  8. table = 'em_field'
  9. def __init__(self, id_or_name):
  10. """ Instanciate an EmField with data fetched from db
  11. @param id_or_name str|int: Identify the EmType by name or by global_id
  12. @throw TypeError
  13. @see EmComponent::__init__()
  14. """
  15. self.table = EmField.table
  16. super(EmField, self).__init__(id_or_name)
  17. @staticmethod
  18. def create(name, em_fieldgroup, em_fieldtype, optional=True, internal=False):
  19. """ Create a new EmField and instanciate it
  20. @static
  21. @param name str: The name of the new Type
  22. @param em_fieldgroup EmFieldGroup: The new field will belong to this fieldgroup
  23. @param ml_repr MlString|None: Multilingual representation of the type
  24. @param ml_help MlString|None: Multilingual help for the type
  25. @param The string|None: filename of the icon
  26. @param optional bool: Is the field optional ?
  27. @param internal bool: Is the field internal?
  28. @throw TypeError
  29. @see EmComponent::__init__()
  30. @staticmethod
  31. """
  32. try:
  33. exists = EmField(name)
  34. except EmComponentNotExistError:
  35. values = {
  36. 'uid' : None,
  37. 'name' : name,
  38. 'fieldgroup_id' : em_fieldgroup.id,
  39. 'fieldtype' : em_fieldtype.name,
  40. 'optional' : 1 if optional else 0,
  41. 'internal' : 1 if internal else 0,
  42. }
  43. return EmField._createDb(values)
  44. return exists
  45. @classmethod
  46. def _createDb(c, values):
  47. dbe = c.getDbE()
  48. #Create a new uid
  49. uids = sql.Table('uids', sqlutils.meta(dbe))
  50. conn = dbe.connect()
  51. req = uids.insert(values={'table':c.table})
  52. res = conn.execute(req)
  53. values['uid'] = res.inserted_primary_key
  54. req = sql.Table(c.table, sqlutils.meta(dbe)).insert(values=values)
  55. res = conn.execute(req)
  56. conn.close()
  57. return EmField(values['name'])
  58. """ Use dictionary (from database) to populate the object
  59. """
  60. def populate(self):
  61. row = super(EmField, self).populate()
  62. self.em_fieldgroup = EditorialModel.fieldgroups.EmFieldGroup(int(row.fieldgroup_id))
  63. self.em_fieldtype = EditorialModel.fieldtypes.get_field_type(row.fieldtype)
  64. self.optional = True if row.optional == 1 else False;
  65. self.internal = True if row.internal == 1 else False;
  66. self.icon = row.icon
  67. self.rel_to_type_id = EditorialModel.fieldtypes.EmFieldType(int(row.rel_to_type_id)) if row.rel_to_type_id else None
  68. self.rel_field_id = EmField(int(row.rel_field_id)) if row.rel_field_id else None
  69. def save(self):
  70. # should not be here, but cannot see how to do this
  71. if self.name is None:
  72. self.populate()
  73. values = {
  74. 'fieldgroup_id' : self.em_fieldgroup.id,
  75. 'fieldtype' : self.em_fieldtype.name,
  76. 'optional' : 1 if self.optional else 0,
  77. 'internal' : 1 if self.internal else 0,
  78. 'icon' : self.icon,
  79. 'rel_to_type_id' : self.rel_to_type_id.id if self.rel_to_type_id is not None else None,
  80. 'rel_field_id' : self.rel_field_id.id if self.rel_field_id is not None else None
  81. }
  82. return super(EmField, self).save(values)