2019-03-20 21:42:47 +00:00
|
|
|
"""passbook app_gw models"""
|
2020-07-20 14:03:55 +00:00
|
|
|
from typing import Optional, Type
|
2019-03-21 15:21:51 +00:00
|
|
|
|
2020-07-26 20:00:32 +00:00
|
|
|
from django.core.validators import URLValidator
|
2019-03-20 21:42:47 +00:00
|
|
|
from django.db import models
|
2020-07-20 14:03:55 +00:00
|
|
|
from django.forms import ModelForm
|
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.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-08-01 18:02:43 +00:00
|
|
|
internal_host = models.TextField(
|
|
|
|
validators=[URLValidator(schemes=("http", "https"))]
|
|
|
|
)
|
|
|
|
external_host = models.TextField(
|
|
|
|
validators=[URLValidator(schemes=("http", "https"))]
|
|
|
|
)
|
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
|
|
|
|
2020-07-20 14:03:55 +00:00
|
|
|
def form(self) -> Type[ModelForm]:
|
|
|
|
from passbook.providers.app_gw.forms import ApplicationGatewayProviderForm
|
|
|
|
|
|
|
|
return 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"""
|
2020-07-26 20:01:37 +00:00
|
|
|
from passbook.providers.app_gw.views import DockerComposeView
|
|
|
|
|
|
|
|
docker_compose_yaml = DockerComposeView(request=request).get_compose(self)
|
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",
|
2020-07-26 20:01:37 +00:00
|
|
|
{"provider": self, "docker_compose": docker_compose_yaml},
|
2019-12-31 11:51:16 +00:00
|
|
|
)
|
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")
|