2017-02-10 22:35:02 +01:00
|
|
|
"""STIX 2.0 Relationship Objects."""
|
|
|
|
|
2017-09-01 22:37:49 +02:00
|
|
|
from collections import OrderedDict
|
2017-08-14 14:27:49 +02:00
|
|
|
|
2018-07-10 21:27:05 +02:00
|
|
|
from ..core import STIXRelationshipObject
|
2018-07-13 17:10:05 +02:00
|
|
|
from ..properties import (
|
|
|
|
BooleanProperty, IDProperty, IntegerProperty, ListProperty,
|
|
|
|
ReferenceProperty, StringProperty, TimestampProperty, TypeProperty,
|
|
|
|
)
|
2018-06-26 18:23:53 +02:00
|
|
|
from ..utils import NOW
|
|
|
|
from .common import ExternalReference, GranularMarking
|
2017-10-03 21:01:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Relationship(STIXRelationshipObject):
|
2018-02-21 22:42:25 +01:00
|
|
|
"""For more detailed information on this object's properties, see
|
|
|
|
`the STIX 2.0 specification <http://docs.oasis-open.org/cti/stix/v2.0/cs01/part2-stix-objects/stix-v2.0-cs01-part2-stix-objects.html#_Toc496714340>`__.
|
|
|
|
"""
|
2017-02-10 22:35:02 +01:00
|
|
|
|
|
|
|
_type = 'relationship'
|
2018-06-30 00:38:04 +02:00
|
|
|
_properties = OrderedDict([
|
2017-08-14 14:27:49 +02:00
|
|
|
('type', TypeProperty(_type)),
|
2019-06-14 23:58:51 +02:00
|
|
|
('id', IDProperty(_type, spec_version='2.0')),
|
|
|
|
('created_by_ref', ReferenceProperty(type='identity', spec_version='2.0')),
|
2017-08-14 14:27:49 +02:00
|
|
|
('created', TimestampProperty(default=lambda: NOW, precision='millisecond')),
|
|
|
|
('modified', TimestampProperty(default=lambda: NOW, precision='millisecond')),
|
|
|
|
('relationship_type', StringProperty(required=True)),
|
|
|
|
('description', StringProperty()),
|
2019-06-14 23:58:51 +02:00
|
|
|
('source_ref', ReferenceProperty(spec_version='2.0', required=True)),
|
|
|
|
('target_ref', ReferenceProperty(spec_version='2.0', required=True)),
|
2018-04-16 20:37:07 +02:00
|
|
|
('revoked', BooleanProperty(default=lambda: False)),
|
2017-08-14 14:27:49 +02:00
|
|
|
('labels', ListProperty(StringProperty)),
|
|
|
|
('external_references', ListProperty(ExternalReference)),
|
2019-06-14 23:58:51 +02:00
|
|
|
('object_marking_refs', ListProperty(ReferenceProperty(type='marking-definition', spec_version='2.0'))),
|
2017-08-14 14:27:49 +02:00
|
|
|
('granular_markings', ListProperty(GranularMarking)),
|
|
|
|
])
|
2017-02-10 22:35:02 +01:00
|
|
|
|
|
|
|
# Explicitly define the first three kwargs to make readable Relationship declarations.
|
2018-07-13 17:10:05 +02:00
|
|
|
def __init__(
|
|
|
|
self, source_ref=None, relationship_type=None,
|
|
|
|
target_ref=None, **kwargs
|
|
|
|
):
|
2017-02-10 22:35:02 +01:00
|
|
|
# Allow (source_ref, relationship_type, target_ref) as positional args.
|
|
|
|
if source_ref and not kwargs.get('source_ref'):
|
|
|
|
kwargs['source_ref'] = source_ref
|
|
|
|
if relationship_type and not kwargs.get('relationship_type'):
|
|
|
|
kwargs['relationship_type'] = relationship_type
|
|
|
|
if target_ref and not kwargs.get('target_ref'):
|
|
|
|
kwargs['target_ref'] = target_ref
|
|
|
|
|
2017-03-31 21:52:27 +02:00
|
|
|
super(Relationship, self).__init__(**kwargs)
|
2017-02-10 22:35:02 +01:00
|
|
|
|
|
|
|
|
2017-10-03 21:01:55 +02:00
|
|
|
class Sighting(STIXRelationshipObject):
|
2018-02-21 22:42:25 +01:00
|
|
|
"""For more detailed information on this object's properties, see
|
|
|
|
`the STIX 2.0 specification <http://docs.oasis-open.org/cti/stix/v2.0/cs01/part2-stix-objects/stix-v2.0-cs01-part2-stix-objects.html#_Toc496714343>`__.
|
|
|
|
"""
|
|
|
|
|
2017-03-31 21:52:27 +02:00
|
|
|
_type = 'sighting'
|
2018-06-30 00:38:04 +02:00
|
|
|
_properties = OrderedDict([
|
2017-08-14 14:27:49 +02:00
|
|
|
('type', TypeProperty(_type)),
|
2019-06-14 23:58:51 +02:00
|
|
|
('id', IDProperty(_type, spec_version='2.0')),
|
|
|
|
('created_by_ref', ReferenceProperty(type='identity', spec_version='2.0')),
|
2017-08-14 14:27:49 +02:00
|
|
|
('created', TimestampProperty(default=lambda: NOW, precision='millisecond')),
|
|
|
|
('modified', TimestampProperty(default=lambda: NOW, precision='millisecond')),
|
|
|
|
('first_seen', TimestampProperty()),
|
|
|
|
('last_seen', TimestampProperty()),
|
2018-10-17 13:47:25 +02:00
|
|
|
('count', IntegerProperty(min=0, max=999999999)),
|
2019-06-14 23:58:51 +02:00
|
|
|
('sighting_of_ref', ReferenceProperty(spec_version='2.0', required=True)),
|
|
|
|
('observed_data_refs', ListProperty(ReferenceProperty(type='observed-data', spec_version='2.0'))),
|
|
|
|
('where_sighted_refs', ListProperty(ReferenceProperty(type='identity', spec_version='2.0'))),
|
2018-04-16 20:37:07 +02:00
|
|
|
('summary', BooleanProperty(default=lambda: False)),
|
|
|
|
('revoked', BooleanProperty(default=lambda: False)),
|
2017-08-14 14:27:49 +02:00
|
|
|
('labels', ListProperty(StringProperty)),
|
|
|
|
('external_references', ListProperty(ExternalReference)),
|
2019-06-14 23:58:51 +02:00
|
|
|
('object_marking_refs', ListProperty(ReferenceProperty(type='marking-definition', spec_version='2.0'))),
|
2017-08-14 14:27:49 +02:00
|
|
|
('granular_markings', ListProperty(GranularMarking)),
|
|
|
|
])
|
2017-03-31 21:52:27 +02:00
|
|
|
|
|
|
|
# Explicitly define the first kwargs to make readable Sighting declarations.
|
|
|
|
def __init__(self, sighting_of_ref=None, **kwargs):
|
|
|
|
# Allow sighting_of_ref as a positional arg.
|
|
|
|
if sighting_of_ref and not kwargs.get('sighting_of_ref'):
|
|
|
|
kwargs['sighting_of_ref'] = sighting_of_ref
|
|
|
|
|
|
|
|
super(Sighting, self).__init__(**kwargs)
|