當前位置: 首頁>>代碼示例>>Python>>正文


Python ThreatDAO.ThreatDAO類代碼示例

本文整理匯總了Python中cairis.data.ThreatDAO.ThreatDAO的典型用法代碼示例。如果您正苦於以下問題:Python ThreatDAO類的具體用法?Python ThreatDAO怎麽用?Python ThreatDAO使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了ThreatDAO類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get

 def get(self):
   session_id = get_session_id(session, request)
   dao = ThreatDAO(session_id)
   objts = dao.get_threats_summary()
   dao.close()
   resp = make_response(json_serialize(objts, session_id=session_id))
   resp.headers['Content-Type'] = "application/json"
   return resp
開發者ID:failys,項目名稱:cairis,代碼行數:8,代碼來源:ThreatController.py

示例2: delete

  def delete(self, name):
    session_id = get_session_id(session, request)

    dao = ThreatDAO(session_id)
    dao.delete_threat(name=name)
    dao.close()

    resp_dict = {'message': 'Threat successfully deleted'}
    resp = make_response(json_serialize(resp_dict), OK)
    resp.headers['Content-type'] = 'application/json'
    return resp
開發者ID:failys,項目名稱:cairis,代碼行數:11,代碼來源:ThreatController.py

示例3: post

    def post(self):
        session_id = get_session_id(session, request)

        dao = ThreatDAO(session_id)
        new_threat = dao.from_json(request)
        threat_id = dao.add_threat(new_threat)
        dao.close()

        resp_dict = {'message': 'Threat successfully added', 'threat_id': threat_id}
        resp = make_response(json_serialize(resp_dict), httplib.OK)
        resp.contenttype = 'application/json'
        return resp
開發者ID:RachelLar,項目名稱:cairis_update,代碼行數:12,代碼來源:ThreatController.py

示例4: get_threatened_assets

    def get_threatened_assets(self, threat_name, environment_name):
        """
        :type threat_name: str
        :type environment_name: str
        :rtype: list[Asset]
        """
        threat_dao = ThreatDAO(self.session_id)

        try:
            found_threat = threat_dao.get_threat_by_name(threat_name)
            threat_id = found_threat.theId
        except ObjectNotFoundHTTPError as ex:
            self.close()
            raise ex
        except ARMHTTPError as ex:
            self.close()
            raise ex

        environment_dao = EnvironmentDAO(self.session_id)
        try:
            found_environment = environment_dao.get_environment_by_name(environment_name)
            environment_id = found_environment.theId
        except ObjectNotFoundHTTPError as ex:
            self.close()
            raise ex
        except ARMHTTPError as ex:
            self.close()
            raise ex

        try:
            threatened_assets = self.db_proxy.threatenedAssets(threat_id, environment_id)
        except DatabaseProxyException as ex:
            self.close()
            raise ARMHTTPError(ex)
        except ARMException as ex:
            self.close()
            raise ARMHTTPError(ex)

        return threatened_assets
開發者ID:InvalidToken,項目名稱:CAIRIS,代碼行數:39,代碼來源:AssetDAO.py

示例5: put

    def put(self, name):
        session_id = get_session_id(session, request)

        dao = ThreatDAO(session_id)
        req = dao.from_json(request)
        dao.update_threat(req, name=name)
        dao.close()

        resp_dict = {'message': 'Threat successfully updated'}
        resp = make_response(json_serialize(resp_dict), httplib.OK)
        resp.headers['Content-type'] = 'application/json'
        return resp
開發者ID:RachelLar,項目名稱:cairis_update,代碼行數:12,代碼來源:ThreatController.py


注:本文中的cairis.data.ThreatDAO.ThreatDAO類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。