Python Eve:文档级验证

时间:2018-01-19 12:21:31

标签: validation eve cerberus

我们已经使用了相当多的字段级验证,它非常棒且功能强大。但有时候,文档本身只有通过评估多个字段才有效。更改任何涉及的字段必须触发验证。

我们现在所做的是将验证应用于所涉及的每个字段 - 在POST上多次运行验证。

有没有办法将验证规则应用于文档本身?

e.g。让我们说some_thing有两个字段,验证考虑两个字段。如果其中任何一个发生变化,我们必须对另一个进行验证。

这有效......

验证器(为简洁起见而简化):

DOMAIN = {
  some_thing: {
    schema: {
      field1: {
        'type': 'string',
        'custom_validation': True
      },
      field1: {
        'type': 'string',
        'custom_validation': True
      }
    }
  }
}

然后是模式定义:

def _validate_custom_validation(self, custom_validation):
    f1 = self.document.get('field1')
    f2 = self.document.get('field2')

  if custom_validation and not is_validate(f1, f2):
    self._error(resource, "validation failed...")

但我们想做这样的事情:

验证器

DOMAIN = {
  some_thing: {
    'custom_validation': True,
    schema: {
      field1: {
        'type': 'string'
      },
      field1: {
        'type': 'string'
      }
    }
  }
}

然后是模式定义:

beautiful_branch

这可能吗?

1 个答案:

答案 0 :(得分:1)

您可以覆盖主要验证方法,使其首先检查标准规则,然后检查架构级别规则:

class validator_decorator(Validator):

def validate(self, document, schema=None, update=False, normalize=True):
    super(validator_decorator, self).validate(document, schema=schema, update=update, normalize=normalize)

    def validate_schema_rule(rule, document):
        validator = self.__get_rule_handler('validate', rule)
        validator(self.schema, document)

    schema_rules = app.config['DOMAIN'][self.resource].get('validation')
    if schema_rules:
        for rule in schema_rules:
            validate_schema_rule(rule, document)

    return not bool(self._errors)

此验证器允许您执行类似的操作

'users': {
    'validation': ['validator_name'],
    'schema': ...    
}

当然,您需要实现validator_name,方法与documantation says相同-在validateator_decorator类中