2023-12-01 22:59:57 +01:00
|
|
|
from ninja import Router as APIRouter
|
|
|
|
|
2023-12-03 16:37:05 +01:00
|
|
|
from c3nav.api.exceptions import API404
|
|
|
|
from c3nav.api.newauth import APITokenAuth, auth_permission_responses
|
|
|
|
from c3nav.editor.newapi.base import newapi_etag_with_update_cache_key
|
|
|
|
from c3nav.editor.newapi.geometries import get_level_geometries_result, get_space_geometries_result
|
|
|
|
from c3nav.editor.newapi.schemas import (EditorID, EditorLevelGeometriesElemSchema, EditorSpaceGeometriesElemSchema,
|
|
|
|
GeometryStylesSchema, UpdateCacheKey)
|
|
|
|
from c3nav.editor.views.base import editor_etag_func
|
2023-12-01 22:59:57 +01:00
|
|
|
from c3nav.mapdata.models import Source
|
|
|
|
from c3nav.mapdata.newapi.base import newapi_etag
|
|
|
|
from c3nav.mapdata.schemas.responses import BoundsSchema
|
|
|
|
|
|
|
|
editor_api_router = APIRouter(tags=["editor"], auth=APITokenAuth(permissions={"editor_access"}))
|
|
|
|
|
|
|
|
|
|
|
|
@editor_api_router.get('/bounds/', summary="Get editor map boundaries",
|
2023-12-02 01:14:09 +01:00
|
|
|
response={200: BoundsSchema, **auth_permission_responses},
|
|
|
|
openapi_extra={"security": [{"APITokenAuth": ["editor_access"]}]})
|
2023-12-01 22:59:57 +01:00
|
|
|
@newapi_etag()
|
2023-12-03 17:18:29 +01:00
|
|
|
def bounds(request):
|
2023-12-01 22:59:57 +01:00
|
|
|
return {
|
|
|
|
"bounds": Source.max_bounds(),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@editor_api_router.get('/geometrystyles/', summary="get the default colors for each geometry type",
|
2023-12-02 01:14:09 +01:00
|
|
|
response={200: GeometryStylesSchema, **auth_permission_responses},
|
|
|
|
openapi_extra={"security": [{"APITokenAuth": ["editor_access"]}]})
|
2023-12-01 22:59:57 +01:00
|
|
|
@newapi_etag(permissions=False)
|
2023-12-03 17:18:29 +01:00
|
|
|
def geometrystyles(request):
|
2023-12-01 22:59:57 +01:00
|
|
|
return {
|
|
|
|
'building': '#aaaaaa',
|
|
|
|
'space': '#eeeeee',
|
|
|
|
'hole': 'rgba(255, 0, 0, 0.3)',
|
|
|
|
'door': '#ffffff',
|
|
|
|
'area': '#55aaff',
|
|
|
|
'stair': '#a000a0',
|
|
|
|
'ramp': 'rgba(160, 0, 160, 0.2)',
|
|
|
|
'obstacle': '#999999',
|
|
|
|
'lineobstacle': '#999999',
|
|
|
|
'column': 'rgba(0, 0, 50, 0.3)',
|
|
|
|
'poi': '#4488cc',
|
|
|
|
'shadow': '#000000',
|
|
|
|
'graphnode': '#009900',
|
|
|
|
'graphedge': '#00CC00',
|
|
|
|
'altitudemarker': '#0000FF',
|
|
|
|
'wifimeasurement': '#DDDD00',
|
|
|
|
'rangingbeacon': '#CC00CC',
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@editor_api_router.get('/geometries/space/{space_id}/', summary="get the geometries to display for a space",
|
|
|
|
response={200: list[EditorSpaceGeometriesElemSchema], **API404.dict(),
|
2023-12-02 01:14:09 +01:00
|
|
|
**auth_permission_responses},
|
|
|
|
openapi_extra={"security": [{"APITokenAuth": ["editor_access"]}]})
|
2023-12-03 17:45:04 +01:00
|
|
|
@newapi_etag_with_update_cache_key(etag_func=editor_etag_func)
|
2023-12-03 16:37:05 +01:00
|
|
|
def space_geometries(request, space_id: EditorID, update_cache_key: UpdateCacheKey = None, **kwargs):
|
2023-12-01 22:59:57 +01:00
|
|
|
"""
|
|
|
|
look. this is a complex mess. there will hopefully be more documentation soon. or a better endpoint.
|
|
|
|
"""
|
2023-12-03 16:37:05 +01:00
|
|
|
# newapi_etag_with_update_cache_key does the following, don't let it confuse you:
|
|
|
|
# - update_cache_key becomes the actual update_cache_key, not the one supplied be the user
|
|
|
|
# - kwargs has "update_cache_key_match", which is true if update_cache_key matches the one supplied be the user
|
|
|
|
# this is done so the api etag is correctly generated, as it takes the function arguments into account
|
|
|
|
return get_space_geometries_result(
|
|
|
|
request,
|
|
|
|
space_id=space_id,
|
|
|
|
update_cache_key=update_cache_key,
|
|
|
|
update_cache_key_match=kwargs["update_cache_key_match"]
|
|
|
|
)
|
|
|
|
# todo: test the heck out of this
|
2023-12-01 22:59:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
@editor_api_router.get('/geometries/level/{level_id}/', summary="get the geometries to display for a level",
|
|
|
|
response={200: list[EditorLevelGeometriesElemSchema], **API404.dict(),
|
2023-12-02 01:14:09 +01:00
|
|
|
**auth_permission_responses},
|
|
|
|
openapi_extra={"security": [{"APITokenAuth": ["editor_access"]}]})
|
2023-12-03 17:45:04 +01:00
|
|
|
@newapi_etag_with_update_cache_key(etag_func=editor_etag_func)
|
2023-12-03 16:37:05 +01:00
|
|
|
def level_geometries(request, level_id: EditorID, update_cache_key: UpdateCacheKey = None, **kwargs):
|
2023-12-01 22:59:57 +01:00
|
|
|
"""
|
|
|
|
look. this is a complex mess. there will hopefully be more documentation soon. or a better endpoint.
|
|
|
|
"""
|
2023-12-03 16:37:05 +01:00
|
|
|
# newapi_etag_with_update_cache_key does the following, don't let it confuse you:
|
|
|
|
# - update_cache_key becomes the actual update_cache_key, not the one supplied be the user
|
|
|
|
# - kwargs has "update_cache_key_match", which is true if update_cache_key matches the one supplied be the user
|
|
|
|
# this is done so the api etag is correctly generated, as it takes the function arguments into account
|
|
|
|
return get_level_geometries_result(
|
|
|
|
request,
|
|
|
|
level_id=level_id,
|
|
|
|
update_cache_key=update_cache_key,
|
|
|
|
update_cache_key_match=kwargs["update_cache_key_match"]
|
|
|
|
)
|
|
|
|
# todo: test the heck out of this
|
2023-12-01 22:59:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
# todo: need a way to pass the changeset if it's not a session API key
|
|
|
|
|
|
|
|
|
|
|
|
@editor_api_router.get('/{path:path}/', summary="access the editor UI programmatically",
|
2023-12-02 01:14:09 +01:00
|
|
|
response={200: dict, **API404.dict(), **auth_permission_responses},
|
|
|
|
openapi_extra={"security": [{"APITokenAuth": ["editor_access"]}]})
|
2023-12-01 22:59:57 +01:00
|
|
|
@newapi_etag() # todo: correct?
|
2023-12-03 17:18:29 +01:00
|
|
|
def view_as_api(request, path: str):
|
2023-12-01 22:59:57 +01:00
|
|
|
"""
|
|
|
|
get editor views rendered as JSON instead of HTML.
|
|
|
|
`path` is the path after /editor/.
|
|
|
|
this is a mess. good luck. if you actually want to use this, poke us so we might add better documentation.
|
|
|
|
"""
|
|
|
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
|
|
@editor_api_router.post('/{path:path}/', summary="access the editor UI programmatically",
|
2023-12-02 01:14:09 +01:00
|
|
|
response={200: dict, **API404.dict(), **auth_permission_responses},
|
|
|
|
openapi_extra={"security": [{"APITokenAuth": ["editor_access", "write"]}]})
|
2023-12-01 22:59:57 +01:00
|
|
|
@newapi_etag() # todo: correct?
|
2023-12-03 17:18:29 +01:00
|
|
|
def view_as_api(request, path: str):
|
2023-12-01 22:59:57 +01:00
|
|
|
"""
|
|
|
|
get editor views rendered as JSON instead of HTML.
|
|
|
|
`path` is the path after /editor/.
|
|
|
|
this is a mess. good luck. if you actually want to use this, poke us so we might add better documentation.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|