Go to file
Santiago Lo Coco 82f1f66646 Update README.md 2025-01-01 16:15:49 +01:00
docker Update API, fix bugs and add more methods 2024-11-05 18:42:26 +01:00
src Fix bool evaluation bugs 2024-12-09 16:23:21 +01:00
.gitignore Refactor index.html 2024-10-25 21:26:31 +02:00
.pre-commit-config.yaml Move setup.cfg 2024-11-05 19:17:05 +01:00
README.md Update README.md 2025-01-01 16:15:49 +01:00
run.bat Add pause command 2024-11-11 23:19:30 +01:00
run.sh Reformat code 2024-10-20 22:57:18 +02:00

README.md

GetEndpoints

GetEndpoints is a REST API and responsive web application that makes managing WebRTC endpoint streams easier. It is designed for Unity applications running on the HoloLens, where typing long URLs (endpoints) and changing settings can be slow and frustrating.

Instead of hardcoding endpoints and needing to redeploy the app every time you want to make a change, GetEndpoints acts as your single source of truth (SSOT). This allows you to update and manage your endpoints in real-time, keeping your application up to date.

Features

  • Automatic service discovery: Registers as an _http._tcp. service using Zeroconf, making it easily discoverable on the network.
  • Lightweight REST API: Minimal yet robust API for managing WebRTC endpoints.
  • Responsive and bloat-free: Built with vanilla JS and HTML for fast, adaptable performance on any device.
  • SQLite database: Uses SQLite by default, easily extendable to other databases by adjusting the database endpoint.

Prerequisites

  • python >= 3.11
  • python-venv

Usage

  1. Create your src/.env file according to your requirements. You can copy src/.env.dev as a reference.

  2. Run the application:

    bash run.sh
    

    or, if you are on Windows:

    .\start.bat
    

    Alternatively, if you prefer to use docker you can run:

    cd docker
    docker compose up --build
    

    However, due to the use of network_mode: host, this method is only supported on Linux. For more information, refer to the docker docs.

Endpoints

  • GET /api/endpoints: Get the list of all WebRTC endpoints.
  • POST /api/endpoints: Add a new endpoint.
  • GET /api/endpoints/{id}: Get a specific endpoint by ID.
  • PUT /api/endpoints/{id}: Update an existing endpoint.
  • DELETE /api/endpoints/{id}: Delete an endpoint.

Note that by default, the API initializes with predefined endpoints unless DEFAULT_ENDPOINTS=false is set in the .env file. The default endpoints are:

  • /api/endpoints/1: {"url": "http://$SERVICE_IP:8100/mystream/"}
  • /api/endpoints/2: {"url": "http://$SERVICE_IP:8200/mystream/"}

Here, we use the service IP, which matches the IP address for the API. This way, we don't rely on DNS resolution, which can sometimes have issues. The main task is to access the API endpoint, which can be done either through the service IP or with Zeroconf. You can also use a custom mDNS client that follows RFC 6762 and RFC 6763, like the one implemented in WebViewStream.

cURL examples

curl http://$SERVICE_IP:5000/api/endpoints
curl http://$SERVICE_IP:5000/api/endpoints/1
curl -X PUT http://$SERVICE_IP:5000/api/endpoints/1 -H "Content-Type: application/json" -d '{"url": "http://$SERVICE_IP:8500/mystream/"}'

Invoke-WebRequest examples

Invoke-WebRequest -Uri http://$SERVICE_IP:5000/api/endpoints
Invoke-WebRequest -Uri http://$SERVICE_IP:5000/api/endpoints/1
Invoke-WebRequest -Uri http://$SERVICE_IP:5000/api/endpoints/1 -Method PUT -Headers @{"Content-Type"="application/json"} -Body '{"url": "http://$SERVICE_IP:8500/mystream/"}'