fix: [interoperability] Added missing `interoperability` param to Property classes that need it
parent
276410537d
commit
625576622f
|
@ -120,9 +120,11 @@ class _STIXBase(collections.abc.Mapping):
|
|||
self.__now = get_timestamp()
|
||||
|
||||
self.__INTEROPERABILITY_types = (
|
||||
stix2.properties.EmbeddedObjectProperty, stix2.properties.IDProperty,
|
||||
stix2.properties.EmbeddedObjectProperty, stix2.properties.EnumProperty,
|
||||
stix2.properties.ExtensionsProperty, stix2.properties.DictionaryProperty,
|
||||
stix2.properties.HashesProperty, stix2.properties.IDProperty,
|
||||
stix2.properties.ListProperty, stix2.properties.OpenVocabProperty,
|
||||
stix2.properties.ReferenceProperty
|
||||
stix2.properties.ReferenceProperty, stix2.properties.SelectorProperty,
|
||||
)
|
||||
|
||||
custom_props = kwargs.pop('custom_properties', {})
|
||||
|
@ -208,7 +210,7 @@ class _STIXBase(collections.abc.Mapping):
|
|||
prop = defined_properties.get(prop_name)
|
||||
if prop:
|
||||
temp_custom = self._check_property(
|
||||
prop_name, prop, setting_kwargs, allow_custom, interoperability
|
||||
prop_name, prop, setting_kwargs, allow_custom, interoperability,
|
||||
)
|
||||
|
||||
has_custom = has_custom or temp_custom
|
||||
|
|
|
@ -22,7 +22,7 @@ from .utils import (
|
|||
from .version import DEFAULT_VERSION
|
||||
|
||||
ID_REGEX_interoperability = re.compile(
|
||||
r"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"
|
||||
r"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$",
|
||||
)
|
||||
TYPE_REGEX = re.compile(r'^-?[a-z0-9]+(-[a-z0-9]+)*-?$')
|
||||
TYPE_21_REGEX = re.compile(r'^([a-z][a-z0-9]*)+([a-z0-9-]+)*-?$')
|
||||
|
@ -54,7 +54,7 @@ def _check_uuid(uuid_str, spec_version, interoperability):
|
|||
return ok
|
||||
|
||||
|
||||
def _validate_id(id_, spec_version, required_prefix, interoperability):
|
||||
def _validate_id(id_, spec_version, required_prefix, interoperability=False):
|
||||
"""
|
||||
Check the STIX identifier for correctness, raise an exception if there are
|
||||
errors.
|
||||
|
@ -176,7 +176,7 @@ class Property(object):
|
|||
|
||||
"""
|
||||
|
||||
def _default_clean(self, value, allow_custom=False):
|
||||
def _default_clean(self, value, allow_custom=False, interoperability=False):
|
||||
if value != self._fixed_value:
|
||||
raise ValueError("must equal '{}'.".format(self._fixed_value))
|
||||
return value, False
|
||||
|
@ -230,7 +230,7 @@ class ListProperty(Property):
|
|||
|
||||
super(ListProperty, self).__init__(**kwargs)
|
||||
|
||||
def clean(self, value, allow_custom, interoperability):
|
||||
def clean(self, value, allow_custom, interoperability=False):
|
||||
try:
|
||||
iter(value)
|
||||
except TypeError:
|
||||
|
@ -317,7 +317,7 @@ class IntegerProperty(Property):
|
|||
self.max = max
|
||||
super(IntegerProperty, self).__init__(**kwargs)
|
||||
|
||||
def clean(self, value, allow_custom=False):
|
||||
def clean(self, value, allow_custom=False, interoperability=False):
|
||||
try:
|
||||
value = int(value)
|
||||
except Exception:
|
||||
|
@ -397,7 +397,7 @@ class DictionaryProperty(Property):
|
|||
self.spec_version = spec_version
|
||||
super(DictionaryProperty, self).__init__(**kwargs)
|
||||
|
||||
def clean(self, value, allow_custom=False):
|
||||
def clean(self, value, allow_custom=False, interoperability=False):
|
||||
try:
|
||||
dictified = _get_dict(value)
|
||||
except ValueError:
|
||||
|
@ -440,7 +440,7 @@ class HashesProperty(DictionaryProperty):
|
|||
if alg:
|
||||
self.__alg_to_spec_name[alg] = spec_hash_name
|
||||
|
||||
def clean(self, value, allow_custom):
|
||||
def clean(self, value, allow_custom, interoperability=False):
|
||||
# ignore the has_custom return value here; there is no customization
|
||||
# of DictionaryProperties.
|
||||
clean_dict, _ = super().clean(value, allow_custom)
|
||||
|
@ -547,7 +547,7 @@ class ReferenceProperty(Property):
|
|||
|
||||
super(ReferenceProperty, self).__init__(**kwargs)
|
||||
|
||||
def clean(self, value, allow_custom, interoperability):
|
||||
def clean(self, value, allow_custom, interoperability=False):
|
||||
if isinstance(value, _STIXBase):
|
||||
value = value.id
|
||||
value = str(value)
|
||||
|
@ -625,7 +625,7 @@ SELECTOR_REGEX = re.compile(r"^([a-z0-9_-]{3,250}(\.(\[\d+\]|[a-z0-9_-]{1,250}))
|
|||
|
||||
class SelectorProperty(Property):
|
||||
|
||||
def clean(self, value, allow_custom=False):
|
||||
def clean(self, value, allow_custom=False, interoperability=False):
|
||||
if not SELECTOR_REGEX.match(value):
|
||||
raise ValueError("must adhere to selector syntax.")
|
||||
return value, False
|
||||
|
@ -646,7 +646,7 @@ class EmbeddedObjectProperty(Property):
|
|||
self.type = type
|
||||
super(EmbeddedObjectProperty, self).__init__(**kwargs)
|
||||
|
||||
def clean(self, value, allow_custom, interoperability):
|
||||
def clean(self, value, allow_custom, interoperability=False):
|
||||
if isinstance(value, dict):
|
||||
value = self.type(allow_custom=allow_custom, **value)
|
||||
elif not isinstance(value, self.type):
|
||||
|
@ -674,8 +674,8 @@ class EnumProperty(StringProperty):
|
|||
self.allowed = allowed
|
||||
super(EnumProperty, self).__init__(**kwargs)
|
||||
|
||||
def clean(self, value, allow_custom):
|
||||
cleaned_value, _ = super(EnumProperty, self).clean(value, allow_custom)
|
||||
def clean(self, value, allow_custom, interoperability=False):
|
||||
cleaned_value, _ = super(EnumProperty, self).clean(value, allow_custom, interoperability)
|
||||
|
||||
if cleaned_value not in self.allowed:
|
||||
raise ValueError("value '{}' is not valid for this enumeration.".format(cleaned_value))
|
||||
|
@ -695,9 +695,9 @@ class OpenVocabProperty(StringProperty):
|
|||
allowed = [allowed]
|
||||
self.allowed = allowed
|
||||
|
||||
def clean(self, value, allow_custom, interoperability):
|
||||
def clean(self, value, allow_custom, interoperability=False):
|
||||
cleaned_value, _ = super(OpenVocabProperty, self).clean(
|
||||
value, allow_custom, interoperability
|
||||
value, allow_custom, interoperability,
|
||||
)
|
||||
|
||||
# Disabled: it was decided that enforcing this is too strict (might
|
||||
|
@ -776,7 +776,7 @@ class ExtensionsProperty(DictionaryProperty):
|
|||
def __init__(self, spec_version=DEFAULT_VERSION, required=False):
|
||||
super(ExtensionsProperty, self).__init__(spec_version=spec_version, required=required)
|
||||
|
||||
def clean(self, value, allow_custom):
|
||||
def clean(self, value, allow_custom, interoperability=False):
|
||||
try:
|
||||
dictified = _get_dict(value)
|
||||
# get deep copy since we are going modify the dict and might
|
||||
|
@ -791,7 +791,7 @@ class ExtensionsProperty(DictionaryProperty):
|
|||
cls = class_for_type(key, self.spec_version, "extensions")
|
||||
if cls:
|
||||
if isinstance(subvalue, dict):
|
||||
ext = cls(allow_custom=allow_custom, **subvalue)
|
||||
ext = cls(allow_custom=allow_custom, interoperability=interoperability, **subvalue)
|
||||
elif isinstance(subvalue, cls):
|
||||
# If already an instance of the registered class, assume
|
||||
# it's valid
|
||||
|
@ -842,7 +842,7 @@ class STIXObjectProperty(Property):
|
|||
self.spec_version = spec_version
|
||||
super(STIXObjectProperty, self).__init__(*args, **kwargs)
|
||||
|
||||
def clean(self, value, allow_custom, interoperability):
|
||||
def clean(self, value, allow_custom, interoperability=False):
|
||||
# Any STIX Object (SDO, SRO, or Marking Definition) can be added to
|
||||
# a bundle with no further checks.
|
||||
stix2_classes = {'_DomainObject', '_RelationshipObject', 'MarkingDefinition'}
|
||||
|
|
Loading…
Reference in New Issue