2017-04-08 18:13:39 +02:00
|
|
|
var settings_org = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
|
|
|
var meta = {
|
|
|
|
loaded: false,
|
|
|
|
};
|
|
|
|
|
2017-04-17 16:51:27 +02:00
|
|
|
exports.reset = function () {
|
|
|
|
meta.loaded = false;
|
|
|
|
};
|
|
|
|
|
2017-04-08 18:13:39 +02:00
|
|
|
exports.populate_realm_domains = function (realm_domains) {
|
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var domains_list = _.map(realm_domains, function (realm_domain) {
|
|
|
|
return (realm_domain.allow_subdomains ? "*." + realm_domain.domain : realm_domain.domain);
|
|
|
|
});
|
|
|
|
var domains = domains_list.join(', ');
|
|
|
|
|
|
|
|
$("#id_realm_restricted_to_domain").prop("checked", page_params.realm_restricted_to_domain);
|
|
|
|
if (domains.length === 0) {
|
|
|
|
domains = i18n.t("None");
|
|
|
|
$("#id_realm_restricted_to_domain").prop("disabled", true);
|
|
|
|
}
|
2017-07-12 23:34:18 +02:00
|
|
|
$("#realm_restricted_to_domains_label").text(i18n.t("Restrict new users to the following email domains: __domains__", {domains: domains}));
|
2017-04-08 18:13:39 +02:00
|
|
|
|
|
|
|
var realm_domains_table_body = $("#realm_domains_table tbody").expectOne();
|
|
|
|
realm_domains_table_body.find("tr").remove();
|
|
|
|
_.each(realm_domains, function (realm_domain) {
|
|
|
|
realm_domains_table_body.append(templates.render("admin-realm-domains-list", {realm_domain: realm_domain}));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.reset_realm_default_language = function () {
|
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#id_realm_default_language").val(page_params.realm_default_language);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
exports.toggle_name_change_display = function () {
|
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($('#full_name').attr('disabled')) {
|
2017-06-30 00:57:46 +02:00
|
|
|
$('#full_name').prop('disabled', false);
|
2017-04-08 18:13:39 +02:00
|
|
|
} else {
|
|
|
|
$('#full_name').attr('disabled', 'disabled');
|
|
|
|
}
|
|
|
|
$(".change_name_tooltip").toggle();
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.toggle_email_change_display = function () {
|
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#change_email").toggle();
|
|
|
|
$(".change_email_tooltip").toggle();
|
|
|
|
};
|
|
|
|
|
2017-08-20 03:08:53 +02:00
|
|
|
exports.toggle_allow_message_editing_pencil = function () {
|
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$(".on_hover_topic_edit").toggle();
|
|
|
|
};
|
|
|
|
|
2017-07-19 23:45:53 +02:00
|
|
|
exports.update_realm_description = function () {
|
2017-04-08 18:13:39 +02:00
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-19 23:45:53 +02:00
|
|
|
$('#id_realm_description').val(page_params.realm_description);
|
2017-04-08 18:13:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.update_message_retention_days = function () {
|
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#id_realm_message_retention_days").val(page_params.message_retention_days);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.populate_auth_methods = function (auth_methods) {
|
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var auth_methods_table = $("#admin_auth_methods_table").expectOne();
|
|
|
|
auth_methods_table.find('tr.method_row').remove();
|
|
|
|
_.each(_.keys(auth_methods).sort(), function (key) {
|
|
|
|
auth_methods_table.append(templates.render('admin_auth_methods_list', {
|
|
|
|
method: {
|
|
|
|
method: key,
|
|
|
|
enabled: auth_methods[key],
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
loading.destroy_indicator($('#admin_page_auth_methods_loading_indicator'));
|
2017-05-17 20:54:09 +02:00
|
|
|
if (!page_params.is_admin) {
|
|
|
|
$(".organization-box [data-name='auth-methods']")
|
|
|
|
.find("input, button, select, checked").attr("disabled", true);
|
2017-09-07 06:00:54 +02:00
|
|
|
var tip_box = $("<div class='tip'></div>")
|
|
|
|
.text(i18n.t("Only organization administrators can edit these settings."));
|
2017-07-13 20:53:27 +02:00
|
|
|
// Don't prepend a tip to custom emoji settings page. We handle it separately.
|
2017-06-02 06:30:00 +02:00
|
|
|
$(".organization-box").find(".settings-section:not(.can-edit)")
|
2017-07-13 20:53:27 +02:00
|
|
|
.not("#emoji-settings")
|
2017-09-07 06:00:54 +02:00
|
|
|
.prepend(tip_box);
|
2017-05-17 20:54:09 +02:00
|
|
|
}
|
2017-04-08 18:13:39 +02:00
|
|
|
};
|
|
|
|
|
2017-06-16 14:39:21 +02:00
|
|
|
|
2017-06-10 07:03:53 +02:00
|
|
|
exports.render_notifications_stream_ui = function (stream_id) {
|
2017-06-16 14:39:21 +02:00
|
|
|
var elem = $('#realm_notifications_stream_name');
|
|
|
|
|
2017-07-15 08:31:55 +02:00
|
|
|
var name = stream_data.maybe_get_stream_name(stream_id);
|
2017-06-16 14:39:21 +02:00
|
|
|
|
|
|
|
if (!name) {
|
|
|
|
elem.text(i18n.t("Disabled"));
|
|
|
|
elem.addClass("text-warning");
|
|
|
|
return;
|
2017-06-10 07:03:53 +02:00
|
|
|
}
|
2017-06-16 14:39:21 +02:00
|
|
|
|
|
|
|
// Happy path
|
|
|
|
elem.text('#' + name);
|
|
|
|
elem.removeClass('text-warning');
|
2017-06-10 07:03:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.populate_notifications_stream_dropdown = function (stream_list) {
|
|
|
|
var dropdown_list_body = $("#id_realm_notifications_stream .dropdown-list-body").expectOne();
|
|
|
|
var search_input = $("#id_realm_notifications_stream .dropdown-search > input[type=text]");
|
|
|
|
|
|
|
|
list_render(dropdown_list_body, stream_list, {
|
|
|
|
name: "admin-realm-dropdown-stream-list",
|
|
|
|
modifier: function (item) {
|
|
|
|
return templates.render("admin-realm-dropdown-stream-list", { stream: item });
|
|
|
|
},
|
|
|
|
filter: {
|
|
|
|
element: search_input,
|
|
|
|
callback: function (item, value) {
|
2017-08-25 03:30:54 +02:00
|
|
|
return item.name.toLowerCase().indexOf(value) >= 0;
|
2017-06-10 07:03:53 +02:00
|
|
|
},
|
2017-09-27 19:01:04 +02:00
|
|
|
onupdate: function () {
|
|
|
|
ui.update_scrollbar(dropdown_list_body);
|
|
|
|
},
|
2017-06-10 07:03:53 +02:00
|
|
|
},
|
|
|
|
}).init();
|
|
|
|
|
2017-09-27 19:01:04 +02:00
|
|
|
ui.set_up_scrollbar(dropdown_list_body);
|
|
|
|
|
2017-06-10 07:03:53 +02:00
|
|
|
$("#id_realm_notifications_stream .dropdown-search").click(function (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#id_realm_notifications_stream .dropdown-toggle").click(function () {
|
|
|
|
search_input.val("").trigger("input");
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-05-23 16:56:36 +02:00
|
|
|
function property_type_status_element(element) {
|
|
|
|
return $("#admin-realm-" + element.split('_').join('-') + "-status").expectOne();
|
|
|
|
}
|
|
|
|
|
|
|
|
function _set_up() {
|
2017-04-08 18:13:39 +02:00
|
|
|
meta.loaded = true;
|
|
|
|
|
|
|
|
loading.make_indicator($('#admin_page_auth_methods_loading_indicator'));
|
|
|
|
|
2017-06-10 07:03:53 +02:00
|
|
|
// Populate notifications stream modal
|
|
|
|
if (page_params.is_admin) {
|
|
|
|
exports.populate_notifications_stream_dropdown(stream_data.get_streams_for_settings_page());
|
|
|
|
}
|
|
|
|
exports.render_notifications_stream_ui(page_params.realm_notifications_stream_id);
|
|
|
|
|
2017-04-08 18:13:39 +02:00
|
|
|
// Populate realm domains
|
2017-04-20 07:30:51 +02:00
|
|
|
exports.populate_realm_domains(page_params.realm_domains);
|
2017-04-08 18:13:39 +02:00
|
|
|
|
|
|
|
// Populate authentication methods table
|
|
|
|
exports.populate_auth_methods(page_params.realm_authentication_methods);
|
|
|
|
|
2017-05-23 16:56:36 +02:00
|
|
|
// create property_types object
|
|
|
|
var property_types = {
|
2017-08-18 01:23:55 +02:00
|
|
|
profile: {
|
2017-05-25 00:50:07 +02:00
|
|
|
name: {
|
2017-08-29 02:14:45 +02:00
|
|
|
type: 'text',
|
2017-05-25 00:50:07 +02:00
|
|
|
msg: i18n.t("Name changed!"),
|
|
|
|
},
|
|
|
|
description: {
|
2017-08-29 02:14:45 +02:00
|
|
|
type: 'text',
|
2017-05-25 00:50:07 +02:00
|
|
|
msg: i18n.t("Description changed!"),
|
|
|
|
},
|
2017-08-18 01:23:55 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
settings: {
|
2017-05-25 00:50:07 +02:00
|
|
|
default_language: {
|
2017-08-29 02:14:45 +02:00
|
|
|
type: 'text',
|
2017-05-25 00:50:07 +02:00
|
|
|
msg: i18n.t("Default language changed!"),
|
|
|
|
},
|
2017-07-16 11:00:44 +02:00
|
|
|
allow_edit_history: {
|
|
|
|
type: 'bool',
|
|
|
|
checked_msg: i18n.t("Users can view message edit history!"),
|
|
|
|
unchecked_msg: i18n.t("Users can no longer view message edit history!"),
|
|
|
|
},
|
2017-08-18 01:23:55 +02:00
|
|
|
mandatory_topics: {
|
2017-05-23 16:56:36 +02:00
|
|
|
type: 'bool',
|
2017-08-18 01:23:55 +02:00
|
|
|
checked_msg: i18n.t("Topics are required in messages to streams!"),
|
|
|
|
unchecked_msg: i18n.t("Topics are not required in messages to streams!"),
|
2017-05-23 16:56:36 +02:00
|
|
|
},
|
2017-08-18 01:23:55 +02:00
|
|
|
inline_image_preview: {
|
2017-05-23 16:56:36 +02:00
|
|
|
type: 'bool',
|
2017-08-18 01:23:55 +02:00
|
|
|
checked_msg: i18n.t("Previews of uploaded and linked images will be shown!"),
|
|
|
|
unchecked_msg: i18n.t("Previews of uploaded and linked images will not be shown!"),
|
|
|
|
},
|
|
|
|
inline_url_embed_preview: {
|
|
|
|
type: 'bool',
|
|
|
|
checked_msg: i18n.t("Previews for linked websites will be shown!"),
|
|
|
|
unchecked_msg: i18n.t("Previews for linked websites will not be shown!"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
permissions: {
|
|
|
|
restricted_to_domain: {
|
|
|
|
type: 'bool',
|
|
|
|
checked_msg: i18n.t("New user e-mails now restricted to certain domains!"),
|
|
|
|
unchecked_msg: i18n.t("New users may have arbitrary e-mails!"),
|
2017-05-23 16:56:36 +02:00
|
|
|
},
|
|
|
|
invite_required: {
|
|
|
|
type: 'bool',
|
|
|
|
checked_msg: i18n.t("New users must be invited by e-mail!"),
|
|
|
|
unchecked_msg: i18n.t("New users may sign up online!"),
|
|
|
|
},
|
|
|
|
invite_by_admins_only: {
|
|
|
|
type: 'bool',
|
|
|
|
checked_msg: i18n.t("New users must be invited by an admin!"),
|
|
|
|
unchecked_msg: i18n.t("Any user may now invite new users!"),
|
|
|
|
},
|
|
|
|
name_changes_disabled: {
|
|
|
|
type: 'bool',
|
|
|
|
checked_msg: i18n.t("Users cannot change their name!"),
|
|
|
|
unchecked_msg: i18n.t("Users may now change their name!"),
|
|
|
|
},
|
2017-08-18 01:23:55 +02:00
|
|
|
email_changes_disabled: {
|
2017-05-23 16:56:36 +02:00
|
|
|
type: 'bool',
|
2017-08-18 01:23:55 +02:00
|
|
|
checked_msg: i18n.t("Users cannot change their email!"),
|
|
|
|
unchecked_msg: i18n.t("Users may now change their email!"),
|
2017-05-23 16:56:36 +02:00
|
|
|
},
|
2017-08-18 01:23:55 +02:00
|
|
|
create_stream_by_admins_only: {
|
2017-07-04 20:04:27 +02:00
|
|
|
type: 'bool',
|
2017-08-18 01:23:55 +02:00
|
|
|
checked_msg: i18n.t("Only administrators may now create new streams!"),
|
|
|
|
unchecked_msg: i18n.t("Any user may now create new streams!"),
|
|
|
|
},
|
|
|
|
add_emoji_by_admins_only: {
|
|
|
|
type: 'bool',
|
|
|
|
checked_msg: i18n.t("Only administrators may now add new emoji!"),
|
|
|
|
unchecked_msg: i18n.t("Any user may now add new emoji!"),
|
2017-07-04 20:04:27 +02:00
|
|
|
},
|
2017-08-29 02:18:27 +02:00
|
|
|
waiting_period_threshold: {
|
|
|
|
type: 'integer',
|
|
|
|
msg: i18n.t("Waiting period threshold changed!"),
|
|
|
|
},
|
2017-05-25 00:50:07 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
function populate_data_for_request(data, category) {
|
|
|
|
_.each(property_types[category], function (v, k) {
|
|
|
|
var field = property_types[category][k];
|
|
|
|
if (field.type === 'bool') {
|
|
|
|
data[k] = JSON.stringify($('#id_realm_'+k).prop('checked'));
|
|
|
|
return;
|
|
|
|
}
|
2017-08-29 02:14:45 +02:00
|
|
|
if (field.type === 'text') {
|
2017-05-25 00:50:07 +02:00
|
|
|
data[k] = JSON.stringify($('#id_realm_'+k).val().trim());
|
|
|
|
return;
|
|
|
|
}
|
2017-08-29 02:18:27 +02:00
|
|
|
if (field.type === 'integer') {
|
2017-08-18 01:23:55 +02:00
|
|
|
data[k] = JSON.stringify(parseInt($("#id_realm_"+k).val().trim(), 10));
|
2017-08-29 02:18:27 +02:00
|
|
|
}
|
2017-05-25 00:50:07 +02:00
|
|
|
});
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
function process_response_data(response_data, category) {
|
|
|
|
if (!_.has(property_types, category)) {
|
|
|
|
blueslip.error('Unknown category ' + category);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_.each(response_data, function (value, key) {
|
|
|
|
if (value === undefined || !_.has(property_types[category], key)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var msg;
|
|
|
|
var field_info = property_types[category][key];
|
|
|
|
var setting_type = field_info.type;
|
|
|
|
if (setting_type === 'bool') {
|
|
|
|
if (value) {
|
|
|
|
msg = field_info.checked_msg;
|
|
|
|
} else {
|
|
|
|
msg = field_info.unchecked_msg;
|
|
|
|
}
|
|
|
|
ui_report.success(msg,
|
|
|
|
property_type_status_element(key));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-29 02:14:45 +02:00
|
|
|
if (setting_type === 'text') {
|
2017-05-25 00:50:07 +02:00
|
|
|
ui_report.success(field_info.msg,
|
|
|
|
property_type_status_element(key));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-05-23 16:56:36 +02:00
|
|
|
|
2017-04-08 18:13:39 +02:00
|
|
|
$("#id_realm_invite_required").change(function () {
|
|
|
|
if (this.checked) {
|
2017-06-30 00:57:46 +02:00
|
|
|
$("#id_realm_invite_by_admins_only").prop("disabled", false);
|
2017-04-08 18:13:39 +02:00
|
|
|
$("#id_realm_invite_by_admins_only_label").parent().removeClass("control-label-disabled");
|
|
|
|
} else {
|
|
|
|
$("#id_realm_invite_by_admins_only").attr("disabled", true);
|
|
|
|
$("#id_realm_invite_by_admins_only_label").parent().addClass("control-label-disabled");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#id_realm_allow_message_editing").change(function () {
|
|
|
|
if (this.checked) {
|
2017-06-30 00:57:46 +02:00
|
|
|
$("#id_realm_message_content_edit_limit_minutes").prop("disabled", false);
|
2017-04-08 18:13:39 +02:00
|
|
|
$("#id_realm_message_content_edit_limit_minutes_label").parent().removeClass("control-label-disabled");
|
|
|
|
} else {
|
|
|
|
$("#id_realm_message_content_edit_limit_minutes").attr("disabled", true);
|
|
|
|
$("#id_realm_message_content_edit_limit_minutes_label").parent().addClass("control-label-disabled");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-05-25 00:50:07 +02:00
|
|
|
$(".organization").on("submit", "form.org-settings-form", function (e) {
|
2017-04-08 18:13:39 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2017-05-25 00:50:07 +02:00
|
|
|
|
2017-08-18 01:23:55 +02:00
|
|
|
_.each(property_types.settings, function (v, k) {
|
2017-05-25 00:50:07 +02:00
|
|
|
property_type_status_element(k).hide();
|
|
|
|
});
|
|
|
|
|
2017-08-18 01:23:55 +02:00
|
|
|
var message_editing_status = $("#admin-realm-message-editing-status").expectOne();
|
|
|
|
// grab the first alert available and use it for the status.
|
|
|
|
var $alerts = $(".settings-section.show .alert").hide();
|
|
|
|
// grab the first alert available and use it for the status.
|
|
|
|
var status = $("#admin-realm-notifications-stream-status");
|
2017-05-25 00:50:07 +02:00
|
|
|
|
2017-04-08 18:13:39 +02:00
|
|
|
var new_message_content_edit_limit_minutes = $("#id_realm_message_content_edit_limit_minutes").val();
|
2017-08-18 01:23:55 +02:00
|
|
|
var new_allow_message_editing = $("#id_realm_allow_message_editing").prop("checked");
|
2017-05-25 00:50:07 +02:00
|
|
|
|
2017-04-08 18:13:39 +02:00
|
|
|
// If allow_message_editing is unchecked, message_content_edit_limit_minutes
|
|
|
|
// is irrelevant. Hence if allow_message_editing is unchecked, and
|
|
|
|
// message_content_edit_limit_minutes is poorly formed, we set the latter to
|
|
|
|
// a default value to prevent the server from returning an error.
|
|
|
|
if (!new_allow_message_editing) {
|
|
|
|
if ((parseInt(new_message_content_edit_limit_minutes, 10).toString() !==
|
|
|
|
new_message_content_edit_limit_minutes) ||
|
|
|
|
new_message_content_edit_limit_minutes < 0) {
|
|
|
|
// Realm.DEFAULT_MESSAGE_CONTENT_EDIT_LIMIT_SECONDS / 60
|
|
|
|
new_message_content_edit_limit_minutes = 10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var url = "/json/realm";
|
2017-08-18 01:23:55 +02:00
|
|
|
var data = {};
|
|
|
|
data = populate_data_for_request({
|
2017-04-08 18:13:39 +02:00
|
|
|
allow_message_editing: JSON.stringify(new_allow_message_editing),
|
|
|
|
message_content_edit_limit_seconds:
|
|
|
|
JSON.stringify(parseInt(new_message_content_edit_limit_minutes, 10) * 60),
|
2017-08-18 01:23:55 +02:00
|
|
|
}, 'settings');
|
|
|
|
|
2017-04-08 18:13:39 +02:00
|
|
|
channel.patch({
|
|
|
|
url: url,
|
|
|
|
data: data,
|
2017-08-18 01:23:55 +02:00
|
|
|
|
2017-04-08 18:13:39 +02:00
|
|
|
success: function (response_data) {
|
2017-08-18 01:23:55 +02:00
|
|
|
$alerts.hide();
|
2017-04-08 18:13:39 +02:00
|
|
|
if (response_data.allow_message_editing !== undefined) {
|
|
|
|
// We expect message_content_edit_limit_seconds was sent in the
|
|
|
|
// response as well
|
|
|
|
var data_message_content_edit_limit_minutes =
|
|
|
|
Math.ceil(response_data.message_content_edit_limit_seconds / 60);
|
|
|
|
if (response_data.allow_message_editing) {
|
2017-05-24 02:02:09 +02:00
|
|
|
if (response_data.message_content_edit_limit_seconds > 0) {
|
2017-09-05 09:43:26 +02:00
|
|
|
ui_report.success(
|
|
|
|
i18n.t("Users can now edit topics for all their messages, and the content of messages which are less than __num_minutes__ minutes old.",
|
|
|
|
{num_minutes : data_message_content_edit_limit_minutes}),
|
|
|
|
message_editing_status);
|
2017-04-08 18:13:39 +02:00
|
|
|
} else {
|
|
|
|
ui_report.success(i18n.t("Users can now edit the content and topics of all their past messages!"), message_editing_status);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ui_report.success(i18n.t("Users can no longer edit their past messages!"), message_editing_status);
|
|
|
|
}
|
|
|
|
// message_content_edit_limit_seconds could have been changed earlier
|
|
|
|
// in this function, so update the field just in case
|
|
|
|
$("#id_realm_message_content_edit_limit_minutes").val(data_message_content_edit_limit_minutes);
|
|
|
|
}
|
2017-08-18 01:23:55 +02:00
|
|
|
|
|
|
|
process_response_data(response_data, 'settings');
|
2017-05-25 00:50:07 +02:00
|
|
|
// Check if no changes made
|
|
|
|
var no_changes_made = true;
|
|
|
|
for (var key in response_data) {
|
|
|
|
if (['msg', 'result'].indexOf(key) < 0) {
|
|
|
|
no_changes_made = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (no_changes_made) {
|
2017-08-18 01:23:55 +02:00
|
|
|
ui_report.success(i18n.t("No changes to save!"), status);
|
2017-05-25 00:50:07 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function (xhr) {
|
2017-08-18 01:23:55 +02:00
|
|
|
$alerts.hide();
|
|
|
|
ui_report.error(i18n.t("Failed"), xhr, status);
|
2017-05-25 00:50:07 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
2017-08-18 01:23:55 +02:00
|
|
|
|
|
|
|
$(".organization").on("submit", "form.org-permissions-form", function (e) {
|
|
|
|
var $alerts = $(".settings-section.show .alert").hide();
|
|
|
|
// grab the first alert available and use it for the status.
|
|
|
|
var status = $("#admin-realm-restricted-to-domain-status");
|
|
|
|
|
|
|
|
var waiting_period_threshold_status = $("#admin-realm-waiting-period-threshold-status").expectOne();
|
|
|
|
status.hide();
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
var new_message_retention_days = $("#id_realm_message_retention_days").val();
|
|
|
|
|
|
|
|
if (parseInt(new_message_retention_days, 10).toString() !==
|
|
|
|
new_message_retention_days && new_message_retention_days !== "") {
|
|
|
|
new_message_retention_days = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
// take the existing object and apply the rest of the properties.
|
|
|
|
var data = populate_data_for_request({
|
|
|
|
message_retention_days: new_message_retention_days !== "" ? JSON.stringify(parseInt(new_message_retention_days, 10)) : null,
|
|
|
|
}, 'permissions');
|
|
|
|
|
|
|
|
|
|
|
|
channel.patch({
|
|
|
|
url: "/json/realm",
|
|
|
|
data: data,
|
|
|
|
success: function (response_data) {
|
|
|
|
$alerts.hide();
|
|
|
|
if (response_data.waiting_period_threshold !== undefined) {
|
|
|
|
if (response_data.waiting_period_threshold >= 0) {
|
|
|
|
ui_report.success(i18n.t("Waiting period threshold changed!"), waiting_period_threshold_status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
process_response_data(response_data, 'permissions');
|
|
|
|
|
|
|
|
// Check if no changes made
|
|
|
|
var no_changes_made = true;
|
|
|
|
for (var key in response_data) {
|
|
|
|
if (['msg', 'result'].indexOf(key) < 0) {
|
|
|
|
no_changes_made = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (no_changes_made) {
|
|
|
|
ui_report.success(i18n.t("No changes to save!"), status);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function (xhr) {
|
|
|
|
$alerts.hide();
|
|
|
|
ui_report.error(i18n.t("Failed"), xhr, status);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".organization").on("submit", "form.org-profile-form", function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
var $alerts = $(".settings-section.show .alert");
|
|
|
|
// grab the first alert available and use it for the status.
|
|
|
|
var status = $("#admin-realm-name-status");
|
|
|
|
|
|
|
|
var data = populate_data_for_request({}, 'profile');
|
|
|
|
|
|
|
|
channel.patch({
|
|
|
|
url: "/json/realm",
|
|
|
|
data: data,
|
|
|
|
|
|
|
|
success: function (response_data) {
|
|
|
|
$alerts.hide();
|
|
|
|
process_response_data(response_data, 'profile');
|
|
|
|
// Check if no changes made
|
|
|
|
var no_changes_made = true;
|
|
|
|
for (var key in response_data) {
|
|
|
|
if (['msg', 'result'].indexOf(key) < 0) {
|
|
|
|
no_changes_made = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (no_changes_made) {
|
|
|
|
ui_report.success(i18n.t("No changes to save!"), status);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function (xhr) {
|
|
|
|
ui_report.error(i18n.t("Failed"), xhr, status);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-05-25 00:50:07 +02:00
|
|
|
$(".organization").on("submit", "form.org-authentications-form", function (e) {
|
|
|
|
var authentication_methods_status = $("#admin-realm-authentication-methods-status").expectOne();
|
|
|
|
|
|
|
|
var new_auth_methods = {};
|
|
|
|
_.each($("#admin_auth_methods_table").find('tr.method_row'), function (method_row) {
|
|
|
|
new_auth_methods[$(method_row).data('method')] = $(method_row).find('input').prop('checked');
|
|
|
|
});
|
|
|
|
|
|
|
|
authentication_methods_status.hide();
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
var url = "/json/realm";
|
|
|
|
var data = {
|
|
|
|
authentication_methods: JSON.stringify(new_auth_methods),
|
|
|
|
};
|
|
|
|
|
|
|
|
channel.patch({
|
|
|
|
url: url,
|
|
|
|
data: data,
|
|
|
|
success: function (response_data) {
|
|
|
|
if (response_data.authentication_methods !== undefined) {
|
|
|
|
if (response_data.authentication_methods) {
|
|
|
|
ui_report.success(i18n.t("Authentication methods saved!"), authentication_methods_status);
|
2017-04-08 18:13:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Check if no changes made
|
|
|
|
var no_changes_made = true;
|
|
|
|
for (var key in response_data) {
|
|
|
|
if (['msg', 'result'].indexOf(key) < 0) {
|
|
|
|
no_changes_made = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (no_changes_made) {
|
2017-05-25 00:50:07 +02:00
|
|
|
ui_report.success(i18n.t("No changes to save!"), authentication_methods_status);
|
2017-04-08 18:13:39 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function (xhr) {
|
2017-05-25 00:50:07 +02:00
|
|
|
ui_report.error(i18n.t("Failed"), xhr, authentication_methods_status);
|
2017-04-08 18:13:39 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#realm_domains_table").on("click", ".delete_realm_domain", function () {
|
|
|
|
var domain = $(this).parents("tr").find(".domain").text();
|
|
|
|
var url = "/json/realm/domains/" + domain;
|
|
|
|
var realm_domains_info = $("#realm_domains_modal").find(".realm_domains_info");
|
|
|
|
|
|
|
|
channel.del({
|
|
|
|
url: url,
|
|
|
|
success: function () {
|
|
|
|
realm_domains_info.removeClass("text-error");
|
|
|
|
realm_domains_info.addClass("text-success");
|
|
|
|
realm_domains_info.text(i18n.t("Deleted successfully!"));
|
|
|
|
},
|
|
|
|
error: function (xhr) {
|
|
|
|
realm_domains_info.removeClass("text-success");
|
|
|
|
realm_domains_info.addClass("text-error");
|
|
|
|
realm_domains_info.text(JSON.parse(xhr.responseText).msg);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#submit-add-realm-domain").click(function () {
|
|
|
|
var realm_domains_info = $("#realm_domains_modal").find(".realm_domains_info");
|
|
|
|
var widget = $("#add-realm-domain-widget");
|
|
|
|
var domain = widget.find(".new-realm-domain").val();
|
|
|
|
var allow_subdomains = widget.find(".new-realm-domain-allow-subdomains").prop("checked");
|
|
|
|
var data = {
|
|
|
|
domain: JSON.stringify(domain),
|
|
|
|
allow_subdomains: JSON.stringify(allow_subdomains),
|
|
|
|
};
|
|
|
|
|
|
|
|
channel.post({
|
|
|
|
url: "/json/realm/domains",
|
|
|
|
data: data,
|
|
|
|
success: function () {
|
|
|
|
$("#add-realm-domain-widget .new-realm-domain").val("");
|
|
|
|
$("#add-realm-domain-widget .new-realm-domain-allow-subdomains").prop("checked", false);
|
|
|
|
$("#id_realm_restricted_to_domain").prop("disabled", false);
|
|
|
|
realm_domains_info.removeClass("text-error");
|
|
|
|
realm_domains_info.addClass("text-success");
|
|
|
|
realm_domains_info.text(i18n.t("Added successfully!"));
|
|
|
|
},
|
|
|
|
error: function (xhr) {
|
|
|
|
realm_domains_info.removeClass("text-success");
|
|
|
|
realm_domains_info.addClass("text-error");
|
|
|
|
realm_domains_info.text(JSON.parse(xhr.responseText).msg);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#realm_domains_table").on("change", ".allow-subdomains", function (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
var realm_domains_info = $("#realm_domains_modal").find(".realm_domains_info");
|
|
|
|
var domain = $(this).parents("tr").find(".domain").text();
|
|
|
|
var allow_subdomains = $(this).prop('checked');
|
|
|
|
var url = '/json/realm/domains/' + domain;
|
|
|
|
var data = {
|
|
|
|
allow_subdomains: JSON.stringify(allow_subdomains),
|
|
|
|
};
|
|
|
|
|
|
|
|
channel.patch({
|
|
|
|
url: url,
|
|
|
|
data: data,
|
|
|
|
success: function () {
|
|
|
|
realm_domains_info.removeClass("text-error");
|
|
|
|
realm_domains_info.addClass("text-success");
|
|
|
|
if (allow_subdomains) {
|
|
|
|
realm_domains_info.text(i18n.t("Update successful: Subdomains allowed for __domain__",
|
|
|
|
{domain: domain}));
|
|
|
|
} else {
|
|
|
|
realm_domains_info.text(i18n.t("Update successful: Subdomains no longer allowed for __domain__",
|
|
|
|
{domain: domain}));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function (xhr) {
|
|
|
|
realm_domains_info.removeClass("text-success");
|
|
|
|
realm_domains_info.addClass("text-error");
|
|
|
|
realm_domains_info.text(JSON.parse(xhr.responseText).msg);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-10 07:03:53 +02:00
|
|
|
var notifications_stream_status = $("#admin-realm-notifications-stream-status").expectOne();
|
|
|
|
function update_notifications_stream(new_notifications_stream_id) {
|
|
|
|
exports.render_notifications_stream_ui(new_notifications_stream_id);
|
|
|
|
notifications_stream_status.hide();
|
|
|
|
|
|
|
|
var url = "/json/realm";
|
|
|
|
var data = {
|
|
|
|
notifications_stream_id: JSON.stringify(parseInt(new_notifications_stream_id, 10)),
|
|
|
|
};
|
|
|
|
|
|
|
|
channel.patch({
|
|
|
|
url: url,
|
|
|
|
data: data,
|
|
|
|
|
|
|
|
success: function (response_data) {
|
|
|
|
if (response_data.notifications_stream_id !== undefined) {
|
|
|
|
if (response_data.notifications_stream_id < 0) {
|
|
|
|
ui_report.success(i18n.t("Notifications stream disabled!"), notifications_stream_status);
|
|
|
|
} else {
|
|
|
|
ui_report.success(i18n.t("Notifications stream changed!"), notifications_stream_status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function (xhr) {
|
|
|
|
ui_report.error(i18n.t("Failed to change notifications stream!"), xhr, notifications_stream_status);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
var dropdown_menu = $("#id_realm_notifications_stream .dropdown-menu");
|
|
|
|
$("#id_realm_notifications_stream .dropdown-list-body").on("click keypress", ".stream_name", function (e) {
|
|
|
|
if (e.type === "keypress") {
|
|
|
|
if (e.which === 13) {
|
|
|
|
dropdown_menu.dropdown("toggle");
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
update_notifications_stream($(this).attr("data-stream-id"));
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".notifications-stream-disable").click(function () {
|
|
|
|
update_notifications_stream(-1);
|
|
|
|
});
|
|
|
|
|
2017-04-08 18:13:39 +02:00
|
|
|
function upload_realm_icon(file_input) {
|
|
|
|
var form_data = new FormData();
|
|
|
|
|
|
|
|
form_data.append('csrfmiddlewaretoken', csrf_token);
|
|
|
|
jQuery.each(file_input[0].files, function (i, file) {
|
|
|
|
form_data.append('file-'+i, file);
|
|
|
|
});
|
|
|
|
|
|
|
|
var spinner = $("#upload_icon_spinner").expectOne();
|
|
|
|
loading.make_indicator(spinner, {text: i18n.t("Uploading icon.")});
|
|
|
|
|
2017-07-05 19:02:54 +02:00
|
|
|
channel.post({
|
2017-04-08 18:13:39 +02:00
|
|
|
url: '/json/realm/icon',
|
|
|
|
data: form_data,
|
|
|
|
cache: false,
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
|
|
|
success: function () {
|
|
|
|
loading.destroy_indicator($("#upload_icon_spinner"));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
realm_icon.build_realm_icon_widget(upload_realm_icon);
|
|
|
|
|
2017-05-23 16:56:36 +02:00
|
|
|
}
|
|
|
|
exports.set_up = function () {
|
|
|
|
i18n.ensure_i18n(_set_up);
|
2017-04-08 18:13:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return exports;
|
|
|
|
}());
|
|
|
|
|
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = settings_org;
|
|
|
|
}
|