2019-03-20 21:42:47 +00:00
|
|
|
"""passbook app_gw models"""
|
2019-11-11 17:13:46 +00:00
|
|
|
import string
|
|
|
|
from random import SystemRandom
|
2020-02-21 19:54:00 +00:00
|
|
|
from typing import Optional
|
2019-03-21 15:21:51 +00:00
|
|
|
|
2019-03-20 21:42:47 +00:00
|
|
|
from django.db import models
|
2020-02-21 19:54:00 +00:00
|
|
|
from django.http import HttpRequest
|
2019-03-20 21:42:47 +00:00
|
|
|
from django.utils.translation import gettext as _
|
2019-11-11 17:13:46 +00:00
|
|
|
from oidc_provider.models import Client
|
2019-03-20 21:42:47 +00:00
|
|
|
|
2019-11-11 17:13:46 +00:00
|
|
|
from passbook import __version__
|
|
|
|
from passbook.core.models import Provider
|
2020-02-21 19:54:00 +00:00
|
|
|
from passbook.lib.utils.template import render_to_string
|
2019-03-20 21:42:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ApplicationGatewayProvider(Provider):
|
2020-06-07 14:35:08 +00:00
|
|
|
"""Protect applications that don't support any of the other
|
|
|
|
Protocols by using a Reverse-Proxy."""
|
2019-03-20 21:42:47 +00:00
|
|
|
|
2019-11-11 17:13:46 +00:00
|
|
|
name = models.TextField()
|
2020-01-02 15:07:33 +00:00
|
|
|
internal_host = models.TextField()
|
|
|
|
external_host = models.TextField()
|
2019-03-20 21:42:47 +00:00
|
|
|
|
2019-11-11 17:13:46 +00:00
|
|
|
client = models.ForeignKey(Client, on_delete=models.CASCADE)
|
2019-03-20 21:42:47 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
form = "passbook.providers.app_gw.forms.ApplicationGatewayProviderForm"
|
2019-03-20 21:42:47 +00:00
|
|
|
|
2020-02-21 19:54:00 +00:00
|
|
|
def html_setup_urls(self, request: HttpRequest) -> Optional[str]:
|
2019-11-11 17:13:46 +00:00
|
|
|
"""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)
|
|
|
|
)
|
2020-02-21 19:54:00 +00:00
|
|
|
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__},
|
|
|
|
)
|
2019-03-20 21:42:47 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
2020-07-05 21:00:40 +00:00
|
|
|
return self.name
|
2019-03-20 21:42:47 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
verbose_name = _("Application Gateway Provider")
|
|
|
|
verbose_name_plural = _("Application Gateway Providers")
|