1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

64 lines
2.0 KiB
Python
Raw Normal View History

"""Parse Juniper XML Response to Structured Data."""
# Standard Library
from typing import Dict, Iterable
# Third Party
import xmltodict
from pydantic import ValidationError
# Project
from hyperglass.log import log
from hyperglass.util import validation_error_message
2020-05-29 17:47:53 -07:00
from hyperglass.exceptions import ParsingError, ResponseEmpty
from hyperglass.configuration import params
from hyperglass.parsing.models.juniper import JuniperRoute
def parse_juniper(output: Iterable) -> Dict: # noqa: C901
"""Parse a Juniper BGP XML response."""
2020-05-29 17:47:53 -07:00
data = {}
2020-05-29 17:47:53 -07:00
for i, response in enumerate(output):
try:
2020-06-03 11:30:04 -07:00
parsed = xmltodict.parse(
response, force_list=("rt", "rt-entry", "community")
2020-06-03 11:30:04 -07:00
)
2020-05-29 17:47:53 -07:00
log.debug("Initially Parsed Response: \n{}", parsed)
2020-05-29 17:47:53 -07:00
if "rpc-reply" in parsed.keys():
parsed_base = parsed["rpc-reply"]["route-information"]
2020-05-29 17:47:53 -07:00
elif "route-information" in parsed.keys():
parsed_base = parsed["route-information"]
2020-05-29 17:47:53 -07:00
if "route-table" not in parsed_base:
2020-05-29 17:47:53 -07:00
raise ResponseEmpty(params.messages.no_output)
if "rt" not in parsed_base["route-table"]:
raise ResponseEmpty(params.messages.no_output)
parsed = parsed_base["route-table"]
2020-05-29 17:47:53 -07:00
validated = JuniperRoute(**parsed)
serialized = validated.serialize().export_dict()
if i == 0:
data.update(serialized)
else:
data["routes"].extend(serialized["routes"])
except xmltodict.expat.ExpatError as err:
log.critical(str(err))
raise ParsingError("Error parsing response data")
except KeyError as err:
log.critical(f"'{str(err)}' was not found in the response")
raise ParsingError("Error parsing response data")
except ValidationError as err:
log.critical(str(err))
raise ParsingError(validation_error_message(*err.errors()))
2020-05-29 17:47:53 -07:00
return data