Skip to content

Conversation

@nrsim
Copy link

@nrsim nrsim commented Jan 15, 2020

No description provided.

@nrsim nrsim requested a review from rsgowman January 15, 2020 16:33
@nrsim nrsim force-pushed the lookup-by-provider branch 2 times, most recently from 1b2c84f to e155a0a Compare January 15, 2020 16:42
@nrsim nrsim force-pushed the lookup-by-provider branch from e155a0a to d256436 Compare January 15, 2020 16:45
response = user_manager.get_user(phone_number=phone_number)
return UserRecord(response)

def get_user_by_provider_user_id(provider_id, provider_uid, app=None):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

naming: get_user_by_provider_uid. (A recent change; sorry. :( )

'federated_user_id' : [{
'provider_id': _auth_utils.validate_provider_id(key['provider_id']),
'raw_id': _auth_utils.validate_provider_id(key['provider_uid'])}]
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Optional:

elif 'provider_id' in kwargs:
  raise ValueError('provider_uid keyword argument must be supplied when setting provider_id argument')
elif 'provider_uid' in kwargs:
  raise ValueError('provider_id keyword argument must be supplied when setting provider_uid argument')

Alternatively, change the elif condition on 471 to be 'or' instead of 'and'. Then, let kwargs.pop throw a KeyError if one of them is missing. You won't get as nice of an error message though, so you may want to catch-and-rethrow at which point, you might be better off with the elif's.

'provider_id': provider_id, 'provider_uid': provider_uid
}, 'provider_user_id'
payload = {
'federated_user_id' : [{
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Double check the spelling in the json payload. Normally, the json part needs to be camelCase. (i.e. like 470). But maybe the backend accepts both?

password_hash=b'password', password_salt=b'NaCl', custom_claims={'admin': True},
email_verified=True,
disabled=False,
provider_data=[auth.UserProvider(uid='test', provider_id='google.com')])
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment as before: uid=test might cause this to fail if the test doesn't get properly cleaned up.

phone_number=phone,
display_name='Random User',
photo_url='https://example.com/photo.png',
user_metadata=auth.UserMetadata(100, 150),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I couldn't figure out what 100,150 were without looking up UserMetadata. Named parameters would make this more obvious, i.e.

auth.UserMetadata(creation_timestamp=100, last_sign_in_timestamp=150)

Optional.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants