1953c689e8
The redirect for WEBSSO takes its data directly from the request's POST data, and the format of that data has changed, so now we need to convert it for it to work correctly. Change-Id: I5b18e555a9bc6b24be1e59465f07e73e99739e22 closes-bug: #1794710
164 lines
7.1 KiB
Python
164 lines
7.1 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import collections
|
|
import logging
|
|
|
|
from django.conf import settings
|
|
from django.contrib.auth import authenticate
|
|
from django.contrib.auth import forms as django_auth_forms
|
|
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.views.decorators.debug import sensitive_variables
|
|
|
|
from openstack_auth import exceptions
|
|
from openstack_auth import utils
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
def get_region_endpoint(region_id):
|
|
if region_id == "default":
|
|
return settings.OPENSTACK_KEYSTONE_URL
|
|
all_regions = getattr(settings, 'AVAILABLE_REGIONS', [])
|
|
return all_regions[int(region_id)][0]
|
|
|
|
|
|
class Login(django_auth_forms.AuthenticationForm):
|
|
"""Form used for logging in a user.
|
|
|
|
Handles authentication with Keystone by providing the domain name, username
|
|
and password. A scoped token is fetched after successful authentication.
|
|
|
|
A domain name is required if authenticating with Keystone V3 running
|
|
multi-domain configuration.
|
|
|
|
If the user authenticated has a default project set, the token will be
|
|
automatically scoped to their default project.
|
|
|
|
If the user authenticated has no default project set, the authentication
|
|
backend will try to scope to the projects returned from the user's assigned
|
|
projects. The first successful project scoped will be returned.
|
|
|
|
Inherits from the base ``django.contrib.auth.forms.AuthenticationForm``
|
|
class for added security features.
|
|
"""
|
|
use_required_attribute = False
|
|
region = forms.ChoiceField(label=_("Region"), required=False)
|
|
username = forms.CharField(
|
|
label=_("User Name"),
|
|
widget=forms.TextInput(attrs={"autofocus": "autofocus"}))
|
|
password = forms.CharField(label=_("Password"),
|
|
widget=forms.PasswordInput(render_value=False))
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(Login, self).__init__(*args, **kwargs)
|
|
fields_ordering = ['username', 'password', 'region']
|
|
if getattr(settings,
|
|
'OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT',
|
|
False):
|
|
last_domain = self.request.COOKIES.get('login_domain', None)
|
|
if getattr(settings,
|
|
'OPENSTACK_KEYSTONE_DOMAIN_DROPDOWN',
|
|
False):
|
|
self.fields['domain'] = forms.ChoiceField(
|
|
label=_("Domain"),
|
|
initial=last_domain,
|
|
choices=getattr(settings,
|
|
'OPENSTACK_KEYSTONE_DOMAIN_CHOICES',
|
|
()))
|
|
else:
|
|
self.fields['domain'] = forms.CharField(
|
|
initial=last_domain,
|
|
label=_("Domain"),
|
|
widget=forms.TextInput(attrs={"autofocus": "autofocus"}))
|
|
self.fields['username'].widget = forms.widgets.TextInput()
|
|
fields_ordering = ['domain', 'username', 'password', 'region']
|
|
self.fields['region'].choices = self.get_region_choices()
|
|
if len(self.fields['region'].choices) == 1:
|
|
self.fields['region'].initial = self.fields['region'].choices[0][0]
|
|
self.fields['region'].widget = forms.widgets.HiddenInput()
|
|
elif len(self.fields['region'].choices) > 1:
|
|
self.fields['region'].initial = self.request.COOKIES.get(
|
|
'login_region')
|
|
|
|
# if websso is enabled and keystone version supported
|
|
# prepend the websso_choices select input to the form
|
|
if utils.is_websso_enabled():
|
|
initial = getattr(settings, 'WEBSSO_INITIAL_CHOICE', 'credentials')
|
|
self.fields['auth_type'] = forms.ChoiceField(
|
|
label=_("Authenticate using"),
|
|
choices=getattr(settings, 'WEBSSO_CHOICES', ()),
|
|
required=False,
|
|
initial=initial)
|
|
# add auth_type to the top of the list
|
|
fields_ordering.insert(0, 'auth_type')
|
|
|
|
# websso is enabled, but keystone version is not supported
|
|
elif getattr(settings, 'WEBSSO_ENABLED', False):
|
|
msg = ("Websso is enabled but horizon is not configured to work " +
|
|
"with keystone version 3 or above.")
|
|
LOG.warning(msg)
|
|
self.fields = collections.OrderedDict(
|
|
(key, self.fields[key]) for key in fields_ordering)
|
|
|
|
@staticmethod
|
|
def get_region_choices():
|
|
all_regions = getattr(settings, 'AVAILABLE_REGIONS', [])
|
|
if all_regions:
|
|
regions = [("%d" % i, name) for i, (url, name) in
|
|
enumerate(all_regions)]
|
|
else:
|
|
regions = [("default", _("Default Region"))]
|
|
return regions
|
|
|
|
@sensitive_variables()
|
|
def clean(self):
|
|
default_domain = getattr(settings,
|
|
'OPENSTACK_KEYSTONE_DEFAULT_DOMAIN',
|
|
'Default')
|
|
username = self.cleaned_data.get('username')
|
|
password = self.cleaned_data.get('password')
|
|
domain = self.cleaned_data.get('domain', default_domain)
|
|
region_id = self.cleaned_data.get('region')
|
|
try:
|
|
region = get_region_endpoint(region_id)
|
|
except (ValueError, IndexError, TypeError):
|
|
raise forms.ValidationError("Invalid region %r" % region_id)
|
|
self.cleaned_data['region'] = region
|
|
|
|
if not (username and password):
|
|
# Don't authenticate, just let the other validators handle it.
|
|
return self.cleaned_data
|
|
|
|
try:
|
|
self.user_cache = authenticate(request=self.request,
|
|
username=username,
|
|
password=password,
|
|
user_domain_name=domain,
|
|
auth_url=region)
|
|
LOG.info('Login successful for user "%(username)s" using domain '
|
|
'"%(domain)s", remote address %(remote_ip)s.',
|
|
{'username': username, 'domain': domain,
|
|
'remote_ip': utils.get_client_ip(self.request)})
|
|
except exceptions.KeystoneAuthException as exc:
|
|
LOG.info('Login failed for user "%(username)s" using domain '
|
|
'"%(domain)s", remote address %(remote_ip)s.',
|
|
{'username': username, 'domain': domain,
|
|
'remote_ip': utils.get_client_ip(self.request)})
|
|
raise forms.ValidationError(exc)
|
|
if hasattr(self, 'check_for_test_cookie'): # Dropped in django 1.7
|
|
self.check_for_test_cookie()
|
|
return self.cleaned_data
|