2013-01-14 17:51:18 +01:00
|
|
|
from django.conf import settings
|
2013-01-17 20:58:58 +01:00
|
|
|
from zephyr.models import Message, UserProfile, UserMessage, UserActivity, \
|
|
|
|
Recipient, Stream, get_stream
|
2013-01-08 17:44:22 +01:00
|
|
|
|
|
|
|
from zephyr.decorator import asynchronous, authenticated_api_view, \
|
|
|
|
authenticated_json_post_view, internal_notify_view, RespondAsynchronously, \
|
2013-01-09 20:35:19 +01:00
|
|
|
has_request_variables, POST, json_to_list, to_non_negative_int, \
|
|
|
|
JsonableError
|
2013-01-08 17:44:22 +01:00
|
|
|
from zephyr.lib.response import json_success, json_error
|
|
|
|
|
2013-01-14 17:51:18 +01:00
|
|
|
import os
|
2013-01-08 17:44:22 +01:00
|
|
|
import datetime
|
|
|
|
import simplejson
|
|
|
|
import socket
|
|
|
|
import time
|
2013-01-09 20:35:19 +01:00
|
|
|
import collections
|
|
|
|
import sys
|
|
|
|
import logging
|
2013-01-14 17:51:18 +01:00
|
|
|
import subprocess
|
2013-01-09 20:35:19 +01:00
|
|
|
from django.core.cache import cache
|
|
|
|
from zephyr.lib.cache import cache_with_key
|
2013-03-13 19:15:29 +01:00
|
|
|
from zephyr.lib.cache_helpers import cache_save_message, cache_get_message
|
2013-01-08 17:44:22 +01:00
|
|
|
|
|
|
|
SERVER_GENERATION = int(time.time())
|
|
|
|
|
2013-01-09 16:18:16 +01:00
|
|
|
class Callbacks(object):
|
2013-01-15 19:52:22 +01:00
|
|
|
# A user received a message. The key is user_profile.id.
|
|
|
|
TYPE_USER_RECEIVE = 0
|
|
|
|
|
|
|
|
# A stream received a message. The key is a tuple
|
|
|
|
# (realm_id, lowercased stream name).
|
|
|
|
# See comment attached to the global stream_messages for why.
|
|
|
|
# Callers of this callback need to be careful to provide
|
|
|
|
# a lowercased stream name.
|
|
|
|
TYPE_STREAM_RECEIVE = 1
|
|
|
|
|
|
|
|
# A user's pointer was updated. The key is user_profile.id.
|
|
|
|
TYPE_POINTER_UPDATE = 2
|
|
|
|
|
|
|
|
TYPE_MAX = 3
|
2013-01-09 16:18:16 +01:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.table = {}
|
|
|
|
|
|
|
|
def add(self, key, cb_type, callback):
|
|
|
|
if not self.table.has_key(key):
|
|
|
|
self.create_key(key)
|
|
|
|
self.table[key][cb_type].append(callback)
|
|
|
|
|
|
|
|
def call(self, key, cb_type, **kwargs):
|
|
|
|
if not self.table.has_key(key):
|
|
|
|
self.create_key(key)
|
|
|
|
|
|
|
|
for cb in self.table[key][cb_type]:
|
|
|
|
cb(**kwargs)
|
|
|
|
|
|
|
|
self.table[key][cb_type] = []
|
|
|
|
|
|
|
|
def create_key(self, key):
|
|
|
|
self.table[key] = [[] for i in range(0, Callbacks.TYPE_MAX)]
|
|
|
|
|
|
|
|
callbacks_table = Callbacks()
|
|
|
|
|
2013-01-15 19:52:22 +01:00
|
|
|
def add_user_receive_callback(user_profile, cb):
|
|
|
|
callbacks_table.add(user_profile.id, Callbacks.TYPE_USER_RECEIVE, cb)
|
|
|
|
|
|
|
|
def add_stream_receive_callback(realm_id, stream_name, cb):
|
|
|
|
callbacks_table.add((realm_id, stream_name.lower()), Callbacks.TYPE_STREAM_RECEIVE, cb)
|
2013-01-10 19:47:26 +01:00
|
|
|
|
|
|
|
def add_pointer_update_callback(user_profile, cb):
|
|
|
|
callbacks_table.add(user_profile.id, Callbacks.TYPE_POINTER_UPDATE, cb)
|
|
|
|
|
2013-01-09 20:35:19 +01:00
|
|
|
# in-process caching mechanism for tracking usermessages
|
|
|
|
#
|
2013-02-12 21:39:38 +01:00
|
|
|
# user table: Map user_profile_id => [deque of message ids he received]
|
2013-01-09 20:35:19 +01:00
|
|
|
#
|
|
|
|
# We don't use all the features of a deque -- the important ones are:
|
|
|
|
# * O(1) insert of new highest message id
|
|
|
|
# * O(k) read of highest k message ids
|
|
|
|
# * Automatic maximum size support.
|
2013-01-15 19:52:22 +01:00
|
|
|
#
|
2013-02-12 21:39:38 +01:00
|
|
|
# stream table: Map (realm_id, lowercased stream name) => [deque of message ids it received]
|
2013-01-15 19:52:22 +01:00
|
|
|
#
|
|
|
|
# Why don't we index by the stream_id? Because the client will make a
|
|
|
|
# request that specifies a particular realm and stream name, and since
|
|
|
|
# we're running within tornado, we don't want to have to do a database
|
|
|
|
# lookup to find the matching entry in this table.
|
2013-02-12 21:39:38 +01:00
|
|
|
|
|
|
|
mtables = {
|
|
|
|
'user': {},
|
|
|
|
'stream': {},
|
|
|
|
}
|
|
|
|
|
2013-01-17 21:07:52 +01:00
|
|
|
USERMESSAGE_CACHE_COUNT = 25000
|
2013-01-17 17:02:55 +01:00
|
|
|
STREAMMESSAGE_CACHE_COUNT = 5000
|
2013-01-09 20:35:19 +01:00
|
|
|
cache_minimum_id = sys.maxint
|
|
|
|
def initialize_user_messages():
|
|
|
|
global cache_minimum_id
|
2013-01-12 00:02:23 +01:00
|
|
|
try:
|
|
|
|
cache_minimum_id = Message.objects.all().order_by("-id")[0].id - USERMESSAGE_CACHE_COUNT
|
|
|
|
except Message.DoesNotExist:
|
|
|
|
cache_minimum_id = 1
|
2013-01-09 20:35:19 +01:00
|
|
|
|
2013-01-12 00:02:23 +01:00
|
|
|
for um in UserMessage.objects.filter(message_id__gte=cache_minimum_id).order_by("message"):
|
2013-01-09 20:35:19 +01:00
|
|
|
add_user_message(um.user_profile_id, um.message_id)
|
|
|
|
|
2013-01-15 19:52:22 +01:00
|
|
|
streams = {}
|
|
|
|
for stream in Stream.objects.select_related().all():
|
|
|
|
streams[stream.id] = stream
|
2013-01-17 16:49:05 +01:00
|
|
|
for m in (Message.objects.only("id", "recipient").select_related("recipient")
|
2013-01-17 17:02:55 +01:00
|
|
|
.filter(id__gte=cache_minimum_id + (USERMESSAGE_CACHE_COUNT - STREAMMESSAGE_CACHE_COUNT),
|
2013-01-15 19:52:22 +01:00
|
|
|
recipient__type=Recipient.STREAM).order_by("id")):
|
|
|
|
stream = streams[m.recipient.type_id]
|
|
|
|
add_stream_message(stream.realm.id, stream.name, m.id)
|
|
|
|
|
2013-03-13 19:11:35 +01:00
|
|
|
if not settings.DEPLOYED:
|
|
|
|
# Filling the memcached cache is a little slow, so do it in a child process.
|
|
|
|
# For DEPLOYED cases, we run this from restart_server.
|
|
|
|
subprocess.Popen(["python", os.path.join(os.path.dirname(__file__), "..", "manage.py"),
|
|
|
|
"fill_memcached_caches"])
|
2013-01-14 17:51:18 +01:00
|
|
|
|
2013-01-09 20:35:19 +01:00
|
|
|
def add_user_message(user_profile_id, message_id):
|
2013-02-12 21:39:38 +01:00
|
|
|
add_table_message("user", user_profile_id, message_id)
|
2013-01-15 19:52:22 +01:00
|
|
|
|
|
|
|
def add_stream_message(realm_id, stream_name, message_id):
|
2013-02-12 21:39:38 +01:00
|
|
|
add_table_message("stream", (realm_id, stream_name.lower()), message_id)
|
2013-01-15 19:52:22 +01:00
|
|
|
|
|
|
|
def add_table_message(table, key, message_id):
|
2013-01-09 20:35:19 +01:00
|
|
|
if cache_minimum_id == sys.maxint:
|
|
|
|
initialize_user_messages()
|
2013-02-12 21:39:38 +01:00
|
|
|
mtables[table].setdefault(key, collections.deque(maxlen=400))
|
|
|
|
mtables[table][key].appendleft(message_id)
|
2013-01-09 20:35:19 +01:00
|
|
|
|
|
|
|
def fetch_user_messages(user_profile_id, last):
|
2013-02-12 21:39:38 +01:00
|
|
|
return fetch_table_messages("user", user_profile_id, last)
|
2013-01-15 19:52:22 +01:00
|
|
|
|
|
|
|
def fetch_stream_messages(realm_id, stream_name, last):
|
2013-02-12 21:39:38 +01:00
|
|
|
return fetch_table_messages("stream", (realm_id, stream_name.lower()), last)
|
2013-01-15 19:52:22 +01:00
|
|
|
|
|
|
|
def fetch_table_messages(table, key, last):
|
2013-01-09 20:35:19 +01:00
|
|
|
if cache_minimum_id == sys.maxint:
|
|
|
|
initialize_user_messages()
|
|
|
|
|
2013-01-15 19:52:22 +01:00
|
|
|
# We need to initialize the deque here for any new users or
|
|
|
|
# streams that were created since Tornado was started
|
2013-02-12 21:39:38 +01:00
|
|
|
mtables[table].setdefault(key, collections.deque(maxlen=400))
|
2013-01-09 20:35:19 +01:00
|
|
|
|
2013-01-17 20:58:58 +01:00
|
|
|
# We need to do this check after initialize_user_messages has been called.
|
2013-02-12 21:39:38 +01:00
|
|
|
if len(mtables[table][key]) == 0:
|
2013-01-17 20:58:58 +01:00
|
|
|
# Since the request contains a value of "last", we can assume
|
|
|
|
# that the relevant user or stream has actually received a
|
2013-02-12 21:39:38 +01:00
|
|
|
# message, which means that mtabes[table][key] will not remain
|
|
|
|
# empty after the below completes.
|
2013-01-17 20:58:58 +01:00
|
|
|
#
|
|
|
|
# Thus, we will run this code at most once per key (user or
|
|
|
|
# stream that is being lurked on). Further, we only do this
|
|
|
|
# query for those keys that have not received a message since
|
|
|
|
# cache_minimum_id. So we can afford to do a database query
|
|
|
|
# from Tornado in this case.
|
2013-02-12 21:39:38 +01:00
|
|
|
if table == "user":
|
2013-01-17 20:58:58 +01:00
|
|
|
logging.info("tornado: Doing database query for user %d" % (key,),)
|
|
|
|
for um in reversed(UserMessage.objects.filter(user_profile_id=key).order_by('-message')[:400]):
|
|
|
|
add_user_message(um.user_profile_id, um.message_id)
|
2013-02-12 21:39:38 +01:00
|
|
|
elif table == "stream":
|
2013-01-17 20:58:58 +01:00
|
|
|
logging.info("tornado: Doing database query for stream %s" % (key,))
|
|
|
|
(realm_id, stream_name) = key
|
|
|
|
stream = get_stream(stream_name, realm_id)
|
|
|
|
# If a buggy client submits a "last" value with a nonexistent stream,
|
|
|
|
# do nothing (and proceed to longpoll) rather than crashing.
|
|
|
|
if stream is not None:
|
|
|
|
recipient = Recipient.objects.get(type=Recipient.STREAM, type_id=stream.id)
|
|
|
|
for m in Message.objects.only("id", "recipient").filter(recipient=recipient).order_by("id")[:400]:
|
|
|
|
add_stream_message(realm_id, stream_name, m.id)
|
|
|
|
|
2013-02-12 21:39:38 +01:00
|
|
|
if len(mtables[table][key]) == 0:
|
2013-01-17 20:58:58 +01:00
|
|
|
# Check the our assumption above that there are messages here.
|
|
|
|
# If false, this may just mean a misbehaving client submitted
|
|
|
|
# "last" even though it has no messages (in which case we
|
|
|
|
# should proceed with longpolling by falling through). But it
|
|
|
|
# could also be a server bug, so we log a warning.
|
|
|
|
logging.warning("Unexpected empty message queue for key %s!" % (key,))
|
2013-02-12 21:39:38 +01:00
|
|
|
elif last < mtables[table][key][-1]:
|
2013-01-17 20:58:58 +01:00
|
|
|
# The user's client has a way-too-old value for 'last'
|
|
|
|
# (presumably 400 messages old), we should return an error
|
2013-01-23 17:33:07 +01:00
|
|
|
|
|
|
|
# The error handler for get_updates in zephyr.js parses this
|
|
|
|
# message. If you change this message, you must update that
|
|
|
|
# error handler.
|
2013-01-17 20:58:58 +01:00
|
|
|
raise JsonableError("last value of %d too old! Minimum valid is %d!" %
|
2013-02-12 21:39:38 +01:00
|
|
|
(last, mtables[table][key][-1]))
|
2013-01-17 20:58:58 +01:00
|
|
|
|
2013-01-09 20:35:19 +01:00
|
|
|
message_list = []
|
2013-02-12 21:39:38 +01:00
|
|
|
for message_id in mtables[table][key]:
|
2013-01-09 20:35:19 +01:00
|
|
|
if message_id <= last:
|
|
|
|
return reversed(message_list)
|
|
|
|
message_list.append(message_id)
|
|
|
|
return []
|
|
|
|
|
2013-01-09 16:18:16 +01:00
|
|
|
# The user receives this message
|
2013-01-15 19:52:22 +01:00
|
|
|
def user_receive_message(user_profile_id, message):
|
2013-01-09 20:35:19 +01:00
|
|
|
add_user_message(user_profile_id, message.id)
|
2013-01-15 19:52:22 +01:00
|
|
|
callbacks_table.call(user_profile_id, Callbacks.TYPE_USER_RECEIVE,
|
|
|
|
messages=[message], update_types=["new_messages"])
|
|
|
|
|
|
|
|
# The stream receives this message
|
|
|
|
def stream_receive_message(realm_id, stream_name, message):
|
|
|
|
add_stream_message(realm_id, stream_name, message.id)
|
|
|
|
callbacks_table.call((realm_id, stream_name.lower()),
|
|
|
|
Callbacks.TYPE_STREAM_RECEIVE,
|
2013-01-09 16:18:16 +01:00
|
|
|
messages=[message], update_types=["new_messages"])
|
|
|
|
|
2013-01-09 16:34:42 +01:00
|
|
|
# Simple caching implementation module for user pointers
|
|
|
|
#
|
|
|
|
# TODO: Write something generic in cache.py to support this
|
|
|
|
# functionality? The current primitives there don't support storing
|
|
|
|
# to the cache.
|
|
|
|
user_pointers = {}
|
|
|
|
def get_user_pointer(user_profile_id):
|
2013-01-09 19:17:08 +01:00
|
|
|
if user_pointers == {}:
|
|
|
|
# Once, on startup, fill in the user_pointers table with
|
|
|
|
# everyone's current pointers
|
|
|
|
for u in UserProfile.objects.all():
|
|
|
|
user_pointers[u.id] = u.pointer
|
2013-01-09 16:34:42 +01:00
|
|
|
if user_profile_id not in user_pointers:
|
2013-01-09 19:17:08 +01:00
|
|
|
# This is a new user created since Tornado was started, so
|
|
|
|
# they will have an initial pointer of -1.
|
|
|
|
return -1
|
2013-01-09 16:34:42 +01:00
|
|
|
return user_pointers[user_profile_id]
|
|
|
|
|
|
|
|
def set_user_pointer(user_profile_id, pointer):
|
|
|
|
user_pointers[user_profile_id] = pointer
|
|
|
|
|
2013-03-13 21:13:32 +01:00
|
|
|
def update_pointer(user_profile_id, new_pointer):
|
2013-01-09 16:36:29 +01:00
|
|
|
set_user_pointer(user_profile_id, new_pointer)
|
|
|
|
callbacks_table.call(user_profile_id, Callbacks.TYPE_POINTER_UPDATE,
|
2013-01-09 16:18:16 +01:00
|
|
|
new_pointer=new_pointer,
|
|
|
|
update_types=["pointer_update"])
|
|
|
|
|
2013-01-08 17:44:22 +01:00
|
|
|
@internal_notify_view
|
|
|
|
def notify_new_message(request):
|
2013-01-09 16:42:29 +01:00
|
|
|
recipient_profile_ids = map(int, json_to_list(request.POST['users']))
|
2013-01-09 20:35:19 +01:00
|
|
|
message = cache_get_message(int(request.POST['message']))
|
2013-01-08 17:44:22 +01:00
|
|
|
|
2013-01-09 16:42:29 +01:00
|
|
|
for user_profile_id in recipient_profile_ids:
|
2013-01-15 19:52:22 +01:00
|
|
|
user_receive_message(user_profile_id, message)
|
|
|
|
|
|
|
|
if 'stream_name' in request.POST:
|
|
|
|
realm_id = int(request.POST['realm_id'])
|
|
|
|
stream_name = request.POST['stream_name']
|
|
|
|
stream_receive_message(realm_id, stream_name, message)
|
2013-01-08 17:44:22 +01:00
|
|
|
|
|
|
|
return json_success()
|
|
|
|
|
|
|
|
@internal_notify_view
|
|
|
|
def notify_pointer_update(request):
|
2013-01-09 16:36:29 +01:00
|
|
|
user_profile_id = int(request.POST['user'])
|
2013-01-08 17:44:22 +01:00
|
|
|
new_pointer = int(request.POST['new_pointer'])
|
|
|
|
|
2013-03-13 21:13:32 +01:00
|
|
|
update_pointer(user_profile_id, new_pointer)
|
2013-01-08 17:44:22 +01:00
|
|
|
|
|
|
|
return json_success()
|
|
|
|
|
|
|
|
@asynchronous
|
|
|
|
@authenticated_json_post_view
|
|
|
|
def json_get_updates(request, user_profile, handler):
|
|
|
|
client_id = request.session.session_key
|
|
|
|
return get_updates_backend(request, user_profile, handler, client_id,
|
|
|
|
client=request._client, apply_markdown=True)
|
|
|
|
|
|
|
|
@asynchronous
|
|
|
|
@authenticated_api_view
|
|
|
|
@has_request_variables
|
|
|
|
def api_get_messages(request, user_profile, handler, client_id=POST(default=None),
|
|
|
|
apply_markdown=POST(default=False, converter=simplejson.loads)):
|
|
|
|
return get_updates_backend(request, user_profile, handler, client_id,
|
|
|
|
apply_markdown=apply_markdown,
|
|
|
|
client=request._client)
|
|
|
|
|
|
|
|
def format_updates_response(messages=[], apply_markdown=True,
|
|
|
|
user_profile=None, new_pointer=None,
|
|
|
|
client=None, update_types=[],
|
|
|
|
client_server_generation=None):
|
|
|
|
if client is not None and client.name.endswith("_mirror"):
|
|
|
|
messages = [m for m in messages if m.sending_client.name != client.name]
|
|
|
|
ret = {'messages': [message.to_dict(apply_markdown) for message in messages],
|
|
|
|
"result": "success",
|
|
|
|
"msg": "",
|
|
|
|
'update_types': update_types}
|
|
|
|
if client_server_generation is not None:
|
|
|
|
ret['server_generation'] = SERVER_GENERATION
|
|
|
|
if new_pointer is not None:
|
|
|
|
ret['new_pointer'] = new_pointer
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def return_messages_immediately(user_profile, client_id, last,
|
|
|
|
client_server_generation,
|
2013-01-15 20:55:13 +01:00
|
|
|
client_pointer, dont_block,
|
|
|
|
stream_name, **kwargs):
|
2013-01-08 17:44:22 +01:00
|
|
|
update_types = []
|
2012-12-14 19:13:43 +01:00
|
|
|
new_pointer = None
|
2013-01-08 17:44:22 +01:00
|
|
|
if dont_block:
|
|
|
|
update_types.append("nonblocking_request")
|
|
|
|
|
|
|
|
if (client_server_generation is not None and
|
|
|
|
client_server_generation != SERVER_GENERATION):
|
|
|
|
update_types.append("client_reload")
|
|
|
|
|
2013-01-09 16:34:42 +01:00
|
|
|
ptr = get_user_pointer(user_profile.id)
|
2013-01-08 17:44:22 +01:00
|
|
|
if (client_pointer is not None and ptr > client_pointer):
|
|
|
|
new_pointer = ptr
|
|
|
|
update_types.append("pointer_update")
|
|
|
|
|
2012-12-14 19:13:43 +01:00
|
|
|
if last is not None:
|
2013-01-15 20:55:13 +01:00
|
|
|
if stream_name is not None:
|
|
|
|
message_ids = fetch_stream_messages(user_profile.realm.id, stream_name, last)
|
|
|
|
else:
|
|
|
|
message_ids = fetch_user_messages(user_profile.id, last)
|
2013-01-09 20:35:19 +01:00
|
|
|
messages = map(cache_get_message, message_ids)
|
2012-12-14 19:13:43 +01:00
|
|
|
|
|
|
|
# Filter for mirroring before checking whether there are any
|
|
|
|
# messages to pass on. If we don't do this, when the only message
|
|
|
|
# to forward is one that was sent via the mirroring, the API
|
|
|
|
# client will end up in an endless loop requesting more data from
|
|
|
|
# us.
|
|
|
|
if "client" in kwargs and kwargs["client"].name.endswith("_mirror"):
|
|
|
|
messages = [m for m in messages if
|
|
|
|
m.sending_client.name != kwargs["client"].name]
|
|
|
|
else: # last is None, so we're not interested in any old messages
|
|
|
|
messages = []
|
|
|
|
|
|
|
|
if messages:
|
|
|
|
update_types.append("new_messages")
|
|
|
|
|
2013-01-08 17:44:22 +01:00
|
|
|
if update_types:
|
|
|
|
return format_updates_response(messages=messages,
|
|
|
|
user_profile=user_profile,
|
|
|
|
new_pointer=new_pointer,
|
|
|
|
client_server_generation=client_server_generation,
|
|
|
|
update_types=update_types,
|
|
|
|
**kwargs)
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
2013-01-15 20:55:13 +01:00
|
|
|
# Note: We allow any stream name at all here! Validation and
|
|
|
|
# authorization (is the stream "public") are handled by the caller of
|
|
|
|
# notify_new_message. If a user makes a get_updates request for a
|
|
|
|
# nonexistent or non-public stream, they won't get an error -- they'll
|
|
|
|
# just never receive any messages.
|
2013-01-08 17:44:22 +01:00
|
|
|
@has_request_variables
|
|
|
|
def get_updates_backend(request, user_profile, handler, client_id,
|
2012-12-14 19:08:55 +01:00
|
|
|
last = POST(converter=to_non_negative_int, default=None),
|
2013-01-08 17:44:22 +01:00
|
|
|
client_server_generation = POST(whence='server_generation', default=None,
|
|
|
|
converter=int),
|
|
|
|
client_pointer = POST(whence='pointer', converter=int, default=None),
|
|
|
|
dont_block = POST(converter=simplejson.loads, default=False),
|
2013-03-13 21:02:00 +01:00
|
|
|
stream_name = POST(default=None), apply_markdown=True,
|
2013-01-08 17:44:22 +01:00
|
|
|
**kwargs):
|
|
|
|
resp = return_messages_immediately(user_profile, client_id, last,
|
|
|
|
client_server_generation,
|
|
|
|
client_pointer,
|
2013-03-13 21:02:00 +01:00
|
|
|
dont_block, stream_name,
|
|
|
|
apply_markdown=apply_markdown, **kwargs)
|
2013-01-08 17:44:22 +01:00
|
|
|
if resp is not None:
|
2013-03-15 17:28:03 +01:00
|
|
|
handler.humbug_finish(resp, request, apply_markdown)
|
2013-01-08 17:44:22 +01:00
|
|
|
|
2013-03-15 17:28:03 +01:00
|
|
|
# We have already invoked handler.humbug_finish(), so we bypass the usual view
|
2013-01-08 17:44:22 +01:00
|
|
|
# response path. We are "responding asynchronously" except that it
|
2013-03-13 21:02:00 +01:00
|
|
|
# already happened. This is slightly weird.
|
2013-01-08 17:44:22 +01:00
|
|
|
return RespondAsynchronously
|
|
|
|
|
|
|
|
# Enter long-polling mode.
|
|
|
|
#
|
|
|
|
# Instead of responding to the client right away, leave our connection open
|
|
|
|
# and return to the Tornado main loop. One of the notify_* views will
|
|
|
|
# eventually invoke one of these callbacks, which will send the delayed
|
|
|
|
# response.
|
|
|
|
|
|
|
|
def cb(**cb_kwargs):
|
|
|
|
if handler.request.connection.stream.closed():
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
# It would be nice to be able to do these checks in
|
|
|
|
# UserProfile.receive, but it doesn't know what the value
|
|
|
|
# of "last" was for each callback.
|
|
|
|
if last is not None and "messages" in cb_kwargs:
|
|
|
|
messages = cb_kwargs["messages"]
|
|
|
|
|
|
|
|
# Make sure the client doesn't get a message twice
|
|
|
|
# when messages are processed out of order.
|
|
|
|
if messages[0].id <= last:
|
|
|
|
# We must return a response because we don't have
|
|
|
|
# a way to re-queue a callback and so the client
|
|
|
|
# must do it by making a new request
|
2013-03-15 17:28:03 +01:00
|
|
|
handler.humbug_finish({"result": "success",
|
|
|
|
"msg": "",
|
|
|
|
'update_types': []},
|
|
|
|
request, apply_markdown)
|
2013-01-08 17:44:22 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
kwargs.update(cb_kwargs)
|
|
|
|
res = format_updates_response(user_profile=user_profile,
|
|
|
|
client_server_generation=client_server_generation,
|
2013-03-13 21:02:00 +01:00
|
|
|
apply_markdown=apply_markdown,
|
2013-01-08 17:44:22 +01:00
|
|
|
**kwargs)
|
2013-03-15 17:28:03 +01:00
|
|
|
handler.humbug_finish(res, request, apply_markdown)
|
2013-01-08 17:44:22 +01:00
|
|
|
except socket.error:
|
|
|
|
pass
|
|
|
|
|
2013-01-15 20:55:13 +01:00
|
|
|
if stream_name is not None:
|
|
|
|
add_stream_receive_callback(user_profile.realm.id, stream_name, handler.async_callback(cb))
|
|
|
|
else:
|
|
|
|
add_user_receive_callback(user_profile, handler.async_callback(cb))
|
2013-01-08 17:44:22 +01:00
|
|
|
if client_pointer is not None:
|
2013-01-09 16:18:16 +01:00
|
|
|
add_pointer_update_callback(user_profile, handler.async_callback(cb))
|
2013-01-08 17:44:22 +01:00
|
|
|
|
|
|
|
# runtornado recognizes this special return value.
|
|
|
|
return RespondAsynchronously
|