|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
import re
|
|
|
|
|
|
|
|
from django.core.validators import RegexValidator
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from rest_framework.validators import (
|
|
|
|
UniqueTogetherValidator, ValidationError
|
|
|
|
)
|
|
|
|
from rest_framework import serializers
|
|
|
|
|
|
|
|
from common.utils.strings import no_special_chars
|
|
|
|
|
|
|
|
|
|
|
|
alphanumeric = RegexValidator(r'^[0-9a-zA-Z_@\-\.]*$', _('Special char not allowed'))
|
|
|
|
|
|
|
|
|
|
|
|
class ProjectUniqueValidator(UniqueTogetherValidator):
|
|
|
|
def __call__(self, attrs, serializer):
|
|
|
|
try:
|
|
|
|
super().__call__(attrs, serializer)
|
|
|
|
except ValidationError as e:
|
|
|
|
errors = {}
|
|
|
|
for field in self.fields:
|
|
|
|
if field == "org_id":
|
|
|
|
continue
|
|
|
|
errors[field] = _('This field must be unique.')
|
|
|
|
raise ValidationError(errors)
|
|
|
|
|
|
|
|
|
|
|
|
class NoSpecialChars:
|
|
|
|
def __call__(self, value):
|
|
|
|
if not no_special_chars(value):
|
|
|
|
raise serializers.ValidationError(
|
|
|
|
_("Should not contains special characters")
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class PhoneValidator:
|
|
|
|
pattern = re.compile(r"^1[356789]\d{9}$")
|
|
|
|
message = _('The mobile phone number format is incorrect')
|
|
|
|
|
|
|
|
def __call__(self, value):
|
|
|
|
if not self.pattern.match(value):
|
|
|
|
raise serializers.ValidationError(self.message)
|