2017-03-19 18:19:48 +01:00
|
|
|
var message_fetch = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2018-03-08 21:25:14 +01:00
|
|
|
var consts = {
|
|
|
|
backfill_idle_time: 10*1000,
|
|
|
|
error_retry_time: 5000,
|
|
|
|
backfill_batch_size: 1000,
|
|
|
|
num_before_pointer: 200,
|
|
|
|
num_after_pointer: 200,
|
|
|
|
backward_batch_size: 100,
|
|
|
|
catch_up_batch_size: 1000,
|
|
|
|
};
|
|
|
|
|
2017-03-19 18:19:48 +01:00
|
|
|
// If the browser hasn't scrolled away from the top of the page
|
|
|
|
// since the last time that we ran load_more_messages(), we do
|
|
|
|
// not load_more_messages().
|
|
|
|
var load_more_enabled = true;
|
|
|
|
|
2018-03-09 01:35:17 +01:00
|
|
|
exports.reset_for_new_narrow = function () {
|
2017-03-19 18:19:48 +01:00
|
|
|
load_more_enabled = true;
|
2018-03-09 14:27:42 +01:00
|
|
|
message_scroll.hide_loading_older();
|
2017-03-19 18:19:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
function process_result(messages, opts) {
|
2017-05-08 15:18:43 +02:00
|
|
|
$('#connection-error').removeClass("show");
|
2017-03-19 18:19:48 +01:00
|
|
|
|
|
|
|
if ((messages.length === 0) && (current_msg_list === message_list.narrowed) &&
|
|
|
|
message_list.narrowed.empty()) {
|
|
|
|
// Even after trying to load more messages, we have no
|
|
|
|
// messages to display in this narrow.
|
|
|
|
narrow.show_empty_narrow_message();
|
|
|
|
}
|
|
|
|
|
2017-12-16 23:05:32 +01:00
|
|
|
_.each(messages, message_store.set_message_booleans);
|
2017-03-19 18:19:48 +01:00
|
|
|
messages = _.map(messages, message_store.add_message_metadata);
|
|
|
|
|
|
|
|
// If we're loading more messages into the home view, save them to
|
|
|
|
// the message_list.all as well, as the home_msg_list is reconstructed
|
|
|
|
// from message_list.all.
|
|
|
|
if (opts.msg_list === home_msg_list) {
|
2017-03-19 22:43:38 +01:00
|
|
|
message_util.do_unread_count_updates(messages);
|
|
|
|
message_util.add_messages(messages, message_list.all, {messages_are_new: false});
|
2017-03-19 18:19:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (messages.length !== 0 && !opts.cont_will_add_messages) {
|
2017-03-19 22:43:38 +01:00
|
|
|
message_util.add_messages(messages, opts.msg_list, {messages_are_new: false});
|
2017-03-19 18:19:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
activity.process_loaded_messages(messages);
|
|
|
|
stream_list.update_streams_sidebar();
|
|
|
|
pm_list.update_private_messages();
|
|
|
|
|
|
|
|
if (opts.cont !== undefined) {
|
|
|
|
opts.cont(messages);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-09 02:17:54 +01:00
|
|
|
function get_messages_success(data, opts) {
|
2017-03-19 18:19:48 +01:00
|
|
|
if (opts.msg_list.narrowed && opts.msg_list !== current_msg_list) {
|
|
|
|
// We unnarrowed before receiving new messages so
|
|
|
|
// don't bother processing the newly arrived messages.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (! data) {
|
2017-11-09 16:26:38 +01:00
|
|
|
// The server occasionally returns no data during a
|
2017-03-19 18:19:48 +01:00
|
|
|
// restart. Ignore those responses and try again
|
|
|
|
setTimeout(function () {
|
2018-03-09 02:17:54 +01:00
|
|
|
exports.load_messages(opts);
|
2017-03-19 18:19:48 +01:00
|
|
|
}, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
process_result(data.messages, opts);
|
|
|
|
resize.resize_bottom_whitespace();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-09 02:17:54 +01:00
|
|
|
exports.load_messages = function (opts) {
|
2017-03-19 18:19:48 +01:00
|
|
|
opts = _.extend({cont_will_add_messages: false}, opts);
|
|
|
|
|
|
|
|
var data = {anchor: opts.anchor,
|
|
|
|
num_before: opts.num_before,
|
|
|
|
num_after: opts.num_after};
|
|
|
|
|
2017-04-25 15:25:31 +02:00
|
|
|
if (opts.msg_list.narrowed && narrow_state.active()) {
|
|
|
|
var operators = narrow_state.public_operators();
|
2017-03-19 18:19:48 +01:00
|
|
|
if (page_params.narrow !== undefined) {
|
|
|
|
operators = operators.concat(page_params.narrow);
|
|
|
|
}
|
|
|
|
data.narrow = JSON.stringify(operators);
|
|
|
|
}
|
|
|
|
if (opts.msg_list === home_msg_list && page_params.narrow_stream !== undefined) {
|
|
|
|
data.narrow = JSON.stringify(page_params.narrow);
|
|
|
|
}
|
|
|
|
if (opts.use_first_unread_anchor) {
|
|
|
|
data.use_first_unread_anchor = true;
|
|
|
|
}
|
|
|
|
|
2017-11-03 16:53:21 +01:00
|
|
|
data.client_gravatar = true;
|
|
|
|
|
2017-03-19 18:19:48 +01:00
|
|
|
channel.get({
|
|
|
|
url: '/json/messages',
|
|
|
|
data: data,
|
|
|
|
idempotent: true,
|
|
|
|
success: function (data) {
|
2018-03-09 02:17:54 +01:00
|
|
|
get_messages_success(data, opts);
|
2017-03-19 18:19:48 +01:00
|
|
|
},
|
|
|
|
error: function (xhr) {
|
|
|
|
if (opts.msg_list.narrowed && opts.msg_list !== current_msg_list) {
|
|
|
|
// We unnarrowed before getting an error so don't
|
|
|
|
// bother trying again or doing further processing.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (xhr.status === 400) {
|
|
|
|
// Bad request: We probably specified a narrow operator
|
|
|
|
// for a nonexistent stream or something. We shouldn't
|
|
|
|
// retry or display a connection error.
|
|
|
|
//
|
|
|
|
// FIXME: Warn the user when this has happened?
|
|
|
|
process_result([], opts);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We might want to be more clever here
|
2017-05-08 15:18:43 +02:00
|
|
|
$('#connection-error').addClass("show");
|
2017-03-19 18:19:48 +01:00
|
|
|
setTimeout(function () {
|
2018-03-09 02:17:54 +01:00
|
|
|
exports.load_messages(opts);
|
2018-03-08 21:25:14 +01:00
|
|
|
}, consts.error_retry_time);
|
2017-03-19 18:19:48 +01:00
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-03-09 02:23:49 +01:00
|
|
|
exports.maybe_load_older_messages = function (opts) {
|
|
|
|
// This function gets called when you scroll to the top
|
|
|
|
// of your window, and you want to get messages older
|
|
|
|
// than what the browers originally fetched.
|
2018-03-08 20:18:36 +01:00
|
|
|
var msg_list = opts.msg_list;
|
2017-03-19 18:19:48 +01:00
|
|
|
var oldest_message_id;
|
|
|
|
if (!load_more_enabled) {
|
|
|
|
return;
|
|
|
|
}
|
2018-03-08 20:18:36 +01:00
|
|
|
opts.show_loading();
|
2017-03-19 18:19:48 +01:00
|
|
|
load_more_enabled = false;
|
|
|
|
if (msg_list.first() === undefined) {
|
2017-04-24 21:33:48 +02:00
|
|
|
oldest_message_id = page_params.pointer;
|
2017-03-19 18:19:48 +01:00
|
|
|
} else {
|
|
|
|
oldest_message_id = msg_list.first().id;
|
|
|
|
}
|
2018-03-08 21:25:14 +01:00
|
|
|
|
|
|
|
var batch_size = consts.backward_batch_size;
|
|
|
|
|
2018-03-09 02:17:54 +01:00
|
|
|
exports.load_messages({
|
2017-03-19 18:19:48 +01:00
|
|
|
anchor: oldest_message_id.toFixed(),
|
|
|
|
num_before: batch_size,
|
|
|
|
num_after: 0,
|
|
|
|
msg_list: msg_list,
|
|
|
|
cont: function (messages) {
|
2018-03-08 20:18:36 +01:00
|
|
|
opts.hide_loading();
|
2017-03-19 18:19:48 +01:00
|
|
|
if (messages.length >= batch_size) {
|
|
|
|
load_more_enabled = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-07-04 01:30:47 +02:00
|
|
|
exports.initialize = function () {
|
2017-03-19 18:19:48 +01:00
|
|
|
// get the initial message list
|
|
|
|
function load_more(messages) {
|
|
|
|
|
|
|
|
// If we received the initially selected message, select it on the client side,
|
|
|
|
// but not if the user has already selected another one during load.
|
|
|
|
//
|
|
|
|
// We fall back to the closest selected id, as the user may have removed
|
|
|
|
// a stream from the home before already
|
|
|
|
if (home_msg_list.selected_id() === -1 && !home_msg_list.empty()) {
|
2017-04-24 21:33:48 +02:00
|
|
|
home_msg_list.select_id(page_params.pointer,
|
2017-03-19 18:19:48 +01:00
|
|
|
{then_scroll: true, use_closest: true,
|
|
|
|
target_scroll_offset: page_params.initial_offset});
|
|
|
|
}
|
|
|
|
|
|
|
|
// catch the user up
|
|
|
|
if (messages.length !== 0) {
|
|
|
|
var latest_id = messages[messages.length-1].id;
|
|
|
|
if (latest_id < page_params.max_message_id) {
|
2018-03-09 02:17:54 +01:00
|
|
|
exports.load_messages({
|
2017-03-19 18:19:48 +01:00
|
|
|
anchor: latest_id.toFixed(),
|
|
|
|
num_before: 0,
|
2018-03-08 21:25:14 +01:00
|
|
|
num_after: consts.catch_up_batch_size,
|
2017-03-19 18:19:48 +01:00
|
|
|
msg_list: home_msg_list,
|
|
|
|
cont: load_more,
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
server_events.home_view_loaded();
|
|
|
|
|
|
|
|
// backfill more messages after the user is idle
|
2018-03-08 21:25:14 +01:00
|
|
|
$(document).idle({idle: consts.backfill_idle_time,
|
2017-03-19 18:19:48 +01:00
|
|
|
onIdle: function () {
|
|
|
|
var first_id = message_list.all.first().id;
|
2018-03-09 02:17:54 +01:00
|
|
|
exports.load_messages({
|
2017-03-19 18:19:48 +01:00
|
|
|
anchor: first_id,
|
2018-03-08 21:25:14 +01:00
|
|
|
num_before: consts.backfill_batch_size,
|
2017-03-19 18:19:48 +01:00
|
|
|
num_after: 0,
|
|
|
|
msg_list: home_msg_list,
|
|
|
|
});
|
|
|
|
}});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (page_params.have_initial_messages) {
|
2018-03-09 02:17:54 +01:00
|
|
|
exports.load_messages({
|
2017-04-24 21:33:48 +02:00
|
|
|
anchor: page_params.pointer,
|
2018-03-08 21:25:14 +01:00
|
|
|
num_before: consts.num_before_pointer,
|
|
|
|
num_after: consts.num_after_pointer,
|
2017-03-19 18:19:48 +01:00
|
|
|
msg_list: home_msg_list,
|
|
|
|
cont: load_more,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
server_events.home_view_loaded();
|
|
|
|
}
|
2017-07-04 01:30:47 +02:00
|
|
|
};
|
2017-03-19 18:19:48 +01:00
|
|
|
|
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = message_fetch;
|
|
|
|
}
|