stash
This commit is contained in:
parent
8d96bc97c4
commit
ed04d98bf1
54 changed files with 661 additions and 1214 deletions
|
|
@ -81,12 +81,8 @@ def verify_incoming_friend_request(request, raw_request_body):
|
|||
|
||||
|
||||
def verify_incoming_group_invite(request, raw_request_body, handle_field, key_field):
|
||||
"""Self-certifying verifier for the two legs of the group invite/accept dance that land on a
|
||||
backend which doesn't have the caller cached as a KnownIdentity yet (see
|
||||
docs/design-in-progress/groups-mvp.md): the inviter delivering an invite to the invitee's own
|
||||
backend (handle_field='inviter', key_field='inviter_key'), and the invitee accepting on the
|
||||
group's home backend (handle_field='invitee', key_field='invitee_key'). Mirrors
|
||||
verify_incoming_friend_request exactly, just with configurable field names."""
|
||||
"""Self-certifying verifier for the group invite/accept dance. See
|
||||
docs/implementation.md#group-invite-and-accept-self-certifying-verification."""
|
||||
try:
|
||||
username, domain, signed_data, signature_bytes_hex = verify_request(request, raw_request_body)
|
||||
except ValueError:
|
||||
|
|
@ -143,10 +139,8 @@ def authenticate_request_against_local_users(request, raw_request_body):
|
|||
class SignatureAuthentication(authentication.BaseAuthentication):
|
||||
def authenticate(self, request):
|
||||
identity = authenticate_request_against_known_identities(request, request.body.decode('utf-8'))
|
||||
# Returning a bare None (rather than a (None, None) tuple) tells DRF this
|
||||
# authenticator doesn't apply, so it moves on to the next authenticator in the
|
||||
# authentication_classes list instead of treating the request as authenticated
|
||||
# with an empty user.
|
||||
# Bare None (not a (None, None) tuple) tells DRF to try the next authenticator, instead
|
||||
# of treating the request as authenticated with an empty user.
|
||||
if identity is None:
|
||||
return None
|
||||
return identity, None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue