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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #-*- coding: utf-8 -*-
  2. import importlib
  3. from EditorialModel.components import EmComponent
  4. from EditorialModel.exceptions import EmComponentCheckError
  5. import EditorialModel
  6. import EditorialModel.fieldtypes
  7. from django.db import models
  8. ## EmField (Class)
  9. #
  10. # Represents one data for a lodel2 document
  11. class EmField(EmComponent):
  12. ranked_in = 'fieldgroup_id'
  13. ftype = None
  14. help = 'Default help text'
  15. ## Instanciate a new EmField
  16. # @todo define and test type for icon and fieldtype
  17. # @warning nullable == True by default
  18. def __init__(self, model, uid, name, fieldgroup_id, optional=False, internal=False, rel_field_id=None, icon='0', string=None, help_text=None, date_update=None, date_create=None, rank=None, nullable = True, default = None, uniq = False, **kwargs):
  19. if self.ftype == None:
  20. raise NotImplementedError("Trying to instanciate an EmField and not one of the fieldtypes child classes")
  21. self.fieldgroup_id = fieldgroup_id
  22. self.check_type('fieldgroup_id', int)
  23. self.optional = optional
  24. self.check_type('optional', bool)
  25. self.internal = internal
  26. self.check_type('internal', bool)
  27. self.rel_field_id = rel_field_id
  28. self.check_type('rel_field_id', (int, type(None)))
  29. self.icon = icon
  30. #Field type elements
  31. self.nullable = nullable
  32. self.default = default
  33. self.uniq = uniq
  34. self.options = kwargs
  35. super(EmField, self).__init__(model=model, uid=uid, name=name, string=string, help_text=help_text, date_update=date_update, date_create=date_create, rank=rank)
  36. @staticmethod
  37. ## @brief Return an EmField subclass given a wanted field type
  38. # @return An EmField subclass
  39. # @throw When not found
  40. # @see EmField::fieldtypes()
  41. def get_field_class(ftype, **kwargs):
  42. ftype_module = importlib.import_module('EditorialModel.fieldtypes.%s'%ftype)
  43. return ftype_module.fclass
  44. @staticmethod
  45. ## @brief Return the list of allowed field type
  46. def fieldtypes_list():
  47. return [ f for f in EditorialModel.fieldtypes.__all__ if f != '__init__' ]
  48. ## @brief Abstract method that should return a validation function
  49. # @param raise_e Exception : if not valid raise this exception
  50. # @param ret_valid : if valid return this value
  51. # @param ret_invalid : if not valid return this value
  52. def validation_function(self, raise_e = None, ret_valid = None, ret_invalid = None):
  53. if self.__class__ == EmField:
  54. raise NotImplementedError("Abstract method")
  55. if raise_e is None and ret_valid is None:
  56. raise AttributeError("Behavior doesn't allows to return a valid validation function")
  57. return False
  58. ## @brief Return the list of relation fields for a rel_to_type
  59. # @return None if the field is not a rel_to_type else return a list of EmField
  60. def rel_to_type_fields(self):
  61. if not self.rel_to_type_id:
  62. return None
  63. return [ f for f in self.model.components(EmField) if f.rel_field_id == self.uid ]
  64. ## Check if the EmField is valid
  65. # @return True if valid False if not
  66. def check(self):
  67. super(EmField, self).check()
  68. em_fieldgroup = self.model.component(self.fieldgroup_id)
  69. if not em_fieldgroup:
  70. raise EmComponentCheckError("fieldgroup_id contains a non existing uid : '%d'" % self.fieldgroup_id)
  71. if not isinstance(em_fieldgroup, EditorialModel.fieldgroups.EmFieldGroup):
  72. raise EmComponentCheckError("fieldgroup_id contains an uid from a component that is not an EmFieldGroup but a %s" % str(type(em_fieldgroup)))
  73. ## @brief Delete a field if it's not linked
  74. # @return bool : True if deleted False if deletion aborded
  75. # @todo Check if unconditionnal deletion is correct
  76. def delete_check(self):
  77. return True