modif. para uso de barras de progreso y tablas
sale modulo colorama, entra mod rich
This commit is contained in:
parent
814b40883f
commit
ebff4c2a74
0
__init__.py
Normal file
0
__init__.py
Normal file
270
iplocate.py
270
iplocate.py
@ -7,9 +7,10 @@ import requests
|
||||
import re
|
||||
import configparser as cfg
|
||||
from os.path import isfile
|
||||
from json import loads
|
||||
from colorama import Fore, Back, Style
|
||||
import sql_alch
|
||||
from rich import box
|
||||
from rich.console import Console
|
||||
from rich.table import Table
|
||||
|
||||
selfpath = os.path.abspath(os.path.dirname(__file__))
|
||||
ownip = requests.get('https://ifconfig.me/').text
|
||||
@ -18,35 +19,9 @@ parser.read(f'{selfpath}/config.cfg')
|
||||
token = parser.get('iplocate','token')
|
||||
token = token.strip("'")
|
||||
muevelog = f'{selfpath}/muevelog.sh '
|
||||
console = Console()
|
||||
#tkn=True
|
||||
|
||||
# Colores
|
||||
co_rst = Style.RESET_ALL
|
||||
co_Blu = Fore.BLUE+Style.NORMAL
|
||||
co_BluD = Fore.BLUE+Style.DIM
|
||||
co_BluB = Fore.BLUE+Style.BRIGHT
|
||||
co_Red = Fore.RED+Style.NORMAL
|
||||
co_RedD = Fore.RED+Style.DIM
|
||||
co_RedB = Fore.RED+Style.BRIGHT
|
||||
co_Grn = Fore.GREEN+Style.NORMAL
|
||||
co_GrnD = Fore.GREEN+Style.DIM
|
||||
co_GrnB = Fore.GREEN+Style.BRIGHT
|
||||
co_Yel = Fore.YELLOW+Style.NORMAL
|
||||
co_YelD = Fore.YELLOW+Style.DIM
|
||||
co_YelB = Fore.YELLOW+Style.BRIGHT
|
||||
co_BluLWh = Fore.BLUE+Back.LIGHTWHITE_EX+Style.NORMAL
|
||||
co_BluLWhB = Fore.BLUE+Back.LIGHTWHITE_EX+Style.BRIGHT
|
||||
co_GrnMgnB = Fore.GREEN+Back.MAGENTA+Style.BRIGHT
|
||||
co_RedBluD = Fore.RED+Back.BLUE+Style.DIM
|
||||
co_LRedBleD = Fore.LIGHTRED_EX+Back.BLUE+Style.DIM
|
||||
co_BlkMgnB = Fore.BLACK+Back.MAGENTA+Style.BRIGHT
|
||||
co_BlkMgn = Fore.BLACK+Back.MAGENTA+Style.NORMAL
|
||||
co_LGrLBlk = Fore.LIGHTGREEN_EX+Back.LIGHTBLACK_EX
|
||||
co_RdYl = Fore.RED+Back.YELLOW+Style.NORMAL
|
||||
co_RdYlB = Fore.RED+Back.YELLOW+Style.BRIGHT
|
||||
co_BlkLBlkD = Fore.BLACK+Back.LIGHTBLACK_EX+Style.DIM
|
||||
co_BluLBlkD = Fore.BLUE+Back.LIGHTBLACK_EX+Style.DIM
|
||||
co_cuBlu = '\33[38;5;122m'
|
||||
# IP validate https://stackoverflow.com/questions/319279/how-to-validate-ip-address-in-python
|
||||
ip_regx = "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])$"
|
||||
|
||||
@ -54,97 +29,132 @@ def filtro_ip_propia(ip):
|
||||
return True if ip != ownip else False
|
||||
|
||||
|
||||
def consulta_ip(ip_consulta, tkn=True):
|
||||
if (re.search(ip_regx, ip_consulta)):
|
||||
match tkn:
|
||||
case True:
|
||||
consulta = f'https://ipinfo.io/{ip_consulta}{token}'
|
||||
info_ip = requests.get(consulta).text
|
||||
return loads(info_ip)
|
||||
case False:
|
||||
consulta = f'https://ipinfo.io/{ip_consulta}'
|
||||
info_ip = requests.get(consulta).text
|
||||
return loads(info_ip)
|
||||
case None:
|
||||
resp = sql_alch.consulta_db(ip_consulta)
|
||||
#print('consulta_ip :', resp)
|
||||
return resp
|
||||
# aqui va la consulta a base de datos
|
||||
|
||||
|
||||
def print_ipinfo(ip, tkn=True):
|
||||
if (re.search(ip_regx, ip)):
|
||||
ip_info = consulta_ip(ip, tkn)
|
||||
try:
|
||||
ip_info = sql_alch.consulta_ip(ip, tkn)
|
||||
except Exception as ex:
|
||||
print(f'Exception sql_alch.consulta_ip({ip})\n',ex)
|
||||
ip_info = None
|
||||
if isinstance(ip_info, dict):
|
||||
for llave, valor in ip_info.items():
|
||||
print(f'{co_YelB}{llave}\b\t{co_Blu}->{co_rst} {co_Grn}{valor}{co_rst}')
|
||||
print(f'{co_RedB}------------------------------', end='')
|
||||
print(f'--------------------------------{co_rst}')
|
||||
#print('es dict')
|
||||
print_tabla_ip(ip_info)
|
||||
elif isinstance(ip_info, list):
|
||||
#print('es lista')
|
||||
lista_visitas=[]
|
||||
contad=0
|
||||
for tupla in ip_info:
|
||||
visita = []
|
||||
if contad < 1:
|
||||
for ind, val in enumerate(tupla):
|
||||
if ind == 0:
|
||||
print(f'{co_BluD} _____________________________'
|
||||
f'________________________________{co_rst}')
|
||||
ip_dict = dict()
|
||||
for dato in str(val).split(';'):
|
||||
print(f'{co_Blu}| {co_BluB}{dato.split("=")[0].ljust(12)}'
|
||||
f'{co_Blu}| {co_rst}{dato.split("=")[1]}{co_rst}')
|
||||
print(f'{co_BluD} ________________________ __'
|
||||
f'_________ __________ _____________{co_rst}')
|
||||
print(f'{co_Blu}|{co_YelB} Fecha Visita {co_rst}'
|
||||
f'{co_Blu}|{co_YelB}Codigo html{co_Blu}|'
|
||||
f'{co_YelB} Metodo {co_rst}'
|
||||
f'{co_Blu}|{co_YelB} Request {co_rst}')
|
||||
print(f'{co_Blu}|------------------------|--'
|
||||
f'---------|----------|-------------{co_rst}')
|
||||
ip_dict[dato.split("=")[0]] = dato.split("=")[1]
|
||||
print_tabla_ip(ip_dict)
|
||||
else:
|
||||
# aqui modificar para representar las nuevas columnas de tabla visita
|
||||
codig = str(val).split(',')[2].split('=')[1].center(11)
|
||||
fecha = str(val).split(',')[3].split('=')[1].ljust(24)
|
||||
visita.append(str(val).split(',')[3].split('=')[1]) #.ljust(24))
|
||||
visita.append(str(val).split(',')[2].split('=')[1]) #.center(11))
|
||||
metodo = (str(val).split(',')[4].split('=')[1])
|
||||
metodo = '---'.center(10) if metodo == 'None' else metodo.center(10)
|
||||
request = str(val).split(',')[5].split('=')[1]
|
||||
request = request[:86]+'...' if len(request) > 90 else request
|
||||
metodo = '---' if metodo == 'None' else metodo #.center(10)
|
||||
visita.append(metodo)
|
||||
request = ''.join(str(val).split(',')[5].split('=')[1:])
|
||||
# configurar wrap en tabla
|
||||
#request = request[:86]+'...' if len(request) > 90 else request
|
||||
request = '---' if request == 'None' else request
|
||||
#if len(request) > 90:
|
||||
# request = request[:86]+'...'
|
||||
print(f'{co_Blu}|{co_Yel}{fecha}{co_rst}'
|
||||
f'{co_Blu}|{co_GrnB}{codig}'
|
||||
f'{co_Blu}|{co_Grn}{metodo}{co_rst}'
|
||||
f'{co_Blu}|{co_Grn}{request}{co_rst}')
|
||||
visita.append(request)
|
||||
else:
|
||||
for ind, val in enumerate(tupla):
|
||||
if ind > 0:
|
||||
# aqui modificar para representar las nuevas columnas de tabla visita
|
||||
codig = str(val).split(',')[2].split('=')[1].center(11)
|
||||
fecha = str(val).split(',')[3].split('=')[1].ljust(24)
|
||||
visita.append(str(val).split(',')[3].split('=')[1]) #.ljust(24)
|
||||
visita.append(str(val).split(',')[2].split('=')[1]) #.center(11)
|
||||
metodo = (str(val).split(',')[4].split('=')[1])
|
||||
metodo = '---'.center(10) if metodo == 'None' else metodo.center(10)
|
||||
request = str(val).split(',')[5].split('=')[1]
|
||||
request = request[:86]+'...' if len(request) > 90 else request
|
||||
metodo = '---' if metodo == 'None' else metodo #.center(10)
|
||||
visita.append(metodo)
|
||||
request = ''.join(str(val).split(',')[5].split('=')[1:])
|
||||
# configurar wrap en tabla
|
||||
#request = request[:86]+'...' if len(request) > 90 else request
|
||||
request = '---' if request == 'None' else request
|
||||
print(f'{co_Blu}|{co_Yel}{fecha}{co_rst}'
|
||||
f'{co_Blu}|{co_GrnB}{codig}'
|
||||
f'{co_Blu}|{co_Grn}{metodo}{co_rst}'
|
||||
f'{co_Blu}|{co_Grn}{request}{co_rst}')
|
||||
contad+=1
|
||||
print(f'{co_RedB}-------------------------------'
|
||||
f'-------------------------------{co_rst}')
|
||||
visita.append(request)
|
||||
lista_visitas.append(visita)
|
||||
contad+=1
|
||||
print_tabla_visita(lista_visitas)
|
||||
else:
|
||||
print('otra wea: ', type(ip_info))
|
||||
console.print(f'[red]Error type(ip_info) = [/red][magenta]{type(ip_info)}[/magenta][red]][/red]')
|
||||
else:
|
||||
ipr = ip.split('\n')[0]
|
||||
print(f'{co_Red}[{co_BlkMgn}{ipr}{co_rst}{co_Red}] no es una IP válida!{co_rst}')
|
||||
console.print(f'[red][[/red][magenta]{ipr}[/magenta][red]] no es una IP válida![/red]')
|
||||
|
||||
|
||||
def print_tabla_ip(ip_info):
|
||||
# color dodger_blue2
|
||||
tbl_ip = Table(box = box.ROUNDED, highlight=True, border_style="dim plum1")
|
||||
tbl_ip.add_column("IP", justify="left", style="bold #005fff", no_wrap=True)
|
||||
tbl_ip.add_column(f"{ip_info['ip']}", justify="left", style="#00ff5f")
|
||||
try:
|
||||
if 'host' in ip_info:
|
||||
tbl_ip.add_row("HOSTNAME", ip_info['host'])
|
||||
elif 'hostname' in ip_info:
|
||||
tbl_ip.add_row("HOSTNAME", ip_info['hostname'])
|
||||
if 'anycast' in ip_info:
|
||||
anycast = 'Si' if ip_info['anycast'] else 'No'
|
||||
tbl_ip.add_row("ANYCAST", anycast)
|
||||
if 'cuidad' in ip_info:
|
||||
tbl_ip.add_row("CUIDAD", ip_info['cuidad'])
|
||||
elif 'city' in ip_info:
|
||||
tbl_ip.add_row("CUIDAD", ip_info['city'])
|
||||
if 'region' in ip_info:
|
||||
tbl_ip.add_row("REGION", ip_info['region'])
|
||||
if 'pais' in ip_info:
|
||||
tbl_ip.add_row("PAIS", ip_info['pais'])
|
||||
elif 'country' in ip_info:
|
||||
tbl_ip.add_row("PAIS", ip_info['country'])
|
||||
if 'geoloc' in ip_info:
|
||||
tbl_ip.add_row("GEOLOC", ip_info['geoloc'])
|
||||
elif 'loc' in ip_info:
|
||||
tbl_ip.add_row("GEOLOC", ip_info['loc'])
|
||||
if 'organizacion' in ip_info:
|
||||
tbl_ip.add_row("ORGANIZ.", ip_info['organizacion'])
|
||||
elif 'org' in ip_info:
|
||||
tbl_ip.add_row("ORGANIZ.", ip_info['org'])
|
||||
if 'fecha_reg' in ip_info:
|
||||
tbl_ip.add_row("FECHA REG", ip_info['fecha_reg'])
|
||||
if 'tzone' in ip_info:
|
||||
tbl_ip.add_row("TimeZone", ip_info['tzone'])
|
||||
elif 'timezone' in ip_info:
|
||||
tbl_ip.add_row("TimeZone", ip_info['timezone'])
|
||||
if 'cod_post' in ip_info:
|
||||
tbl_ip.add_row("COD POST", ip_info['cod_post'])
|
||||
elif 'postal' in ip_info:
|
||||
tbl_ip.add_row("COD POST", ip_info['postal'])
|
||||
except Exception as ex:
|
||||
print('Exception ipl.print_tabla_ip(): ', ex)
|
||||
try:
|
||||
console.print(tbl_ip)
|
||||
except Exception as ex:
|
||||
print('Exception print(tabla_ip): ', ex)
|
||||
|
||||
def print_tabla_visita(lista_visitas):
|
||||
# color dodger_blue2
|
||||
#tbl_v = Table(title=f"[bold][yellow]Visitas registradas:[/yellow] [green]{lista_visitas[0]}[/bold][/green]",
|
||||
tbl_v = Table(box = box.ROUNDED, show_lines = False,row_styles=["dim", ""], border_style="dark_orange3")
|
||||
tbl_v.add_column("Fecha visita", justify="center", style="bright_yellow", no_wrap=True)
|
||||
tbl_v.add_column("Codigo", justify="center", style="bold dodger_blue2")
|
||||
tbl_v.add_column("Metodo", justify="center", style="bright_magenta")
|
||||
tbl_v.add_column("Request", justify="left", style="#00ff5f", overflow='fold', no_wrap=False)
|
||||
for item in lista_visitas:
|
||||
tbl_v.add_row(item[0], item[1], item[2], item[3])
|
||||
|
||||
console.print(tbl_v)
|
||||
|
||||
|
||||
def archivo_ips(ips, tkn=True):
|
||||
with open(ips, 'r') as lista:
|
||||
for linea in lista:
|
||||
if '\n' in linea:
|
||||
linea = linea.split('\n')[0]
|
||||
print_ipinfo(linea, tkn)
|
||||
for linea in lista:
|
||||
if '\n' in linea:
|
||||
linea = linea.split('\n')[0]
|
||||
print_ipinfo(linea, tkn)
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
@ -153,41 +163,41 @@ def main():
|
||||
try:
|
||||
match sys.argv[1]:
|
||||
case '--sync':
|
||||
print(f'{co_YelB}Sincronizando logs del servidor(bash script){co_rst}')
|
||||
console.print('[bold yellow]Sincronizando logs del servidor(bash script)[/bold yellow]')
|
||||
subprocess.check_call(
|
||||
muevelog+"%s" % "--start",
|
||||
shell=True)
|
||||
case '-c':
|
||||
print(f'{co_YelB}Cargando logs en base de datos{co_rst}')
|
||||
console.print('[bold yellow]Cargando logs en base de datos[/bold yellow]')
|
||||
sql_alch.carga_logs()
|
||||
case '-g':
|
||||
console.print('[yellow]Registro de datos de ipinfo[/yellow]')
|
||||
sql_alch.registro_ips()
|
||||
case '-d':
|
||||
print(f'{co_YelB}Consulta base de datos:{co_rst}')
|
||||
console.print('[bold yellow]Consulta a base de datos:[/bold yellow]')
|
||||
ip = sys.argv[2]
|
||||
print_ipinfo(ip, None)
|
||||
case '-D':
|
||||
print(f'{co_YelB}Consulta por archivo en base de datos:{co_rst}')
|
||||
console.print('[bold yellow]Consulta por archivo a base de datos:[/bold yellow]')
|
||||
if isfile(sys.argv[2]):
|
||||
archivo_ips(sys.argv[2], None)
|
||||
else:
|
||||
print(f'{co_Red}Archivo [{co_BlkMgn}{sys.argv[2]}'+
|
||||
f'{co_rst}{co_Red}] no es válido''')
|
||||
console.print(f'[red]Archivo [[/red][magenta]{sys.argv[2]}[/magenta]'
|
||||
'[red]] no es válido![/red]')
|
||||
sys.exit(0)
|
||||
case '-g':
|
||||
print(f'{co_YelB}Registrando datos de ipinfo{co_rst}')
|
||||
sql_alch.registro_ips()
|
||||
case '-f':
|
||||
if isfile(sys.argv[2]):
|
||||
archivo_ips(sys.argv[2], False)
|
||||
else:
|
||||
print(f'{co_Red}Archivo [{co_BlkMgn}{sys.argv[2]}'+
|
||||
f'{co_rst}{co_Red}] no es válido''')
|
||||
console.print(f'[red]Archivo [[/red][magenta]{sys.argv[2]}[/magenta]'
|
||||
'[red]] no es válido[/red]')
|
||||
sys.exit(0)
|
||||
case '-F':
|
||||
if isfile(sys.argv[2]):
|
||||
archivo_ips(sys.argv[2])
|
||||
else:
|
||||
print(f'{co_Red}Archivo [{co_BlkMgn}{sys.argv[2]}'+
|
||||
f'{co_rst}{co_Red}] no es válido''')
|
||||
console.print(f'[red]Archivo [[/red][magenta]{sys.argv[2]}[/magenta]'
|
||||
'[red]] no es válido[/red]')
|
||||
sys.exit(0)
|
||||
case '-h':
|
||||
uso()
|
||||
@ -199,14 +209,16 @@ def main():
|
||||
ip = sys.argv[1]
|
||||
print_ipinfo(ip, False)
|
||||
except IndexError:
|
||||
print(f'{co_Red} error sys.args! {co_rst}')
|
||||
console.print('[red] error sys.args! [/red]')
|
||||
finally:
|
||||
sys.exit(0)
|
||||
|
||||
print(f'{co_Grn}Ingresa una {co_BluB}IP {co_Grn}o {co_BluB}s '+
|
||||
f'{co_Grn}para salir:{co_rst}')
|
||||
console.print("[green]Ingresa una[/green] [bold blue]IP [/bold blue]"
|
||||
"[green]o [/green][bold blue]s [/bold blue]"
|
||||
"[green]para salir:[/green]")
|
||||
while True:
|
||||
ip = input(f'{co_BluB} -> {co_rst}')
|
||||
console.print("[bold blue] -> [/bold blue]", end='')
|
||||
ip = input()
|
||||
if ip in 'sq0SQnN':
|
||||
exit(0)
|
||||
print_ipinfo(ip)
|
||||
@ -214,30 +226,30 @@ def main():
|
||||
|
||||
def uso():
|
||||
ayuda = f"""
|
||||
{co_BluB}ipLocate{co_rst}
|
||||
{co_cuBlu}Consulta información sobre IP(s) disponibles en ipinfo.io con o sin token.
|
||||
[bold blue]ipLocate[/bold blue]
|
||||
[deep_sky_blue1]Consulta información sobre IP(s) disponibles en ipinfo.io con o sin token.
|
||||
Carga logs de nginx en base de datos. Consulta con ipinfo.io y registra
|
||||
en base de datos.
|
||||
Consultas y reportes según información en la base de datos.{co_rst}
|
||||
Consultas y reportes según información en la base de datos.[/deep_sky_blue1]
|
||||
|
||||
{co_YelB}iploc -h {co_Grn}- Muestra esta ayuda.{co_rst}
|
||||
[bold yellow]iploc -h[/bold yellow] [green]- Muestra esta ayuda.[/green]
|
||||
|
||||
[bold blue]Uso para consultas:[/bold blue]
|
||||
[bold yellow]iploc[/bold yellow] [blue]<IP>[/blue] [green]- Consulta la información de <IP> disponible en ipinfo.io.[/green]
|
||||
[bold yellow]iploc -t [/bold yellow][blue]<IP>[/blue] [green]- Consulta la info. de <IP> usando 'token' de ipinfo.io,
|
||||
especificado en config.cfg.[/green]
|
||||
[bold yellow]iploc -d [/bold yellow][blue]<IP> [/blue] [green]- Consulta la información de <IP> disponible en base de datos.[/green]
|
||||
[bold yellow]iploc -f [/bold yellow][blue]<archivo> [/blue] [green]- Consulta info. de las IPs en <archivo> (ipinfo.io).[/green]
|
||||
[bold yellow]iploc -F [/bold yellow][blue]<archivo> [/blue] [green]- Consulta info. de las IPs en <archivo> (token, ipinfo.io).[/green]
|
||||
[bold yellow]iploc -D [/bold yellow][blue]<archivo> [/blue] [green]- Consulta info. de las IPs en <archivo> (base de datos).[/green]
|
||||
|
||||
{co_BluB}Uso para consultas:{co_rst}
|
||||
{co_YelB}iploc {co_Blu}<IP> {co_Grn}- Consulta la información de <IP> disponible en ipinfo.io.{co_rst}
|
||||
{co_YelB}iploc -t {co_Blu}<IP> {co_Grn}- Consulta la info. de <IP> usando 'token' de ipinfo.io,
|
||||
especificado en config.cfg.{co_rst}
|
||||
{co_YelB}iploc -d {co_Blu}<IP> {co_Grn}- Consulta la información de <IP> disponible en base de datos.{co_rst}
|
||||
{co_YelB}iploc -f {co_Blu}<archivo> {co_Grn}- Consulta info. de las IPs en <archivo> (ipinfo.io).{co_rst}
|
||||
{co_YelB}iploc -F {co_Blu}<archivo> {co_Grn}- Consulta info. de las IPs en <archivo> (token, ipinfo.io).{co_rst}
|
||||
{co_YelB}iploc -D {co_Blu}<archivo> {co_Grn}- Consulta info. de las IPs en <archivo> (base de datos).{co_rst}
|
||||
|
||||
{co_BluB}Operaciones base de datos:{co_rst}
|
||||
{co_YelB}iploc --sync {co_Grn}- Sincroniza logs del servidor (bash script).{co_rst}
|
||||
{co_YelB}iploc -c {co_Grn}- Carga logs en base de datos.{co_rst}
|
||||
{co_YelB}iploc -g {co_Grn}- Guarda ipinfo de IPs sin registro en la BD.{co_rst}
|
||||
[bold blue]Operaciones base de datos:[/bold blue]
|
||||
[bold yellow]iploc --sync [/bold yellow][green]- Sincroniza logs del servidor (bash script).[/green]
|
||||
[bold yellow]iploc -c [/bold yellow][green]- Carga logs en base de datos.[/green]
|
||||
[bold yellow]iploc -g [/bold yellow][green]- Guarda ipinfo de IPs sin registro en la BD.[/green]
|
||||
|
||||
"""
|
||||
print(ayuda)
|
||||
console.print(ayuda)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
345
sql_alch.py
345
sql_alch.py
@ -1,5 +1,8 @@
|
||||
import os
|
||||
import time
|
||||
import subprocess
|
||||
from iplocate import re, requests, token, filtro_ip_propia, selfpath, parser
|
||||
from json import loads
|
||||
from datetime import datetime
|
||||
from sqlalchemy import create_engine
|
||||
from sqlalchemy.orm import relationship, sessionmaker
|
||||
@ -8,12 +11,15 @@ from sqlalchemy import Column, Integer, String, Sequence, update
|
||||
from sqlalchemy.orm.session import Session
|
||||
from sqlalchemy.sql.expression import select
|
||||
from sqlalchemy.sql.schema import ForeignKey
|
||||
import iplocate as ipl
|
||||
from rich.progress import Progress, track
|
||||
from rich.console import Console
|
||||
|
||||
logs_dir = ipl.parser.get('bash_script', 'destino_log')
|
||||
ip_regx = "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])$"
|
||||
logs_dir = parser.get('bash_script', 'destino_log')
|
||||
logs_dir = logs_dir.strip("'")
|
||||
base_de_datos = f'sqlite:////{ipl.selfpath}/ipinfo.db'
|
||||
base_de_datos = f'sqlite:////{selfpath}/ipinfo.db'
|
||||
|
||||
console = Console()
|
||||
Base = declarative_base()
|
||||
|
||||
# Tabla registro ip info
|
||||
@ -139,77 +145,115 @@ def ip_registrada(ip):
|
||||
|
||||
def carga_access_log(log):
|
||||
if os.path.exists(log):
|
||||
print(f'{ipl.co_Yel}Registrando [{log}]{ipl.co_rst}')
|
||||
nombre_log = log.split('/')[-1]
|
||||
console.print(f'[bold yellow]Registrando [[/bold yellow]{nombre_log}[bold yellow]][/bold yellow]')
|
||||
try:
|
||||
with open(log, 'r') as lista:
|
||||
for linea in lista:
|
||||
ip = linea.split(' ')[0]
|
||||
if ipl.filtro_ip_propia(ip):
|
||||
try:
|
||||
ip = linea.split(' ')[0]
|
||||
except Exception as ex:
|
||||
ip = None
|
||||
print('Exception split IP', ex)
|
||||
try:
|
||||
metodo = linea.split('"')[1].split(' ')[0]
|
||||
if len(metodo) > 10 or len(metodo) < 2:
|
||||
try:
|
||||
largo = subprocess.run(['wc', '-l', log], capture_output=True, text=True)
|
||||
largo = int(largo.stdout.split(' ')[0])
|
||||
for linea in track(lista, total=largo, description='[blue bold]Cargando [/blue bold]'):
|
||||
ip = linea.split(' ')[0]
|
||||
if filtro_ip_propia(ip):
|
||||
try:
|
||||
ip = linea.split(' ')[0]
|
||||
except Exception as ex:
|
||||
ip = None
|
||||
print('Exception split IP', ex)
|
||||
try:
|
||||
metodo = linea.split('"')[1].split(' ')[0]
|
||||
if len(metodo) > 10 or len(metodo) < 2:
|
||||
metodo = '---'
|
||||
except Exception as ex:
|
||||
metodo = '---'
|
||||
except Exception as ex:
|
||||
metodo = '---'
|
||||
try:
|
||||
url = linea.split('"')[1].split(' ')[1]
|
||||
if len(url) > 254:
|
||||
url = url[:252]+'...'
|
||||
except Exception as ex:
|
||||
url = '---'
|
||||
try:
|
||||
codigo = int(linea.split('"')[2].split(' ')[1])
|
||||
if len(str(codigo)) != 3:
|
||||
try:
|
||||
url = linea.split('"')[1].split(' ')[1]
|
||||
if len(url) > 254:
|
||||
url = url[:252]+'...'
|
||||
except Exception as ex:
|
||||
url = '---'
|
||||
try:
|
||||
codigo = int(linea.split('"')[2].split(' ')[1])
|
||||
if len(str(codigo)) != 3:
|
||||
codigo = 0
|
||||
except Exception as ex:
|
||||
codigo = 0
|
||||
except Exception as ex:
|
||||
codigo = 0
|
||||
try:
|
||||
fecha = linea.split(' ')[3][1:]
|
||||
fecha = fecha_access_to_epoch(fecha)
|
||||
except Exception as ex:
|
||||
fecha = None
|
||||
print('Exception split Fecha:', ex)
|
||||
if ip_registrada(ip):
|
||||
session.add(Visita(ip=ip,
|
||||
cod_html=codigo,
|
||||
fecha=fecha,
|
||||
metodo=metodo,
|
||||
consulta=url,
|
||||
registro=1))
|
||||
else:
|
||||
session.add(Visita(ip=ip,
|
||||
cod_html=codigo,
|
||||
fecha=fecha,
|
||||
metodo=metodo,
|
||||
consulta=url))
|
||||
session.commit()
|
||||
print(f'{ipl.co_Grn}Carga completa.. borrando log{ipl.co_rst}\n')
|
||||
try:
|
||||
fecha = linea.split(' ')[3][1:]
|
||||
fecha = fecha_access_to_epoch(fecha)
|
||||
except Exception as ex:
|
||||
fecha = None
|
||||
print('Exception split Fecha:', ex)
|
||||
if ip_registrada(ip):
|
||||
session.add(Visita(ip=ip,
|
||||
cod_html=codigo,
|
||||
fecha=fecha,
|
||||
metodo=metodo,
|
||||
consulta=url,
|
||||
registro=1))
|
||||
else:
|
||||
session.add(Visita(ip=ip,
|
||||
cod_html=codigo,
|
||||
fecha=fecha,
|
||||
metodo=metodo,
|
||||
consulta=url))
|
||||
except Exception as ex:
|
||||
print('Exception: ', ex)
|
||||
try:
|
||||
with Progress() as prog, session:
|
||||
task1=prog.add_task("[yellow bold]Guardando[/yellow bold]", total=len(session.new))
|
||||
session.commit()
|
||||
while not prog.finished:
|
||||
prog.update(task1, advance=0.1)
|
||||
time.sleep(0.05)
|
||||
except Exception as ex:
|
||||
print('Exception Progress: ', ex)
|
||||
console.print('[bold green] - Carga completa.. borrando log[/bold green]\n')
|
||||
os.remove(log)
|
||||
return True
|
||||
except:
|
||||
print(f'{ipl.co_Red}Error al intentar abrir/cargar: '+
|
||||
f'[{ipl.co_rst}{log}{ipl.co_Red}]\n')
|
||||
console.print(f'[red]Error al intentar abrir/cargar: [{log}[/red]]\n')
|
||||
return False
|
||||
else:
|
||||
print(f'{ipl.co_RedB}log: [{ipl.co_rst}{log}{ipl.co_RedB}]'+
|
||||
f' inexistente.{ipl.co_rst}\n')
|
||||
return False
|
||||
console.print(f'[bold red]Log: [[/bold red]{log}[bold red]] inexistente.[/bold red]\n')
|
||||
return False
|
||||
|
||||
|
||||
def carga_error_logs(log):
|
||||
if os.path.exists(log):
|
||||
print(f'{ipl.co_Yel}Registrando [{log}]{ipl.co_rst}')
|
||||
nombre_log = log.split('/')[-1]
|
||||
console.print(f'[bold yellow]Registrando [[/bold yellow]{nombre_log}[bold yellow]][/bold yellow]')
|
||||
try:
|
||||
#with Progress(), open(log, 'r') as lista:
|
||||
with open(log, 'r') as lista:
|
||||
for linea in lista:
|
||||
linea = linea.split('\n')[0]
|
||||
if (linea.rfind('[notice]') > 0 or linea.rfind('[crit]') > 0):
|
||||
if linea.find('[crit]') > 0:
|
||||
try:
|
||||
largo = subprocess.run(['wc', '-l', log], capture_output=True, text=True)
|
||||
largo = int(largo.stdout.split(' ')[0])
|
||||
for linea in track(lista, total=largo, description='[blue bold]Cargando [/blue bold]'):
|
||||
linea = linea.split('\n')[0]
|
||||
if (linea.rfind('[notice]') > 0 or linea.rfind('[crit]') > 0):
|
||||
if linea.find('[crit]') > 0:
|
||||
try:
|
||||
ip = linea.split('client: ')[1].split(',')[0]
|
||||
except Exception as ex:
|
||||
print('Exception Ip error_log: ', ex)
|
||||
ip = None
|
||||
try:
|
||||
fecha = ' '.join(linea.split(' ')[0:2])
|
||||
except Exception:
|
||||
fecha = None
|
||||
try:
|
||||
url = linea.split('"')[1].split(' ')[1]
|
||||
if len(url) > 254:
|
||||
url = url[:252]+'...'
|
||||
except Exception:
|
||||
url = ' '.join(linea.split(' ')[5:])
|
||||
#url = '---'
|
||||
try:
|
||||
metodo = linea.split('"')[1].split(' ')[0]
|
||||
except Exception:
|
||||
metodo = '---'
|
||||
else:
|
||||
try:
|
||||
ip = linea.split('client: ')[1].split(',')[0]
|
||||
except Exception as ex:
|
||||
@ -220,72 +264,67 @@ def carga_error_logs(log):
|
||||
except Exception:
|
||||
fecha = None
|
||||
try:
|
||||
url = linea.split('"')[1].split(' ')[1]
|
||||
metodo = linea.split('request: "')[1].split(' ')[0]
|
||||
except Exception:
|
||||
metodo = '---'
|
||||
try:
|
||||
url = linea.split('"')[1].split(' ')[0]
|
||||
if len(url) > 254:
|
||||
url = url[:252]+'...'
|
||||
except Exception:
|
||||
url = ' '.join(linea.split(' ')[5:])
|
||||
#url = '---'
|
||||
try:
|
||||
metodo = linea.split('"')[1].split(' ')[0]
|
||||
except Exception:
|
||||
metodo = '---'
|
||||
else:
|
||||
try:
|
||||
ip = linea.split('client: ')[1].split(',')[0]
|
||||
except Exception as ex:
|
||||
print('Exception Ip error_log: ', ex)
|
||||
ip = None
|
||||
try:
|
||||
fecha = ' '.join(linea.split(' ')[0:2])
|
||||
except Exception:
|
||||
fecha = None
|
||||
try:
|
||||
metodo = linea.split('request: "')[1].split(' ')[0]
|
||||
except Exception:
|
||||
metodo = '---'
|
||||
try:
|
||||
url = linea.split('"')[1].split(' ')[0]
|
||||
if len(url) > 254:
|
||||
url = url[:252]+'...'
|
||||
except Exception:
|
||||
url = '---'
|
||||
if ipl.filtro_ip_propia(ip):
|
||||
fecha = int(fecha_error_to_epoch(fecha))
|
||||
codigo = 0
|
||||
if ip_registrada(ip):
|
||||
session.add(Visita(ip=ip,
|
||||
cod_html=codigo,
|
||||
fecha=fecha,
|
||||
consulta=url,
|
||||
metodo=metodo,
|
||||
registro=1))
|
||||
else:
|
||||
session.add(Visita(ip=ip,
|
||||
cod_html=codigo,
|
||||
fecha=fecha,
|
||||
consulta=url,
|
||||
metodo=metodo))
|
||||
session.commit()
|
||||
print(f'{ipl.co_Grn}Carga completa.. borrando log{ipl.co_rst}\n')
|
||||
url = '---'
|
||||
if filtro_ip_propia(ip):
|
||||
fecha = int(fecha_error_to_epoch(fecha))
|
||||
codigo = 0
|
||||
if ip_registrada(ip):
|
||||
session.add(Visita(ip=ip,
|
||||
cod_html=codigo,
|
||||
fecha=fecha,
|
||||
consulta=url,
|
||||
metodo=metodo,
|
||||
registro=1))
|
||||
else:
|
||||
session.add(Visita(ip=ip,
|
||||
cod_html=codigo,
|
||||
fecha=fecha,
|
||||
consulta=url,
|
||||
metodo=metodo))
|
||||
except Exception as ex:
|
||||
print('Exception: ', ex)
|
||||
try:
|
||||
with Progress() as prog, session:
|
||||
task1=prog.add_task("[yellow bold]Guardando[/yellow bold]", total=len(session.new))
|
||||
session.commit()
|
||||
while not prog.finished:
|
||||
prog.update(task1, advance=0.1)
|
||||
time.sleep(0.05)
|
||||
except Exception as ex:
|
||||
print('Exception Progress: ', ex)
|
||||
console.print(f'[bold green] - Carga completa.. borrando log[/bold green]\n')
|
||||
os.remove(log)
|
||||
return True
|
||||
except:
|
||||
print(f'{ipl.co_Red}Error al intentar abrir/cargar: '+
|
||||
f'[{ipl.co_rst}{log}{ipl.co_Red}]\n')
|
||||
console.print(f'[red]Error al intentar abrir/cargar: [{log}[/red]]\n')
|
||||
return False
|
||||
else:
|
||||
print(f'{ipl.co_RedB}log: [{ipl.co_rst}{log}{ipl.co_RedB}]'+
|
||||
f' inexistente.{ipl.co_rst}\n')
|
||||
console.print(f'[bold red]Log: [[/bold red]{log}[bold red]] inexistente.[/bold red]\n')
|
||||
return False
|
||||
|
||||
|
||||
def carga_logs():
|
||||
print(f'{ipl.co_Grn}Carga de logs en base de datos:{ipl.co_rst}\n')
|
||||
carga_access_log(logs_dir+'/access.log')
|
||||
carga_access_log(logs_dir+'/reverse-access.log')
|
||||
carga_error_logs(logs_dir+'/error.log')
|
||||
carga_error_logs(logs_dir+'/reverse-error.log')
|
||||
#print(f'[bold green]Carga de logs en base de datos:[/bold green]\n')
|
||||
logpath = logs_dir+'/access.log'
|
||||
if os.path.exists(logpath):
|
||||
carga_access_log(logpath)
|
||||
logpath = logs_dir+'/reverse-access.log'
|
||||
if os.path.exists(logpath):
|
||||
carga_access_log(logpath)
|
||||
logpath = logs_dir+'/error.log'
|
||||
if os.path.exists(logpath):
|
||||
carga_error_logs(logpath)
|
||||
logpath = logs_dir+'/reverse-error.log'
|
||||
if os.path.exists(logpath):
|
||||
carga_error_logs(logpath)
|
||||
|
||||
|
||||
def carga_registro_ip(ip_info):
|
||||
@ -317,15 +356,33 @@ def carga_registro_ip(ip_info):
|
||||
session.commit()
|
||||
except Exception as ex:
|
||||
print('Exception: ', ex)
|
||||
# aqui progress bar registro visita
|
||||
stmt = update(Visita).where(Visita.ip == ip_info['ip']).values(registro=1).\
|
||||
execution_options(synchronize_session="fetch")
|
||||
#result = session.execute(stmt)
|
||||
try:
|
||||
session.execute(stmt)
|
||||
# aqui progress bar update visita (registro = 1)
|
||||
session.commit()
|
||||
except Exception as ex:
|
||||
print('Exception: ', ex)
|
||||
|
||||
|
||||
def consulta_ip(ip_consulta, tkn=True):
|
||||
if (re.search(ip_regx, ip_consulta)):
|
||||
match tkn:
|
||||
case True:
|
||||
consulta = f'https://ipinfo.io/{ip_consulta}{token}'
|
||||
info_ip = requests.get(consulta).text
|
||||
return loads(info_ip)
|
||||
case False:
|
||||
consulta = f'https://ipinfo.io/{ip_consulta}'
|
||||
info_ip = requests.get(consulta).text
|
||||
return loads(info_ip)
|
||||
case None:
|
||||
resp = consulta_db(ip_consulta)
|
||||
return resp
|
||||
|
||||
def consulta_db(ip):
|
||||
try:
|
||||
statement = session.query(Registro, Visita).join('visitas').filter_by(ip=ip)
|
||||
@ -335,25 +392,47 @@ def consulta_db(ip):
|
||||
print('Exception consulta_db:\n', ex)
|
||||
|
||||
|
||||
def test_db():
|
||||
try:
|
||||
session.add(Visita(ip='dummy_ip', cod_html=000, fecha=int(time.mktime(time.localtime()))))
|
||||
session.commit()
|
||||
session.add(Registro(ip ='dummy_ip'))
|
||||
session.commit()
|
||||
except Exception as ex:
|
||||
print('Exception: ', ex)
|
||||
|
||||
|
||||
def registro_ips():
|
||||
registrar = True
|
||||
while registrar:
|
||||
statement = select(Visita).filter_by(registro=0)
|
||||
res = session.execute(statement).scalars().first()
|
||||
if res is None:
|
||||
print(f'{ipl.co_Grn}Registro ipinfo en DB finzalizado.{ipl.co_rst}')
|
||||
registrar = False
|
||||
#ip_actual= res.ip.split('\n')[0]
|
||||
ip_actual= res.ip
|
||||
ip_info = ipl.consulta_ip(ip_actual, True)
|
||||
carga_registro_ip(ip_info)
|
||||
statement = select(Visita).filter_by(registro=0)
|
||||
with Progress() as progress:
|
||||
total = len(session.execute(statement).scalars().all())
|
||||
task1= progress.add_task("[bold blue]Cargando [/bold blue]", total=total)
|
||||
total_ant = total
|
||||
while not progress.finished:
|
||||
res = session.execute(statement).scalars().first()
|
||||
total_act = len(session.execute(statement).scalars().all())
|
||||
avance = total_ant - total_act
|
||||
print('total update:',total,'total_act:', total_act,' Diferencia: ', avance )
|
||||
total_ant = total_act
|
||||
if res is None:
|
||||
print('en res none')
|
||||
progress.update (task1, advance=total)
|
||||
ip_actual= res.ip
|
||||
ip_info = consulta_ip(ip_actual, True)
|
||||
carga_registro_ip(ip_info)
|
||||
progress.update(task1, advance=avance)
|
||||
console.print('\n[bold yellow]Registro en baso de datos finalizado.[/bold yellow]')
|
||||
|
||||
|
||||
#def registro_ips(): # OLD
|
||||
# registrar = True
|
||||
# statement = select(Visita).filter_by(registro=0)
|
||||
# while registrar:
|
||||
# res = session.execute(statement).scalars().first()
|
||||
# if res is None:
|
||||
# console.print('[bold yellow]Registro en baso de datos finalizado.[/bold yellow]')
|
||||
# registrar = False
|
||||
# ip_actual= res.ip
|
||||
# ip_info = consulta_ip(ip_actual, True)
|
||||
# carga_registro_ip(ip_info)
|
||||
|
||||
|
||||
#def test_db():
|
||||
# try:
|
||||
# session.add(Visita(ip='dummy_ip', cod_html=000, fecha=int(time.mktime(time.localtime()))))
|
||||
# session.commit()
|
||||
# session.add(Registro(ip ='dummy_ip'))
|
||||
# session.commit()
|
||||
# except Exception as ex:
|
||||
# print('Exception: ', ex)
|
||||
|
Loading…
Reference in New Issue
Block a user