2018-02-08 00:15:58 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2018-02-10 01:38:06 +00:00
|
|
|
import xml.dom.minidom
|
|
|
|
|
2018-02-08 00:15:58 +00:00
|
|
|
from defusedxml import ElementTree
|
|
|
|
|
2018-02-11 00:48:47 +00:00
|
|
|
from .. import dumpmgr
|
2018-02-08 23:17:08 +00:00
|
|
|
|
2018-02-08 00:15:58 +00:00
|
|
|
|
|
|
|
class TclResult:
|
2018-02-11 00:56:56 +00:00
|
|
|
def __init__(self, xmlstr: str):
|
|
|
|
self.raw_xml = xmlstr
|
2018-02-08 23:17:08 +00:00
|
|
|
self.dumper = dumpmgr.DumpMgr()
|
2018-02-11 00:56:56 +00:00
|
|
|
self.dumper.write_dump(xmlstr)
|
2018-02-08 23:17:08 +00:00
|
|
|
|
|
|
|
def delete_dump(self):
|
|
|
|
self.dumper.delete_last_dump()
|
2018-02-08 00:15:58 +00:00
|
|
|
|
2018-02-10 01:38:06 +00:00
|
|
|
def pretty_xml(self):
|
|
|
|
"""Return prettified input XML with ``xml.dom.minidom``."""
|
|
|
|
mdx = xml.dom.minidom.parseString(self.raw_xml)
|
|
|
|
return mdx.toprettyxml(indent=" ")
|
|
|
|
|
2018-02-08 00:15:58 +00:00
|
|
|
class CheckResult(TclResult):
|
2018-02-11 00:56:56 +00:00
|
|
|
def __init__(self, xmlstr: str):
|
|
|
|
super().__init__(xmlstr)
|
|
|
|
root = ElementTree.fromstring(xmlstr)
|
2018-02-08 00:15:58 +00:00
|
|
|
self.curef = root.find("CUREF").text
|
|
|
|
self.fvver = root.find("VERSION").find("FV").text
|
|
|
|
self.tvver = root.find("VERSION").find("TV").text
|
|
|
|
self.fw_id = root.find("FIRMWARE").find("FW_ID").text
|
|
|
|
fileinfo = root.find("FIRMWARE").find("FILESET").find("FILE")
|
|
|
|
self.fileid = fileinfo.find("FILE_ID").text
|
|
|
|
self.filename = fileinfo.find("FILENAME").text
|
|
|
|
self.filesize = fileinfo.find("SIZE").text
|
|
|
|
self.filehash = fileinfo.find("CHECKSUM").text
|
2018-02-10 01:38:27 +00:00
|
|
|
|
|
|
|
class DownloadResult(TclResult):
|
2018-02-11 00:56:56 +00:00
|
|
|
def __init__(self, xmlstr: str):
|
|
|
|
super().__init__(xmlstr)
|
|
|
|
root = ElementTree.fromstring(xmlstr)
|
2018-02-10 01:38:27 +00:00
|
|
|
file = root.find("FILE_LIST").find("FILE")
|
|
|
|
self.fileid = file.find("FILE_ID").text
|
|
|
|
self.fileurl = file.find("DOWNLOAD_URL").text
|
|
|
|
s3_fileurl_node = file.find("S3_DOWNLOAD_URL")
|
|
|
|
self.s3_fileurl = None
|
2018-02-10 02:11:53 +00:00
|
|
|
if s3_fileurl_node is not None:
|
2018-02-10 01:38:27 +00:00
|
|
|
self.s3_fileurl = s3_fileurl_node.text
|
|
|
|
slave_list = root.find("SLAVE_LIST").findall("SLAVE")
|
|
|
|
enc_list = root.find("SLAVE_LIST").findall("ENCRYPT_SLAVE")
|
|
|
|
s3_slave_list = root.find("SLAVE_LIST").findall("S3_SLAVE")
|
|
|
|
self.slaves = [s.text for s in slave_list]
|
|
|
|
self.encslaves = [s.text for s in enc_list]
|
|
|
|
self.s3_slaves = [s.text for s in s3_slave_list]
|
2018-02-10 02:12:24 +00:00
|
|
|
|
|
|
|
class ChecksumResult(TclResult):
|
2018-02-11 00:56:56 +00:00
|
|
|
def __init__(self, xmlstr: str):
|
|
|
|
super().__init__(xmlstr)
|
|
|
|
root = ElementTree.fromstring(xmlstr)
|
2018-02-10 02:12:24 +00:00
|
|
|
file = root.find("FILE_CHECKSUM_LIST").find("FILE")
|
|
|
|
self.file_addr = file.find("ADDRESS").text
|
|
|
|
self.sha1_enc_footer = file.find("ENCRYPT_FOOTER").text
|
|
|
|
self.sha1_footer = file.find("FOOTER").text
|
|
|
|
self.sha1_body = file.find("BODY").text
|
2018-02-10 02:30:10 +00:00
|
|
|
|
|
|
|
class EncryptHeaderResult(TclResult):
|
|
|
|
def __init__(self, contents: str):
|
|
|
|
self.rawdata = contents
|