当前位置: 首页>>代码示例>>Python>>正文


Python RequestObject.set_body方法代码示例

本文整理汇总了Python中threatconnect.RequestObject.RequestObject.set_body方法的典型用法代码示例。如果您正苦于以下问题:Python RequestObject.set_body方法的具体用法?Python RequestObject.set_body怎么用?Python RequestObject.set_body使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在threatconnect.RequestObject.RequestObject的用法示例。


在下文中一共展示了RequestObject.set_body方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: upload

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
    def upload(self, body):
        """ upload document  """
        if self._resource_type == ResourceType.DOCUMENTS:
            prop = self._resource_properties['document_upload']
        elif self._resource_type == ResourceType.SIGNATURES:
            prop = self._resource_properties['signature_upload']
        else:
            self._tc.tcl.error('Upload requested for wrong resource type.')
            raise AttributeError(ErrorCodes.e10330.value)

        ro = RequestObject()
        ro.set_body(body)
        ro.set_content_type('application/octet-stream')
        ro.set_description('upload document for "{0}"'.format(self._name))
        # determine whether the file contents exist using phase (not 100%)
        if self.phase == 1:
            ro.set_http_method(prop['http_method'])
        else:
            ro.set_http_method('PUT')
        ro.set_owner_allowed(prop['owner_allowed'])
        ro.set_request_uri(prop['uri'].format(self._id))
        ro.set_resource_pagination(prop['pagination'])
        ro.set_resource_type(self._resource_type)
        success_callback = lambda request, response: self.set_contents(request.body)
        ro.set_success_callback(success_callback)
        self._resource_container.add_commit_queue(self.id, ro)
开发者ID:madsc13ntist,项目名称:threatconnect-python,代码行数:28,代码来源:GroupObject.py

示例2: update_asset

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
 def update_asset(self, asset_id, asset_obj):
     """ add a asset to a victim """
     prop = self._resource_properties['asset_update']
     ro = RequestObject()
     ro.set_body(asset_obj.gen_body)
     ro.set_description('update asset type {0} with to {1}'.format(asset_obj.resource_type, self._name))
     ro.set_http_method(prop['http_method'])
     ro.set_owner_allowed(prop['owner_allowed'])
     ro.set_request_uri(prop['uri'].format(self._id, asset_obj.uri_attribute, asset_id))
     ro.set_resource_pagination(prop['pagination'])
     ro.set_resource_type(self._resource_type)
     self._resource_container.add_commit_queue(self.id, ro)
开发者ID:percipient,项目名称:threatconnect-python,代码行数:14,代码来源:VictimObject.py

示例3: update_attribute

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
    def update_attribute(self, attr_id, attr_value):
        """ update indicator attribute by id """
        prop = self._resource_properties['attribute_update']
        ro = RequestObject()
        ro.set_body(json.dumps({'value': attr_value}))
        ro.set_description('update attribute id {0} with value "{1}" on "{2}"'.format(
            attr_id, attr_value, self._name))
        ro.set_http_method(prop['http_method'])
        ro.set_owner_allowed(prop['owner_allowed'])
        ro.set_request_uri(prop['uri'].format(self._id, attr_id))
        ro.set_resource_pagination(prop['pagination'])
        ro.set_resource_type(self._resource_type)

        self._resource_container.add_commit_queue(self.id, ro)
开发者ID:madsc13ntist,项目名称:threatconnect-python,代码行数:16,代码来源:GroupObject.py

示例4: upload

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
    def upload(self, body):
        """ upload batch job  """
        prop = self._resource_properties['batch_job_upload']

        ro = RequestObject()
        ro.set_body(body)
        ro.set_content_type('application/octet-stream')
        ro.set_description('upload batch job for "{0}"'.format(self._id))
        ro.set_http_method(prop['http_method'])
        ro.set_owner_allowed(prop['owner_allowed'])
        ro.set_request_uri(prop['uri'].format(self._id))
        ro.set_resource_pagination(prop['pagination'])
        ro.set_resource_type(self._resource_type)
        ro.empty_payload()
        self._resource_container.add_commit_queue(self.id, ro)
