Code now resides in common.serialization in the form of two new functions: yaml_load and yaml_dump. Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
34 lines
823 B
Python
34 lines
823 B
Python
from __future__ import unicode_literals
|
|
|
|
import yaml
|
|
|
|
from django.core.exceptions import ValidationError
|
|
from django.utils.deconstruct import deconstructible
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.common.serialization import yaml_load
|
|
|
|
|
|
@deconstructible
|
|
class YAMLValidator(object):
|
|
"""
|
|
Validates that the input is YAML compliant.
|
|
"""
|
|
def __call__(self, value):
|
|
value = value.strip()
|
|
try:
|
|
yaml_load(stream=value)
|
|
except yaml.error.YAMLError:
|
|
raise ValidationError(
|
|
_('Enter a valid YAML value.'),
|
|
code='invalid'
|
|
)
|
|
|
|
def __eq__(self, other):
|
|
return (
|
|
isinstance(other, YAMLValidator)
|
|
)
|
|
|
|
def __ne__(self, other):
|
|
return not (self == other)
|