mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-10 13:42:18 -05:00
move threepid checker to config, add missing yields
This commit is contained in:
parent
e8e540630e
commit
0b01281e77
6 changed files with 41 additions and 21 deletions
|
|
@ -23,6 +23,7 @@ from twisted.internet import defer
|
|||
import synapse.util.stringutils as stringutils
|
||||
from synapse.api.constants import LoginType
|
||||
from synapse.api.errors import Codes, SynapseError
|
||||
from synapse.config.server import is_threepid_reserved
|
||||
from synapse.http.servlet import assert_params_in_dict, parse_json_object_from_request
|
||||
from synapse.rest.client.v1.base import ClientV1RestServlet
|
||||
from synapse.types import create_requester
|
||||
|
|
@ -282,7 +283,7 @@ class RegisterRestServlet(ClientV1RestServlet):
|
|||
if "user" in register_json else None
|
||||
)
|
||||
threepid = None
|
||||
if session[LoginType.EMAIL_IDENTITY]:
|
||||
if session.get(LoginType.EMAIL_IDENTITY):
|
||||
threepid = session["threepidCreds"]
|
||||
|
||||
handler = self.handlers.registration_handler
|
||||
|
|
@ -293,8 +294,8 @@ class RegisterRestServlet(ClientV1RestServlet):
|
|||
)
|
||||
# Necessary due to auth checks prior to the threepid being
|
||||
# written to the db
|
||||
if self.store.is_threepid_reserved(threepid):
|
||||
self.store.upsert_monthly_active_user(registered_user_id)
|
||||
if is_threepid_reserved(self.hs.config, threepid):
|
||||
yield self.store.upsert_monthly_active_user(user_id)
|
||||
|
||||
if session[LoginType.EMAIL_IDENTITY]:
|
||||
logger.debug("Binding emails %s to %s" % (
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ import synapse
|
|||
import synapse.types
|
||||
from synapse.api.constants import LoginType
|
||||
from synapse.api.errors import Codes, SynapseError, UnrecognizedRequestError
|
||||
from synapse.config.server import is_threepid_reserved
|
||||
from synapse.http.servlet import (
|
||||
RestServlet,
|
||||
assert_params_in_dict,
|
||||
|
|
@ -408,8 +409,8 @@ class RegisterRestServlet(RestServlet):
|
|||
)
|
||||
# Necessary due to auth checks prior to the threepid being
|
||||
# written to the db
|
||||
if self.store.is_threepid_reserved(threepid):
|
||||
self.store.upsert_monthly_active_user(registered_user_id)
|
||||
if is_threepid_reserved(self.hs.config, threepid):
|
||||
yield self.store.upsert_monthly_active_user(registered_user_id)
|
||||
|
||||
# remember that we've now registered that user account, and with
|
||||
# what user ID (since the user may not have specified)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue