oncall-engine/engine/apps/grafana_plugin/views/install.py

36 lines
1.4 KiB
Python
Raw Permalink Normal View History

import logging
from rest_framework import status
from rest_framework.request import Request
from rest_framework.response import Response
from rest_framework.views import APIView
from apps.auth_token.auth import BasePluginAuthentication
from apps.user_management.models import Organization
from apps.user_management.sync import sync_organization
from common.api_helpers.mixins import GrafanaHeadersMixin
logger = logging.getLogger(__name__)
class InstallView(GrafanaHeadersMixin, APIView):
authentication_classes = (BasePluginAuthentication,)
def post(self, request: Request) -> Response:
stack_id = self.instance_context["stack_id"]
org_id = self.instance_context["org_id"]
organization = Organization.objects_with_deleted.filter(stack_id=stack_id, org_id=org_id).first()
# If we receive install request to the deleted org - just restore it.
organization.deleted_at = None
organization.api_token = self.instance_context["grafana_token"]
organization.save(update_fields=["api_token", "deleted_at"])
logger.info(f"install - grafana_token replaced org={organization.pk}")
sync_organization(organization)
logger.info(
f"install - sync organization finished org={organization.pk} "
f"token_status={organization.api_token_status}"
)
return Response(status=status.HTTP_204_NO_CONTENT)