Compare commits

..

2 Commits

Author SHA1 Message Date
Cayo Puigdefabregas bed40d3ee0 fix get_hid 2024-11-20 18:41:59 +01:00
Cayo Puigdefabregas 9553ed6a4c fix component empty 2024-11-20 18:35:27 +01:00
2 changed files with 13 additions and 13 deletions

View File

@ -83,7 +83,7 @@ class Build:
def get_hid(self, snapshot):
try:
self.inxi = json.loads(self.json["inxi"])
self.inxi = json.loads(self.json["data"]["inxi"])
except Exception:
logger.error("No inxi in snapshot %s", self.uuid)
return ""

View File

@ -54,7 +54,7 @@ class ParseSnapshot:
}
def set_computer(self):
machine = get_inxi_key(self.inxi, 'Machine')
machine = get_inxi_key(self.inxi, 'Machine') or []
for m in machine:
system = get_inxi(m, "System")
if system:
@ -80,7 +80,7 @@ class ParseSnapshot:
self.get_battery()
def get_mother_board(self):
machine = get_inxi_key(self.inxi, 'Machine')
machine = get_inxi_key(self.inxi, 'Machine') or []
mb = {"type": "Motherboard",}
for m in machine:
bios_date = get_inxi(m, "date")
@ -102,7 +102,7 @@ class ParseSnapshot:
self.components.append(mb)
def get_ram_slots(self, mb):
memory = get_inxi_key(self.inxi, 'Memory')
memory = get_inxi_key(self.inxi, 'Memory') or []
for m in memory:
slots = get_inxi(m, "slots")
if not slots:
@ -113,7 +113,7 @@ class ParseSnapshot:
def get_cpu(self):
cpu = get_inxi_key(self.inxi, 'CPU')
cpu = get_inxi_key(self.inxi, 'CPU') or []
cp = {"type": "Processor"}
vulnerabilities = []
for c in cpu:
@ -158,7 +158,7 @@ class ParseSnapshot:
def get_ram(self):
memory = get_inxi_key(self.inxi, 'Memory')
memory = get_inxi_key(self.inxi, 'Memory') or []
mem = {"type": "RamModule"}
for m in memory:
@ -180,7 +180,7 @@ class ParseSnapshot:
self.components.append(mem)
def get_graphic(self):
graphics = get_inxi_key(self.inxi, 'Graphics')
graphics = get_inxi_key(self.inxi, 'Graphics') or []
for c in graphics:
if not get_inxi(c, "Device") or not get_inxi(c, "vendor"):
@ -199,7 +199,7 @@ class ParseSnapshot:
)
def get_battery(self):
bats = get_inxi_key(self.inxi, 'Battery')
bats = get_inxi_key(self.inxi, 'Battery') or []
for b in bats:
self.components.append(
{
@ -213,7 +213,7 @@ class ParseSnapshot:
)
def get_memory_video(self, c):
memory = get_inxi_key(self.inxi, 'Memory')
memory = get_inxi_key(self.inxi, 'Memory') or []
for m in memory:
igpu = get_inxi(m, "igpu")
@ -226,7 +226,7 @@ class ParseSnapshot:
return self.default
def get_data_storage(self):
hdds= get_inxi_key(self.inxi, 'Drives')
hdds= get_inxi_key(self.inxi, 'Drives') or []
for d in hdds:
usb = get_inxi(d, "type")
if usb == "USB":
@ -277,7 +277,7 @@ class ParseSnapshot:
return []
def get_networks(self):
nets = get_inxi_key(self.inxi, "Network")
nets = get_inxi_key(self.inxi, "Network") or []
networks = [(nets[i], nets[i + 1]) for i in range(0, len(nets) - 1, 2)]
for n, iface in networks:
@ -306,7 +306,7 @@ class ParseSnapshot:
)
def get_sound_card(self):
audio = get_inxi_key(self.inxi, "Audio")
audio = get_inxi_key(self.inxi, "Audio") or []
for c in audio:
model = get_inxi(c, "Device")
@ -323,7 +323,7 @@ class ParseSnapshot:
)
def get_display(self):
graphics = get_inxi_key(self.inxi, "Graphics")
graphics = get_inxi_key(self.inxi, "Graphics") or []
for c in graphics:
if not get_inxi(c, "Monitor"):
continue