Implemented ip change checking
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
7ce88f1a74
commit
0713cabc6b
9
app.py
9
app.py
@ -6,6 +6,7 @@ import logging
|
|||||||
|
|
||||||
from redis_super_storage import RedisSuperStorage
|
from redis_super_storage import RedisSuperStorage
|
||||||
from communicators import ConsumerCommunicator, ProducerCommunicator
|
from communicators import ConsumerCommunicator, ProducerCommunicator
|
||||||
|
from ip_watchdog import IPWatchdog
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Scheduler
|
Scheduler
|
||||||
@ -32,13 +33,21 @@ def main():
|
|||||||
redis_storage = RedisSuperStorage(os.environ.get('REDIS_URL', "redis://localhost:6379/0"), 5)
|
redis_storage = RedisSuperStorage(os.environ.get('REDIS_URL', "redis://localhost:6379/0"), 5)
|
||||||
consumer_communicator = ConsumerCommunicator(redis_storage)
|
consumer_communicator = ConsumerCommunicator(redis_storage)
|
||||||
producer_communicator = ProducerCommunicator(redis_storage)
|
producer_communicator = ProducerCommunicator(redis_storage)
|
||||||
|
ip_watchdog = IPWatchdog(redis_storage)
|
||||||
|
|
||||||
|
logging.info("Syncing to initial consumer list")
|
||||||
for ip in get_initial_ip_list():
|
for ip in get_initial_ip_list():
|
||||||
|
logging.debug(f"Syncing to {ip}")
|
||||||
consumer_communicator.targeted_snyc(ip)
|
consumer_communicator.targeted_snyc(ip)
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
logging.debug("Doing a sync")
|
logging.debug("Doing a sync")
|
||||||
consumer_communicator.sync_all()
|
consumer_communicator.sync_all()
|
||||||
|
|
||||||
|
ip_changed, ipaddr = ip_watchdog.ip_changed()
|
||||||
|
if ip_changed:
|
||||||
|
producer_communicator.push_ip_update(ipaddr)
|
||||||
|
|
||||||
time.sleep(os.environ.get("RUN_INTERVAL", 30))
|
time.sleep(os.environ.get("RUN_INTERVAL", 30))
|
||||||
|
|
||||||
|
|
||||||
|
24
ip_watchdog.py
Normal file
24
ip_watchdog.py
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
from typing import Tuple
|
||||||
|
import logging
|
||||||
|
import socket
|
||||||
|
|
||||||
|
from redis_super_storage import RedisSuperStorage
|
||||||
|
|
||||||
|
|
||||||
|
class IPWatchdog:
|
||||||
|
|
||||||
|
def __init__(self, redis_store: RedisSuperStorage):
|
||||||
|
self._redis_store = redis_store
|
||||||
|
self._host_name = socket.gethostname()
|
||||||
|
|
||||||
|
def ip_changed(self) -> Tuple[bool, str]:
|
||||||
|
old_ip = self._redis_store.current_ip
|
||||||
|
current_ip = socket.gethostbyname(self._host_name)
|
||||||
|
|
||||||
|
if current_ip != old_ip:
|
||||||
|
logging.info(f'IP changed: {old_ip} -> {current_ip}')
|
||||||
|
self._redis_store.current_ip = current_ip
|
||||||
|
return True, current_ip
|
||||||
|
|
||||||
|
return False, old_ip
|
@ -2,12 +2,11 @@
|
|||||||
import redis
|
import redis
|
||||||
import os
|
import os
|
||||||
import json
|
import json
|
||||||
import socket
|
|
||||||
import time
|
import time
|
||||||
import logging
|
|
||||||
|
|
||||||
|
|
||||||
class RedisSuperStorage:
|
class RedisSuperStorage:
|
||||||
|
|
||||||
def __init__(self, redis_url: str, timeout: int):
|
def __init__(self, redis_url: str, timeout: int):
|
||||||
self.r = redis.from_url(redis_url)
|
self.r = redis.from_url(redis_url)
|
||||||
self._timeout = timeout
|
self._timeout = timeout
|
||||||
@ -38,21 +37,6 @@ class RedisSuperStorage:
|
|||||||
|
|
||||||
return list_of_producer_ip
|
return list_of_producer_ip
|
||||||
|
|
||||||
def is_ip_changed(self) -> bool:
|
|
||||||
old_ip = self.r.get('current_ip')
|
|
||||||
|
|
||||||
if old_ip:
|
|
||||||
old_ip = old_ip.decode('utf-8')
|
|
||||||
|
|
||||||
host_name = socket.gethostname()
|
|
||||||
current_ip = socket.gethostbyname(host_name)
|
|
||||||
|
|
||||||
if current_ip != old_ip:
|
|
||||||
logging.info(f'IP changed: {old_ip} -> {current_ip}')
|
|
||||||
self.r.set('current_ip', current_ip.encode('utf-8'))
|
|
||||||
|
|
||||||
return current_ip != old_ip
|
|
||||||
|
|
||||||
def update_consumer(self, uuid: str, ip: str):
|
def update_consumer(self, uuid: str, ip: str):
|
||||||
|
|
||||||
cust_key = f"consumer_{uuid}"
|
cust_key = f"consumer_{uuid}"
|
||||||
@ -65,3 +49,16 @@ class RedisSuperStorage:
|
|||||||
|
|
||||||
self.r.set(cust_key, json.dumps(info).encode('utf-8'))
|
self.r.set(cust_key, json.dumps(info).encode('utf-8'))
|
||||||
self.r.expire(cust_key, os.environ["CUSTOMER_TIMEOUT"])
|
self.r.expire(cust_key, os.environ["CUSTOMER_TIMEOUT"])
|
||||||
|
|
||||||
|
def get_current_ip(self) -> str:
|
||||||
|
ip = self.r.get('current_ip')
|
||||||
|
|
||||||
|
if ip:
|
||||||
|
ip = ip.decode('utf-8')
|
||||||
|
|
||||||
|
return ip
|
||||||
|
|
||||||
|
def set_current_ip(self, ip: str):
|
||||||
|
self.r.set('current_ip', ip.encode('utf-8'))
|
||||||
|
|
||||||
|
current_ip = property(get_current_ip, set_current_ip)
|
||||||
|
Reference in New Issue
Block a user