I have a django app hosted on IIS with Windows Authentication and wfastcgi. In .Net authorization rules, only a specified users/roles can access the app. I am setting up users by django.contrib.auth.middleware.RemoteUserMiddleware
and django.contrib.auth.backends.RemoteUserBackend
with a custom backend. I want to get user's "Specified Roles" and assign Group
in Django. I was able to get the username by request.META['REMOTE_USER']
, but how to get the "Specified Roles" of a user if they have any in Django?Auth Rules Specified RolesWeb.comfig
backends.py
class CustomRemoteUserBackend(RemoteUserBackend):
def configure_user(self, request, user):
username = self.clean_username(user.get_username())
user.username = username # Modify the user's username in the database
# Extract the user's role from request.META or a custom header.
user_role = request.META.get('HTTP_ROLES') # Replace with the correct header name.
# Define a mapping of roles to group names.
role_group_mapping = {
'Sales': 'Sales',
'Admin': 'Admin',
# Add more role-to-group mappings as needed.
}
# Check if the user's role is in the mapping and assign them to the corresponding group.
if user_role in role_group_mapping:
group_name = role_group_mapping[user_role]
else:
# If no role is specified, assign the user to the "unregistered" group.
group_name = 'unregistered'
group, _ = Group.objects.get_or_create(name=group_name)
user.groups.add(group)
user.save()
return user