This commit is contained in:
parent
f39fa6f936
commit
58d7de6073
@ -1,4 +1,5 @@
|
|||||||
import json
|
import json
|
||||||
|
import time
|
||||||
from flask import request, current_app, jsonify
|
from flask import request, current_app, jsonify
|
||||||
from flask_classful import FlaskView
|
from flask_classful import FlaskView
|
||||||
from db import redis_client # ez nagyon otvar
|
from db import redis_client # ez nagyon otvar
|
||||||
@ -10,20 +11,25 @@ class SyncView(FlaskView):
|
|||||||
remote_uuid = request.json['uuid']
|
remote_uuid = request.json['uuid']
|
||||||
remote_ip = request.remote_addr
|
remote_ip = request.remote_addr
|
||||||
|
|
||||||
consumer_list = json.loads((redis_client.get("consumer_list") or b"{}").decode('utf-8'))
|
cust_key = f"customer_{remote_uuid}"
|
||||||
|
|
||||||
# Log something about it
|
last_known_info = json.loads((redis_client.get("cust_key") or b"{}").decode('utf-8'))
|
||||||
if remote_uuid not in consumer_list.keys():
|
|
||||||
|
if not last_known_info:
|
||||||
current_app.logger.info(f"New consumer registered (unknown UUID): {remote_uuid} at {remote_ip}")
|
current_app.logger.info(f"New consumer registered (unknown UUID): {remote_uuid} at {remote_ip}")
|
||||||
else: # known
|
|
||||||
if consumer_list[remote_uuid]['ip'] != remote_ip:
|
else:
|
||||||
|
if last_known_info['ip'] != remote_ip:
|
||||||
current_app.logger.info(f"Address of consumer {remote_uuid} changed to {remote_ip}")
|
current_app.logger.info(f"Address of consumer {remote_uuid} changed to {remote_ip}")
|
||||||
|
|
||||||
consumer_list.update(
|
info = {
|
||||||
{remote_uuid: {"ip": remote_ip}}
|
"uuid": remote_uuid,
|
||||||
)
|
"ip": remote_ip,
|
||||||
|
"last_seen": time.time()
|
||||||
|
}
|
||||||
|
|
||||||
redis_client.set("consumer_list", json.dumps(consumer_list).encode('utf-8'))
|
redis_client.set(cust_key, json.dumps(info).encode('utf-8'))
|
||||||
|
redis_client.expire(cust_key, 30)
|
||||||
|
|
||||||
response = {
|
response = {
|
||||||
"uuid": current_app.config['LOCAL_UUID']
|
"uuid": current_app.config['LOCAL_UUID']
|
||||||
|
Reference in New Issue
Block a user