Add get IP method

This commit is contained in:
Santiago Lo Coco 2024-10-25 22:07:09 +02:00
parent 11ef9cabfb
commit d7d7826788
1 changed files with 12 additions and 0 deletions

View File

@ -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()