2016-08-17 01:19:14 +02:00
|
|
|
// See http://zulip.readthedocs.io/en/latest/pointer.html for notes on
|
|
|
|
// how this system is designed.
|
|
|
|
|
2013-05-17 21:32:26 +02:00
|
|
|
var unread = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2017-08-03 22:01:21 +02:00
|
|
|
var unread_messages = new Dict();
|
|
|
|
|
2014-01-31 18:06:38 +01:00
|
|
|
exports.suppress_unread_counts = true;
|
2016-04-03 16:45:07 +02:00
|
|
|
exports.messages_read_in_narrow = false;
|
2013-05-17 21:32:26 +02:00
|
|
|
|
2017-08-03 03:28:11 +02:00
|
|
|
function make_id_set() {
|
|
|
|
/* This is just a basic set class where
|
|
|
|
elements should be numeric ids.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var self = {};
|
|
|
|
var ids = new Dict();
|
|
|
|
|
|
|
|
self.clear = function () {
|
|
|
|
ids.clear();
|
|
|
|
};
|
|
|
|
|
|
|
|
self.add = function (id) {
|
|
|
|
ids.set(id, true);
|
|
|
|
};
|
|
|
|
|
|
|
|
self.del = function (id) {
|
|
|
|
ids.del(id);
|
|
|
|
};
|
|
|
|
|
|
|
|
self.count = function () {
|
|
|
|
return ids.num_items();
|
|
|
|
};
|
|
|
|
|
|
|
|
self.is_empty = function () {
|
|
|
|
return ids.is_empty();
|
|
|
|
};
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2017-07-31 14:59:18 +02:00
|
|
|
exports.unread_pm_counter = (function () {
|
|
|
|
var self = {};
|
|
|
|
var unread_privates = new Dict(); // indexed by user_ids_string like 5,7,9
|
2017-08-02 21:01:12 +02:00
|
|
|
var reverse_lookup = new Dict(); // msg_id -> enclosing dict
|
2017-07-31 14:59:18 +02:00
|
|
|
|
|
|
|
self.clear = function () {
|
|
|
|
unread_privates = new Dict();
|
2017-08-02 21:01:12 +02:00
|
|
|
reverse_lookup = new Dict();
|
2017-07-31 14:59:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
self.add = function (message) {
|
|
|
|
var user_ids_string = people.pm_reply_user_string(message);
|
|
|
|
if (user_ids_string) {
|
2017-08-03 03:28:11 +02:00
|
|
|
var id_set = unread_privates.setdefault(user_ids_string, make_id_set());
|
|
|
|
id_set.add(message.id);
|
|
|
|
reverse_lookup.set(message.id, id_set);
|
2017-07-31 14:59:18 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-02 21:01:12 +02:00
|
|
|
self.del = function (message_id) {
|
2017-08-03 03:28:11 +02:00
|
|
|
var id_set = reverse_lookup.get(message_id);
|
|
|
|
if (id_set) {
|
|
|
|
id_set.del(message_id);
|
2017-08-02 21:01:12 +02:00
|
|
|
reverse_lookup.del(message_id);
|
2017-07-31 14:59:18 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
self.get_counts = function () {
|
|
|
|
var pm_dict = new Dict(); // Hash by user_ids_string -> count
|
|
|
|
var total_count = 0;
|
2017-08-03 03:28:11 +02:00
|
|
|
unread_privates.each(function (id_set, user_ids_string) {
|
|
|
|
var count = id_set.count();
|
2017-07-31 14:59:18 +02:00
|
|
|
pm_dict.set(user_ids_string, count);
|
|
|
|
total_count += count;
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
total_count: total_count,
|
|
|
|
pm_dict: pm_dict,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
self.num_unread = function (user_ids_string) {
|
|
|
|
if (!user_ids_string) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!unread_privates.has(user_ids_string)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-08-03 03:28:11 +02:00
|
|
|
return unread_privates.get(user_ids_string).count();
|
2017-07-31 14:59:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}());
|
|
|
|
|
2016-11-30 03:20:29 +01:00
|
|
|
exports.unread_topic_counter = (function () {
|
|
|
|
var self = {};
|
|
|
|
|
|
|
|
function str_dict() {
|
2017-05-13 19:26:54 +02:00
|
|
|
// Use this when keys are topics
|
2016-11-30 03:20:29 +01:00
|
|
|
return new Dict({fold_case: true});
|
|
|
|
}
|
|
|
|
|
|
|
|
function num_dict() {
|
|
|
|
// Use this for message ids.
|
|
|
|
return new Dict();
|
|
|
|
}
|
|
|
|
|
2017-05-13 19:26:54 +02:00
|
|
|
var unread_topics = num_dict(); // dict of stream -> topic -> msg id
|
2017-08-02 21:23:05 +02:00
|
|
|
var reverse_lookup = num_dict();
|
2016-11-30 03:20:29 +01:00
|
|
|
|
|
|
|
self.clear = function () {
|
2017-05-13 19:26:54 +02:00
|
|
|
unread_topics = num_dict();
|
2017-08-02 21:23:05 +02:00
|
|
|
reverse_lookup = num_dict();
|
2016-11-30 03:20:29 +01:00
|
|
|
};
|
|
|
|
|
2017-08-02 21:23:05 +02:00
|
|
|
self.update = function (msg_id, stream_id, new_topic) {
|
|
|
|
self.del(msg_id);
|
2017-08-02 21:08:19 +02:00
|
|
|
self.add(stream_id, new_topic, msg_id);
|
2016-11-30 03:20:29 +01:00
|
|
|
};
|
|
|
|
|
2017-07-31 13:56:04 +02:00
|
|
|
self.add = function (stream_id, topic, msg_id) {
|
2017-05-13 19:26:54 +02:00
|
|
|
unread_topics.setdefault(stream_id, str_dict());
|
2017-08-03 03:28:11 +02:00
|
|
|
var id_set = unread_topics.get(stream_id).setdefault(topic, make_id_set());
|
|
|
|
id_set.add(msg_id);
|
|
|
|
reverse_lookup.set(msg_id, id_set);
|
2016-11-30 03:20:29 +01:00
|
|
|
};
|
|
|
|
|
2017-08-02 21:23:05 +02:00
|
|
|
self.del = function (msg_id) {
|
2017-08-03 03:28:11 +02:00
|
|
|
var id_set = reverse_lookup.get(msg_id);
|
|
|
|
if (id_set) {
|
|
|
|
id_set.del(msg_id);
|
2017-08-02 21:23:05 +02:00
|
|
|
reverse_lookup.del(msg_id);
|
2016-11-30 03:20:29 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-12-15 01:53:33 +01:00
|
|
|
self.get_counts = function () {
|
|
|
|
var res = {};
|
|
|
|
res.stream_unread_messages = 0;
|
2017-05-13 19:26:54 +02:00
|
|
|
res.stream_count = num_dict(); // hash by stream_id -> count
|
2017-07-31 14:04:20 +02:00
|
|
|
res.topic_count = num_dict(); // hash of hashes (stream_id, then topic -> count)
|
2017-05-13 19:26:54 +02:00
|
|
|
unread_topics.each(function (_, stream_id) {
|
2016-11-30 03:20:29 +01:00
|
|
|
|
2016-12-15 01:59:08 +01:00
|
|
|
// We track unread counts for streams that may be currently
|
|
|
|
// unsubscribed. Since users may re-subscribe, we don't
|
|
|
|
// completely throw away the data. But we do ignore it here,
|
|
|
|
// so that callers have a view of the **current** world.
|
2017-05-13 19:26:54 +02:00
|
|
|
var sub = stream_data.get_sub_by_id(stream_id);
|
|
|
|
if (!sub || !stream_data.is_subscribed(sub.name)) {
|
2016-11-30 03:20:29 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-13 19:26:54 +02:00
|
|
|
if (unread_topics.has(stream_id)) {
|
2017-07-31 14:04:20 +02:00
|
|
|
res.topic_count.set(stream_id, str_dict());
|
2016-11-30 03:20:29 +01:00
|
|
|
var stream_count = 0;
|
2017-07-31 13:56:04 +02:00
|
|
|
unread_topics.get(stream_id).each(function (msgs, topic) {
|
2017-08-03 03:28:11 +02:00
|
|
|
var topic_count = msgs.count();
|
2017-07-31 14:04:20 +02:00
|
|
|
res.topic_count.get(stream_id).set(topic, topic_count);
|
2017-07-31 13:56:04 +02:00
|
|
|
if (!muting.is_topic_muted(sub.name, topic)) {
|
|
|
|
stream_count += topic_count;
|
2016-11-30 03:20:29 +01:00
|
|
|
}
|
|
|
|
});
|
2017-05-13 19:26:54 +02:00
|
|
|
res.stream_count.set(stream_id, stream_count);
|
2017-05-13 20:54:53 +02:00
|
|
|
if (stream_data.in_home_view(stream_id)) {
|
2016-12-15 01:53:33 +01:00
|
|
|
res.stream_unread_messages += stream_count;
|
2016-11-30 03:20:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
2016-12-15 01:53:33 +01:00
|
|
|
|
|
|
|
return res;
|
2016-11-30 03:20:29 +01:00
|
|
|
};
|
|
|
|
|
2017-05-13 19:26:54 +02:00
|
|
|
self.get_stream_count = function (stream_id) {
|
2017-01-15 16:44:33 +01:00
|
|
|
var stream_count = 0;
|
|
|
|
|
2017-05-13 19:26:54 +02:00
|
|
|
if (!unread_topics.has(stream_id)) {
|
2017-01-15 16:44:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-07-31 13:56:04 +02:00
|
|
|
unread_topics.get(stream_id).each(function (msgs, topic) {
|
2017-05-13 19:26:54 +02:00
|
|
|
var sub = stream_data.get_sub_by_id(stream_id);
|
2017-07-31 13:56:04 +02:00
|
|
|
if (sub && !muting.is_topic_muted(sub.name, topic)) {
|
2017-08-03 03:28:11 +02:00
|
|
|
stream_count += msgs.count();
|
2017-01-15 16:44:33 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return stream_count;
|
|
|
|
};
|
|
|
|
|
2017-07-31 13:56:04 +02:00
|
|
|
self.get = function (stream_id, topic) {
|
2016-11-30 03:20:29 +01:00
|
|
|
var num_unread = 0;
|
2017-05-13 19:26:54 +02:00
|
|
|
if (unread_topics.has(stream_id) &&
|
2017-07-31 13:56:04 +02:00
|
|
|
unread_topics.get(stream_id).has(topic)) {
|
2017-08-03 03:28:11 +02:00
|
|
|
num_unread = unread_topics.get(stream_id).get(topic).count();
|
2016-11-30 03:20:29 +01:00
|
|
|
}
|
|
|
|
return num_unread;
|
|
|
|
};
|
|
|
|
|
2017-05-13 19:26:54 +02:00
|
|
|
self.topic_has_any_unread = function (stream_id, topic) {
|
|
|
|
var stream_dct = unread_topics.get(stream_id);
|
2017-04-21 18:00:19 +02:00
|
|
|
|
|
|
|
if (!stream_dct) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var topic_dct = stream_dct.get(topic);
|
|
|
|
if (!topic_dct) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return !topic_dct.is_empty();
|
|
|
|
};
|
|
|
|
|
2016-11-30 03:20:29 +01:00
|
|
|
return self;
|
|
|
|
}());
|
|
|
|
|
2017-08-03 03:28:11 +02:00
|
|
|
exports.unread_mentions_counter = make_id_set();
|
2017-08-01 14:04:48 +02:00
|
|
|
|
2013-05-17 21:32:26 +02:00
|
|
|
exports.message_unread = function (message) {
|
|
|
|
if (message === undefined) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return message.flags === undefined ||
|
|
|
|
message.flags.indexOf('read') === -1;
|
|
|
|
};
|
|
|
|
|
2017-08-03 22:01:21 +02:00
|
|
|
exports.id_flagged_as_unread = function (message_id) {
|
|
|
|
return unread_messages.has(message_id);
|
|
|
|
};
|
|
|
|
|
2016-08-27 03:29:32 +02:00
|
|
|
exports.update_unread_topics = function (msg, event) {
|
2016-11-30 03:20:29 +01:00
|
|
|
if (event.subject !== undefined) {
|
|
|
|
exports.unread_topic_counter.update(
|
2017-08-02 21:23:05 +02:00
|
|
|
msg.id,
|
2017-05-13 19:26:54 +02:00
|
|
|
msg.stream_id,
|
2017-08-02 21:23:05 +02:00
|
|
|
event.subject
|
2016-11-30 03:20:29 +01:00
|
|
|
);
|
2013-05-17 21:32:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.process_loaded_messages = function (messages) {
|
2013-07-27 00:41:19 +02:00
|
|
|
_.each(messages, function (message) {
|
2013-05-17 21:32:26 +02:00
|
|
|
var unread = exports.message_unread(message);
|
|
|
|
if (!unread) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-03 22:01:21 +02:00
|
|
|
unread_messages.set(message.id, true);
|
|
|
|
|
2013-09-27 23:20:52 +02:00
|
|
|
if (message.type === 'private') {
|
2017-07-31 14:59:18 +02:00
|
|
|
exports.unread_pm_counter.add(message);
|
2013-09-27 23:20:52 +02:00
|
|
|
}
|
2013-05-17 21:32:26 +02:00
|
|
|
|
|
|
|
if (message.type === 'stream') {
|
2016-11-30 03:20:29 +01:00
|
|
|
exports.unread_topic_counter.add(
|
2017-05-13 19:26:54 +02:00
|
|
|
message.stream_id,
|
2016-11-30 03:20:29 +01:00
|
|
|
message.subject,
|
|
|
|
message.id
|
|
|
|
);
|
2013-05-17 21:32:26 +02:00
|
|
|
}
|
2013-05-30 22:15:59 +02:00
|
|
|
|
|
|
|
if (message.mentioned) {
|
2017-08-01 14:04:48 +02:00
|
|
|
exports.unread_mentions_counter.add(message.id);
|
2013-05-30 22:15:59 +02:00
|
|
|
}
|
2013-05-17 21:32:26 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-08-02 21:40:01 +02:00
|
|
|
exports.mark_as_read = function (message_id) {
|
|
|
|
// We don't need to check anything about the message, since all
|
|
|
|
// the following methods are cheap and work fine even if message_id
|
|
|
|
// was never set to unread.
|
|
|
|
exports.unread_pm_counter.del(message_id);
|
|
|
|
exports.unread_topic_counter.del(message_id);
|
|
|
|
exports.unread_mentions_counter.del(message_id);
|
2017-08-03 22:01:21 +02:00
|
|
|
unread_messages.del(message_id);
|
2013-05-17 21:32:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.declare_bankruptcy = function () {
|
2017-07-31 14:59:18 +02:00
|
|
|
exports.unread_pm_counter.clear();
|
2016-11-30 03:20:29 +01:00
|
|
|
exports.unread_topic_counter.clear();
|
2017-08-01 14:04:48 +02:00
|
|
|
exports.unread_mentions_counter.clear();
|
2017-08-03 22:01:21 +02:00
|
|
|
unread_messages.clear();
|
2013-05-17 21:32:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.get_counts = function () {
|
|
|
|
var res = {};
|
2013-05-22 18:06:40 +02:00
|
|
|
|
2013-05-17 21:32:26 +02:00
|
|
|
// Return a data structure with various counts. This function should be
|
|
|
|
// pretty cheap, even if you don't care about all the counts, and you
|
|
|
|
// should strive to keep it free of side effects on globals or DOM.
|
|
|
|
res.private_message_count = 0;
|
2017-08-01 14:04:48 +02:00
|
|
|
res.mentioned_message_count = exports.unread_mentions_counter.count();
|
2013-05-17 21:32:26 +02:00
|
|
|
|
2017-07-31 14:04:20 +02:00
|
|
|
// This sets stream_count, topic_count, and home_unread_messages
|
2017-07-31 15:06:19 +02:00
|
|
|
var topic_res = exports.unread_topic_counter.get_counts();
|
2016-12-15 01:53:33 +01:00
|
|
|
res.home_unread_messages = topic_res.stream_unread_messages;
|
|
|
|
res.stream_count = topic_res.stream_count;
|
2017-07-31 14:04:20 +02:00
|
|
|
res.topic_count = topic_res.topic_count;
|
2013-05-17 21:32:26 +02:00
|
|
|
|
2017-07-31 14:59:18 +02:00
|
|
|
var pm_res = exports.unread_pm_counter.get_counts();
|
|
|
|
res.pm_count = pm_res.pm_dict;
|
|
|
|
res.private_message_count = pm_res.total_count;
|
|
|
|
res.home_unread_messages += pm_res.total_count;
|
2013-05-17 21:32:26 +02:00
|
|
|
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
2017-05-13 19:26:54 +02:00
|
|
|
exports.num_unread_for_stream = function (stream_id) {
|
|
|
|
return exports.unread_topic_counter.get_stream_count(stream_id);
|
2017-01-15 16:44:33 +01:00
|
|
|
};
|
|
|
|
|
2017-07-31 14:11:18 +02:00
|
|
|
exports.num_unread_for_topic = function (stream_id, subject) {
|
2017-05-13 19:26:54 +02:00
|
|
|
return exports.unread_topic_counter.get(stream_id, subject);
|
2013-05-17 21:32:26 +02:00
|
|
|
};
|
|
|
|
|
2017-05-13 19:26:54 +02:00
|
|
|
exports.topic_has_any_unread = function (stream_id, topic) {
|
|
|
|
return exports.unread_topic_counter.topic_has_any_unread(stream_id, topic);
|
2017-04-21 18:00:19 +02:00
|
|
|
};
|
|
|
|
|
2016-11-18 17:02:06 +01:00
|
|
|
exports.num_unread_for_person = function (user_ids_string) {
|
2017-07-31 14:59:18 +02:00
|
|
|
return exports.unread_pm_counter.num_unread(user_ids_string);
|
2013-08-22 19:06:04 +02:00
|
|
|
};
|
|
|
|
|
2013-05-17 21:32:26 +02:00
|
|
|
return exports;
|
|
|
|
}());
|
2013-07-28 18:40:50 +02:00
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = unread;
|
|
|
|
}
|