Add endpoint to get threepids from server

pull/4/merge
David Baker 10 years ago
parent 4eea5cf6c2
commit 117f35ac4a
  1. 12
      synapse/rest/client/v2_alpha/account.py
  2. 11
      synapse/storage/registration.py

@ -88,6 +88,18 @@ class ThreepidRestServlet(RestServlet):
self.identity_handler = hs.get_handlers().identity_handler
self.auth = hs.get_auth()
@defer.inlineCallbacks
def on_GET(self, request):
yield run_on_reactor()
auth_user, _ = yield self.auth.get_user_by_req(request)
threepids = yield self.hs.get_datastore().user_get_threepids(
auth_user.to_string()
)
defer.returnValue((200, {'threepids': threepids}))
@defer.inlineCallbacks
def on_POST(self, request):
yield run_on_reactor()

@ -186,3 +186,14 @@ class RegistrationStore(SQLBaseStore):
"validated_at": validated_at,
"added_at": added_at,
})
@defer.inlineCallbacks
def user_get_threepids(self, user_id):
ret = yield self._simple_select_list(
"user_threepids", {
"user": user_id
},
['medium', 'address', 'validated_at', 'added_at'],
'user_get_threepids'
)
defer.returnValue(ret)
Loading…
Cancel
Save