2020-03-29 16:48:34 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import sentry_sdk
|
2020-03-29 19:13:42 +02:00
|
|
|
import time
|
2020-03-29 19:26:52 +02:00
|
|
|
import requests
|
|
|
|
import requests.exceptions
|
2020-03-29 19:13:42 +02:00
|
|
|
import os
|
|
|
|
import redis
|
|
|
|
import json
|
2020-03-29 16:48:34 +02:00
|
|
|
|
|
|
|
"""
|
2020-03-29 17:00:35 +02:00
|
|
|
Scheduler
|
2020-03-29 16:48:34 +02:00
|
|
|
"""
|
|
|
|
|
2020-03-29 17:16:41 +02:00
|
|
|
__author__ = "@kocsisr"
|
2020-03-29 16:48:34 +02:00
|
|
|
__copyright__ = "Copyright 2020, GoldenPogácsa Team"
|
|
|
|
__module_name__ = "app"
|
|
|
|
__version__text__ = "1"
|
|
|
|
|
2020-03-29 19:13:42 +02:00
|
|
|
sentry_sdk.init("https://0a106e104e114bc9a3fa47f9cb0db2f4@sentry.kmlabz.com/10")
|
2020-03-29 16:48:34 +02:00
|
|
|
|
2020-03-29 19:30:59 +02:00
|
|
|
|
2020-03-29 19:26:52 +02:00
|
|
|
def main():
|
2020-03-29 19:13:42 +02:00
|
|
|
r = redis.Redis(host='localhost', port=6379, db=0)
|
|
|
|
|
|
|
|
ip_list = os.environ['INITIAL_SERVERS'].split(',')
|
|
|
|
|
2020-03-29 19:30:59 +02:00
|
|
|
consumer_list_redis = json.loads((r.get('consumer_list') or b'{}').decode('utf-8'))
|
2020-03-29 19:13:42 +02:00
|
|
|
|
|
|
|
temp_dict = {}
|
|
|
|
|
2020-03-29 19:26:52 +02:00
|
|
|
for ip in ip_list:
|
|
|
|
try:
|
|
|
|
response = requests.post(f"http://{ip}/sync", json={'uuid': os.environ['LOCAL_UUID']})
|
|
|
|
except requests.exceptions.ConnectionError:
|
|
|
|
continue
|
2020-03-29 19:13:42 +02:00
|
|
|
|
|
|
|
if response.status_code == 200:
|
2020-03-29 19:26:52 +02:00
|
|
|
temp_dict[response.json()['uuid']] = {'ip': ip}
|
2020-03-29 19:13:42 +02:00
|
|
|
|
2020-03-29 19:30:59 +02:00
|
|
|
consumer_list_redis.update(temp_dict)
|
2020-03-29 19:13:42 +02:00
|
|
|
|
2020-03-29 19:30:59 +02:00
|
|
|
r.set('consumer_list', json.dumps(consumer_list_redis).encode('utf-8'))
|
2020-03-29 19:13:42 +02:00
|
|
|
|
|
|
|
while True:
|
|
|
|
|
2020-03-29 19:30:59 +02:00
|
|
|
consumer_list_redis = json.loads((r.get('consumer_list') or b'{}').decode('utf-8'))
|
2020-03-29 19:13:42 +02:00
|
|
|
|
2020-03-29 19:30:59 +02:00
|
|
|
for uuid, info in consumer_list_redis.items():
|
|
|
|
ip = info['ip']
|
2020-03-29 19:26:52 +02:00
|
|
|
try:
|
|
|
|
response = requests.post(f"http://{ip}/sync", json={'uuid': os.environ['LOCAL_UUID']})
|
|
|
|
except requests.exceptions.ConnectionError:
|
|
|
|
continue
|
|
|
|
|
2020-03-29 19:13:42 +02:00
|
|
|
if response.status_code == 200:
|
2020-03-29 19:26:52 +02:00
|
|
|
temp_dict[response.json()['uuid']] = {'ip': ip}
|
2020-03-29 19:13:42 +02:00
|
|
|
|
2020-03-29 19:30:59 +02:00
|
|
|
consumer_list_redis.update(temp_dict)
|
|
|
|
r.set('consumer_list', json.dumps(consumer_list_redis).encode('utf-8'))
|
2020-03-29 19:13:42 +02:00
|
|
|
|
|
|
|
time.sleep(30)
|
|
|
|
|
2020-03-29 19:26:52 +02:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2020-03-29 19:31:43 +02:00
|
|
|
try:
|
|
|
|
main()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
pass
|