heat.engine.constraint.common_constraints

Source code for heat.engine.constraint.common_constraints

#
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

import croniter
import eventlet
import netaddr
import pytz
import six

from oslo_utils import netutils
from oslo_utils import timeutils

from heat.common.i18n import _
from heat.common import netutils as heat_netutils
from heat.engine import constraints


[docs]class TestConstraintDelay(constraints.BaseCustomConstraint):
[docs] def validate_with_client(self, client, value): eventlet.sleep(value)
[docs]class IPConstraint(constraints.BaseCustomConstraint):
[docs] def validate(self, value, context, template=None): self._error_message = 'Invalid IP address' return netutils.is_valid_ip(value)
[docs]class MACConstraint(constraints.BaseCustomConstraint):
[docs] def validate(self, value, context, template=None): self._error_message = 'Invalid MAC address.' return netaddr.valid_mac(value)
[docs]class DNSNameConstraint(constraints.BaseCustomConstraint):
[docs] def validate(self, value, context): try: heat_netutils.validate_dns_format(value) except ValueError as ex: self._error_message = ("'%(value)s' not in valid format." " Reason: %(reason)s") % { 'value': value, 'reason': six.text_type(ex)} return False return True
[docs]class RelativeDNSNameConstraint(DNSNameConstraint):
[docs] def validate(self, value, context): if not value: return True if value.endswith('.'): self._error_message = _("'%s' is a FQDN. It should be a " "relative domain name.") % value return False length = len(value) if length > heat_netutils.FQDN_MAX_LEN - 3: self._error_message = _("'%(value)s' contains '%(length)s' " "characters. Adding a domain name will " "cause it to exceed the maximum length " "of a FQDN of '%(max_len)s'.") % { "value": value, "length": length, "max_len": heat_netutils.FQDN_MAX_LEN} return False return super(RelativeDNSNameConstraint, self).validate(value, context)
[docs]class DNSDomainConstraint(DNSNameConstraint):
[docs] def validate(self, value, context): if not value: return True if not super(DNSDomainConstraint, self).validate(value, context): return False if not value.endswith('.'): self._error_message = ("'%s' must end with '.'.") % value return False return True
[docs]class CIDRConstraint(constraints.BaseCustomConstraint): def _validate_whitespace(self, data): self._error_message = ("Invalid net cidr '%s' contains " "whitespace" % data) if len(data.split()) > 1: return False return True
[docs] def validate(self, value, context, template=None): try: netaddr.IPNetwork(value) return self._validate_whitespace(value) except Exception as ex: self._error_message = 'Invalid net cidr %s ' % six.text_type(ex) return False
[docs]class ISO8601Constraint(constraints.BaseCustomConstraint):
[docs] def validate(self, value, context, template=None): try: timeutils.parse_isotime(value) except Exception: return False else: return True
[docs]class CRONExpressionConstraint(constraints.BaseCustomConstraint):
[docs] def validate(self, value, context, template=None): if not value: return True try: croniter.croniter(value) return True except Exception as ex: self._error_message = _( 'Invalid CRON expression: %s') % six.text_type(ex) return False
[docs]class TimezoneConstraint(constraints.BaseCustomConstraint):
[docs] def validate(self, value, context, template=None): if not value: return True try: pytz.timezone(value) return True except Exception as ex: self._error_message = _( 'Invalid timezone: %s') % six.text_type(ex) return False
[docs]class ExpirationConstraint(constraints.BaseCustomConstraint):
[docs] def validate(self, value, context): if not value: return True try: expiration_tz = timeutils.parse_isotime(value.strip()) expiration = timeutils.normalize_time(expiration_tz) if expiration > timeutils.utcnow(): return True raise ValueError(_('Expiration time is out of date.')) except Exception as ex: self._error_message = (_( 'Expiration {0} is invalid: {1}').format(value, six.text_type(ex))) return False
Creative Commons Attribution 3.0 License

Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.