mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Update m.id.phone to use 'phone' instead of 'number' (#7687)
The spec [states](https://matrix.org/docs/spec/client_server/r0.6.1#phone-number) that `m.id.phone` requires the field `country` and `phone`. In Synapse, we've been enforcing `country` and `number`. I am not currently sure whether this affects any client implementations. This issue was introduced in #1994.
This commit is contained in:
parent
4241a10673
commit
b8ee03caff
1
changelog.d/7687.bugfix
Normal file
1
changelog.d/7687.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Accept the proper field (`phone`) for the `m.id.phone` identifier type. The legacy field of `number` is still accepted as a fallback. Bug introduced in v0.20.0-rc1.
|
@ -60,10 +60,18 @@ def login_id_thirdparty_from_phone(identifier):
|
|||||||
|
|
||||||
Returns: Login identifier dict of type 'm.id.threepid'
|
Returns: Login identifier dict of type 'm.id.threepid'
|
||||||
"""
|
"""
|
||||||
if "country" not in identifier or "number" not in identifier:
|
if "country" not in identifier or (
|
||||||
|
# The specification requires a "phone" field, while Synapse used to require a "number"
|
||||||
|
# field. Accept both for backwards compatibility.
|
||||||
|
"phone" not in identifier
|
||||||
|
and "number" not in identifier
|
||||||
|
):
|
||||||
raise SynapseError(400, "Invalid phone-type identifier")
|
raise SynapseError(400, "Invalid phone-type identifier")
|
||||||
|
|
||||||
msisdn = phone_number_to_msisdn(identifier["country"], identifier["number"])
|
# Accept both "phone" and "number" as valid keys in m.id.phone
|
||||||
|
phone_number = identifier.get("phone", identifier["number"])
|
||||||
|
|
||||||
|
msisdn = phone_number_to_msisdn(identifier["country"], phone_number)
|
||||||
|
|
||||||
return {"type": "m.id.thirdparty", "medium": "msisdn", "address": msisdn}
|
return {"type": "m.id.thirdparty", "medium": "msisdn", "address": msisdn}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user