2012-10-29 21:02:46 +01:00
|
|
|
var reload = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
|
|
|
var reload_in_progress = false;
|
|
|
|
var reload_pending = false;
|
|
|
|
|
|
|
|
exports.is_pending = function () {
|
|
|
|
return reload_pending;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.is_in_progress = function () {
|
|
|
|
return reload_in_progress;
|
|
|
|
};
|
|
|
|
|
2015-11-29 03:00:00 +01:00
|
|
|
function preserve_state(send_after_reload, save_pointer, save_narrow, save_compose) {
|
2012-10-29 21:02:46 +01:00
|
|
|
if (send_after_reload === undefined) {
|
|
|
|
send_after_reload = 0;
|
|
|
|
}
|
|
|
|
var url = "#reload:send_after_reload=" + Number(send_after_reload);
|
2012-11-14 19:24:01 +01:00
|
|
|
url += "+csrf_token=" + encodeURIComponent(csrf_token);
|
2013-07-17 18:07:06 +02:00
|
|
|
|
2015-11-29 03:00:00 +01:00
|
|
|
if (save_compose) {
|
|
|
|
if (compose.composing() === 'stream') {
|
|
|
|
url += "+msg_type=stream";
|
|
|
|
url += "+stream=" + encodeURIComponent(compose.stream_name());
|
|
|
|
url += "+subject=" + encodeURIComponent(compose.subject());
|
|
|
|
} else if (compose.composing() === 'private') {
|
|
|
|
url += "+msg_type=private";
|
|
|
|
url += "+recipient=" + encodeURIComponent(compose.recipient());
|
|
|
|
}
|
2013-07-17 18:07:06 +02:00
|
|
|
|
2015-11-29 03:00:00 +01:00
|
|
|
if (compose.composing()) {
|
|
|
|
url += "+msg=" + encodeURIComponent(compose.message_content());
|
|
|
|
}
|
2013-07-17 18:07:06 +02:00
|
|
|
}
|
|
|
|
|
2015-11-29 03:00:00 +01:00
|
|
|
if (save_pointer) {
|
|
|
|
var pointer = home_msg_list.selected_id();
|
|
|
|
if (pointer !== -1) {
|
|
|
|
url += "+pointer=" + pointer;
|
2014-02-12 20:03:05 +01:00
|
|
|
}
|
2015-11-29 03:00:00 +01:00
|
|
|
}
|
2014-02-12 20:03:05 +01:00
|
|
|
|
2015-11-29 03:00:00 +01:00
|
|
|
if (save_narrow) {
|
|
|
|
var row = home_msg_list.selected_row();
|
|
|
|
if (!narrow.active()) {
|
|
|
|
if (row.length > 0) {
|
|
|
|
url += "+offset=" + row.offset().top;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
url += "+offset=" + home_msg_list.pre_narrow_offset;
|
|
|
|
|
|
|
|
var narrow_pointer = narrowed_msg_list.selected_id();
|
|
|
|
if (narrow_pointer !== -1) {
|
|
|
|
url += "+narrow_pointer=" + narrow_pointer;
|
|
|
|
}
|
|
|
|
var narrow_row = narrowed_msg_list.selected_row();
|
|
|
|
if (narrow_row.length > 0) {
|
|
|
|
url += "+narrow_offset=" + narrow_row.offset().top;
|
|
|
|
}
|
2014-02-12 20:03:05 +01:00
|
|
|
}
|
2014-02-04 22:02:26 +01:00
|
|
|
}
|
2013-06-18 23:04:39 +02:00
|
|
|
|
|
|
|
var oldhash = window.location.hash;
|
|
|
|
if (oldhash.length !== 0 && oldhash[0] === '#') {
|
|
|
|
oldhash = oldhash.slice(1);
|
|
|
|
}
|
|
|
|
url += "+oldhash=" + encodeURIComponent(oldhash);
|
2012-10-29 21:02:46 +01:00
|
|
|
|
|
|
|
window.location.replace(url);
|
|
|
|
}
|
|
|
|
|
2014-03-03 23:32:17 +01:00
|
|
|
|
2012-10-29 21:02:46 +01:00
|
|
|
// Check if we're doing a compose-preserving reload. This must be
|
2014-01-30 20:29:00 +01:00
|
|
|
// done before the first call to get_events
|
2014-03-03 23:32:17 +01:00
|
|
|
exports.initialize = function reload__initialize() {
|
2012-10-29 21:02:46 +01:00
|
|
|
var location = window.location.toString();
|
|
|
|
var fragment = location.substring(location.indexOf('#') + 1);
|
|
|
|
if (fragment.search("reload:") !== 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fragment = fragment.replace(/^reload:/, "");
|
|
|
|
var keyvals = fragment.split("+");
|
|
|
|
var vars = {};
|
2013-07-30 00:35:44 +02:00
|
|
|
_.each(keyvals, function (str) {
|
2012-10-29 21:02:46 +01:00
|
|
|
var pair = str.split("=");
|
|
|
|
vars[pair[0]] = decodeURIComponent(pair[1]);
|
|
|
|
});
|
|
|
|
|
2012-11-14 19:24:01 +01:00
|
|
|
// Prevent random people on the Internet from constructing links
|
|
|
|
// that make you send a message.
|
|
|
|
if (vars.csrf_token !== csrf_token) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-10 19:01:34 +01:00
|
|
|
if (vars.msg !== undefined) {
|
2013-07-17 18:07:06 +02:00
|
|
|
var send_now = parseInt(vars.send_after_reload, 10);
|
|
|
|
|
|
|
|
// TODO: preserve focus
|
2013-07-30 19:10:50 +02:00
|
|
|
compose.start(vars.msg_type, {stream: vars.stream || '',
|
|
|
|
subject: vars.subject || '',
|
|
|
|
private_message_recipient: vars.recipient || '',
|
|
|
|
content: vars.msg || ''});
|
2013-07-17 18:07:06 +02:00
|
|
|
if (send_now) {
|
|
|
|
compose.finish();
|
|
|
|
}
|
|
|
|
}
|
2012-10-29 21:02:46 +01:00
|
|
|
|
2013-07-17 18:07:06 +02:00
|
|
|
var pointer = parseInt(vars.pointer, 10);
|
2013-06-18 23:04:39 +02:00
|
|
|
|
2013-07-17 18:07:06 +02:00
|
|
|
if (pointer) {
|
2013-08-13 22:47:46 +02:00
|
|
|
page_params.orig_initial_pointer = page_params.initial_pointer;
|
2013-07-17 18:07:06 +02:00
|
|
|
page_params.initial_pointer = pointer;
|
2012-10-29 21:02:46 +01:00
|
|
|
}
|
2014-02-04 22:02:26 +01:00
|
|
|
var offset = parseInt(vars.offset, 10);
|
|
|
|
if (offset) {
|
|
|
|
page_params.initial_offset = offset;
|
|
|
|
}
|
2013-07-17 18:07:06 +02:00
|
|
|
|
2014-02-12 20:03:05 +01:00
|
|
|
var narrow_pointer = parseInt(vars.narrow_pointer, 10);
|
|
|
|
if (narrow_pointer) {
|
|
|
|
page_params.initial_narrow_pointer = narrow_pointer;
|
|
|
|
}
|
|
|
|
var narrow_offset = parseInt(vars.narrow_offset, 10);
|
|
|
|
if (narrow_offset) {
|
|
|
|
page_params.initial_narrow_offset = narrow_offset;
|
|
|
|
}
|
|
|
|
|
2013-09-06 21:52:12 +02:00
|
|
|
activity.new_user_input = false;
|
2013-07-17 18:07:06 +02:00
|
|
|
hashchange.changehash(vars.oldhash);
|
2014-03-03 23:32:17 +01:00
|
|
|
};
|
2012-10-29 21:02:46 +01:00
|
|
|
|
2014-02-05 19:49:18 +01:00
|
|
|
function clear_message_list(msg_list) {
|
|
|
|
if (!msg_list) { return; }
|
|
|
|
msg_list.clear();
|
|
|
|
// Some pending ajax calls may still be processed and they to not expect an
|
|
|
|
// empty msg_list.
|
|
|
|
msg_list._items = [{id: 1}];
|
|
|
|
}
|
|
|
|
|
2014-02-10 21:26:25 +01:00
|
|
|
function cleanup_before_reload() {
|
2014-02-05 19:49:18 +01:00
|
|
|
try {
|
|
|
|
// Unbind all the jQuery event listeners
|
|
|
|
$('*').off();
|
|
|
|
|
2014-02-07 04:27:16 +01:00
|
|
|
// Abort all pending ajax requests`
|
|
|
|
channel.abort_all();
|
|
|
|
|
2014-03-13 22:49:58 +01:00
|
|
|
// Free all the DOM in the main_div
|
|
|
|
$("#main_div").empty();
|
2014-02-05 19:49:18 +01:00
|
|
|
|
2016-03-31 08:01:52 +02:00
|
|
|
// Now that the DOM is empty our beforeunload callback may
|
|
|
|
// have been removed, so explicitly remove event queue here.
|
2014-02-05 19:49:18 +01:00
|
|
|
server_events.cleanup_event_queue();
|
|
|
|
|
|
|
|
// Empty the large collections
|
|
|
|
clear_message_list(all_msg_list);
|
|
|
|
clear_message_list(home_msg_list);
|
|
|
|
clear_message_list(narrowed_msg_list);
|
|
|
|
message_store.clear();
|
|
|
|
|
|
|
|
} catch (ex) {
|
|
|
|
blueslip.error('Failed to cleanup before reloading',
|
|
|
|
undefined, ex.stack);
|
|
|
|
}
|
2014-02-10 21:26:25 +01:00
|
|
|
}
|
|
|
|
|
2015-11-29 03:00:00 +01:00
|
|
|
function do_reload_app(send_after_reload, save_pointer, save_narrow, save_compose, message) {
|
2014-02-19 18:41:01 +01:00
|
|
|
if (reload_in_progress) { return; }
|
|
|
|
|
2014-02-10 21:26:25 +01:00
|
|
|
// TODO: we should completely disable the UI here
|
2015-11-29 03:00:00 +01:00
|
|
|
if (save_pointer || save_narrow || save_compose) {
|
|
|
|
preserve_state(send_after_reload, save_pointer, save_narrow, save_compose);
|
2014-02-10 21:26:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (message === undefined) {
|
|
|
|
message = "Reloading";
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: We need a better API for showing messages.
|
|
|
|
ui.report_message(message, $("#reloading-application"));
|
|
|
|
blueslip.log('Starting server requested page reload');
|
|
|
|
reload_in_progress = true;
|
|
|
|
|
|
|
|
if (feature_flags.cleanup_before_reload) {
|
|
|
|
cleanup_before_reload();
|
|
|
|
}
|
|
|
|
|
2012-10-29 21:02:46 +01:00
|
|
|
window.location.reload(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.initiate = function (options) {
|
2013-07-30 05:11:50 +02:00
|
|
|
options = _.defaults({}, options, {
|
|
|
|
immediate: false,
|
2015-11-29 03:00:00 +01:00
|
|
|
save_pointer: true,
|
|
|
|
save_narrow: true,
|
|
|
|
save_compose: true,
|
2013-07-30 05:11:50 +02:00
|
|
|
send_after_reload: false
|
|
|
|
});
|
2012-10-29 21:02:46 +01:00
|
|
|
|
2015-11-30 17:47:19 +01:00
|
|
|
if (options.save_pointer === undefined ||
|
|
|
|
options.save_narrow === undefined ||
|
|
|
|
options.save_compose === undefined) {
|
|
|
|
blueslip.error("reload.initiate() called without explicit save options.");
|
|
|
|
}
|
|
|
|
|
2012-10-29 21:02:46 +01:00
|
|
|
if (options.immediate) {
|
2015-11-29 03:00:00 +01:00
|
|
|
do_reload_app(options.send_after_reload,
|
|
|
|
options.save_pointer,
|
|
|
|
options.save_narrow,
|
|
|
|
options.save_compose,
|
|
|
|
options.message);
|
2012-10-29 21:02:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (reload_pending) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
reload_pending = true;
|
|
|
|
|
|
|
|
// If the user is composing a message, reload if they become idle
|
|
|
|
// while composing. If they finish or cancel the compose, wait
|
|
|
|
// until they're idle again
|
|
|
|
var idle_control;
|
2012-11-30 18:40:31 +01:00
|
|
|
var unconditional_timeout = 1000*60*30 + util.random_int(0, 1000*60*5);
|
|
|
|
var composing_timeout = 1000*60*5 + util.random_int(0, 1000*60);
|
|
|
|
var home_timeout = 1000*60 + util.random_int(0, 1000*60);
|
2012-10-29 21:02:46 +01:00
|
|
|
var compose_done_handler, compose_started_handler;
|
|
|
|
|
2013-06-18 21:03:20 +02:00
|
|
|
function reload_from_idle () {
|
2015-11-29 03:00:00 +01:00
|
|
|
do_reload_app(false,
|
|
|
|
options.save_pointer,
|
|
|
|
options.save_narrow,
|
|
|
|
options.save_compose,
|
|
|
|
options.message);
|
2013-06-18 21:03:20 +02:00
|
|
|
}
|
2012-11-30 17:35:19 +01:00
|
|
|
|
2013-07-22 23:27:32 +02:00
|
|
|
// Make sure we always do a reload eventually
|
|
|
|
setTimeout(reload_from_idle, unconditional_timeout);
|
|
|
|
|
2012-10-29 21:02:46 +01:00
|
|
|
compose_done_handler = function () {
|
|
|
|
idle_control.cancel();
|
|
|
|
idle_control = $(document).idle({'idle': home_timeout,
|
2013-06-18 21:03:20 +02:00
|
|
|
'onIdle': reload_from_idle});
|
2013-07-25 22:48:55 +02:00
|
|
|
$(document).off('compose_canceled.zulip compose_finished.zulip',
|
2012-10-29 21:02:46 +01:00
|
|
|
compose_done_handler);
|
2013-07-25 22:48:55 +02:00
|
|
|
$(document).on('compose_started.zulip', compose_started_handler);
|
2012-10-29 21:02:46 +01:00
|
|
|
};
|
|
|
|
compose_started_handler = function () {
|
|
|
|
idle_control.cancel();
|
|
|
|
idle_control = $(document).idle({'idle': composing_timeout,
|
2013-06-18 21:03:20 +02:00
|
|
|
'onIdle': reload_from_idle});
|
2013-07-25 22:48:55 +02:00
|
|
|
$(document).off('compose_started.zulip', compose_started_handler);
|
|
|
|
$(document).on('compose_canceled.zulip compose_finished.zulip',
|
2012-10-29 21:02:46 +01:00
|
|
|
compose_done_handler);
|
|
|
|
};
|
|
|
|
|
|
|
|
if (compose.composing()) {
|
|
|
|
idle_control = $(document).idle({'idle': composing_timeout,
|
2013-06-18 21:03:20 +02:00
|
|
|
'onIdle': reload_from_idle});
|
2013-07-25 22:48:55 +02:00
|
|
|
$(document).on('compose_canceled.zulip compose_finished.zulip',
|
2012-10-29 21:02:46 +01:00
|
|
|
compose_done_handler);
|
|
|
|
} else {
|
|
|
|
idle_control = $(document).idle({'idle': home_timeout,
|
2013-06-18 21:03:20 +02:00
|
|
|
'onIdle': reload_from_idle});
|
2013-07-25 22:48:55 +02:00
|
|
|
$(document).on('compose_started.zulip', compose_started_handler);
|
2012-10-29 21:02:46 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-02-19 18:41:01 +01:00
|
|
|
window.addEventListener('beforeunload', function () {
|
|
|
|
// When navigating away from the page do not try to reload.
|
|
|
|
// The polling get_events call will fail after we delete the event queue.
|
|
|
|
// When that happens we reload the page to correct the problem. If this
|
|
|
|
// happens before the navigation is complete the user is kept captive at
|
|
|
|
// zulip.
|
|
|
|
reload_in_progress = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-10-29 21:02:46 +01:00
|
|
|
return exports;
|
2012-11-01 19:38:01 +01:00
|
|
|
}());
|