mirror of
git://git.acid.vegas/IRCP.git
synced 2024-11-22 16:06:41 +00:00
57 lines
1.6 KiB
Python
57 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
# ircp logs parser - developed by acidvegas in python (https://git.acid.vegas/ircp)
|
|
|
|
import json
|
|
import os
|
|
import sys
|
|
|
|
def parse(option, data, raw=True):
|
|
if not raw:
|
|
data = ' '.join(line.split()[3:])
|
|
if data[:1] == ':':
|
|
data = data[1:]
|
|
print(data.replace(option, f'\033[31m{option}\033[0m'))
|
|
return data
|
|
|
|
# Main
|
|
if len(sys.argv) >= 2:
|
|
option = sys.argv[1]
|
|
raw = True
|
|
if len(sys.argv) == 3:
|
|
if sys.argv[2] == 'clean':
|
|
raw = False
|
|
logs = os.listdir('logs')
|
|
found = list()
|
|
for log in logs:
|
|
with open('logs/'+log) as logfile:
|
|
try:
|
|
data = json.loads(logfile.read())
|
|
except:
|
|
print('error: failed to load ' + log)
|
|
break
|
|
if option in data:
|
|
data = data[option]
|
|
if type(data) == str:
|
|
found.append(parse(option, data, raw))
|
|
elif type(data) == list:
|
|
for item in data:
|
|
found.append(option, parse(item, raw))
|
|
elif type(data) == bool:
|
|
found.append(parse(option, str(item), raw))
|
|
else:
|
|
for item in data:
|
|
_data = data[item]
|
|
if type(_data) == str and option in _data:
|
|
found.append(parse(option, item, raw))
|
|
elif type(_data) == list:
|
|
for _item in _data:
|
|
if option in _item:
|
|
found.append(parse(option, _item, raw))
|
|
elif type(_data) == bool:
|
|
found.append(parse(option, str(_item), raw))
|
|
if found:
|
|
print(f'\nfound {len(found)} results in {len(logs)} logs')
|
|
else:
|
|
print('usage: python parser.py <field> [clean]\n')
|
|
print(' <field> may be any item in the snapshots (001, NOTICE, 464, etc) or a string to search')
|
|
print(' [clean] may be optionally used to display a cleaner output') |