worker_server_notices_sender.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2018 New Vector Ltd
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. from twisted.internet import defer
  16. class WorkerServerNoticesSender(object):
  17. """Stub impl of ServerNoticesSender which does nothing"""
  18. def __init__(self, hs):
  19. """
  20. Args:
  21. hs (synapse.server.HomeServer):
  22. """
  23. def on_user_syncing(self, user_id):
  24. """Called when the user performs a sync operation.
  25. Args:
  26. user_id (str): mxid of user who synced
  27. Returns:
  28. Deferred
  29. """
  30. return defer.succeed(None)
  31. def on_user_ip(self, user_id):
  32. """Called on the master when a worker process saw a client request.
  33. Args:
  34. user_id (str): mxid
  35. Returns:
  36. Deferred
  37. """
  38. raise AssertionError("on_user_ip unexpectedly called on worker")