Add management command for retroactively adding sso IdV for IdP
We sometimes update preexisting SAML SSO providers to configure them to automatically create SSO identity verification (IdV) records when a learner links an account via that provider. Turning that configuration from off to on does make it such that when learners log back in via their linked account, a new IdV record will be created for them. But it's possible we'd want this process to happen more automatically and seamlessly, for which this management command will be helpful. Note that this does not help with removing SSO verification records for a provider for which this configuration has been turned off. JIRA:EDUCATOR-4947
This commit is contained in:
30
common/djangoapps/third_party_auth/api/utils.py
Normal file
30
common/djangoapps/third_party_auth/api/utils.py
Normal file
@@ -0,0 +1,30 @@
|
||||
"""
|
||||
Shareable utilities for third party auth api functions
|
||||
"""
|
||||
|
||||
|
||||
def filter_user_social_auth_queryset_by_provider(query_set, provider):
|
||||
"""
|
||||
Filter a query set by the given TPA provider
|
||||
|
||||
Params:
|
||||
query_set: QuerySet[UserSocialAuth]
|
||||
provider: common.djangoapps.third_party_auth.models.ProviderConfig
|
||||
Returns:
|
||||
QuerySet[UserSocialAuth]
|
||||
"""
|
||||
# Note: When using multi-IdP backend, the provider column isn't
|
||||
# enough to identify a specific backend
|
||||
filtered_query_set = query_set.filter(provider=provider.backend_name)
|
||||
|
||||
# Test if the current provider has a slug which it appends to
|
||||
# uids; these can be used to identify the backend more
|
||||
# specifically than the provider's backend
|
||||
fake_uid = 'uid'
|
||||
uid = provider.get_social_auth_uid(fake_uid)
|
||||
if uid != fake_uid:
|
||||
# if yes, we add a filter for the slug on uid column
|
||||
# carve off the fake_uid from the end, so we get just the prepended slug
|
||||
filtered_query_set = filtered_query_set.filter(uid__startswith=uid[:-len(fake_uid)])
|
||||
|
||||
return filtered_query_set
|
||||
@@ -27,6 +27,7 @@ from third_party_auth import pipeline
|
||||
from third_party_auth.api import serializers
|
||||
from third_party_auth.api.permissions import TPA_PERMISSIONS
|
||||
from third_party_auth.provider import Registry
|
||||
from common.djangoapps.third_party_auth.api.utils import filter_user_social_auth_queryset_by_provider
|
||||
|
||||
|
||||
class ProviderBaseThrottle(throttling.UserRateThrottle):
|
||||
@@ -349,16 +350,10 @@ class UserMappingView(ListAPIView):
|
||||
if not self.provider:
|
||||
raise Http404
|
||||
|
||||
query_set = UserSocialAuth.objects.select_related('user').filter(provider=self.provider.backend_name)
|
||||
|
||||
# build our query filters
|
||||
# When using multi-IdP backend, we only retrieve the ones that are for current IdP.
|
||||
# test if the current provider has a slug
|
||||
uid = self.provider.get_social_auth_uid('uid')
|
||||
if uid != 'uid':
|
||||
# if yes, we add a filter for the slug on uid column
|
||||
query_set = query_set.filter(uid__startswith=uid[:-3])
|
||||
|
||||
query_set = filter_user_social_auth_queryset_by_provider(
|
||||
UserSocialAuth.objects.select_related('user'),
|
||||
self.provider,
|
||||
)
|
||||
query = Q()
|
||||
|
||||
usernames = self.request.query_params.getlist('username', None)
|
||||
|
||||
Reference in New Issue
Block a user