Compare commits
2 Commits
a0276f439e
...
bed40d3ee0
Author | SHA1 | Date |
---|---|---|
Cayo Puigdefabregas | bed40d3ee0 | |
Cayo Puigdefabregas | 9553ed6a4c |
|
@ -83,7 +83,7 @@ class Build:
|
||||||
|
|
||||||
def get_hid(self, snapshot):
|
def get_hid(self, snapshot):
|
||||||
try:
|
try:
|
||||||
self.inxi = json.loads(self.json["inxi"])
|
self.inxi = json.loads(self.json["data"]["inxi"])
|
||||||
except Exception:
|
except Exception:
|
||||||
logger.error("No inxi in snapshot %s", self.uuid)
|
logger.error("No inxi in snapshot %s", self.uuid)
|
||||||
return ""
|
return ""
|
||||||
|
|
|
@ -54,7 +54,7 @@ class ParseSnapshot:
|
||||||
}
|
}
|
||||||
|
|
||||||
def set_computer(self):
|
def set_computer(self):
|
||||||
machine = get_inxi_key(self.inxi, 'Machine')
|
machine = get_inxi_key(self.inxi, 'Machine') or []
|
||||||
for m in machine:
|
for m in machine:
|
||||||
system = get_inxi(m, "System")
|
system = get_inxi(m, "System")
|
||||||
if system:
|
if system:
|
||||||
|
@ -80,7 +80,7 @@ class ParseSnapshot:
|
||||||
self.get_battery()
|
self.get_battery()
|
||||||
|
|
||||||
def get_mother_board(self):
|
def get_mother_board(self):
|
||||||
machine = get_inxi_key(self.inxi, 'Machine')
|
machine = get_inxi_key(self.inxi, 'Machine') or []
|
||||||
mb = {"type": "Motherboard",}
|
mb = {"type": "Motherboard",}
|
||||||
for m in machine:
|
for m in machine:
|
||||||
bios_date = get_inxi(m, "date")
|
bios_date = get_inxi(m, "date")
|
||||||
|
@ -102,7 +102,7 @@ class ParseSnapshot:
|
||||||
self.components.append(mb)
|
self.components.append(mb)
|
||||||
|
|
||||||
def get_ram_slots(self, 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:
|
for m in memory:
|
||||||
slots = get_inxi(m, "slots")
|
slots = get_inxi(m, "slots")
|
||||||
if not slots:
|
if not slots:
|
||||||
|
@ -113,7 +113,7 @@ class ParseSnapshot:
|
||||||
|
|
||||||
|
|
||||||
def get_cpu(self):
|
def get_cpu(self):
|
||||||
cpu = get_inxi_key(self.inxi, 'CPU')
|
cpu = get_inxi_key(self.inxi, 'CPU') or []
|
||||||
cp = {"type": "Processor"}
|
cp = {"type": "Processor"}
|
||||||
vulnerabilities = []
|
vulnerabilities = []
|
||||||
for c in cpu:
|
for c in cpu:
|
||||||
|
@ -158,7 +158,7 @@ class ParseSnapshot:
|
||||||
|
|
||||||
|
|
||||||
def get_ram(self):
|
def get_ram(self):
|
||||||
memory = get_inxi_key(self.inxi, 'Memory')
|
memory = get_inxi_key(self.inxi, 'Memory') or []
|
||||||
mem = {"type": "RamModule"}
|
mem = {"type": "RamModule"}
|
||||||
|
|
||||||
for m in memory:
|
for m in memory:
|
||||||
|
@ -180,7 +180,7 @@ class ParseSnapshot:
|
||||||
self.components.append(mem)
|
self.components.append(mem)
|
||||||
|
|
||||||
def get_graphic(self):
|
def get_graphic(self):
|
||||||
graphics = get_inxi_key(self.inxi, 'Graphics')
|
graphics = get_inxi_key(self.inxi, 'Graphics') or []
|
||||||
|
|
||||||
for c in graphics:
|
for c in graphics:
|
||||||
if not get_inxi(c, "Device") or not get_inxi(c, "vendor"):
|
if not get_inxi(c, "Device") or not get_inxi(c, "vendor"):
|
||||||
|
@ -199,7 +199,7 @@ class ParseSnapshot:
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_battery(self):
|
def get_battery(self):
|
||||||
bats = get_inxi_key(self.inxi, 'Battery')
|
bats = get_inxi_key(self.inxi, 'Battery') or []
|
||||||
for b in bats:
|
for b in bats:
|
||||||
self.components.append(
|
self.components.append(
|
||||||
{
|
{
|
||||||
|
@ -213,7 +213,7 @@ class ParseSnapshot:
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_memory_video(self, c):
|
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:
|
for m in memory:
|
||||||
igpu = get_inxi(m, "igpu")
|
igpu = get_inxi(m, "igpu")
|
||||||
|
@ -226,7 +226,7 @@ class ParseSnapshot:
|
||||||
return self.default
|
return self.default
|
||||||
|
|
||||||
def get_data_storage(self):
|
def get_data_storage(self):
|
||||||
hdds= get_inxi_key(self.inxi, 'Drives')
|
hdds= get_inxi_key(self.inxi, 'Drives') or []
|
||||||
for d in hdds:
|
for d in hdds:
|
||||||
usb = get_inxi(d, "type")
|
usb = get_inxi(d, "type")
|
||||||
if usb == "USB":
|
if usb == "USB":
|
||||||
|
@ -277,7 +277,7 @@ class ParseSnapshot:
|
||||||
return []
|
return []
|
||||||
|
|
||||||
def get_networks(self):
|
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)]
|
networks = [(nets[i], nets[i + 1]) for i in range(0, len(nets) - 1, 2)]
|
||||||
|
|
||||||
for n, iface in networks:
|
for n, iface in networks:
|
||||||
|
@ -306,7 +306,7 @@ class ParseSnapshot:
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_sound_card(self):
|
def get_sound_card(self):
|
||||||
audio = get_inxi_key(self.inxi, "Audio")
|
audio = get_inxi_key(self.inxi, "Audio") or []
|
||||||
|
|
||||||
for c in audio:
|
for c in audio:
|
||||||
model = get_inxi(c, "Device")
|
model = get_inxi(c, "Device")
|
||||||
|
@ -323,7 +323,7 @@ class ParseSnapshot:
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_display(self):
|
def get_display(self):
|
||||||
graphics = get_inxi_key(self.inxi, "Graphics")
|
graphics = get_inxi_key(self.inxi, "Graphics") or []
|
||||||
for c in graphics:
|
for c in graphics:
|
||||||
if not get_inxi(c, "Monitor"):
|
if not get_inxi(c, "Monitor"):
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue