123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import csv
- import os
- import re
- import datetime
- DIR_WORK = "./"
- LIST_BAD_ADAPTER = ['Wireless', 'Bluetooth', 'Wireless', 'WiFi',
- 'Kaspersky', 'VirtualBox', 'TAP-Windows',
- 'Wintun', '802.11', 'VMware', 'VPN', 'Wi-Fi',
- '1394', 'Mobile']
- # Количетсво интерфейсов по умолчанию
- COUNT_INTERFACE = 1
- def check_correct_controller(name):
- return any(ext not in name for ext in LIST_BAD_ADAPTER)
- class ObjectReady:
- def get_len_dict(self):
- return len(self.__dict__)
- def get_paths():
- list_path = []
- for root, _, files in os.walk(DIR_WORK):
- list_path += [
- F"{root}/{file}" for file in files if file.split('.')[-1] == 'csv' and "result" not in file]
- return list_path
- def convert_mb_to_gb(val):
- numbers = int(''.join([x for x in val if x.isdigit()]))
- return str(round(numbers/1024, 1))+' GB'
- def get_ser_motherboard(row):
- if len(row) > 0:
- if row[6] not in ['To be filled by O.E.M.', 'Default string']:
- return row[6]
- else:
- return None
- else:
- return None
- def get_data_from_file(path, obj):
- global COUNT_INTERFACE
- with open(path, 'r', encoding='utf-16') as file:
- cs = csv.reader(file, delimiter=',')
- next(cs)
- line_info_computers = next(cs)
- obj.os = line_info_computers[7]
- obj.cpu = line_info_computers[13]
- obj.ram = convert_mb_to_gb(line_info_computers[14])
- obj.ip1 = None
- obj.mac1 = None
- count_interface = 0
- for x in cs:
- if x[0] == '6200':
- obj.motherboard = get_ser_motherboard(x)
- if x[0] == '2600' and check_correct_controller(x[3]) and len(x) > 2:
- setattr(obj, F'ip{count_interface}', x[6].split(' ')[0])
- setattr(obj, F'mac{count_interface}', x[-3])
- count_interface += 1
- # Увеличиваем значение если количестов интерфейсов больше в этой строке
- obj.count_interface = count_interface
- if count_interface > COUNT_INTERFACE:
- COUNT_INTERFACE = count_interface
- file.close()
- def get_ready_information():
- err_file = open(
- F"Error_file-{datetime.datetime.today().strftime('%Y-%m-%d-%H.%M.%S')}", "w")
- list_objects = []
- for path in get_paths():
- obj = ObjectReady()
- obj.frame = path.split('/')[-2]
- obj.cabinet = re.findall(
- r"\/([\w+?\ ?[а-яА-Я]+\ ?|\w+?\ ?[a-zA-Z]+\ ?|\d+])[\.|\,]", path)[-1]
- try:
- get_data_from_file(path, obj)
- except UnicodeDecodeError as ude:
- err_file.write(F"{path} --> {ude}\n")
- except StopIteration as si:
- err_file.write(F"{path} --> Пустой файл или тмпо того\n")
- list_objects.append(obj)
- return list_objects
- def create_csv(list_obj):
- namefile = F"result-{datetime.datetime.today().strftime('%Y-%m-%d-%H.%M.%S')}"
- with open(F"{namefile}.csv", 'w', newline='') as f:
- header_csv = F"frame;cabinet;os;motherboard;cpu;ram{''.join([F';ip{i+1};mac{i+1}' for i in range(COUNT_INTERFACE)])}\n"
- f.write(header_csv)
- for obj in list_obj:
- dic = obj.__dict__
- try:
- row_interface = ';'.join([F'{dic[F"ip{i}"]};{dic[F"mac{i}"]}' for i in range(obj.count_interface)])
- f.write(F'"{dic["frame"]}";"{dic["cabinet"]}";"{dic["os"]}";"{dic["motherboard"]}";"{dic["cpu"]}";"{dic["ram"]}";{row_interface}\n')
- except AttributeError:
- f.write(F'"{obj.frame}";"{obj.cabinet}"\n')
- if __name__ == '__main__':
- ready_information = get_ready_information()
- create_csv(ready_information)
|