开发者ID:madsc13ntist,项目名称:threatconnect-python,代码行数:17,代码来源:BatchJobObject.py

示例5: upload_request

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
def upload_request(self):
    """ """
    # build request object
    request_object = RequestObject(self._urd['name1'], self._urd['name2_method']())
    request_object.set_body(self._urd['body'])
    request_object.set_content_type(self._urd['content_type'])
    request_object.set_description(
        self._urd['description'].format(self._urd['identifier_method']()))
    request_object.set_http_method(self._urd['http_method'])
    request_object.set_request_uri(
        self._urd['request_uri_path'].format(self._urd['identifier_method']()))
    request_object.set_owner_allowed(self._urd['owner_allowed'])
    request_object.set_resource_pagination(self._urd['resource_pagination'])
    request_object.set_resource_type(self._urd['resource_type'])

    return request_object
开发者ID:tiatam010,项目名称:threatconnect-python,代码行数:18,代码来源:ResourceMethods.py

示例6: commit

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
    def commit(self):
        """ commit victim and related assets, associations """
        r_id = self.id
        ro = RequestObject()
        ro.set_body(self.gen_body)
        ro.set_resource_type(self.resource_type)
        prop = self._resource_properties['add']
        ro.set_description('adding batchjob')
        ro.set_http_method(prop['http_method'])
        ro.set_owner_allowed(prop['owner_allowed'])
        ro.set_request_uri(prop['uri'].format(self._id))
        ro.empty_payload()
        if self._phase == 1:
            # validate all required fields are present
            if self.validate:
                api_response = self._tc.api_request(ro)
                if api_response.headers['content-type'] == 'application/json':
                    api_response_dict = api_response.json()
                    if api_response_dict['status'] == 'Success':
                        r_id = api_response_dict['data']['batchId']
            else:
                self._tc.tcl.debug('Resource Object'.format(self))
                raise RuntimeError('Cannot commit incomplete resource object')

        for ro in self._resource_container.commit_queue(self.id):
            # if self.owner_name is not None:
            #     ro.set_owner(self.owner_name)

            # replace the id
            if self.id != r_id:
                request_uri = str(ro.request_uri.replace(str(self.id), str(r_id)))
                ro.set_request_uri(request_uri)
            self._tc.tcl.debug('Replacing {0} with {1}'.format(self.id, str(r_id)))
            self._tc.tcl.debug('RO {0}'.format(ro))

            api_response2 = self._tc.api_request(ro)
            if api_response2.headers['content-type'] == 'application/json':
                api_response_dict2 = api_response2.json()
                if api_response_dict2['status'] != 'Success':
                    self._tc.tcl.error('API Request Failure: [{0}]'.format(ro.description))

        self.set_id(r_id)

        self.set_phase(0)

        # return object
        return self
开发者ID:madsc13ntist,项目名称:threatconnect-python,代码行数:49,代码来源:BatchJobObject.py

示例7: add_attribute

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
 def add_attribute(self, attr_type, attr_value, attr_displayed='true'):
     """ add an attribute to a group """
     prop = self._resource_properties['attribute_add']
     ro = RequestObject()
     ro.set_body(json.dumps({
         'type': attr_type,
         'value': attr_value,
         'displayed': attr_displayed}))
     ro.set_description('add attribute type "{0}" with value "{1}" to "{2}"'.format(
         attr_type, attr_value, self._name))
     ro.set_http_method(prop['http_method'])
     ro.set_owner_allowed(prop['owner_allowed'])
     ro.set_request_uri(prop['uri'].format(self._id))
     ro.set_resource_pagination(prop['pagination'])
     ro.set_resource_type(self._resource_type)
     callback = lambda status: self.__add_attribute_failure(attr_type, attr_value)
     ro.set_failure_callback(callback)
     self._resource_container.add_commit_queue(self.id, ro)
     attribute = AttributeObject(self)
     attribute.set_type(attr_type)
     attribute.set_value(attr_value)
     attribute.set_displayed(attr_displayed)
     self._resource_obj.add_attribute(attribute)
开发者ID:madsc13ntist,项目名称:threatconnect-python,代码行数:25,代码来源:GroupObject.py

