2019-03-20 21:42:47 +00:00
|
|
|
"""passbook Application Security Gateway Forms"""
|
|
|
|
from django import forms
|
2019-12-31 11:51:16 +00:00
|
|
|
from oauth2_provider.generators import generate_client_id, generate_client_secret
|
2020-01-02 15:06:32 +00:00
|
|
|
from oidc_provider.models import Client, ResponseType
|
2019-03-20 21:42:47 +00:00
|
|
|
|
2019-11-11 17:13:46 +00:00
|
|
|
from passbook.providers.app_gw.models import ApplicationGatewayProvider
|
2019-03-20 21:42:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ApplicationGatewayProviderForm(forms.ModelForm):
|
|
|
|
"""Security Gateway Provider form"""
|
|
|
|
|
2019-11-11 17:13:46 +00:00
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
if not self.instance.pk:
|
|
|
|
# New instance, so we create a new OIDC client with random keys
|
|
|
|
self.instance.client = Client.objects.create(
|
2019-12-31 11:51:16 +00:00
|
|
|
client_id=generate_client_id(), client_secret=generate_client_secret()
|
|
|
|
)
|
2019-11-11 17:13:46 +00:00
|
|
|
self.instance.client.name = self.instance.name
|
2020-01-02 19:22:36 +00:00
|
|
|
self.instance.client.response_types.set(
|
|
|
|
[ResponseType.objects.get_by_natural_key("code")]
|
|
|
|
)
|
2019-11-11 17:13:46 +00:00
|
|
|
self.instance.client.redirect_uris = [
|
2020-01-02 15:07:33 +00:00
|
|
|
f"http://{self.instance.external_host}/oauth2/callback",
|
|
|
|
f"https://{self.instance.external_host}/oauth2/callback",
|
|
|
|
f"http://{self.instance.internal_host}/oauth2/callback",
|
|
|
|
f"https://{self.instance.internal_host}/oauth2/callback",
|
2019-11-11 17:13:46 +00:00
|
|
|
]
|
2019-12-31 11:51:16 +00:00
|
|
|
self.instance.client.scope = ["openid", "email"]
|
2019-11-11 17:13:46 +00:00
|
|
|
self.instance.client.save()
|
|
|
|
return super().save(*args, **kwargs)
|
2019-03-22 09:55:26 +00:00
|
|
|
|
2019-03-20 21:42:47 +00:00
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = ApplicationGatewayProvider
|
2020-06-07 14:35:08 +00:00
|
|
|
fields = ["name", "authorization_flow", "internal_host", "external_host"]
|
2019-03-21 15:21:51 +00:00
|
|
|
widgets = {
|
2019-12-31 11:51:16 +00:00
|
|
|
"name": forms.TextInput(),
|
2020-01-02 15:07:33 +00:00
|
|
|
"internal_host": forms.TextInput(),
|
|
|
|
"external_host": forms.TextInput(),
|
2019-03-20 21:42:47 +00:00
|
|
|
}
|