monolith/modules/helpers.py

56 lines
1.6 KiB
Python
Raw Normal View History

2022-08-11 18:22:09 +00:00
import main
from modules import chankeep
2022-08-13 22:14:51 +00:00
from utils.logging.debug import debug
2022-08-11 19:09:14 +00:00
2022-08-11 18:22:09 +00:00
def get_first_relay(net):
"""
Get the first relay in the network.
:param net: the network
:param num: number or relay
:return: IRCPool instance for the IRC bot
"""
cur_relay = 0
2022-08-11 19:09:14 +00:00
max_relay = len(main.network[net].relays.keys()) + 1
2022-08-13 22:14:17 +00:00
debug(f"get_first_relay() {net}: max_relay:{max_relay}")
2022-08-11 18:22:09 +00:00
activeRelays = chankeep.getActiveRelays(net)
2022-08-13 22:14:17 +00:00
debug(f"get_first_relay() {net}: activeRelays:{activeRelays}")
2022-08-11 18:22:09 +00:00
while cur_relay != max_relay:
cur_relay += 1
if cur_relay not in activeRelays:
continue
name = net + str(cur_relay)
if name in main.IRCPool.keys():
2022-08-13 22:14:17 +00:00
debug(f"get_first_relay() {net}: found relay {name}")
2022-08-11 18:22:09 +00:00
return main.IRCPool[name]
return None
2022-08-11 19:09:14 +00:00
2022-08-11 18:22:09 +00:00
def is_first_relay(net, num):
"""
Determine if we are the first relay for the network.
:param net: the network
:param num: number or relay
:return: True if we are the first relay, False otherwise
"""
2022-08-11 19:26:19 +00:00
first_relay = get_first_relay(net)
if not first_relay:
return False
return first_relay.num == num
2022-08-13 21:36:18 +00:00
def get_active_relays(net):
"""
Get all active instances for the network.
:param net: the network
:return: list of active instances
:rtype: list of IRCPool instances
"""
active_nums = chankeep.getActiveRelays(net)
active_insts = []
for num in active_nums:
name = net + str(num)
if name in main.IRCPool.keys():
active_insts.append(main.IRCPool[name])
return active_insts