示例8: RequestObject

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
""" custom """
from examples.working_init import *
from threatconnect.RequestObject import RequestObject

""" Toggle the Boolean to enable specific examples """
enable_example1 = False
enable_example2 = False

if enable_example1:
    #
    # build DOCUMENT request object
    #
    ro = RequestObject()
    ro.set_http_method('POST')
    body = {'name': 'Raw Upload Example', 'fileName': 'raw_example.txt'}
    ro.set_body(json.dumps(body))
    ro.set_content_type('application/json')
    ro.set_owner('Example Community')
    ro.set_owner_allowed(True)
    ro.set_resource_pagination(False)
    ro.set_request_uri('/v2/groups/documents')

    # display request object parameters
    print(ro)

    #
    # retrieve and display the results
    #
    results = tc.api_request(ro)
    if results.headers['content-type'] == 'application/json':
        data = results.json()
开发者ID:madsc13ntist,项目名称:threatconnect-python,代码行数:33,代码来源:manual_commit.py

示例9: commit

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
    def commit(self):

        # phase 0 (no action) -> don't validate and don't POST group, only POST items in commit queue.
        # phase 1 (add) -> validate before POST group, only POST items in commit queue if group POST succeeded.
        # phase 2 (update) -> don't validate before PUT group, POST/PUT items in commit queue.

        """ commit group and related associations, attributes, security labels and tags """
        r_id = self.id
        ro = RequestObject()
        ro.set_body(self.gen_body)
        if self.owner_name is not None:
            ro.set_owner(self.owner_name)
        ro.set_resource_type(self.resource_type)
        if self.phase == 1:
            prop = self._resource_properties['add']
            ro.set_description('adding group "{0}".'.format(self._name))
            ro.set_http_method(prop['http_method'])
            ro.set_owner_allowed(prop['owner_allowed'])
            ro.set_request_uri(prop['uri'].format(self._id))
            ro.set_resource_pagination(prop['pagination'])
            if self.validate:
                api_response = self._tc.api_request(ro)
                if api_response.headers['content-type'] == 'application/json':
                    api_response_dict = api_response.json()
                    if api_response_dict['status'] == 'Success':
                        resource_key = ApiProperties.api_properties[self.resource_type.name]['resource_key']
                        r_id = api_response_dict['data'][resource_key]['id']
            else:
                self._tc.tcl.debug('Resource Object'.format(self))
                raise AttributeError(ErrorCodes.e10040.value)
        elif self.phase == 2:
            prop = self._resource_properties['update']
            ro.set_description('update group "{0}".'.format(self._name))
            ro.set_http_method(prop['http_method'])
            ro.set_owner_allowed(prop['owner_allowed'])
            ro.set_request_uri(prop['uri'].format(self._id))
            ro.set_resource_pagination(prop['pagination'])
            api_response = self._tc.api_request(ro)
            if api_response.headers['content-type'] == 'application/json':
                api_response_dict = api_response.json()
                if api_response_dict['status'] != 'Success':
                    self._tc.tcl.error('API Request Failure: [{0}]'.format(ro.description))

        # validate all required fields are present

        if r_id is not None:
            #
            # commit all associations, attributes, tags, etc
            #
            for ro in self._resource_container.commit_queue(self.id):
                if self.owner_name is not None:
                    ro.set_owner(self.owner_name)

                # replace the id
                if self.phase == 1 and self.id != r_id:
                    request_uri = str(ro.request_uri.replace(str(self.id), str(r_id)))
                    ro.set_request_uri(request_uri)
                    self._tc.tcl.debug('Replacing {0} with {1}'.format(self.id, str(r_id)))

                api_response2 = self._tc.api_request(ro)
                if 'content-type' in api_response2.headers:
                    if api_response2.headers['content-type'] == 'application/json':
                        api_response_dict2 = api_response2.json()
                        if api_response_dict2['status'] != 'Success':
                            self._tc.tcl.error('API Request Failure: [{0}]'.format(ro.description))
                        else:
                            if ro.success_callback is not None:
                                ro.success_callback(ro, api_response2)
                    elif api_response2.headers['content-type'] == 'application/octet-stream':
                        if api_response2.status_code in [200, 201, 202]:
                            self.set_contents(ro.body)
                            if ro.success_callback is not None:
                                ro.success_callback(ro, api_response2)
                else:
                    # upload PUT response
                    if api_response2.status_code in [200, 201, 202]:
                        self.set_contents(ro.body)
                        if ro.success_callback is not None:
                            ro.success_callback(ro, api_response2)

            # clear the commit queue
            self._resource_container.clear_commit_queue_id(self.id)

            self.set_id(r_id)

        # clear phase
        self.set_phase(0)

        if self._reload_attributes:
            self.load_attributes(automatically_reload=True)

        # return object
        return self
