api: add can_geo_ip capability

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-05-30 01:01:58 +02:00
parent 73338bdf32
commit 66a04aeec5
2 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,7 @@ from rest_framework.response import Response
from rest_framework.views import APIView
from authentik.core.api.utils import PassiveSerializer
from authentik.events.geo import GEOIP_READER
from authentik.lib.config import CONFIG
@ -18,6 +19,7 @@ class Capabilities(models.TextChoices):
"""Define capabilities which influence which APIs can/should be used"""
CAN_SAVE_MEDIA = "can_save_media"
CAN_GEO_IP = "can_geo_ip"
class ConfigSerializer(PassiveSerializer):
@ -41,6 +43,8 @@ class ConfigView(APIView):
deb_test = settings.DEBUG or settings.TEST
if path.ismount(settings.MEDIA_ROOT) or deb_test:
caps.append(Capabilities.CAN_SAVE_MEDIA)
if GEOIP_READER:
caps.append(Capabilities.CAN_GEO_IP)
return caps
@extend_schema(responses={200: ConfigSerializer(many=False)})

View File

@ -16185,6 +16185,7 @@ components:
CapabilitiesEnum:
enum:
- can_save_media
- can_geo_ip
type: string
CaptchaChallenge:
type: object