This commit is contained in:
lpm0073 2022-10-06 07:57:58 -05:00
parent c14c551e6e
commit 65335d6a0e

View File

@ -191,7 +191,7 @@ class StepwiseMathWPOAuth2(BaseOAuth2):
# Return user details from the Wordpress user account # Return user details from the Wordpress user account
def get_user_details(self, response) -> dict: def get_user_details(self, response) -> dict:
if not (self.is_valid_user_details(response) or self.is_wp_oauth_response(response)): if not (self.is_valid_user_details(response) or self.is_wp_oauth_response(response)):
logger.error('get_user_details() - received an unrecognized response object. Cannot conitnue: {response}'.format( logger.error('get_user_details() - received an unrecognized response object. Cannot continue: {response}'.format(
response=json.dumps(response, sort_keys=True, indent=4) response=json.dumps(response, sort_keys=True, indent=4)
)) ))
# if we have cached results then we might be able to recover. # if we have cached results then we might be able to recover.
@ -209,7 +209,9 @@ class StepwiseMathWPOAuth2(BaseOAuth2):
# then we can assume that this is our case. # then we can assume that this is our case.
if self.is_wp_oauth_extended_response(response): if self.is_wp_oauth_extended_response(response):
# ------------------------------------------------------------- # -------------------------------------------------------------
# expected use case #2: a potentially enhanced version of an original user_details dict. # expected use case #2: an enhanced derivation of an original
# user_details dict. This is created when get_user_details()
# is called from user_data().
# ------------------------------------------------------------- # -------------------------------------------------------------
if VERBOSE_LOGGING: if VERBOSE_LOGGING:
logger.info('get_user_details() - detected an enhanced get_user_details() dict in the response: {response}'.format( logger.info('get_user_details() - detected an enhanced get_user_details() dict in the response: {response}'.format(
@ -234,10 +236,6 @@ class StepwiseMathWPOAuth2(BaseOAuth2):
response=json.dumps(response, sort_keys=True, indent=4) response=json.dumps(response, sort_keys=True, indent=4)
)) ))
# ---------------------------------------------------------------------
# build and internally cache the get_user_details() dict
# ---------------------------------------------------------------------
# try to parse out the first and last names # try to parse out the first and last names
split_name = response.get('display_name', '').split() split_name = response.get('display_name', '').split()
first_name = split_name[0] if len(split_name) > 0 else '' first_name = split_name[0] if len(split_name) > 0 else ''