Created
June 16, 2021 19:12
-
-
Save renzon/898825434d352075dcb4d264bb46c4e9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def sync_user_on_discourse(subscription: Subscription): | |
""" | |
Synchronize user data on forum if API is configured | |
:param subscription | |
:return: returns result of hitting Discourse api | |
""" | |
can_make_api_call = bool(settings.DISCOURSE_API_KEY and settings.DISCOURSE_API_USER) | |
can_work_without_sync = not (settings.DISCOURSE_BASE_URL or can_make_api_call) | |
if can_work_without_sync: | |
_logger.info('Discourse Integration not available') | |
return | |
elif not can_make_api_call: | |
raise MissingDiscourseAPICredentials('Must define both DISCOURSE_API_KEY and DISCOURSE_API_USER configs') | |
# https://meta.discourse.org/t/sync-sso-user-data-with-the-sync-sso-route/84398 | |
subscriber = subscription.subscriber | |
params = { | |
'email': subscriber.email, | |
'external_id': subscriber.id, | |
'require_activation': 'false', | |
'groups': ','.join(subscription.discourse_groups) | |
} | |
sso_payload, signature = discourse_facade.generate_sso_payload_and_signature(params) | |
# query_string = parse.urlencode() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment