2013-04-23 18:51:17 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2013-03-26 18:06:00 +01:00
|
|
|
from django.conf import settings
|
2014-04-24 02:16:53 +02:00
|
|
|
from django.utils.timezone import now
|
2013-03-26 18:06:00 +01:00
|
|
|
from collections import deque
|
2014-04-24 02:16:53 +02:00
|
|
|
import datetime
|
2013-03-20 23:03:41 +01:00
|
|
|
import os
|
2013-03-26 18:06:00 +01:00
|
|
|
import time
|
|
|
|
import socket
|
|
|
|
import logging
|
2013-06-18 23:55:55 +02:00
|
|
|
import ujson
|
2013-03-14 23:21:53 +01:00
|
|
|
import requests
|
2013-03-20 23:03:41 +01:00
|
|
|
import atexit
|
|
|
|
import sys
|
|
|
|
import signal
|
2013-03-22 23:24:28 +01:00
|
|
|
import tornado
|
2013-03-22 23:25:37 +01:00
|
|
|
import random
|
2013-11-07 00:34:50 +01:00
|
|
|
import traceback
|
2014-01-27 23:21:39 +01:00
|
|
|
from zerver.decorator import RespondAsynchronously, JsonableError
|
2014-04-24 02:16:53 +02:00
|
|
|
from zerver.lib.cache import cache_get_many, message_cache_key, \
|
|
|
|
user_profile_by_id_cache_key, cache_save_user_profile
|
|
|
|
from zerver.lib.cache_helpers import cache_with_key
|
2016-02-13 06:34:14 +01:00
|
|
|
from zerver.lib.handlers import clear_handler_by_id, get_handler_by_id, \
|
|
|
|
finish_handler
|
2013-07-29 23:03:31 +02:00
|
|
|
from zerver.lib.utils import statsd
|
|
|
|
from zerver.middleware import async_request_restart
|
2013-12-10 16:28:16 +01:00
|
|
|
from zerver.lib.narrow import build_narrow_filter
|
2014-04-24 02:16:53 +02:00
|
|
|
from zerver.lib.queue import queue_json_publish
|
|
|
|
from zerver.lib.timestamp import timestamp_to_datetime
|
2013-11-22 20:30:32 +01:00
|
|
|
import copy
|
2016-03-11 10:57:29 +01:00
|
|
|
import six
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2013-04-18 22:17:48 +02:00
|
|
|
# The idle timeout used to be a week, but we found that in that
|
|
|
|
# situation, queues from dead browser sessions would grow quite large
|
|
|
|
# due to the accumulation of message data in those queues.
|
|
|
|
IDLE_EVENT_QUEUE_TIMEOUT_SECS = 60 * 10
|
|
|
|
EVENT_QUEUE_GC_FREQ_MSECS = 1000 * 60 * 5
|
2013-08-05 22:09:12 +02:00
|
|
|
|
|
|
|
# Capped limit for how long a client can request an event queue
|
|
|
|
# to live
|
|
|
|
MAX_QUEUE_TIMEOUT_SECS = 7 * 24 * 60 * 60
|
|
|
|
|
2013-03-28 22:39:43 +01:00
|
|
|
# The heartbeats effectively act as a server-side timeout for
|
|
|
|
# get_events(). The actual timeout value is randomized for each
|
|
|
|
# client connection based on the below value. We ensure that the
|
|
|
|
# maximum timeout value is 55 seconds, to deal with crappy home
|
|
|
|
# wireless routers that kill "inactive" http connections.
|
|
|
|
HEARTBEAT_MIN_FREQ_SECS = 45
|
2013-03-26 18:06:00 +01:00
|
|
|
|
|
|
|
class ClientDescriptor(object):
|
2014-01-27 23:57:45 +01:00
|
|
|
def __init__(self, user_profile_id, user_profile_email, realm_id, event_queue,
|
2014-01-28 18:13:41 +01:00
|
|
|
event_types, client_type_name, apply_markdown=True,
|
2014-01-27 23:57:45 +01:00
|
|
|
all_public_streams=False, lifespan_secs=0, narrow=[]):
|
2013-11-19 23:51:32 +01:00
|
|
|
# These objects are serialized on shutdown and restored on restart.
|
2013-10-17 23:51:25 +02:00
|
|
|
# If fields are added or semantics are changed, temporary code must be
|
2013-11-19 23:51:32 +01:00
|
|
|
# added to load_event_queues() to update the restored objects.
|
|
|
|
# Additionally, the to_dict and from_dict methods must be updated
|
2013-03-26 18:06:00 +01:00
|
|
|
self.user_profile_id = user_profile_id
|
2014-01-27 23:57:45 +01:00
|
|
|
self.user_profile_email = user_profile_email
|
2013-10-17 23:51:25 +02:00
|
|
|
self.realm_id = realm_id
|
2014-01-27 23:53:13 +01:00
|
|
|
self.current_handler_id = None
|
2014-01-28 17:17:21 +01:00
|
|
|
self.current_client_name = None
|
2013-11-19 23:11:53 +01:00
|
|
|
self.event_queue = event_queue
|
2013-08-05 22:09:12 +02:00
|
|
|
self.queue_timeout = lifespan_secs
|
2013-03-22 22:43:49 +01:00
|
|
|
self.event_types = event_types
|
2013-03-26 18:06:00 +01:00
|
|
|
self.last_connection_time = time.time()
|
|
|
|
self.apply_markdown = apply_markdown
|
2013-10-17 23:51:25 +02:00
|
|
|
self.all_public_streams = all_public_streams
|
2014-01-28 18:13:41 +01:00
|
|
|
self.client_type_name = client_type_name
|
2013-03-22 23:25:37 +01:00
|
|
|
self._timeout_handle = None
|
2013-12-11 23:27:36 +01:00
|
|
|
self.narrow = narrow
|
2013-12-10 16:28:16 +01:00
|
|
|
self.narrow_filter = build_narrow_filter(narrow)
|
2013-03-22 23:25:37 +01:00
|
|
|
|
2013-08-05 22:09:12 +02:00
|
|
|
# Clamp queue_timeout to between minimum and maximum timeouts
|
|
|
|
self.queue_timeout = max(IDLE_EVENT_QUEUE_TIMEOUT_SECS, min(self.queue_timeout, MAX_QUEUE_TIMEOUT_SECS))
|
|
|
|
|
2013-11-19 23:51:32 +01:00
|
|
|
def to_dict(self):
|
2013-11-22 20:30:32 +01:00
|
|
|
# If you add a new key to this dict, make sure you add appropriate
|
|
|
|
# migration code in from_dict or load_event_queues to account for
|
|
|
|
# loading event queues that lack that key.
|
2013-11-19 23:51:32 +01:00
|
|
|
return dict(user_profile_id=self.user_profile_id,
|
2014-01-27 23:57:45 +01:00
|
|
|
user_profile_email=self.user_profile_email,
|
2013-11-19 23:51:32 +01:00
|
|
|
realm_id=self.realm_id,
|
|
|
|
event_queue=self.event_queue.to_dict(),
|
|
|
|
queue_timeout=self.queue_timeout,
|
|
|
|
event_types=self.event_types,
|
|
|
|
last_connection_time=self.last_connection_time,
|
|
|
|
apply_markdown=self.apply_markdown,
|
|
|
|
all_public_streams=self.all_public_streams,
|
2013-12-11 23:27:36 +01:00
|
|
|
narrow=self.narrow,
|
2014-01-28 18:13:41 +01:00
|
|
|
client_type=self.client_type_name)
|
2013-11-19 23:51:32 +01:00
|
|
|
|
2016-03-20 23:59:29 +01:00
|
|
|
def __repr__(self):
|
|
|
|
return "ClientDescriptor<%s>" % (self.event_queue.id,)
|
|
|
|
|
2013-11-19 23:51:32 +01:00
|
|
|
@classmethod
|
|
|
|
def from_dict(cls, d):
|
2014-01-27 23:57:45 +01:00
|
|
|
if 'user_profile_email' not in d:
|
|
|
|
# Temporary migration for the addition of the new user_profile_email field
|
|
|
|
from zerver.models import get_user_profile_by_id
|
|
|
|
d['user_profile_email'] = get_user_profile_by_id(d['user_profile_id']).email
|
|
|
|
ret = cls(d['user_profile_id'], d['user_profile_email'], d['realm_id'],
|
2013-11-19 23:51:32 +01:00
|
|
|
EventQueue.from_dict(d['event_queue']), d['event_types'],
|
2014-01-28 18:13:41 +01:00
|
|
|
d['client_type'], d['apply_markdown'], d['all_public_streams'],
|
2013-12-11 23:27:36 +01:00
|
|
|
d['queue_timeout'], d.get('narrow', []))
|
2013-11-19 23:51:32 +01:00
|
|
|
ret.last_connection_time = d['last_connection_time']
|
|
|
|
return ret
|
|
|
|
|
2013-03-22 23:25:37 +01:00
|
|
|
def prepare_for_pickling(self):
|
2014-01-27 23:53:13 +01:00
|
|
|
self.current_handler_id = None
|
2013-03-22 23:25:37 +01:00
|
|
|
self._timeout_handle = None
|
2013-03-26 18:06:00 +01:00
|
|
|
|
|
|
|
def add_event(self, event):
|
2014-01-27 23:53:13 +01:00
|
|
|
if self.current_handler_id is not None:
|
|
|
|
handler = get_handler_by_id(self.current_handler_id)
|
|
|
|
async_request_restart(handler._request)
|
2013-03-26 18:06:00 +01:00
|
|
|
|
|
|
|
self.event_queue.push(event)
|
2013-12-12 18:59:02 +01:00
|
|
|
self.finish_current_handler()
|
|
|
|
|
|
|
|
def finish_current_handler(self):
|
2014-01-27 23:53:13 +01:00
|
|
|
if self.current_handler_id is not None:
|
2013-12-11 00:21:51 +01:00
|
|
|
err_msg = "Got error finishing handler for queue %s" % (self.event_queue.id,)
|
2013-03-26 18:06:00 +01:00
|
|
|
try:
|
2014-01-28 16:59:59 +01:00
|
|
|
finish_handler(self.current_handler_id, self.event_queue.id,
|
|
|
|
self.event_queue.contents(), self.apply_markdown)
|
2013-12-10 23:40:30 +01:00
|
|
|
except Exception:
|
2013-12-11 00:21:51 +01:00
|
|
|
logging.exception(err_msg)
|
2013-12-10 23:44:35 +01:00
|
|
|
finally:
|
|
|
|
self.disconnect_handler()
|
2013-12-12 18:59:02 +01:00
|
|
|
return True
|
|
|
|
return False
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2013-12-10 16:35:16 +01:00
|
|
|
def accepts_event(self, event):
|
2013-12-13 18:06:13 +01:00
|
|
|
if self.event_types is not None and event["type"] not in self.event_types:
|
2013-12-10 16:28:16 +01:00
|
|
|
return False
|
|
|
|
if event["type"] == "message":
|
|
|
|
return self.narrow_filter(event)
|
|
|
|
return True
|
2013-12-10 16:35:16 +01:00
|
|
|
|
|
|
|
# TODO: Refactor so we don't need this function
|
|
|
|
def accepts_messages(self):
|
|
|
|
return self.event_types is None or "message" in self.event_types
|
2013-03-22 22:43:49 +01:00
|
|
|
|
2013-03-26 18:06:00 +01:00
|
|
|
def idle(self, now):
|
2013-08-05 22:09:12 +02:00
|
|
|
if not hasattr(self, 'queue_timeout'):
|
|
|
|
self.queue_timeout = IDLE_EVENT_QUEUE_TIMEOUT_SECS
|
|
|
|
|
2014-01-27 23:53:13 +01:00
|
|
|
return (self.current_handler_id is None
|
2013-08-05 22:09:12 +02:00
|
|
|
and now - self.last_connection_time >= self.queue_timeout)
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2014-01-28 17:17:21 +01:00
|
|
|
def connect_handler(self, handler_id, client_name):
|
2014-01-27 23:53:13 +01:00
|
|
|
self.current_handler_id = handler_id
|
2014-01-28 17:17:21 +01:00
|
|
|
self.current_client_name = client_name
|
2014-01-28 17:12:18 +01:00
|
|
|
set_descriptor_by_handler_id(handler_id, self)
|
2013-03-26 18:06:00 +01:00
|
|
|
self.last_connection_time = time.time()
|
2013-11-21 18:52:32 +01:00
|
|
|
def timeout_callback():
|
|
|
|
self._timeout_handle = None
|
|
|
|
# All clients get heartbeat events
|
|
|
|
self.add_event(dict(type='heartbeat'))
|
|
|
|
ioloop = tornado.ioloop.IOLoop.instance()
|
|
|
|
heartbeat_time = time.time() + HEARTBEAT_MIN_FREQ_SECS + random.randint(0, 10)
|
2014-01-28 18:13:41 +01:00
|
|
|
if self.client_type_name != 'API: heartbeat test':
|
2013-11-27 16:30:28 +01:00
|
|
|
self._timeout_handle = ioloop.add_timeout(heartbeat_time, timeout_callback)
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2016-03-21 00:08:08 +01:00
|
|
|
def disconnect_handler(self, client_closed=False, need_timeout=True):
|
2014-01-27 23:53:13 +01:00
|
|
|
if self.current_handler_id:
|
2016-02-13 06:34:14 +01:00
|
|
|
clear_descriptor_by_handler_id(self.current_handler_id, None)
|
2016-03-21 00:12:37 +01:00
|
|
|
clear_handler_by_id(self.current_handler_id)
|
2013-12-12 19:47:24 +01:00
|
|
|
if client_closed:
|
2014-01-27 23:57:45 +01:00
|
|
|
logging.info("Client disconnected for queue %s (%s via %s)" %
|
|
|
|
(self.event_queue.id, self.user_profile_email,
|
2014-01-28 17:17:21 +01:00
|
|
|
self.current_client_name))
|
2014-01-27 23:53:13 +01:00
|
|
|
self.current_handler_id = None
|
2014-01-28 17:17:21 +01:00
|
|
|
self.current_client_name = None
|
2016-03-21 00:08:08 +01:00
|
|
|
if need_timeout and self._timeout_handle is not None:
|
2013-03-22 23:25:37 +01:00
|
|
|
ioloop = tornado.ioloop.IOLoop.instance()
|
|
|
|
ioloop.remove_timeout(self._timeout_handle)
|
|
|
|
self._timeout_handle = None
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2013-11-19 23:11:30 +01:00
|
|
|
def cleanup(self):
|
2016-03-21 00:08:08 +01:00
|
|
|
# Disconnect any existing handler, and don't bother creating a
|
|
|
|
# timeout object that we'll just have to garbage collect later.
|
|
|
|
self.disconnect_handler(need_timeout=False)
|
2013-11-19 23:11:30 +01:00
|
|
|
do_gc_event_queues([self.event_queue.id], [self.user_profile_id],
|
|
|
|
[self.realm_id])
|
|
|
|
|
2014-01-28 17:12:18 +01:00
|
|
|
descriptors_by_handler_id = {}
|
|
|
|
|
|
|
|
def get_descriptor_by_handler_id(handler_id):
|
|
|
|
return descriptors_by_handler_id.get(handler_id)
|
|
|
|
|
|
|
|
def set_descriptor_by_handler_id(handler_id, client_descriptor):
|
|
|
|
descriptors_by_handler_id[handler_id] = client_descriptor
|
|
|
|
|
2016-02-13 06:34:14 +01:00
|
|
|
def clear_descriptor_by_handler_id(handler_id, client_descriptor):
|
2014-01-28 17:12:18 +01:00
|
|
|
del descriptors_by_handler_id[handler_id]
|
|
|
|
|
2013-11-22 20:30:32 +01:00
|
|
|
def compute_full_event_type(event):
|
|
|
|
if event["type"] == "update_message_flags":
|
|
|
|
if event["all"]:
|
|
|
|
# Put the "all" case in its own category
|
2013-11-22 21:04:41 +01:00
|
|
|
return "all_flags/%s/%s" % (event["flag"], event["operation"])
|
|
|
|
return "flags/%s/%s" % (event["operation"], event["flag"])
|
2013-11-22 20:30:32 +01:00
|
|
|
return event["type"]
|
|
|
|
|
2013-03-26 18:06:00 +01:00
|
|
|
class EventQueue(object):
|
|
|
|
def __init__(self, id):
|
|
|
|
self.queue = deque()
|
|
|
|
self.next_event_id = 0
|
|
|
|
self.id = id
|
2013-11-22 20:30:32 +01:00
|
|
|
self.virtual_events = {}
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2013-11-19 23:51:32 +01:00
|
|
|
def to_dict(self):
|
2013-11-22 20:30:32 +01:00
|
|
|
# If you add a new key to this dict, make sure you add appropriate
|
|
|
|
# migration code in from_dict or load_event_queues to account for
|
|
|
|
# loading event queues that lack that key.
|
|
|
|
return dict(id=self.id,
|
|
|
|
next_event_id=self.next_event_id,
|
|
|
|
queue=list(self.queue),
|
|
|
|
virtual_events=self.virtual_events)
|
2013-11-19 23:51:32 +01:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def from_dict(cls, d):
|
|
|
|
ret = cls(d['id'])
|
|
|
|
ret.next_event_id = d['next_event_id']
|
|
|
|
ret.queue = deque(d['queue'])
|
2013-11-22 20:30:32 +01:00
|
|
|
ret.virtual_events = d.get("virtual_events", {})
|
2013-11-19 23:51:32 +01:00
|
|
|
return ret
|
|
|
|
|
2013-03-26 18:06:00 +01:00
|
|
|
def push(self, event):
|
|
|
|
event['id'] = self.next_event_id
|
|
|
|
self.next_event_id += 1
|
2013-11-22 20:30:32 +01:00
|
|
|
full_event_type = compute_full_event_type(event)
|
2013-11-22 21:04:41 +01:00
|
|
|
if (full_event_type in ["pointer", "restart"] or
|
|
|
|
full_event_type.startswith("flags/")):
|
2013-11-22 20:30:32 +01:00
|
|
|
if full_event_type not in self.virtual_events:
|
|
|
|
self.virtual_events[full_event_type] = copy.deepcopy(event)
|
|
|
|
return
|
|
|
|
# Update the virtual event with the values from the event
|
|
|
|
virtual_event = self.virtual_events[full_event_type]
|
|
|
|
virtual_event["id"] = event["id"]
|
|
|
|
if "timestamp" in event:
|
|
|
|
virtual_event["timestamp"] = event["timestamp"]
|
|
|
|
if full_event_type == "pointer":
|
|
|
|
virtual_event["pointer"] = event["pointer"]
|
2013-11-22 20:53:59 +01:00
|
|
|
elif full_event_type == "restart":
|
|
|
|
virtual_event["server_generation"] = event["server_generation"]
|
2013-11-22 21:04:41 +01:00
|
|
|
elif full_event_type.startswith("flags/"):
|
|
|
|
virtual_event["messages"] += event["messages"]
|
2013-11-22 20:30:32 +01:00
|
|
|
else:
|
|
|
|
self.queue.append(event)
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2013-12-11 23:09:59 +01:00
|
|
|
# Note that pop ignores virtual events. This is fine in our
|
|
|
|
# current usage since virtual events should always be resolved to
|
|
|
|
# a real event before being given to users.
|
2013-03-26 18:06:00 +01:00
|
|
|
def pop(self):
|
|
|
|
return self.queue.popleft()
|
|
|
|
|
|
|
|
def empty(self):
|
2013-12-11 22:58:12 +01:00
|
|
|
return len(self.queue) == 0 and len(self.virtual_events) == 0
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2013-12-11 23:09:59 +01:00
|
|
|
# See the comment on pop; that applies here as well
|
2013-03-26 18:06:00 +01:00
|
|
|
def prune(self, through_id):
|
2013-12-11 23:09:59 +01:00
|
|
|
while len(self.queue) != 0 and self.queue[0]['id'] <= through_id:
|
2013-03-26 18:06:00 +01:00
|
|
|
self.pop()
|
|
|
|
|
|
|
|
def contents(self):
|
2013-11-22 20:30:32 +01:00
|
|
|
contents = []
|
|
|
|
virtual_id_map = {}
|
|
|
|
for event_type in self.virtual_events:
|
|
|
|
virtual_id_map[self.virtual_events[event_type]["id"]] = self.virtual_events[event_type]
|
|
|
|
virtual_ids = sorted(list(virtual_id_map.keys()))
|
|
|
|
|
|
|
|
# Merge the virtual events into their final place in the queue
|
|
|
|
index = 0
|
|
|
|
length = len(virtual_ids)
|
|
|
|
for event in self.queue:
|
|
|
|
while index < length and virtual_ids[index] < event["id"]:
|
|
|
|
contents.append(virtual_id_map[virtual_ids[index]])
|
|
|
|
index += 1
|
|
|
|
contents.append(event)
|
|
|
|
while index < length:
|
|
|
|
contents.append(virtual_id_map[virtual_ids[index]])
|
|
|
|
index += 1
|
|
|
|
|
|
|
|
self.virtual_events = {}
|
|
|
|
self.queue = deque(contents)
|
|
|
|
return contents
|
2013-03-26 18:06:00 +01:00
|
|
|
|
|
|
|
# maps queue ids to client descriptors
|
|
|
|
clients = {}
|
|
|
|
# maps user id to list of client descriptors
|
|
|
|
user_clients = {}
|
2013-10-17 23:51:25 +02:00
|
|
|
# maps realm id to list of client descriptors with all_public_streams=True
|
|
|
|
realm_clients_all_streams = {}
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2013-05-22 23:49:02 +02:00
|
|
|
# list of registered gc hooks.
|
|
|
|
# each one will be called with a user profile id, queue, and bool
|
|
|
|
# last_for_client that is true if this is the last queue pertaining
|
|
|
|
# to this user_profile_id
|
|
|
|
# that is about to be deleted
|
|
|
|
gc_hooks = []
|
|
|
|
|
2013-03-26 18:06:00 +01:00
|
|
|
next_queue_id = 0
|
|
|
|
|
2013-05-22 23:49:02 +02:00
|
|
|
def add_client_gc_hook(hook):
|
|
|
|
gc_hooks.append(hook)
|
|
|
|
|
2013-03-27 22:19:24 +01:00
|
|
|
def get_client_descriptor(queue_id):
|
|
|
|
return clients.get(queue_id)
|
|
|
|
|
|
|
|
def get_client_descriptors_for_user(user_profile_id):
|
|
|
|
return user_clients.get(user_profile_id, [])
|
|
|
|
|
2013-10-17 23:51:25 +02:00
|
|
|
def get_client_descriptors_for_realm_all_streams(realm_id):
|
|
|
|
return realm_clients_all_streams.get(realm_id, [])
|
|
|
|
|
2013-12-13 20:59:56 +01:00
|
|
|
def add_to_client_dicts(client):
|
|
|
|
user_clients.setdefault(client.user_profile_id, []).append(client)
|
2013-12-13 20:20:28 +01:00
|
|
|
if client.all_public_streams or client.narrow != []:
|
2013-12-13 20:59:56 +01:00
|
|
|
realm_clients_all_streams.setdefault(client.realm_id, []).append(client)
|
|
|
|
|
2014-01-27 23:57:45 +01:00
|
|
|
def allocate_client_descriptor(user_profile_id, user_profile_email, realm_id,
|
2014-01-28 18:13:41 +01:00
|
|
|
event_types, client_type_name, apply_markdown,
|
2014-01-27 23:57:45 +01:00
|
|
|
all_public_streams, lifespan_secs, narrow=[]):
|
2013-03-26 18:06:00 +01:00
|
|
|
global next_queue_id
|
|
|
|
id = str(settings.SERVER_GENERATION) + ':' + str(next_queue_id)
|
|
|
|
next_queue_id += 1
|
2014-01-27 23:57:45 +01:00
|
|
|
client = ClientDescriptor(user_profile_id, user_profile_email, realm_id,
|
2014-01-28 18:13:41 +01:00
|
|
|
EventQueue(id), event_types, client_type_name,
|
2013-12-10 16:28:16 +01:00
|
|
|
apply_markdown, all_public_streams, lifespan_secs, narrow)
|
2013-03-26 18:06:00 +01:00
|
|
|
clients[id] = client
|
2013-12-13 20:59:56 +01:00
|
|
|
add_to_client_dicts(client)
|
2013-03-26 18:06:00 +01:00
|
|
|
return client
|
|
|
|
|
2013-11-19 23:11:30 +01:00
|
|
|
def do_gc_event_queues(to_remove, affected_users, affected_realms):
|
2013-10-17 23:51:25 +02:00
|
|
|
def filter_client_dict(client_dict, key):
|
|
|
|
if key not in client_dict:
|
|
|
|
return
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2015-11-01 17:14:31 +01:00
|
|
|
new_client_list = [c for c in client_dict[key] if c.event_queue.id not in to_remove]
|
2013-04-09 19:24:55 +02:00
|
|
|
if len(new_client_list) == 0:
|
2013-10-17 23:51:25 +02:00
|
|
|
del client_dict[key]
|
2013-04-09 19:24:55 +02:00
|
|
|
else:
|
2013-10-17 23:51:25 +02:00
|
|
|
client_dict[key] = new_client_list
|
|
|
|
|
|
|
|
for user_id in affected_users:
|
|
|
|
filter_client_dict(user_clients, user_id)
|
|
|
|
|
|
|
|
for realm_id in affected_realms:
|
|
|
|
filter_client_dict(realm_clients_all_streams, realm_id)
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2013-05-22 23:49:02 +02:00
|
|
|
for id in to_remove:
|
|
|
|
for cb in gc_hooks:
|
|
|
|
cb(clients[id].user_profile_id, clients[id], clients[id].user_profile_id not in user_clients)
|
|
|
|
del clients[id]
|
|
|
|
|
2013-11-19 23:11:30 +01:00
|
|
|
def gc_event_queues():
|
|
|
|
start = time.time()
|
|
|
|
to_remove = set()
|
|
|
|
affected_users = set()
|
|
|
|
affected_realms = set()
|
2016-03-11 10:57:29 +01:00
|
|
|
for (id, client) in six.iteritems(clients):
|
2013-11-19 23:11:30 +01:00
|
|
|
if client.idle(start):
|
|
|
|
to_remove.add(id)
|
|
|
|
affected_users.add(client.user_profile_id)
|
|
|
|
affected_realms.add(client.realm_id)
|
|
|
|
|
|
|
|
do_gc_event_queues(to_remove, affected_users, affected_realms)
|
|
|
|
|
2013-03-26 18:06:00 +01:00
|
|
|
logging.info(('Tornado removed %d idle event queues owned by %d users in %.3fs.'
|
|
|
|
+ ' Now %d active queues')
|
|
|
|
% (len(to_remove), len(affected_users), time.time() - start,
|
|
|
|
len(clients)))
|
2013-05-24 23:27:19 +02:00
|
|
|
statsd.gauge('tornado.active_queues', len(clients))
|
|
|
|
statsd.gauge('tornado.active_users', len(user_clients))
|
2013-03-26 18:06:00 +01:00
|
|
|
|
2013-03-20 23:03:41 +01:00
|
|
|
def dump_event_queues():
|
|
|
|
start = time.time()
|
|
|
|
|
2015-10-14 22:31:08 +02:00
|
|
|
with open(settings.JSON_PERSISTENT_QUEUE_FILENAME, "w") as stored_queues:
|
2016-03-11 10:57:29 +01:00
|
|
|
ujson.dump([(qid, client.to_dict()) for (qid, client) in six.iteritems(clients)],
|
2013-11-19 23:51:32 +01:00
|
|
|
stored_queues)
|
2013-03-20 23:03:41 +01:00
|
|
|
|
|
|
|
logging.info('Tornado dumped %d event queues in %.3fs'
|
|
|
|
% (len(clients), time.time() - start))
|
|
|
|
|
2013-03-20 23:53:46 +01:00
|
|
|
def load_event_queues():
|
2013-03-20 23:03:41 +01:00
|
|
|
global clients
|
|
|
|
start = time.time()
|
2013-11-19 23:51:32 +01:00
|
|
|
|
2014-01-28 19:07:45 +01:00
|
|
|
# ujson chokes on bad input pretty easily. We separate out the actual
|
|
|
|
# file reading from the loading so that we don't silently fail if we get
|
|
|
|
# bad input.
|
|
|
|
try:
|
2016-01-29 02:48:54 +01:00
|
|
|
with open(settings.JSON_PERSISTENT_QUEUE_FILENAME, "r") as stored_queues:
|
2014-01-28 19:07:45 +01:00
|
|
|
json_data = stored_queues.read()
|
2013-11-19 23:51:32 +01:00
|
|
|
try:
|
2014-01-28 19:07:45 +01:00
|
|
|
clients = dict((qid, ClientDescriptor.from_dict(client))
|
|
|
|
for (qid, client) in ujson.loads(json_data))
|
|
|
|
except Exception:
|
|
|
|
logging.exception("Could not deserialize event queues")
|
|
|
|
except (IOError, EOFError):
|
|
|
|
pass
|
2013-03-20 23:03:41 +01:00
|
|
|
|
2016-03-11 10:57:29 +01:00
|
|
|
for client in six.itervalues(clients):
|
2013-11-19 23:25:59 +01:00
|
|
|
# Put code for migrations due to event queue data format changes here
|
2013-10-17 23:51:25 +02:00
|
|
|
|
2013-12-13 20:59:56 +01:00
|
|
|
add_to_client_dicts(client)
|
2013-03-20 23:03:41 +01:00
|
|
|
|
|
|
|
logging.info('Tornado loaded %d event queues in %.3fs'
|
|
|
|
% (len(clients), time.time() - start))
|
|
|
|
|
2013-03-20 23:53:46 +01:00
|
|
|
def send_restart_events():
|
2013-03-22 22:43:49 +01:00
|
|
|
event = dict(type='restart', server_generation=settings.SERVER_GENERATION)
|
2016-03-11 10:57:29 +01:00
|
|
|
for client in six.itervalues(clients):
|
2013-12-10 16:35:16 +01:00
|
|
|
if client.accepts_event(event):
|
|
|
|
client.add_event(event.copy())
|
2013-03-20 23:53:46 +01:00
|
|
|
|
2013-03-22 23:24:28 +01:00
|
|
|
def setup_event_queue():
|
2013-03-20 23:53:46 +01:00
|
|
|
load_event_queues()
|
2013-03-20 23:03:41 +01:00
|
|
|
atexit.register(dump_event_queues)
|
|
|
|
# Make sure we dump event queues even if we exit via signal
|
|
|
|
signal.signal(signal.SIGTERM, lambda signum, stack: sys.exit(1))
|
|
|
|
|
2013-11-19 23:51:32 +01:00
|
|
|
try:
|
|
|
|
os.rename(settings.JSON_PERSISTENT_QUEUE_FILENAME, "/var/tmp/event_queues.json.last")
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
2013-03-20 23:03:41 +01:00
|
|
|
# Set up event queue garbage collection
|
2013-03-22 23:24:28 +01:00
|
|
|
ioloop = tornado.ioloop.IOLoop.instance()
|
|
|
|
pc = tornado.ioloop.PeriodicCallback(gc_event_queues,
|
|
|
|
EVENT_QUEUE_GC_FREQ_MSECS, ioloop)
|
2013-03-26 18:06:00 +01:00
|
|
|
pc.start()
|
2013-03-14 23:21:53 +01:00
|
|
|
|
2013-03-20 23:53:46 +01:00
|
|
|
send_restart_events()
|
|
|
|
|
2014-01-27 23:21:39 +01:00
|
|
|
def fetch_events(user_profile_id, user_profile_realm_id, user_profile_email,
|
2014-01-28 18:13:41 +01:00
|
|
|
queue_id, last_event_id, event_types, client_type_name, apply_markdown,
|
2014-01-27 23:53:13 +01:00
|
|
|
all_public_streams, lifespan_secs, narrow, dont_block, handler_id):
|
2014-01-27 23:21:39 +01:00
|
|
|
was_connected = False
|
|
|
|
orig_queue_id = queue_id
|
|
|
|
extra_log_data = ""
|
|
|
|
if queue_id is None:
|
|
|
|
if dont_block:
|
2014-01-27 23:57:45 +01:00
|
|
|
client = allocate_client_descriptor(user_profile_id, user_profile_email,
|
|
|
|
user_profile_realm_id,
|
2014-01-28 18:13:41 +01:00
|
|
|
event_types, client_type_name, apply_markdown,
|
2014-01-27 23:21:39 +01:00
|
|
|
all_public_streams, lifespan_secs,
|
|
|
|
narrow=narrow)
|
|
|
|
queue_id = client.event_queue.id
|
|
|
|
else:
|
|
|
|
raise JsonableError("Missing 'queue_id' argument")
|
|
|
|
else:
|
|
|
|
if last_event_id is None:
|
|
|
|
raise JsonableError("Missing 'last_event_id' argument")
|
|
|
|
client = get_client_descriptor(queue_id)
|
|
|
|
if client is None:
|
|
|
|
raise JsonableError("Bad event queue id: %s" % (queue_id,))
|
|
|
|
if user_profile_id != client.user_profile_id:
|
|
|
|
raise JsonableError("You are not authorized to get events from this queue")
|
|
|
|
client.event_queue.prune(last_event_id)
|
|
|
|
was_connected = client.finish_current_handler()
|
|
|
|
|
|
|
|
if not client.event_queue.empty() or dont_block:
|
|
|
|
ret = {'events': client.event_queue.contents()}
|
|
|
|
if orig_queue_id is None:
|
|
|
|
ret['queue_id'] = queue_id
|
|
|
|
extra_log_data = "[%s/%s]" % (queue_id, len(ret["events"]))
|
|
|
|
if was_connected:
|
|
|
|
extra_log_data += " [was connected]"
|
2014-01-28 19:04:24 +01:00
|
|
|
return (ret, extra_log_data)
|
2014-01-27 23:21:39 +01:00
|
|
|
|
2016-03-21 00:19:56 +01:00
|
|
|
# After this point, dont_block=False, the queue is empty, and we
|
|
|
|
# have a pre-existing queue, so we wait for new events.
|
2014-01-27 23:21:39 +01:00
|
|
|
if was_connected:
|
|
|
|
logging.info("Disconnected handler for queue %s (%s/%s)" % (queue_id, user_profile_email,
|
2014-01-28 18:13:41 +01:00
|
|
|
client_type_name))
|
|
|
|
client.connect_handler(handler_id, client_type_name)
|
2014-01-27 23:21:39 +01:00
|
|
|
return (RespondAsynchronously, None)
|
|
|
|
|
2013-03-22 18:21:50 +01:00
|
|
|
# The following functions are called from Django
|
|
|
|
|
2013-03-29 16:08:24 +01:00
|
|
|
# Workaround to support the Python-requests 1.0 transition of .json
|
|
|
|
# from a property to a function
|
|
|
|
requests_json_is_function = callable(requests.Response.json)
|
|
|
|
def extract_json_response(resp):
|
|
|
|
if requests_json_is_function:
|
|
|
|
return resp.json()
|
|
|
|
else:
|
|
|
|
return resp.json
|
|
|
|
|
2013-05-07 17:25:25 +02:00
|
|
|
def request_event_queue(user_profile, user_client, apply_markdown,
|
2013-12-10 16:28:16 +01:00
|
|
|
queue_lifespan_secs, event_types=None, all_public_streams=False,
|
|
|
|
narrow=[]):
|
2013-03-14 23:21:53 +01:00
|
|
|
if settings.TORNADO_SERVER:
|
|
|
|
req = {'dont_block' : 'true',
|
2013-06-18 23:55:55 +02:00
|
|
|
'apply_markdown': ujson.dumps(apply_markdown),
|
2013-10-17 23:51:25 +02:00
|
|
|
'all_public_streams': ujson.dumps(all_public_streams),
|
2013-05-07 17:25:25 +02:00
|
|
|
'client' : 'internal',
|
2013-08-05 22:09:12 +02:00
|
|
|
'user_client' : user_client.name,
|
2013-12-10 16:28:16 +01:00
|
|
|
'narrow' : ujson.dumps(narrow),
|
2013-08-05 22:09:12 +02:00
|
|
|
'lifespan_secs' : queue_lifespan_secs}
|
2013-03-22 22:43:49 +01:00
|
|
|
if event_types is not None:
|
2013-06-18 23:55:55 +02:00
|
|
|
req['event_types'] = ujson.dumps(event_types)
|
2013-03-14 23:21:53 +01:00
|
|
|
resp = requests.get(settings.TORNADO_SERVER + '/api/v1/events',
|
2013-07-30 23:59:31 +02:00
|
|
|
auth=requests.auth.HTTPBasicAuth(user_profile.email,
|
|
|
|
user_profile.api_key),
|
2013-03-14 23:21:53 +01:00
|
|
|
params=req)
|
|
|
|
|
|
|
|
resp.raise_for_status()
|
|
|
|
|
2013-03-29 16:08:24 +01:00
|
|
|
return extract_json_response(resp)['queue_id']
|
2013-03-14 23:21:53 +01:00
|
|
|
|
|
|
|
return None
|
2013-03-22 18:21:50 +01:00
|
|
|
|
|
|
|
def get_user_events(user_profile, queue_id, last_event_id):
|
|
|
|
if settings.TORNADO_SERVER:
|
|
|
|
resp = requests.get(settings.TORNADO_SERVER + '/api/v1/events',
|
2013-03-28 20:43:34 +01:00
|
|
|
auth=requests.auth.HTTPBasicAuth(user_profile.email,
|
2013-03-22 18:21:50 +01:00
|
|
|
user_profile.api_key),
|
|
|
|
params={'queue_id' : queue_id,
|
|
|
|
'last_event_id': last_event_id,
|
2013-03-22 22:43:49 +01:00
|
|
|
'dont_block' : 'true',
|
2013-03-22 18:21:50 +01:00
|
|
|
'client' : 'internal'})
|
|
|
|
|
|
|
|
resp.raise_for_status()
|
|
|
|
|
2013-03-29 16:08:24 +01:00
|
|
|
return extract_json_response(resp)['events']
|
2014-04-24 02:16:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Send email notifications to idle users
|
|
|
|
# after they are idle for 1 hour
|
|
|
|
NOTIFY_AFTER_IDLE_HOURS = 1
|
|
|
|
|
|
|
|
def build_offline_notification(user_profile_id, message_id):
|
|
|
|
return {"user_profile_id": user_profile_id,
|
|
|
|
"message_id": message_id,
|
|
|
|
"timestamp": time.time()}
|
|
|
|
|
|
|
|
def missedmessage_hook(user_profile_id, queue, last_for_client):
|
|
|
|
# Only process missedmessage hook when the last queue for a
|
|
|
|
# client has been garbage collected
|
|
|
|
if not last_for_client:
|
|
|
|
return
|
|
|
|
|
|
|
|
message_ids_to_notify = []
|
|
|
|
for event in queue.event_queue.contents():
|
|
|
|
if not event['type'] == 'message' or not event['flags']:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if 'mentioned' in event['flags'] and not 'read' in event['flags']:
|
|
|
|
notify_info = dict(message_id=event['message']['id'])
|
|
|
|
|
|
|
|
if not event.get('push_notified', False):
|
|
|
|
notify_info['send_push'] = True
|
|
|
|
if not event.get('email_notified', False):
|
|
|
|
notify_info['send_email'] = True
|
|
|
|
message_ids_to_notify.append(notify_info)
|
|
|
|
|
|
|
|
for notify_info in message_ids_to_notify:
|
|
|
|
msg_id = notify_info['message_id']
|
|
|
|
notice = build_offline_notification(user_profile_id, msg_id)
|
|
|
|
if notify_info.get('send_push', False):
|
|
|
|
queue_json_publish("missedmessage_mobile_notifications", notice, lambda notice: None)
|
|
|
|
if notify_info.get('send_email', False):
|
|
|
|
queue_json_publish("missedmessage_emails", notice, lambda notice: None)
|
|
|
|
|
|
|
|
def receiver_is_idle(user_profile_id, realm_presences):
|
|
|
|
# If a user has no message-receiving event queues, they've got no open zulip
|
|
|
|
# session so we notify them
|
|
|
|
all_client_descriptors = get_client_descriptors_for_user(user_profile_id)
|
|
|
|
message_event_queues = [client for client in all_client_descriptors if client.accepts_messages()]
|
|
|
|
off_zulip = len(message_event_queues) == 0
|
|
|
|
|
|
|
|
# It's possible a recipient is not in the realm of a sender. We don't have
|
|
|
|
# presence information in this case (and it's hard to get without an additional
|
|
|
|
# db query) so we simply don't try to guess if this cross-realm recipient
|
|
|
|
# has been idle for too long
|
|
|
|
if realm_presences is None or not user_profile_id in realm_presences:
|
|
|
|
return off_zulip
|
|
|
|
|
|
|
|
# We want to find the newest "active" presence entity and compare that to the
|
|
|
|
# activity expiry threshold.
|
|
|
|
user_presence = realm_presences[user_profile_id]
|
|
|
|
latest_active_timestamp = None
|
|
|
|
idle = False
|
|
|
|
|
2016-03-11 10:57:29 +01:00
|
|
|
for client, status in six.iteritems(user_presence):
|
2014-04-24 02:16:53 +02:00
|
|
|
if (latest_active_timestamp is None or status['timestamp'] > latest_active_timestamp) and \
|
|
|
|
status['status'] == 'active':
|
|
|
|
latest_active_timestamp = status['timestamp']
|
|
|
|
|
|
|
|
if latest_active_timestamp is None:
|
|
|
|
idle = True
|
|
|
|
else:
|
|
|
|
active_datetime = timestamp_to_datetime(latest_active_timestamp)
|
|
|
|
# 140 seconds is consistent with activity.js:OFFLINE_THRESHOLD_SECS
|
|
|
|
idle = now() - active_datetime > datetime.timedelta(seconds=140)
|
|
|
|
|
|
|
|
return off_zulip or idle
|
|
|
|
|
|
|
|
def process_message_event(event_template, users):
|
|
|
|
realm_presences = {int(k): v for k, v in event_template['presences'].items()}
|
|
|
|
sender_queue_id = event_template.get('sender_queue_id', None)
|
2015-12-27 21:15:54 +01:00
|
|
|
message_dict_markdown = event_template['message_dict_markdown']
|
|
|
|
message_dict_no_markdown = event_template['message_dict_no_markdown']
|
2014-04-24 02:16:53 +02:00
|
|
|
sender_id = message_dict_markdown['sender_id']
|
|
|
|
message_id = message_dict_markdown['id']
|
|
|
|
message_type = message_dict_markdown['type']
|
|
|
|
sending_client = message_dict_markdown['client']
|
|
|
|
|
|
|
|
# To remove duplicate clients: Maps queue ID to {'client': Client, 'flags': flags}
|
|
|
|
send_to_clients = dict()
|
|
|
|
|
|
|
|
# Extra user-specific data to include
|
|
|
|
extra_user_data = {}
|
|
|
|
|
|
|
|
if 'stream_name' in event_template and not event_template.get("invite_only"):
|
|
|
|
for client in get_client_descriptors_for_realm_all_streams(event_template['realm_id']):
|
|
|
|
send_to_clients[client.event_queue.id] = {'client': client, 'flags': None}
|
|
|
|
if sender_queue_id is not None and client.event_queue.id == sender_queue_id:
|
|
|
|
send_to_clients[client.event_queue.id]['is_sender'] = True
|
|
|
|
|
|
|
|
for user_data in users:
|
|
|
|
user_profile_id = user_data['id']
|
|
|
|
flags = user_data.get('flags', [])
|
|
|
|
|
|
|
|
for client in get_client_descriptors_for_user(user_profile_id):
|
|
|
|
send_to_clients[client.event_queue.id] = {'client': client, 'flags': flags}
|
|
|
|
if sender_queue_id is not None and client.event_queue.id == sender_queue_id:
|
|
|
|
send_to_clients[client.event_queue.id]['is_sender'] = True
|
|
|
|
|
|
|
|
# If the recipient was offline and the message was a single or group PM to him
|
|
|
|
# or she was @-notified potentially notify more immediately
|
|
|
|
received_pm = message_type == "private" and user_profile_id != sender_id
|
|
|
|
mentioned = 'mentioned' in flags
|
|
|
|
idle = receiver_is_idle(user_profile_id, realm_presences)
|
|
|
|
always_push_notify = user_data.get('always_push_notify', False)
|
|
|
|
if (received_pm or mentioned) and (idle or always_push_notify):
|
|
|
|
notice = build_offline_notification(user_profile_id, message_id)
|
|
|
|
queue_json_publish("missedmessage_mobile_notifications", notice, lambda notice: None)
|
|
|
|
notified = dict(push_notified=True)
|
|
|
|
# Don't send missed message emails if always_push_notify is True
|
|
|
|
if idle:
|
|
|
|
# We require RabbitMQ to do this, as we can't call the email handler
|
|
|
|
# from the Tornado process. So if there's no rabbitmq support do nothing
|
|
|
|
queue_json_publish("missedmessage_emails", notice, lambda notice: None)
|
|
|
|
notified['email_notified'] = True
|
|
|
|
|
|
|
|
extra_user_data[user_profile_id] = notified
|
|
|
|
|
2016-03-11 10:57:29 +01:00
|
|
|
for client_data in six.itervalues(send_to_clients):
|
2014-04-24 02:16:53 +02:00
|
|
|
client = client_data['client']
|
|
|
|
flags = client_data['flags']
|
|
|
|
is_sender = client_data.get('is_sender', False)
|
|
|
|
extra_data = extra_user_data.get(client.user_profile_id, None)
|
|
|
|
|
|
|
|
if not client.accepts_messages():
|
|
|
|
# The actual check is the accepts_event() check below;
|
|
|
|
# this line is just an optimization to avoid copying
|
|
|
|
# message data unnecessarily
|
|
|
|
continue
|
|
|
|
|
|
|
|
if client.apply_markdown:
|
|
|
|
message_dict = message_dict_markdown
|
|
|
|
else:
|
|
|
|
message_dict = message_dict_no_markdown
|
|
|
|
|
|
|
|
# Make sure Zephyr mirroring bots know whether stream is invite-only
|
2014-01-28 18:13:41 +01:00
|
|
|
if "mirror" in client.client_type_name and event_template.get("invite_only"):
|
2014-04-24 02:16:53 +02:00
|
|
|
message_dict = message_dict.copy()
|
|
|
|
message_dict["invite_only_stream"] = True
|
|
|
|
|
|
|
|
user_event = dict(type='message', message=message_dict, flags=flags)
|
|
|
|
if extra_data is not None:
|
|
|
|
user_event.update(extra_data)
|
|
|
|
|
|
|
|
if is_sender:
|
|
|
|
local_message_id = event_template.get('local_id', None)
|
|
|
|
if local_message_id is not None:
|
|
|
|
user_event["local_message_id"] = local_message_id
|
|
|
|
|
|
|
|
if not client.accepts_event(user_event):
|
|
|
|
continue
|
|
|
|
|
|
|
|
# The below prevents (Zephyr) mirroring loops.
|
|
|
|
if ('mirror' in sending_client and
|
2014-01-28 18:13:41 +01:00
|
|
|
sending_client.lower() == client.client_type_name.lower()):
|
2014-04-24 02:16:53 +02:00
|
|
|
continue
|
|
|
|
client.add_event(user_event)
|
|
|
|
|
|
|
|
def process_event(event, users):
|
|
|
|
for user_profile_id in users:
|
|
|
|
for client in get_client_descriptors_for_user(user_profile_id):
|
|
|
|
if client.accepts_event(event):
|
|
|
|
client.add_event(event.copy())
|
|
|
|
|
|
|
|
def process_userdata_event(event_template, users):
|
|
|
|
for user_data in users:
|
|
|
|
user_profile_id = user_data['id']
|
|
|
|
user_event = event_template.copy() # shallow, but deep enough for our needs
|
|
|
|
for key in user_data.keys():
|
|
|
|
if key != "id":
|
|
|
|
user_event[key] = user_data[key]
|
|
|
|
|
|
|
|
for client in get_client_descriptors_for_user(user_profile_id):
|
|
|
|
if client.accepts_event(user_event):
|
|
|
|
client.add_event(user_event)
|
|
|
|
|
|
|
|
def process_notification(notice):
|
|
|
|
event = notice['event']
|
|
|
|
users = notice['users']
|
|
|
|
if event['type'] in ["update_message"]:
|
|
|
|
process_userdata_event(event, users)
|
|
|
|
elif event['type'] == "message":
|
|
|
|
process_message_event(event, users)
|
|
|
|
else:
|
|
|
|
process_event(event, users)
|
|
|
|
|
|
|
|
# Runs in the Django process to send a notification to Tornado.
|
|
|
|
#
|
|
|
|
# We use JSON rather than bare form parameters, so that we can represent
|
|
|
|
# different types and for compatibility with non-HTTP transports.
|
|
|
|
|
|
|
|
def send_notification_http(data):
|
|
|
|
if settings.TORNADO_SERVER and not settings.RUNNING_INSIDE_TORNADO:
|
|
|
|
requests.post(settings.TORNADO_SERVER + '/notify_tornado', data=dict(
|
|
|
|
data = ujson.dumps(data),
|
|
|
|
secret = settings.SHARED_SECRET))
|
|
|
|
else:
|
|
|
|
process_notification(data)
|
|
|
|
|
|
|
|
def send_notification(data):
|
|
|
|
return queue_json_publish("notify_tornado", data, send_notification_http)
|
|
|
|
|
|
|
|
def send_event(event, users):
|
|
|
|
return queue_json_publish("notify_tornado",
|
|
|
|
dict(event=event, users=users),
|
|
|
|
send_notification_http)
|