Create endpoint if it does not exist

This commit is contained in:
Santiago Lo Coco 2024-12-09 15:23:43 +01:00
parent 7b778cbe9f
commit bacfc211e0
2 changed files with 4 additions and 3 deletions

View File

@ -3,5 +3,5 @@ SERVICE_NAME=room7200
SERVICE_TYPE=_http._tcp.local. SERVICE_TYPE=_http._tcp.local.
SERVICE_IP=192.168.137.1 SERVICE_IP=192.168.137.1
SERVICE_PORT=5000 SERVICE_PORT=5000
DEFAULT_ENDPOINTS=true DEFAULT_ENDPOINTS=false
LOG_LEVEL=WARN LOG_LEVEL=WARN

View File

@ -47,8 +47,9 @@ def update_endpoint(endpoint_id):
new_url = data.get("url") new_url = data.get("url")
endpoint_exists = check_endpoint_exists(data, new_url) endpoint_exists = check_endpoint_exists(data, new_url)
if endpoint_exists: if not endpoint_exists:
return endpoint_exists endpoint_id = add_endpoint_to_db(new_url)
return jsonify({"id": endpoint_id, "url": new_url}), 201
updated = update_endpoint_in_db(endpoint_id, new_url) updated = update_endpoint_in_db(endpoint_id, new_url)
if updated: if updated: