This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/providers/app_gw/models.py

45 lines
1.4 KiB
Python
Raw Normal View History

"""passbook app_gw models"""
import string
from random import SystemRandom
from typing import Optional
2019-03-21 15:21:51 +00:00
from django.db import models
from django.http import HttpRequest
from django.utils.translation import gettext as _
from oidc_provider.models import Client
from passbook import __version__
from passbook.core.models import Provider
from passbook.lib.utils.template import render_to_string
class ApplicationGatewayProvider(Provider):
"""This provider uses oauth2_proxy with the OIDC Provider."""
name = models.TextField()
internal_host = models.TextField()
external_host = models.TextField()
client = models.ForeignKey(Client, on_delete=models.CASCADE)
2019-12-31 11:51:16 +00:00
form = "passbook.providers.app_gw.forms.ApplicationGatewayProviderForm"
def html_setup_urls(self, request: HttpRequest) -> Optional[str]:
"""return template and context modal with URLs for authorize, token, openid-config, etc"""
2019-12-31 11:51:16 +00:00
cookie_secret = "".join(
SystemRandom().choice(string.ascii_uppercase + string.digits)
for _ in range(50)
)
return render_to_string(
2019-12-31 11:51:16 +00:00
"app_gw/setup_modal.html",
{"provider": self, "cookie_secret": cookie_secret, "version": __version__},
)
def __str__(self):
return f"Application Gateway {self.name}"
class Meta:
2019-12-31 11:51:16 +00:00
verbose_name = _("Application Gateway Provider")
verbose_name_plural = _("Application Gateway Providers")