mirror of
				https://gitea.publichub.eu/oscar.krause/fastapi-dls.git
				synced 2025-11-04 09:46:09 +00:00 
			
		
		
		
	main.py - added some debug endpoints
This commit is contained in:
		
							
								
								
									
										18
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								README.md
									
									
									
									
									
								
							@@ -2,6 +2,24 @@
 | 
			
		||||
 | 
			
		||||
Minimal Delegated License Service (DLS).
 | 
			
		||||
 | 
			
		||||
## Endpoints
 | 
			
		||||
 | 
			
		||||
### `GET /`
 | 
			
		||||
 | 
			
		||||
Just a simple *hello world* endpoint.
 | 
			
		||||
 | 
			
		||||
### `GET /status`
 | 
			
		||||
 | 
			
		||||
Status endpoint, used for *healthcheck*.
 | 
			
		||||
 | 
			
		||||
### `GET /-/origins`
 | 
			
		||||
 | 
			
		||||
List registered origins.
 | 
			
		||||
 | 
			
		||||
### `GET /-/leases`
 | 
			
		||||
 | 
			
		||||
List current leases.
 | 
			
		||||
 | 
			
		||||
# Setup (Docker)
 | 
			
		||||
 | 
			
		||||
**Run this on the Docker-Host**
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										13
									
								
								app/main.py
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								app/main.py
									
									
									
									
									
								
							@@ -5,6 +5,7 @@ from os.path import join, dirname
 | 
			
		||||
from os import getenv
 | 
			
		||||
from fastapi import FastAPI, HTTPException
 | 
			
		||||
from fastapi.requests import Request
 | 
			
		||||
from fastapi.encoders import jsonable_encoder
 | 
			
		||||
import json
 | 
			
		||||
from datetime import datetime
 | 
			
		||||
from dateutil.relativedelta import relativedelta
 | 
			
		||||
@@ -60,6 +61,18 @@ async def status(request: Request):
 | 
			
		||||
    return JSONResponse({'status': 'up'})
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@app.get('/-/origins')
 | 
			
		||||
async def _origins(request: Request):
 | 
			
		||||
    response = list(map(lambda x: jsonable_encoder(x), db['origin'].all()))
 | 
			
		||||
    return JSONResponse(response)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@app.get('/-/leases')
 | 
			
		||||
async def _leases(request: Request):
 | 
			
		||||
    response = list(map(lambda x: jsonable_encoder(x), db['lease'].all()))
 | 
			
		||||
    return JSONResponse(response)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# venv/lib/python3.9/site-packages/nls_core_service_instance/service_instance_token_manager.py
 | 
			
		||||
@app.get('/client-token')
 | 
			
		||||
async def client_token():
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user