2021-02-10 17:00:58 +01:00
|
|
|
import autosize from "autosize";
|
|
|
|
import ClipboardJS from "clipboard";
|
2022-02-10 11:52:34 +01:00
|
|
|
import {add} from "date-fns";
|
2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
2020-08-01 03:43:15 +02:00
|
|
|
|
2021-02-10 17:00:58 +01:00
|
|
|
import copy_invite_link from "../templates/copy_invite_link.hbs";
|
|
|
|
import render_invitation_failed_error from "../templates/invitation_failed_error.hbs";
|
2022-10-11 18:02:39 +02:00
|
|
|
import render_invite_user_modal from "../templates/invite_user_modal.hbs";
|
2021-02-10 17:00:58 +01:00
|
|
|
import render_settings_dev_env_email_access from "../templates/settings/dev_env_email_access.hbs";
|
2019-07-09 21:24:00 +02:00
|
|
|
|
2021-02-28 00:39:51 +01:00
|
|
|
import * as channel from "./channel";
|
2021-02-28 00:35:35 +01:00
|
|
|
import * as common from "./common";
|
2023-04-08 13:16:25 +02:00
|
|
|
import {csrf_token} from "./csrf";
|
2022-10-11 18:02:39 +02:00
|
|
|
import * as dialog_widget from "./dialog_widget";
|
|
|
|
import * as gear_menu from "./gear_menu";
|
2021-04-13 06:51:54 +02:00
|
|
|
import {$t, $t_html} from "./i18n";
|
2021-03-25 22:35:45 +01:00
|
|
|
import {page_params} from "./page_params";
|
2023-04-25 18:01:02 +02:00
|
|
|
import * as scroll_util from "./scroll_util";
|
2021-06-14 11:49:01 +02:00
|
|
|
import * as settings_config from "./settings_config";
|
2021-02-28 00:53:59 +01:00
|
|
|
import * as stream_data from "./stream_data";
|
2023-04-24 12:11:47 +02:00
|
|
|
import * as timerender from "./timerender";
|
2021-02-28 00:58:55 +01:00
|
|
|
import * as ui_report from "./ui_report";
|
2021-06-12 12:02:59 +02:00
|
|
|
import * as util from "./util";
|
2021-02-28 00:35:35 +01:00
|
|
|
|
2022-02-11 17:54:15 +01:00
|
|
|
let custom_expiration_time_input = 10;
|
|
|
|
let custom_expiration_time_unit = "days";
|
|
|
|
|
2018-08-23 19:24:37 +02:00
|
|
|
function reset_error_messages() {
|
2022-10-11 18:02:39 +02:00
|
|
|
$("#dialog_error").hide().text("").removeClass(common.status_classes);
|
2019-02-06 20:32:06 +01:00
|
|
|
|
2018-08-23 19:24:37 +02:00
|
|
|
if (page_params.development_environment) {
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#dev_env_msg").hide().text("").removeClass(common.status_classes);
|
2018-08-23 19:24:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-01 12:20:13 +01:00
|
|
|
function get_common_invitation_data() {
|
2020-10-07 09:17:30 +02:00
|
|
|
const invite_as = Number.parseInt($("#invite_as").val(), 10);
|
2021-12-01 12:10:58 +01:00
|
|
|
let expires_in = $("#expires_in").val();
|
|
|
|
// See settings_config.expires_in_values for why we do this conversion.
|
|
|
|
if (expires_in === "null") {
|
|
|
|
expires_in = JSON.stringify(null);
|
2022-02-11 17:54:15 +01:00
|
|
|
} else if (expires_in === "custom") {
|
|
|
|
expires_in = Number.parseFloat(get_expiration_time_in_minutes());
|
2021-12-01 12:10:58 +01:00
|
|
|
} else {
|
|
|
|
expires_in = Number.parseFloat($("#expires_in").val());
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_ids = [];
|
2019-02-01 12:20:13 +01:00
|
|
|
$("#invite-stream-checkboxes input:checked").each(function () {
|
2020-10-07 09:17:30 +02:00
|
|
|
const stream_id = Number.parseInt($(this).val(), 10);
|
2018-12-22 05:41:54 +01:00
|
|
|
stream_ids.push(stream_id);
|
2018-08-23 19:24:37 +02:00
|
|
|
});
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = {
|
2023-04-08 13:16:25 +02:00
|
|
|
csrfmiddlewaretoken: csrf_token,
|
2020-07-20 22:18:43 +02:00
|
|
|
invite_as,
|
2018-12-22 05:41:54 +01:00
|
|
|
stream_ids: JSON.stringify(stream_ids),
|
2022-02-10 11:52:34 +01:00
|
|
|
invite_expires_in_minutes: expires_in,
|
2019-02-01 12:20:13 +01:00
|
|
|
};
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2019-02-02 08:12:38 +01:00
|
|
|
function beforeSend() {
|
|
|
|
reset_error_messages();
|
|
|
|
// TODO: You could alternatively parse the textarea here, and return errors to
|
|
|
|
// the user if they don't match certain constraints (i.e. not real email addresses,
|
|
|
|
// aren't in the right domain, etc.)
|
|
|
|
//
|
|
|
|
// OR, you could just let the server do it. Probably my temptation.
|
2022-10-11 18:02:39 +02:00
|
|
|
const loading_text = $("#invite-user-modal .dialog_submit_button").data("loading-text");
|
|
|
|
$("#invite-user-modal .dialog_submit_button").text(loading_text);
|
|
|
|
$("#invite-user-modal .dialog_submit_button").prop("disabled", true);
|
2019-02-02 08:12:38 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-02-01 12:20:13 +01:00
|
|
|
function submit_invitation_form() {
|
2022-10-11 18:02:39 +02:00
|
|
|
const $invite_status = $("#dialog_error");
|
2022-01-25 11:36:19 +01:00
|
|
|
const $invitee_emails = $("#invitee_emails");
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = get_common_invitation_data();
|
2019-02-01 12:20:13 +01:00
|
|
|
data.invitee_emails = $("#invitee_emails").val();
|
2018-08-23 19:24:37 +02:00
|
|
|
|
|
|
|
channel.post({
|
|
|
|
url: "/json/invites",
|
2020-07-20 22:18:43 +02:00
|
|
|
data,
|
|
|
|
beforeSend,
|
|
|
|
success() {
|
2021-04-13 05:18:25 +02:00
|
|
|
ui_report.success(
|
|
|
|
$t_html({defaultMessage: "User(s) invited successfully."}),
|
2022-01-25 11:36:19 +01:00
|
|
|
$invite_status,
|
2021-04-13 05:18:25 +02:00
|
|
|
);
|
2022-01-25 11:36:19 +01:00
|
|
|
$invitee_emails.val("");
|
2018-08-23 19:24:37 +02:00
|
|
|
|
|
|
|
if (page_params.development_environment) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const rendered_email_msg = render_settings_dev_env_email_access();
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#dev_env_msg").html(rendered_email_msg).addClass("alert-info").show();
|
2018-08-23 19:24:37 +02:00
|
|
|
}
|
2022-02-11 17:54:15 +01:00
|
|
|
|
|
|
|
if ($("#expires_in").val() === "custom") {
|
|
|
|
// Hide the custom inputs if the custom input is set
|
|
|
|
// to one of the dropdown's standard options.
|
|
|
|
const time_in_minutes = get_expiration_time_in_minutes();
|
|
|
|
for (const option of Object.values(settings_config.expires_in_values)) {
|
|
|
|
if (option.value === time_in_minutes) {
|
|
|
|
$("#custom-invite-expiration-time").hide();
|
|
|
|
$("#expires_in").val(time_in_minutes);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-23 19:24:37 +02:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
error(xhr) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const arr = JSON.parse(xhr.responseText);
|
2018-08-23 19:24:37 +02:00
|
|
|
if (arr.errors === undefined) {
|
|
|
|
// There was a fatal error, no partial processing occurred.
|
2022-01-25 11:36:19 +01:00
|
|
|
ui_report.error("", xhr, $invite_status);
|
2018-08-23 19:24:37 +02:00
|
|
|
} else {
|
|
|
|
// Some users were not invited.
|
2019-11-02 00:06:25 +01:00
|
|
|
const invitee_emails_errored = [];
|
|
|
|
const error_list = [];
|
2019-11-14 11:21:08 +01:00
|
|
|
let is_invitee_deactivated = false;
|
2021-01-22 22:29:08 +01:00
|
|
|
for (const value of arr.errors) {
|
2019-11-14 11:21:08 +01:00
|
|
|
const [email, error_message, deactivated] = value;
|
|
|
|
error_list.push(`${email}: ${error_message}`);
|
|
|
|
if (deactivated) {
|
|
|
|
is_invitee_deactivated = true;
|
|
|
|
}
|
2020-08-05 07:43:50 +02:00
|
|
|
invitee_emails_errored.push(email);
|
2021-01-22 22:29:08 +01:00
|
|
|
}
|
2018-08-23 19:24:37 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const error_response = render_invitation_failed_error({
|
2019-01-17 16:55:25 +01:00
|
|
|
error_message: arr.msg,
|
2020-07-20 22:18:43 +02:00
|
|
|
error_list,
|
2019-11-14 11:21:08 +01:00
|
|
|
is_admin: page_params.is_admin,
|
2020-07-20 22:18:43 +02:00
|
|
|
is_invitee_deactivated,
|
2021-05-28 15:57:08 +02:00
|
|
|
license_limit_reached: arr.license_limit_reached,
|
|
|
|
has_billing_access: page_params.is_owner || page_params.is_billing_admin,
|
2021-09-21 18:46:48 +02:00
|
|
|
daily_limit_reached: arr.daily_limit_reached,
|
2019-01-17 16:55:25 +01:00
|
|
|
});
|
2022-01-25 11:36:19 +01:00
|
|
|
ui_report.message(error_response, $invite_status, "alert-warning");
|
2018-08-23 19:24:37 +02:00
|
|
|
|
|
|
|
if (arr.sent_invitations) {
|
2022-01-25 11:36:19 +01:00
|
|
|
$invitee_emails.val(invitee_emails_errored.join("\n"));
|
2018-08-23 19:24:37 +02:00
|
|
|
}
|
|
|
|
}
|
2019-02-02 08:12:38 +01:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
complete() {
|
2022-10-11 18:02:39 +02:00
|
|
|
$("#invite-user-modal .dialog_submit_button").text($t({defaultMessage: "Invite"}));
|
|
|
|
$("#invite-user-modal .dialog_submit_button").prop("disabled", false);
|
|
|
|
$("#invite-user-modal .dialog_cancel_button").prop("disabled", false);
|
2022-03-16 22:19:20 +01:00
|
|
|
$("#invitee_emails").trigger("focus");
|
2023-04-25 18:01:02 +02:00
|
|
|
scroll_util.get_scroll_element($("#invite-user-modal"))[0].scrollTop = 0;
|
2019-02-02 08:12:38 +01:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2018-08-23 19:24:37 +02:00
|
|
|
|
2019-02-02 08:12:38 +01:00
|
|
|
function generate_multiuse_invite() {
|
2022-10-11 18:02:39 +02:00
|
|
|
const $invite_status = $("#dialog_error");
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = get_common_invitation_data();
|
2019-02-02 08:12:38 +01:00
|
|
|
channel.post({
|
|
|
|
url: "/json/invites/multiuse",
|
2020-07-20 22:18:43 +02:00
|
|
|
data,
|
|
|
|
beforeSend,
|
|
|
|
success(data) {
|
2020-10-13 18:17:20 +02:00
|
|
|
const copy_link_html = copy_invite_link(data);
|
2022-01-25 11:36:19 +01:00
|
|
|
ui_report.success(copy_link_html, $invite_status);
|
2020-10-13 18:17:20 +02:00
|
|
|
new ClipboardJS("#copy_generated_invite_link");
|
2019-02-02 08:12:38 +01:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
error(xhr) {
|
2022-01-25 11:36:19 +01:00
|
|
|
ui_report.error("", xhr, $invite_status);
|
2019-02-02 08:12:38 +01:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
complete() {
|
2022-10-11 18:02:39 +02:00
|
|
|
$("#invite-user-modal .dialog_submit_button").text(
|
|
|
|
$t({defaultMessage: "Generate invite link"}),
|
|
|
|
);
|
|
|
|
$("#invite-user-modal .dialog_submit_button").prop("disabled", false);
|
|
|
|
$("#invite-user-modal .dialog_cancel_button").prop("disabled", false);
|
2023-04-25 18:01:02 +02:00
|
|
|
scroll_util.get_scroll_element($("#invite-user-modal"))[0].scrollTop = 0;
|
2018-08-23 19:24:37 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-02-10 17:00:58 +01:00
|
|
|
export function get_invite_streams() {
|
2020-01-18 17:54:25 +01:00
|
|
|
const streams = stream_data.get_invite_stream_data();
|
2021-06-12 12:02:59 +02:00
|
|
|
streams.sort((a, b) => util.strcmp(a.name, b.name));
|
2018-07-20 09:43:32 +02:00
|
|
|
return streams;
|
2021-02-10 17:00:58 +01:00
|
|
|
}
|
2018-07-20 09:43:32 +02:00
|
|
|
|
2022-02-14 09:11:25 +01:00
|
|
|
function valid_to(expires_in) {
|
|
|
|
const time_valid = Number.parseFloat(expires_in);
|
2021-09-15 11:49:36 +02:00
|
|
|
if (!time_valid) {
|
|
|
|
return $t({defaultMessage: "Never expires"});
|
|
|
|
}
|
2023-05-01 07:02:10 +02:00
|
|
|
|
|
|
|
// The below is a duplicate of timerender.get_full_datetime, with a different base string.
|
2022-02-10 11:52:34 +01:00
|
|
|
const valid_to = add(new Date(), {minutes: time_valid});
|
2023-04-24 12:11:47 +02:00
|
|
|
const date = timerender.get_localized_date_or_time_for_format(valid_to, "dayofyear_year");
|
|
|
|
const time = timerender.get_localized_date_or_time_for_format(valid_to, "time");
|
|
|
|
|
|
|
|
return $t({defaultMessage: "Expires on {date} at {time}"}, {date, time});
|
2022-02-11 17:54:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_expiration_time_in_minutes() {
|
|
|
|
switch (custom_expiration_time_unit) {
|
|
|
|
case "hours":
|
|
|
|
return custom_expiration_time_input * 60;
|
|
|
|
case "days":
|
|
|
|
return custom_expiration_time_input * 24 * 60;
|
|
|
|
case "weeks":
|
|
|
|
return custom_expiration_time_input * 7 * 24 * 60;
|
|
|
|
default:
|
|
|
|
return custom_expiration_time_input;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_expires_on_text() {
|
|
|
|
if ($("#expires_in").val() === "custom") {
|
|
|
|
$("#expires_on").hide();
|
|
|
|
$("#custom_expires_on").text(valid_to(get_expiration_time_in_minutes()));
|
|
|
|
} else {
|
|
|
|
$("#expires_on").show();
|
|
|
|
$("#expires_on").text(valid_to($("#expires_in").val()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_custom_time_inputs_visibility() {
|
|
|
|
if ($("#expires_in").val() === "custom") {
|
|
|
|
$("#custom-expiration-time-input").val(custom_expiration_time_input);
|
|
|
|
$("#custom-expiration-time-unit").val(custom_expiration_time_unit);
|
|
|
|
$("#custom-invite-expiration-time").show();
|
|
|
|
} else {
|
|
|
|
$("#custom-invite-expiration-time").hide();
|
|
|
|
}
|
2021-09-15 11:49:36 +02:00
|
|
|
}
|
|
|
|
|
2022-10-11 18:02:39 +02:00
|
|
|
function open_invite_user_modal(e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
gear_menu.close();
|
|
|
|
|
2022-02-11 17:54:15 +01:00
|
|
|
const time_unit_choices = ["minutes", "hours", "days", "weeks"];
|
2022-10-11 18:02:39 +02:00
|
|
|
const html_body = render_invite_user_modal({
|
2021-06-14 11:49:01 +02:00
|
|
|
is_admin: page_params.is_admin,
|
|
|
|
is_owner: page_params.is_owner,
|
|
|
|
development_environment: page_params.development_environment,
|
|
|
|
invite_as_options: settings_config.user_role_values,
|
2021-09-15 11:49:36 +02:00
|
|
|
expires_in_options: settings_config.expires_in_values,
|
2022-02-11 17:54:15 +01:00
|
|
|
time_choices: time_unit_choices,
|
2022-10-11 18:02:39 +02:00
|
|
|
streams: get_invite_streams(),
|
|
|
|
notifications_stream: stream_data.get_notifications_stream(),
|
2021-06-14 11:49:01 +02:00
|
|
|
});
|
|
|
|
|
2022-10-11 18:02:39 +02:00
|
|
|
function invite_user_modal_post_render() {
|
|
|
|
$("#invite-user-modal .dialog_submit_button").prop("disabled", true);
|
2021-06-14 11:49:01 +02:00
|
|
|
|
2022-10-11 18:02:39 +02:00
|
|
|
autosize($("#invitee_emails").trigger("focus"));
|
2013-04-02 20:47:18 +02:00
|
|
|
|
2022-10-11 18:02:39 +02:00
|
|
|
set_custom_time_inputs_visibility();
|
|
|
|
set_expires_on_text();
|
2018-12-22 05:41:54 +01:00
|
|
|
|
2022-10-11 18:02:39 +02:00
|
|
|
function toggle_invite_submit_button() {
|
|
|
|
$("#invite-user-modal .dialog_submit_button").prop(
|
|
|
|
"disabled",
|
|
|
|
($("#invitee_emails").val().trim() === "" &&
|
|
|
|
!$("#generate_multiuse_invite_radio").is(":checked")) ||
|
|
|
|
$("#streams_to_add input:checked").length === 0,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#invite-user-modal").on("input", "input, textarea, select", () => {
|
|
|
|
toggle_invite_submit_button();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#invite-user-modal").on("change", "#generate_multiuse_invite_radio", () => {
|
|
|
|
$("#invitee_emails").prop("disabled", false);
|
|
|
|
$("#invite-user-modal .dialog_submit_button").text($t({defaultMessage: "Invite"}));
|
|
|
|
$("#invite-user-modal .dialog_submit_button").data(
|
|
|
|
"loading-text",
|
|
|
|
$t({defaultMessage: "Inviting..."}),
|
|
|
|
);
|
|
|
|
$("#multiuse_radio_section").hide();
|
|
|
|
$("#invite-method-choice").show();
|
|
|
|
toggle_invite_submit_button();
|
|
|
|
reset_error_messages();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#generate_multiuse_invite_button").on("click", () => {
|
|
|
|
$("#generate_multiuse_invite_radio").prop("checked", true);
|
|
|
|
$("#multiuse_radio_section").show();
|
|
|
|
$("#invite-method-choice").hide();
|
|
|
|
$("#invitee_emails").prop("disabled", true);
|
|
|
|
$("#invite-user-modal .dialog_submit_button").text(
|
|
|
|
$t({defaultMessage: "Generate invite link"}),
|
|
|
|
);
|
|
|
|
$("#invite-user-modal .dialog_submit_button").data(
|
|
|
|
"loading-text",
|
|
|
|
$t({defaultMessage: "Generating link..."}),
|
|
|
|
);
|
|
|
|
$("#invite-user-modal .dialog_submit_button").prop("disabled", false);
|
|
|
|
reset_error_messages();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#expires_in").on("change", () => {
|
|
|
|
set_custom_time_inputs_visibility();
|
|
|
|
set_expires_on_text();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#expires_on").text(valid_to($("#expires_in").val()));
|
|
|
|
|
|
|
|
$("#custom-expiration-time-input").on("keydown", (e) => {
|
|
|
|
if (e.key === "Enter") {
|
|
|
|
e.preventDefault();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".custom-expiration-time").on("change", () => {
|
|
|
|
custom_expiration_time_input = $("#custom-expiration-time-input").val();
|
|
|
|
custom_expiration_time_unit = $("#custom-expiration-time-unit").val();
|
|
|
|
$("#custom_expires_on").text(valid_to(get_expiration_time_in_minutes()));
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#invite_check_all_button").on("click", () => {
|
2023-05-02 06:48:01 +02:00
|
|
|
$("#streams_to_add input[type=checkbox]").prop("checked", true);
|
2022-10-11 18:02:39 +02:00
|
|
|
toggle_invite_submit_button();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#invite_uncheck_all_button").on("click", () => {
|
2023-05-02 06:48:01 +02:00
|
|
|
$("#streams_to_add input[type=checkbox]").prop("checked", false);
|
2022-10-11 18:02:39 +02:00
|
|
|
$("#invite-user-modal .dialog_submit_button").prop(
|
|
|
|
"disabled",
|
|
|
|
!$("#generate_multiuse_invite_radio").is(":checked"),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function invite_users() {
|
2020-07-15 01:29:15 +02:00
|
|
|
const is_generate_invite_link = $("#generate_multiuse_invite_radio").prop("checked");
|
2019-02-02 08:12:38 +01:00
|
|
|
if (is_generate_invite_link) {
|
|
|
|
generate_multiuse_invite();
|
|
|
|
} else {
|
|
|
|
submit_invitation_form();
|
|
|
|
}
|
2022-10-11 18:02:39 +02:00
|
|
|
}
|
2022-02-11 17:54:15 +01:00
|
|
|
|
2022-10-11 18:02:39 +02:00
|
|
|
dialog_widget.launch({
|
|
|
|
html_heading: $t_html({defaultMessage: "Invite users to Zulip"}),
|
|
|
|
html_body,
|
|
|
|
html_submit_button: $t_html({defaultMessage: "Invite"}),
|
|
|
|
id: "invite-user-modal",
|
|
|
|
loading_spinner: true,
|
|
|
|
on_click: invite_users,
|
|
|
|
post_render: invite_user_modal_post_render,
|
2022-02-11 17:54:15 +01:00
|
|
|
});
|
2022-10-11 18:02:39 +02:00
|
|
|
}
|
2022-02-11 17:54:15 +01:00
|
|
|
|
2022-10-11 18:02:39 +02:00
|
|
|
export function initialize() {
|
|
|
|
$(document).on("click", ".invite-user-link", open_invite_user_modal);
|
2021-02-10 17:00:58 +01:00
|
|
|
}
|