authentic/src/authentic2_idp_oidc/manager/forms.py

98 lines
3.7 KiB
Python

# authentic2 - versatile identity manager
# Copyright (C) 2022 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from django import forms
from django.contrib.auth import get_user_model
from django.core.exceptions import ValidationError
from django.utils.translation import gettext_lazy as _
from authentic2.attributes_ng.engine import get_service_attributes
from authentic2.forms.mixins import SlugMixin
from authentic2.forms.widgets import DatalistTextInput
from authentic2.middleware import StoreRequestMiddleware
from authentic2_idp_oidc.models import OIDCClaim, OIDCClient
class OIDCClientForm(SlugMixin, forms.ModelForm):
class Meta:
model = OIDCClient
fields = [
'name',
'redirect_uris',
'post_logout_redirect_uris',
'sector_identifier_uri',
'frontchannel_logout_uri',
'ou',
'identifier_policy',
'idtoken_algo',
'unauthorized_url',
'authorization_mode',
'authorization_flow',
'home_url',
'colour',
'logo',
'has_api_access',
'activate_user_profiles',
]
labels = {
'has_api_access': _("Has access to Authentic's synchronization API"),
'activate_user_profiles': _('Activates user profiles selection'),
}
widgets = {'colour': forms.TextInput(attrs={'type': 'color'})}
def __init__(self, *args, **kwargs):
user = kwargs.pop('user')
super().__init__(*args, **kwargs)
# hide internal functionalities from regular administrators
if not (user and isinstance(user, get_user_model()) and user.is_superuser):
del self.fields['has_api_access']
del self.fields['activate_user_profiles']
class OIDCClaimForm(forms.ModelForm):
class Meta:
model = OIDCClaim
fields = ('name', 'value', 'scopes')
widgets = {
'value': DatalistTextInput,
}
def clean_name(self):
name = self.cleaned_data['name'] # name is now a mandatory field
request = StoreRequestMiddleware.get_request()
client = OIDCClient.objects.get(pk=request.resolver_match.kwargs['service_pk'])
errmsg = _('This claim name is already defined for this client. Pick another claim name.')
try:
claim = OIDCClaim.objects.get(client=client, name=name)
except OIDCClaim.DoesNotExist:
pass
except OIDCClaim.MultipleObjectsReturned:
raise ValidationError(errmsg)
else:
if self.instance != claim:
raise ValidationError(errmsg)
return name
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
data = dict(get_service_attributes(getattr(self.instance, 'client', None))).keys()
for field in ('name', 'value', 'scopes'):
self.fields[field].required = True
widget = self.fields['value'].widget
widget.data = data
widget.name = 'list__oidcclaim-inline'
widget.attrs.update({'list': 'list__oidcclaim-inline'})