开发者ID:madsc13ntist,项目名称:threatconnect-python,代码行数:95,代码来源:GroupObject.py

示例10: commit

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
    def commit(self):
        """ commit victim and related assets, associations """
        r_id = self.id
        ro = RequestObject()
        ro.set_body(self.gen_body)
        if self.owner_name is not None:
            ro.set_owner(self.owner_name)
        ro.set_resource_type(self.resource_type)
        if self.phase == 1:
            prop = self._resource_properties['add']
            ro.set_description('adding group "{0}".'.format(self._name))
            ro.set_http_method(prop['http_method'])
            ro.set_owner_allowed(prop['owner_allowed'])
            ro.set_request_uri(prop['uri'].format(self._id))
            ro.set_resource_pagination(prop['pagination'])
            # validate all required fields are present
            if self.validate:
                api_response = self._tc.api_request(ro)
                if api_response.headers['content-type'] == 'application/json':
                    api_response_dict = api_response.json()
                    if api_response_dict['status'] == 'Success':
                        resource_key = ApiProperties.api_properties[self.resource_type.name]['resource_key']
                        r_id = api_response_dict['data'][resource_key]['id']
            else:
                self._tc.tcl.debug('Resource Object'.format(self))
                raise AttributeError(ErrorCodes.e10040.value)
        elif self.phase == 2:
            prop = self._resource_properties['update']
            ro.set_description('update indicator "{0}".'.format(self._name))
            ro.set_http_method(prop['http_method'])
            ro.set_owner_allowed(prop['owner_allowed'])
            ro.set_request_uri(prop['uri'].format(self._id))
            ro.set_resource_pagination(prop['pagination'])
            api_response = self._tc.api_request(ro)
            if api_response.headers['content-type'] == 'application/json':
                api_response_dict = api_response.json()
                if api_response_dict['status'] != 'Success':
                    self._tc.tcl.error('API Request Failure: [{0}]'.format(ro.description))

        # submit all attributes, tags or associations
        for ro in self._resource_container.commit_queue(self.id):
            # if self.owner_name is not None:
            #     ro.set_owner(self.owner_name)

            # replace the id
            if self.phase == 1 and self.id != r_id:
                request_uri = str(ro.request_uri.replace(str(self.id), str(r_id)))
                ro.set_request_uri(request_uri)
            self._tc.tcl.debug('Replacing {0} with {1}'.format(self.id, str(r_id)))
            self._tc.tcl.debug('RO {0}'.format(ro))

            api_response2 = self._tc.api_request(ro)
            if api_response2.headers['content-type'] == 'application/json':
                api_response_dict2 = api_response2.json()
                if api_response_dict2['status'] != 'Success':
                    self._tc.tcl.error('API Request Failure: [{0}]'.format(ro.description))

        self.set_id(r_id)

        self._resource_container.clear_commit_queue_id(self.id)

        self.set_phase(0)

        # return object
        return self
开发者ID:percipient,项目名称:threatconnect-python,代码行数:67,代码来源:VictimObject.py

示例11: commit

