|
@@ -0,0 +1,42 @@
|
|
1
|
+#-*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+import sys
|
|
4
|
+
|
|
5
|
+from lodel.context import LodelContext
|
|
6
|
+LodelContext.expose_modules(globals(), {
|
|
7
|
+ 'lodel.exceptions': ['LodelException', 'LodelExceptions',
|
|
8
|
+ 'LodelFatalError', 'FieldValidationError'],
|
|
9
|
+ 'lodel.validator.validator': ['Validator', 'ValidationError']})
|
|
10
|
+
|
|
11
|
+## @package lodel.DhOptions.validator Lodel2 DhOptions validators/cast module
|
|
12
|
+#
|
|
13
|
+# Validator are registered in the DhOptionValidator class.
|
|
14
|
+# @note to get a list of registered default validators just run
|
|
15
|
+# <pre>$ python scripts/DhOptions_validator.py</pre>
|
|
16
|
+
|
|
17
|
+##@brief Exception class that should be raised when a validation fails
|
|
18
|
+class DhOptionValidationError(ValidationError):
|
|
19
|
+ pass
|
|
20
|
+
|
|
21
|
+##@brief Handles DhOptions validators
|
|
22
|
+#
|
|
23
|
+# Class instance are callable objects that takes a value argument (the value to validate). It raises
|
|
24
|
+# a DhOptionsValidationError if validation fails, else it returns a properly
|
|
25
|
+# casted value.
|
|
26
|
+#@todo implement an IP validator and use it in multisite confspec
|
|
27
|
+class DhOptionValidator(Validator):
|
|
28
|
+
|
|
29
|
+ ##@brief Instanciate a validator
|
|
30
|
+ #@param name str : validator name
|
|
31
|
+ #@param none_is_valid bool : if True None will be validated
|
|
32
|
+ #@param **kwargs : more arguement for the validator
|
|
33
|
+ def __init__(self, name, none_is_valid = False, **kwargs):
|
|
34
|
+ super().__init__(name, none_is_valid = False, **kwargs)
|
|
35
|
+
|
|
36
|
+ ##@brief Call the validator
|
|
37
|
+ # @param value *
|
|
38
|
+ # @return properly casted value
|
|
39
|
+ # @throw DhOptionsValidationError
|
|
40
|
+ def __call__(self, value):
|
|
41
|
+ super().__call__(value)
|
|
42
|
+
|