Add get IP method
This commit is contained in:
parent
11ef9cabfb
commit
d7d7826788
12
src/api.py
12
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()
|
||||
|
|
Loading…
Reference in New Issue