# 需要导入模块: from threatconnect.RequestObject import RequestObject [as 别名]
# 或者: from threatconnect.RequestObject.RequestObject import set_body [as 别名]
    def commit(self, owners=None):
        """ """
        self.tcl.debug('committing')
        # iterate through each object in COPY of resource objects
        for obj in list(self._objects):
            # time.sleep(.01)
            temporary_id = None
            new_id = None

            # BCS - is there a reason to use the resource type in the request object?
            # resource_type = obj.request_object.resource_type
            resource_type = obj.resource_type

            # special case for indicators
            if 500 <= resource_type.value <= 599:
                resource_type = get_resource_type(obj.get_indicator())

            # the body needs to be set right before the commit
            if obj.phase == 'add':
                self.tcl.debug('add')
                if obj.validate():
                    temporary_id = str(obj.get_id())
                    # add resource
                    obj.request_object.set_body(obj.get_json())
                    self._tc.api_build_request(self, obj.request_object, owners)
                    obj.set_phase('added')
                    new_id = str(obj.get_id())
                else:
                    print('Failed validation.')
                    print(obj)
            elif obj.phase == 'update':
                # switch any multiple resource request to single result request
                if resource_type.value % 10:
                    resource_type = ResourceType(resource_type.value - 5)
                properties = ResourceProperties[resource_type.name].value(
                    base_uri=self._tc.base_uri, http_method=PropertiesAction.PUT)

                if isinstance(properties, IndicatorProperties):
                    # request object for groups
                    request_object = RequestObject(resource_type.name, obj.get_indicator())
                    request_object.set_description(
                        'Update {0} indicator ({1}).'.format(
                            self._resource_type.name.lower(), obj.get_indicator()))
                    request_object.set_body(obj.get_json())
                    request_object.set_http_method(properties.http_method)
                    request_object.set_request_uri(
                        properties.put_path.format(
                            properties.resource_uri_attribute, obj.get_indicator()))
                    request_object.set_owner_allowed(True)
                    request_object.set_resource_pagination(False)
                    request_object.set_resource_type(resource_type)

                elif isinstance(properties, GroupProperties):
                    # request object for groups
                    request_object = RequestObject(resource_type.name, obj.get_id())
                    request_object.set_description(
                        'Update {0} resource object with id ({1}).'.format(
                            self._resource_type.name.lower(), obj.get_id()))
                    request_object.set_body(obj.get_json())
                    request_object.set_http_method(properties.http_method)
                    request_object.set_request_uri(properties.put_path.format(obj.get_id()))
                    request_object.set_owner_allowed(False)
                    request_object.set_resource_pagination(False)
                    request_object.set_resource_type(resource_type)

                # update resource
                self._tc.api_build_request(self, request_object)
                obj.set_phase('updated')
            elif obj.phase == 'delete':
                # switch any multiple resource request to single result request
                if resource_type.value % 10:
                    resource_type = ResourceType(resource_type.value - 5)
                properties = ResourceProperties[resource_type.name].value(
                    base_uri=self._tc.base_uri, http_method=PropertiesAction.DELETE)

                if isinstance(properties, IndicatorProperties):
                    request_object = RequestObject(resource_type.name, obj.get_indicator())
                    request_object.set_description(
                        'Deleting {0} indicator resource ({1}).'.format(
                            resource_type.name.lower(), obj.get_indicator()))
                    request_object.set_http_method(properties.http_method)
                    request_object.set_request_uri(
                        properties.delete_path.format(obj.get_indicator()))
                    request_object.set_owner_allowed(False)
                    request_object.set_resource_pagination(False)
                    request_object.set_resource_type(resource_type)
                elif isinstance(properties, GroupProperties):
                    request_object = RequestObject(resource_type.name, obj.get_id())
                    request_object.set_description(
                        'Deleting {0} resource object with id ({1}).'.format(
                            resource_type.name.lower(), obj.get_id()))
                    request_object.set_http_method(properties.http_method)
                    request_object.set_request_uri(properties.delete_path.format(obj.get_id()))
                    request_object.set_owner_allowed(False)
                    request_object.set_resource_pagination(False)
                    request_object.set_resource_type(resource_type)

                self._tc.api_build_request(self, request_object)
                self._objects.remove(obj)

#.........这里部分代码省略.........
开发者ID:tiatam010,项目名称:threatconnect-python,代码行数:103,代码来源:Resource.py


注:本文中的threatconnect.RequestObject.RequestObject.set_body方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。