mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-03 19:40:16 -04:00
* Implemented API routes for getting all, creating, updating, and deleting resources, services, and tags. * Updated main.py for API routes to include tags and rolled entities back. * Created API routes for create, update, delete, get_all, and get_by_name. Deleted service methods for get by id. * Defaults created_at to current time * Write markdown file for HTTP requests using curl --------- Co-authored-by: pmoharana-cmd <pmoharana032474@gmail.com>
37 lines
1007 B
Python
37 lines
1007 B
Python
from fastapi import FastAPI, Request
|
|
from fastapi.responses import JSONResponse
|
|
from fastapi.middleware.gzip import GZipMiddleware
|
|
|
|
|
|
from .api import user, health, service, resource, tag
|
|
|
|
description = """
|
|
Welcome to the **COMPASS** RESTful Application Programming Interface.
|
|
"""
|
|
|
|
app = FastAPI(
|
|
title="Compass API",
|
|
version="0.0.1",
|
|
description=description,
|
|
openapi_tags=[
|
|
user.openapi_tags,
|
|
health.openapi_tags,
|
|
service.openapi_tags,
|
|
resource.openapi_tags,
|
|
tag.openapi_tags
|
|
],
|
|
)
|
|
|
|
app.add_middleware(GZipMiddleware)
|
|
|
|
feature_apis = [user, health, service, resource, tag]
|
|
|
|
for feature_api in feature_apis:
|
|
app.include_router(feature_api.api)
|
|
|
|
|
|
# Add application-wide exception handling middleware for commonly encountered API Exceptions
|
|
@app.exception_handler(Exception)
|
|
def permission_exception_handler(request: Request, e: Exception):
|
|
return JSONResponse(status_code=403, content={"message": str(e)})
|