From d7d7826788797a6b4c5f16f852cd194305cd20a9 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 25 Oct 2024 22:07:09 +0200 Subject: [PATCH] Add get IP method --- src/api.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/api.py b/src/api.py index 40344fc..45f141c 100644 --- a/src/api.py +++ b/src/api.py @@ -1,10 +1,22 @@ +import socket + from flask import Blueprint, abort, jsonify, request +from config import API_HOST from db import get_endpoint_by_id, get_endpoints_from_db, update_endpoint_in_db api = Blueprint("api", __name__) +@api.route("/api/ip", methods=["GET"]) +def get_ip(): + try: + ip_address = socket.gethostbyname(API_HOST) + return jsonify({"ip": ip_address}), 200 + except socket.gaierror: + return jsonify({"error": f"Could not resolve IP address for {API_HOST}"}), 404 + + @api.route("/api/endpoints", methods=["GET"]) def get_endpoints(): endpoints = get_endpoints_from_db()