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.

reference.py 1.3KB

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. from lodel.leapi.datahandlers.field_data_handler import FieldDataHandler, FieldValidationError
  3. from lodel.editorial_model.components import EmClass
  4. class Reference(FieldDataHandler):
  5. ## @brief Instanciation
  6. # @param allowed_classes list | None : list of allowed em classes if None no restriction
  7. # @param internal bool : if False, the field is not internal
  8. # @param **kwargs : other arguments
  9. def __init__(self, allowed_classes = None, internal=False, **kwargs):
  10. self.__allowed_classes = None if allowed_classes is None else set(allowed_classes)
  11. super().__init__(internal=internal, **kwargs)
  12. ## @brief Check value
  13. # @param value *
  14. # @return tuple(value, exception)
  15. def _check_data_value(self, value):
  16. if isinstance(value, EmClass):
  17. value = [value]
  18. for elt in value:
  19. if not issubclass(elt.__class__, EmClass):
  20. return None, FieldValidationError("Some elements of this references are not EmClass instances")
  21. if self.__allowed_classes is not None:
  22. if not isinstance(elt, self.__allowed_classes):
  23. return None, FieldValidationError("Some element of this references are not valids (don't fit with allowed_classes")
  24. return value