X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/8f23bf641fb2260df1ee40e9d7d45dad9b116e1f..refs/heads/master:/services/vpn/host.py diff --git a/services/vpn/host.py b/services/vpn/host.py index d22de66..f7e1832 100644 --- a/services/vpn/host.py +++ b/services/vpn/host.py @@ -1,21 +1,16 @@ # vim: set encoding=utf-8 et sw=4 sts=4 : -from pymin.seqtools import Sequence +from pymin.validation import Item, Field, Any, HostName, \ + FullyQualifiedHostName, IPAddress, CIDR from pymin.service.util import DictComposedSubHandler __all__ = ('HostHandler',) -class Host(Sequence): - def __init__(self, vpn_src, ip, vpn_src_net, key): - self.name = vpn_src - self.ip = ip - self.src_net = vpn_src_net - self.pub_key = key - self._delete = False - - def as_tuple(self): - return(self.name, self.ip, self.src_net, self.pub_key) +class Host(Item): + name = Field(HostName(not_empty=True)) + address = Field(Any(HostName, FullyQualifiedHostName, IPAddress)) + subnet = Field(CIDR) class HostHandler(DictComposedSubHandler):