mirror of
https://github.com/iio612/DEFENDER.git
synced 2026-02-13 19:24:23 +00:00
With unrealircd json rpc
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,3 +5,4 @@ __pycache__/
|
|||||||
configuration.json
|
configuration.json
|
||||||
install.log
|
install.log
|
||||||
test.py
|
test.py
|
||||||
|
# mods/mod_ia.py
|
||||||
@@ -307,7 +307,7 @@ class Base:
|
|||||||
|
|
||||||
def db_update_core_config(self, module_name:str, dataclassObj: object, param_key:str, param_value: str) -> bool:
|
def db_update_core_config(self, module_name:str, dataclassObj: object, param_key:str, param_value: str) -> bool:
|
||||||
|
|
||||||
core_table = 'core_config'
|
core_table = self.Config.table_config
|
||||||
# Check if the param exist
|
# Check if the param exist
|
||||||
if not hasattr(dataclassObj, param_key):
|
if not hasattr(dataclassObj, param_key):
|
||||||
self.logs.error(f"Le parametre {param_key} n'existe pas dans la variable global")
|
self.logs.error(f"Le parametre {param_key} n'existe pas dans la variable global")
|
||||||
@@ -330,6 +330,10 @@ class Base:
|
|||||||
if updated_rows > 0:
|
if updated_rows > 0:
|
||||||
setattr(dataclassObj, param_key, self.int_if_possible(param_value))
|
setattr(dataclassObj, param_key, self.int_if_possible(param_value))
|
||||||
self.logs.debug(f'Parameter updated : {param_key} - {param_value} | Module: {module_name}')
|
self.logs.debug(f'Parameter updated : {param_key} - {param_value} | Module: {module_name}')
|
||||||
|
else:
|
||||||
|
self.logs.error(f'Parameter NOT updated : {param_key} - {param_value} | Module: {module_name}')
|
||||||
|
else:
|
||||||
|
self.logs.error(f'Parameter and Module do not exist: Param ({param_key}) - Value ({param_value}) | Module ({module_name})')
|
||||||
|
|
||||||
self.logs.debug(dataclassObj)
|
self.logs.debug(dataclassObj)
|
||||||
|
|
||||||
|
|||||||
@@ -204,7 +204,6 @@ class Connection:
|
|||||||
|
|
||||||
self.send2socket(f"PRIVMSG {clone_channel} :{final_message}")
|
self.send2socket(f"PRIVMSG {clone_channel} :{final_message}")
|
||||||
|
|
||||||
|
|
||||||
except UnicodeEncodeError:
|
except UnicodeEncodeError:
|
||||||
for data in cmd:
|
for data in cmd:
|
||||||
response = data.decode(self.CHARSET[1],'replace').split()
|
response = data.decode(self.CHARSET[1],'replace').split()
|
||||||
|
|||||||
159
core/irc.py
159
core/irc.py
@@ -1,4 +1,4 @@
|
|||||||
import ssl, re, importlib, sys, time, threading, socket
|
import ssl, re, importlib, sys, time, threading, socket, traceback
|
||||||
from ssl import SSLSocket
|
from ssl import SSLSocket
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from typing import Union, Literal
|
from typing import Union, Literal
|
||||||
@@ -176,6 +176,7 @@ class Irc:
|
|||||||
self.Base.logs.critical(f"AttributeError: {atte}")
|
self.Base.logs.critical(f"AttributeError: {atte}")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.Base.logs.critical(f"Exception: {e}")
|
self.Base.logs.critical(f"Exception: {e}")
|
||||||
|
self.Base.logs.critical(traceback.print_exc())
|
||||||
|
|
||||||
def __link(self, writer:Union[socket.socket, SSLSocket]) -> None:
|
def __link(self, writer:Union[socket.socket, SSLSocket]) -> None:
|
||||||
"""Créer le link et envoyer les informations nécessaires pour la
|
"""Créer le link et envoyer les informations nécessaires pour la
|
||||||
@@ -274,14 +275,20 @@ class Irc:
|
|||||||
response = data.decode(self.CHARSET[0]).split()
|
response = data.decode(self.CHARSET[0]).split()
|
||||||
self.cmd(response)
|
self.cmd(response)
|
||||||
|
|
||||||
except UnicodeEncodeError:
|
except UnicodeEncodeError as ue:
|
||||||
for data in responses:
|
for data in responses:
|
||||||
response = data.decode(self.CHARSET[1],'replace').split()
|
response = data.decode(self.CHARSET[1],'replace').split()
|
||||||
self.cmd(response)
|
self.cmd(response)
|
||||||
except UnicodeDecodeError:
|
self.Base.logs.error(f'UnicodeEncodeError: {ue}')
|
||||||
|
self.Base.logs.error(response)
|
||||||
|
|
||||||
|
except UnicodeDecodeError as ud:
|
||||||
for data in responses:
|
for data in responses:
|
||||||
response = data.decode(self.CHARSET[1],'replace').split()
|
response = data.decode(self.CHARSET[1],'replace').split()
|
||||||
self.cmd(response)
|
self.cmd(response)
|
||||||
|
self.Base.logs.error(f'UnicodeDecodeError: {ud}')
|
||||||
|
self.Base.logs.error(response)
|
||||||
|
|
||||||
except AssertionError as ae:
|
except AssertionError as ae:
|
||||||
self.Base.logs.error(f"Assertion error : {ae}")
|
self.Base.logs.error(f"Assertion error : {ae}")
|
||||||
|
|
||||||
@@ -576,7 +583,6 @@ class Irc:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
def thread_check_for_new_version(self, fromuser: str) -> None:
|
def thread_check_for_new_version(self, fromuser: str) -> None:
|
||||||
|
|
||||||
dnickname = self.Config.SERVICE_NICKNAME
|
dnickname = self.Config.SERVICE_NICKNAME
|
||||||
|
|
||||||
if self.Base.check_for_new_version(True):
|
if self.Base.check_for_new_version(True):
|
||||||
@@ -587,35 +593,39 @@ class Irc:
|
|||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def cmd(self, data:list) -> None:
|
def cmd(self, data: list[str]) -> None:
|
||||||
|
"""Parse server response
|
||||||
|
|
||||||
|
Args:
|
||||||
|
data (list[str]): Server response splitted in a list
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
|
original_response: list[str] = data.copy()
|
||||||
|
|
||||||
cmd_to_send:list[str] = data.copy()
|
interm_response: list[str] = data.copy()
|
||||||
cmd = data.copy()
|
"""This the original without first value"""
|
||||||
|
|
||||||
cmd_to_debug = data.copy()
|
interm_response.pop(0)
|
||||||
cmd_to_debug.pop(0)
|
|
||||||
|
|
||||||
if len(cmd) == 0 or len(cmd) == 1:
|
if len(original_response) == 0 or len(original_response) == 1:
|
||||||
self.Base.logs.warning(f'Size ({str(len(cmd))}) - {cmd}')
|
self.Base.logs.warning(f'Size ({str(len(original_response))}) - {original_response}')
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# self.debug(cmd_to_debug)
|
if len(original_response) == 7:
|
||||||
if len(data) == 7:
|
if original_response[2] == 'PRIVMSG' and original_response[4] == ':auth':
|
||||||
if data[2] == 'PRIVMSG' and data[4] == ':auth':
|
data_copy = original_response.copy()
|
||||||
data_copy = data.copy()
|
|
||||||
data_copy[6] = '**********'
|
data_copy[6] = '**********'
|
||||||
self.Base.logs.debug(data_copy)
|
self.Base.logs.debug(data_copy)
|
||||||
else:
|
else:
|
||||||
self.Base.logs.debug(data)
|
self.Base.logs.debug(original_response)
|
||||||
else:
|
else:
|
||||||
self.Base.logs.debug(data)
|
self.Base.logs.debug(original_response)
|
||||||
|
|
||||||
match cmd[0]:
|
match original_response[0]:
|
||||||
|
|
||||||
case 'PING':
|
case 'PING':
|
||||||
# Sending PONG response to the serveur
|
# Sending PONG response to the serveur
|
||||||
pong = str(cmd[1]).replace(':','')
|
pong = str(original_response[1]).replace(':','')
|
||||||
self.send2socket(f"PONG :{pong}")
|
self.send2socket(f"PONG :{pong}")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@@ -624,19 +634,19 @@ class Irc:
|
|||||||
# 'PREFIX=(qaohv)~&@%+', 'SID=001', 'MLOCK', 'TS=1703793941', 'EXTSWHOIS']
|
# 'PREFIX=(qaohv)~&@%+', 'SID=001', 'MLOCK', 'TS=1703793941', 'EXTSWHOIS']
|
||||||
|
|
||||||
# GET SERVER ID HOST
|
# GET SERVER ID HOST
|
||||||
if len(cmd) > 5:
|
if len(original_response) > 5:
|
||||||
if '=' in cmd[5]:
|
if '=' in original_response[5]:
|
||||||
serveur_hosting_id = str(cmd[5]).split('=')
|
serveur_hosting_id = str(original_response[5]).split('=')
|
||||||
self.HSID = serveur_hosting_id[1]
|
self.HSID = serveur_hosting_id[1]
|
||||||
return False
|
return False
|
||||||
|
|
||||||
case _:
|
case _:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if len(cmd) < 2:
|
if len(original_response) < 2:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
match cmd[1]:
|
match original_response[1]:
|
||||||
|
|
||||||
case 'SLOG':
|
case 'SLOG':
|
||||||
# self.Base.scan_ports(cmd[7])
|
# self.Base.scan_ports(cmd[7])
|
||||||
@@ -647,20 +657,18 @@ class Irc:
|
|||||||
case 'REPUTATION':
|
case 'REPUTATION':
|
||||||
# :001 REPUTATION 91.168.141.239 118
|
# :001 REPUTATION 91.168.141.239 118
|
||||||
try:
|
try:
|
||||||
# if self.Config.ABUSEIPDB == 1:
|
self.first_connexion_ip = original_response[2]
|
||||||
# self.Base.create_thread(self.abuseipdb_scan, (cmd[2], ))
|
|
||||||
self.first_connexion_ip = cmd[2]
|
|
||||||
|
|
||||||
self.first_score = 0
|
self.first_score = 0
|
||||||
if str(cmd[3]).find('*') != -1:
|
if str(original_response[3]).find('*') != -1:
|
||||||
# If * available, it means that an ircop changed the repurtation score
|
# If * available, it means that an ircop changed the repurtation score
|
||||||
# means also that the user exist will try to update all users with same IP
|
# means also that the user exist will try to update all users with same IP
|
||||||
self.first_score = int(str(cmd[3]).replace('*',''))
|
self.first_score = int(str(original_response[3]).replace('*',''))
|
||||||
for user in self.User.UID_DB:
|
for user in self.User.UID_DB:
|
||||||
if user.remote_ip == self.first_connexion_ip:
|
if user.remote_ip == self.first_connexion_ip:
|
||||||
user.score_connexion = self.first_score
|
user.score_connexion = self.first_score
|
||||||
else:
|
else:
|
||||||
self.first_score = int(cmd[3])
|
self.first_score = int(original_response[3])
|
||||||
|
|
||||||
# Possibilité de déclancher les bans a ce niveau.
|
# Possibilité de déclancher les bans a ce niveau.
|
||||||
except IndexError as ie:
|
except IndexError as ie:
|
||||||
@@ -683,7 +691,7 @@ class Irc:
|
|||||||
|
|
||||||
case 'EOS':
|
case 'EOS':
|
||||||
|
|
||||||
hsid = str(cmd[0]).replace(':','')
|
hsid = str(original_response[0]).replace(':','')
|
||||||
if hsid == self.HSID:
|
if hsid == self.HSID:
|
||||||
if self.INIT == 1:
|
if self.INIT == 1:
|
||||||
current_version = self.Config.current_version
|
current_version = self.Config.current_version
|
||||||
@@ -693,10 +701,6 @@ class Irc:
|
|||||||
else:
|
else:
|
||||||
version = f'{current_version}'
|
version = f'{current_version}'
|
||||||
|
|
||||||
# self.send2socket(f":{self.Config.SERVICE_NICKNAME} SVSJOIN {self.Config.SERVICE_NICKNAME} {self.Config.SERVICE_CHANLOG}")
|
|
||||||
# self.send2socket(f":{self.Config.SERVICE_NICKNAME} MODE {self.Config.SERVICE_CHANLOG} +o {self.Config.SERVICE_NICKNAME}")
|
|
||||||
# self.send2socket(f":{self.Config.SERVICE_NICKNAME} MODE {self.Config.SERVICE_CHANLOG} +{self.Config.SERVICE_CMODES}")
|
|
||||||
|
|
||||||
print(f"################### DEFENDER ###################")
|
print(f"################### DEFENDER ###################")
|
||||||
print(f"# SERVICE CONNECTE ")
|
print(f"# SERVICE CONNECTE ")
|
||||||
print(f"# SERVEUR : {self.Config.SERVEUR_IP} ")
|
print(f"# SERVEUR : {self.Config.SERVEUR_IP} ")
|
||||||
@@ -728,15 +732,15 @@ class Irc:
|
|||||||
case _:
|
case _:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if len(cmd) < 3:
|
if len(original_response) < 3:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
match cmd[2]:
|
match original_response[2]:
|
||||||
|
|
||||||
case 'QUIT':
|
case 'QUIT':
|
||||||
# :001N1WD7L QUIT :Quit: free_znc_1
|
# :001N1WD7L QUIT :Quit: free_znc_1
|
||||||
cmd.pop(0)
|
|
||||||
uid_who_quit = str(cmd[0]).replace(':', '')
|
uid_who_quit = str(interm_response[0]).replace(':', '')
|
||||||
self.User.delete(uid_who_quit)
|
self.User.delete(uid_who_quit)
|
||||||
self.Channel.delete_user_from_all_channel(uid_who_quit)
|
self.Channel.delete_user_from_all_channel(uid_who_quit)
|
||||||
|
|
||||||
@@ -748,10 +752,8 @@ class Irc:
|
|||||||
# ['@unrealircd.org/geoip=FR;unrealircd.org/', ':001OOU2H3', 'NICK', 'WebIrc', '1703795844']
|
# ['@unrealircd.org/geoip=FR;unrealircd.org/', ':001OOU2H3', 'NICK', 'WebIrc', '1703795844']
|
||||||
# Changement de nickname
|
# Changement de nickname
|
||||||
|
|
||||||
# Supprimer la premiere valeur de la liste
|
uid = str(interm_response[0]).replace(':','')
|
||||||
cmd.pop(0)
|
newnickname = interm_response[2]
|
||||||
uid = str(cmd[0]).replace(':','')
|
|
||||||
newnickname = cmd[2]
|
|
||||||
self.User.update(uid, newnickname)
|
self.User.update(uid, newnickname)
|
||||||
|
|
||||||
case 'MODE':
|
case 'MODE':
|
||||||
@@ -766,24 +768,24 @@ class Irc:
|
|||||||
# ':001T6VU3F', '001JGWB2K', '@11ZAAAAAB',
|
# ':001T6VU3F', '001JGWB2K', '@11ZAAAAAB',
|
||||||
# '001F16WGR', '001X9YMGQ', '*+001DYPFGP', '@00BAAAAAJ', '001AAGOG9', '001FMFVG8', '001DAEEG7',
|
# '001F16WGR', '001X9YMGQ', '*+001DYPFGP', '@00BAAAAAJ', '001AAGOG9', '001FMFVG8', '001DAEEG7',
|
||||||
# '&~G:unknown-users', '"~G:websocket-users', '"~G:known-users', '"~G:webirc-users']
|
# '&~G:unknown-users', '"~G:websocket-users', '"~G:known-users', '"~G:webirc-users']
|
||||||
cmd.pop(0)
|
|
||||||
channel = str(cmd[3]).lower()
|
channel = str(interm_response[3]).lower()
|
||||||
len_cmd = len(cmd)
|
len_cmd = len(interm_response)
|
||||||
list_users:list = []
|
list_users:list = []
|
||||||
occurence = 0
|
occurence = 0
|
||||||
start_boucle = 0
|
start_boucle = 0
|
||||||
|
|
||||||
# Trouver le premier user
|
# Trouver le premier user
|
||||||
for i in range(len_cmd):
|
for i in range(len_cmd):
|
||||||
s: list = re.findall(fr':', cmd[i])
|
s: list = re.findall(fr':', interm_response[i])
|
||||||
if s:
|
if s:
|
||||||
occurence += 1
|
occurence += 1
|
||||||
if occurence == 2:
|
if occurence == 2:
|
||||||
start_boucle = i
|
start_boucle = i
|
||||||
|
|
||||||
# Boucle qui va ajouter l'ensemble des users (UID)
|
# Boucle qui va ajouter l'ensemble des users (UID)
|
||||||
for i in range(start_boucle, len(cmd)):
|
for i in range(start_boucle, len(interm_response)):
|
||||||
parsed_UID = str(cmd[i])
|
parsed_UID = str(interm_response[i])
|
||||||
# pattern = fr'[:|@|%|\+|~|\*]*'
|
# pattern = fr'[:|@|%|\+|~|\*]*'
|
||||||
# pattern = fr':'
|
# pattern = fr':'
|
||||||
# parsed_UID = re.sub(pattern, '', parsed_UID)
|
# parsed_UID = re.sub(pattern, '', parsed_UID)
|
||||||
@@ -801,29 +803,31 @@ class Irc:
|
|||||||
case 'PART':
|
case 'PART':
|
||||||
# ['@unrealircd.org/geoip=FR;unrealircd.org/userhost=50d6492c@80.214.73.44;unrealircd.org/userip=50d6492c@80.214.73.44;msgid=YSIPB9q4PcRu0EVfC9ci7y-/mZT0+Gj5FLiDSZshH5NCw;time=2024-08-15T15:35:53.772Z',
|
# ['@unrealircd.org/geoip=FR;unrealircd.org/userhost=50d6492c@80.214.73.44;unrealircd.org/userip=50d6492c@80.214.73.44;msgid=YSIPB9q4PcRu0EVfC9ci7y-/mZT0+Gj5FLiDSZshH5NCw;time=2024-08-15T15:35:53.772Z',
|
||||||
# ':001EPFBRD', 'PART', '#welcome', ':WEB', 'IRC', 'Paris']
|
# ':001EPFBRD', 'PART', '#welcome', ':WEB', 'IRC', 'Paris']
|
||||||
uid = str(cmd[1]).replace(':','')
|
try:
|
||||||
channel = str(cmd[3]).lower()
|
uid = str(interm_response[0]).replace(':','')
|
||||||
|
channel = str(interm_response[2]).lower()
|
||||||
self.Channel.delete_user_from_channel(channel, uid)
|
self.Channel.delete_user_from_channel(channel, uid)
|
||||||
|
|
||||||
pass
|
except IndexError as ie:
|
||||||
|
self.Base.logs.error(f'Index Error: {ie}')
|
||||||
|
|
||||||
case 'UID':
|
case 'UID':
|
||||||
# ['@s2s-md/geoip=cc=GB|cd=United\\sKingdom|asn=16276|asname=OVH\\sSAS;s2s-md/tls_cipher=TLSv1.3-TLS_CHACHA20_POLY1305_SHA256;s2s-md/creationtime=1721564601',
|
# ['@s2s-md/geoip=cc=GB|cd=United\\sKingdom|asn=16276|asname=OVH\\sSAS;s2s-md/tls_cipher=TLSv1.3-TLS_CHACHA20_POLY1305_SHA256;s2s-md/creationtime=1721564601',
|
||||||
# ':001', 'UID', 'albatros', '0', '1721564597', 'albatros', 'vps-91b2f28b.vps.ovh.net',
|
# ':001', 'UID', 'albatros', '0', '1721564597', 'albatros', 'vps-91b2f28b.vps.ovh.net',
|
||||||
# '001HB8G04', '0', '+iwxz', 'Clk-A62F1D18.vps.ovh.net', 'Clk-A62F1D18.vps.ovh.net', 'MyZBwg==', ':...']
|
# '001HB8G04', '0', '+iwxz', 'Clk-A62F1D18.vps.ovh.net', 'Clk-A62F1D18.vps.ovh.net', 'MyZBwg==', ':...']
|
||||||
if 'webirc' in cmd[0]:
|
if 'webirc' in original_response[0]:
|
||||||
isWebirc = True
|
isWebirc = True
|
||||||
else:
|
else:
|
||||||
isWebirc = False
|
isWebirc = False
|
||||||
|
|
||||||
uid = str(cmd[8])
|
uid = str(original_response[8])
|
||||||
nickname = str(cmd[3])
|
nickname = str(original_response[3])
|
||||||
username = str(cmd[6])
|
username = str(original_response[6])
|
||||||
hostname = str(cmd[7])
|
hostname = str(original_response[7])
|
||||||
umodes = str(cmd[10])
|
umodes = str(original_response[10])
|
||||||
vhost = str(cmd[11])
|
vhost = str(original_response[11])
|
||||||
if not 'S' in umodes:
|
if not 'S' in umodes:
|
||||||
remote_ip = self.Base.decode_ip(str(cmd[13]))
|
remote_ip = self.Base.decode_ip(str(original_response[13]))
|
||||||
else:
|
else:
|
||||||
remote_ip = '127.0.0.1'
|
remote_ip = '127.0.0.1'
|
||||||
|
|
||||||
@@ -845,18 +849,19 @@ class Irc:
|
|||||||
)
|
)
|
||||||
|
|
||||||
for classe_name, classe_object in self.loaded_classes.items():
|
for classe_name, classe_object in self.loaded_classes.items():
|
||||||
classe_object.cmd(cmd_to_send)
|
classe_object.cmd(original_response)
|
||||||
|
|
||||||
case 'PRIVMSG':
|
case 'PRIVMSG':
|
||||||
try:
|
try:
|
||||||
# Supprimer la premiere valeur
|
# Supprimer la premiere valeur
|
||||||
cmd.pop(0)
|
cmd = interm_response.copy()
|
||||||
|
|
||||||
get_uid_or_nickname = str(cmd[0].replace(':',''))
|
get_uid_or_nickname = str(cmd[0].replace(':',''))
|
||||||
user_trigger = self.User.get_nickname(get_uid_or_nickname)
|
user_trigger = self.User.get_nickname(get_uid_or_nickname)
|
||||||
dnickname = self.Config.SERVICE_NICKNAME
|
dnickname = self.Config.SERVICE_NICKNAME
|
||||||
|
|
||||||
if len(cmd) == 6:
|
if len(cmd) == 6:
|
||||||
if cmd[1] == 'PRIVMSG' and str(cmd[3]).replace('.','') == ':auth':
|
if cmd[1] == 'PRIVMSG' and str(cmd[3]).replace(self.Config.SERVICE_PREFIX,'') == ':auth':
|
||||||
cmd_copy = cmd.copy()
|
cmd_copy = cmd.copy()
|
||||||
cmd_copy[5] = '**********'
|
cmd_copy[5] = '**********'
|
||||||
self.Base.logs.info(cmd_copy)
|
self.Base.logs.info(cmd_copy)
|
||||||
@@ -913,11 +918,11 @@ class Irc:
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
if not arg[0].lower() in self.commands:
|
if not arg[0].lower() in self.commands:
|
||||||
self.debug(f"This command {arg[0]} is not available")
|
self.Base.logs.debug(f"This command {arg[0]} sent by {user_trigger} is not available")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
cmd_to_send = convert_to_string.replace(':','')
|
cmd_to_send = convert_to_string.replace(':','')
|
||||||
self.Base.log_cmd(self.User.get_nickname(user_trigger), cmd_to_send)
|
self.Base.log_cmd(user_trigger, cmd_to_send)
|
||||||
|
|
||||||
fromchannel = None
|
fromchannel = None
|
||||||
if len(arg) >= 2:
|
if len(arg) >= 2:
|
||||||
@@ -931,15 +936,26 @@ class Irc:
|
|||||||
case _:
|
case _:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if cmd[2] != 'UID':
|
if original_response[2] != 'UID':
|
||||||
# Envoyer la commande aux classes dynamiquement chargées
|
# Envoyer la commande aux classes dynamiquement chargées
|
||||||
for classe_name, classe_object in self.loaded_classes.items():
|
for classe_name, classe_object in self.loaded_classes.items():
|
||||||
classe_object.cmd(cmd_to_send)
|
classe_object.cmd(original_response)
|
||||||
|
|
||||||
except IndexError as ie:
|
except IndexError as ie:
|
||||||
self.Base.logs.error(f"{ie} / {cmd} / length {str(len(cmd))}")
|
self.Base.logs.error(f"{ie} / {original_response} / length {str(len(original_response))}")
|
||||||
|
|
||||||
def _hcmds(self, user: str, channel: Union[str, None], cmd: list, fullcmd: list = []) -> None:
|
def _hcmds(self, user: str, channel: Union[str, None], cmd: list, fullcmd: list = []) -> None:
|
||||||
|
"""_summary_
|
||||||
|
|
||||||
|
Args:
|
||||||
|
user (str): The user who sent the query
|
||||||
|
channel (Union[str, None]): If the command contain the channel
|
||||||
|
cmd (list): The defender cmd
|
||||||
|
fullcmd (list, optional): The full list of the cmd coming from PRIVMS. Defaults to [].
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None: Nothing to return
|
||||||
|
"""
|
||||||
|
|
||||||
fromuser = self.User.get_nickname(user) # Nickname qui a lancé la commande
|
fromuser = self.User.get_nickname(user) # Nickname qui a lancé la commande
|
||||||
uid = self.User.get_uid(fromuser) # Récuperer le uid de l'utilisateur
|
uid = self.User.get_uid(fromuser) # Récuperer le uid de l'utilisateur
|
||||||
@@ -1285,10 +1301,6 @@ class Irc:
|
|||||||
results = self.Base.db_execute_query(f'SELECT module_name FROM {self.Config.table_module}')
|
results = self.Base.db_execute_query(f'SELECT module_name FROM {self.Config.table_module}')
|
||||||
results = results.fetchall()
|
results = results.fetchall()
|
||||||
|
|
||||||
# if len(results) == 0:
|
|
||||||
# self.send2socket(f":{dnickname} NOTICE {fromuser} :There is no module loaded")
|
|
||||||
# return False
|
|
||||||
|
|
||||||
found = False
|
found = False
|
||||||
|
|
||||||
for module in all_modules:
|
for module in all_modules:
|
||||||
@@ -1303,9 +1315,6 @@ class Irc:
|
|||||||
|
|
||||||
found = False
|
found = False
|
||||||
|
|
||||||
# for r in results:
|
|
||||||
# self.send2socket(f":{dnickname} NOTICE {fromuser} :{r[0]} - {self.Config.CONFIG_COLOR['verte']}Loaded{self.Config.CONFIG_COLOR['nogc']}")
|
|
||||||
|
|
||||||
case 'show_timers':
|
case 'show_timers':
|
||||||
|
|
||||||
if self.Base.running_timers:
|
if self.Base.running_timers:
|
||||||
|
|||||||
179
mods/mod_jsonrpc.py
Normal file
179
mods/mod_jsonrpc.py
Normal file
@@ -0,0 +1,179 @@
|
|||||||
|
from dataclasses import dataclass
|
||||||
|
from core.irc import Irc
|
||||||
|
from unrealircd_rpc_py.Live import Live
|
||||||
|
|
||||||
|
|
||||||
|
class Jsonrpc():
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class ModConfModel:
|
||||||
|
"""The Model containing the module parameters
|
||||||
|
"""
|
||||||
|
param_exemple1: str
|
||||||
|
param_exemple2: int
|
||||||
|
|
||||||
|
def __init__(self, ircInstance:Irc) -> None:
|
||||||
|
|
||||||
|
# Module name (Mandatory)
|
||||||
|
self.module_name = 'mod_' + str(self.__class__.__name__).lower()
|
||||||
|
|
||||||
|
# Add Irc Object to the module (Mandatory)
|
||||||
|
self.Irc = ircInstance
|
||||||
|
|
||||||
|
# Add Global Configuration to the module (Mandatory)
|
||||||
|
self.Config = ircInstance.Config
|
||||||
|
|
||||||
|
# Add Base object to the module (Mandatory)
|
||||||
|
self.Base = ircInstance.Base
|
||||||
|
|
||||||
|
# Add logs object to the module (Mandatory)
|
||||||
|
self.Logs = ircInstance.Base.logs
|
||||||
|
|
||||||
|
# Add User object to the module (Mandatory)
|
||||||
|
self.User = ircInstance.User
|
||||||
|
|
||||||
|
# Add Channel object to the module (Mandatory)
|
||||||
|
self.Channel = ircInstance.Channel
|
||||||
|
|
||||||
|
# Create module commands (Mandatory)
|
||||||
|
self.commands_level = {
|
||||||
|
1: ['jsonrpc']
|
||||||
|
}
|
||||||
|
|
||||||
|
# Init the module
|
||||||
|
self.__init_module()
|
||||||
|
|
||||||
|
# Log the module
|
||||||
|
self.Logs.debug(f'Module {self.module_name} loaded ...')
|
||||||
|
|
||||||
|
def __init_module(self) -> None:
|
||||||
|
|
||||||
|
# Insert module commands into the core one (Mandatory)
|
||||||
|
self.__set_commands(self.commands_level)
|
||||||
|
|
||||||
|
# Create you own tables (Mandatory)
|
||||||
|
# self.__create_tables()
|
||||||
|
|
||||||
|
# Load module configuration and sync with core one (Mandatory)
|
||||||
|
self.__load_module_configuration()
|
||||||
|
# End of mandatory methods you can start your customization #
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
def __set_commands(self, commands:dict[int, list[str]]) -> None:
|
||||||
|
"""### Rajoute les commandes du module au programme principal
|
||||||
|
|
||||||
|
Args:
|
||||||
|
commands (list): Liste des commandes du module
|
||||||
|
"""
|
||||||
|
for level, com in commands.items():
|
||||||
|
for c in commands[level]:
|
||||||
|
if not c in self.Irc.commands:
|
||||||
|
self.Irc.commands_level[level].append(c)
|
||||||
|
self.Irc.commands.append(c)
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
def __create_tables(self) -> None:
|
||||||
|
"""Methode qui va créer la base de donnée si elle n'existe pas.
|
||||||
|
Une Session unique pour cette classe sera crée, qui sera utilisé dans cette classe / module
|
||||||
|
Args:
|
||||||
|
database_name (str): Nom de la base de données ( pas d'espace dans le nom )
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None: Aucun retour n'es attendu
|
||||||
|
"""
|
||||||
|
|
||||||
|
table_logs = '''CREATE TABLE IF NOT EXISTS test_logs (
|
||||||
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
|
datetime TEXT,
|
||||||
|
server_msg TEXT
|
||||||
|
)
|
||||||
|
'''
|
||||||
|
|
||||||
|
self.Base.db_execute_query(table_logs)
|
||||||
|
return None
|
||||||
|
|
||||||
|
def callback_sent_to_irc(self, json_response: str):
|
||||||
|
dnickname = self.Config.SERVICE_NICKNAME
|
||||||
|
dchanlog = self.Config.SERVICE_CHANLOG
|
||||||
|
|
||||||
|
self.Irc.send2socket(f":{dnickname} PRIVMSG {dchanlog} :{json_response}")
|
||||||
|
pass
|
||||||
|
|
||||||
|
def thread_start_jsonrpc(self):
|
||||||
|
|
||||||
|
liveRpc = Live(path_to_socket_file='/home/adator/IRC/unrealircd6.1.2.1/data/rpc.socket',
|
||||||
|
callback_object_instance=self,
|
||||||
|
callback_method_name='callback_sent_to_irc'
|
||||||
|
)
|
||||||
|
liveRpc.execute_async_method()
|
||||||
|
|
||||||
|
pass
|
||||||
|
|
||||||
|
def __load_module_configuration(self) -> None:
|
||||||
|
"""### Load Module Configuration
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
# Build the default configuration model (Mandatory)
|
||||||
|
self.ModConfig = self.ModConfModel(param_exemple1='param value 1', param_exemple2=1)
|
||||||
|
|
||||||
|
# Sync the configuration with core configuration (Mandatory)
|
||||||
|
#self.Base.db_sync_core_config(self.module_name, self.ModConfig)
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
except TypeError as te:
|
||||||
|
self.Logs.critical(te)
|
||||||
|
|
||||||
|
def __update_configuration(self, param_key: str, param_value: str):
|
||||||
|
"""Update the local and core configuration
|
||||||
|
|
||||||
|
Args:
|
||||||
|
param_key (str): The parameter key
|
||||||
|
param_value (str): The parameter value
|
||||||
|
"""
|
||||||
|
self.Base.db_update_core_config(self.module_name, self.ModConfig, param_key, param_value)
|
||||||
|
|
||||||
|
def unload(self) -> None:
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
def cmd(self, data:list) -> None:
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
def _hcmds(self, user:str, channel: any, cmd: list, fullcmd: list = []) -> None:
|
||||||
|
|
||||||
|
command = str(cmd[0]).lower()
|
||||||
|
dnickname = self.Config.SERVICE_NICKNAME
|
||||||
|
fromuser = user
|
||||||
|
fromchannel = str(channel) if not channel is None else None
|
||||||
|
|
||||||
|
match command:
|
||||||
|
|
||||||
|
case 'jsonrpc':
|
||||||
|
|
||||||
|
self.Base.create_thread(self.thread_start_jsonrpc, run_once=True)
|
||||||
|
|
||||||
|
pass
|
||||||
|
|
||||||
|
case 'ia':
|
||||||
|
try:
|
||||||
|
|
||||||
|
self.Base.create_thread(self.thread_ask_ia, ('',))
|
||||||
|
|
||||||
|
self.Irc.send2socket(f":{dnickname} NOTICE {fromuser} : This is a notice to the sender ...")
|
||||||
|
self.Irc.send2socket(f":{dnickname} PRIVMSG {fromuser} : This is private message to the sender ...")
|
||||||
|
|
||||||
|
if not fromchannel is None:
|
||||||
|
self.Irc.send2socket(f":{dnickname} PRIVMSG {fromchannel} : This is channel message to the sender ...")
|
||||||
|
|
||||||
|
# How to update your module configuration
|
||||||
|
self.__update_configuration('param_exemple2', 7)
|
||||||
|
|
||||||
|
# Log if you want the result
|
||||||
|
self.Logs.debug(f"Test logs ready")
|
||||||
|
|
||||||
|
except Exception as err:
|
||||||
|
self.Logs.error(f"Unknown Error: {err}")
|
||||||
BIN
unrealircd_rpc_py-0.0.8-py3-none-any.whl
Normal file
BIN
unrealircd_rpc_py-0.0.8-py3-none-any.whl
Normal file
Binary file not shown.
BIN
unrealircd_rpc_py-0.0.8.tar.gz
Normal file
BIN
unrealircd_rpc_py-0.0.8.tar.gz
Normal file
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"version": "5.1.8"
|
"version": "5.1.9"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user