From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- comm/mail/components/im/content/verify.js | 53 +++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 comm/mail/components/im/content/verify.js (limited to 'comm/mail/components/im/content/verify.js') diff --git a/comm/mail/components/im/content/verify.js b/comm/mail/components/im/content/verify.js new file mode 100644 index 0000000000..fbe39d6a50 --- /dev/null +++ b/comm/mail/components/im/content/verify.js @@ -0,0 +1,53 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +var verifySession = { + onload() { + this.sessionVerification = + window.arguments[0].wrappedJSObject || window.arguments[0]; + if ( + this.sessionVerification.challengeType !== + Ci.imISessionVerification.CHALLENGE_TEXT + ) { + throw new Error("Unsupported challenge type"); + } + document.l10n.setAttributes( + document.querySelector("title"), + "verify-window-subject-title", + { + subject: this.sessionVerification.subject, + } + ); + document.getElementById("challenge").textContent = + this.sessionVerification.challenge; + if (this.sessionVerification.challengeDescription) { + let description = document.getElementById("challengeDescription"); + description.hidden = false; + description.textContent = this.sessionVerification.challengeDescription; + } + document.addEventListener("dialogaccept", () => { + this.sessionVerification.submitResponse(true); + }); + document.addEventListener("dialogextra2", () => { + this.sessionVerification.submitResponse(false); + document + .getElementById("verifySessionDialog") + .querySelector("dialog") + .acceptDialog(); + }); + document.addEventListener("dialogcancel", () => { + this.sessionVerification.cancel(); + }); + this.sessionVerification.completePromise.catch(() => { + document + .getElementById("verifySessionDialog") + .querySelector("dialog") + .cancelDialog(); + }); + }, +}; + +window.addEventListener("load", event => { + verifySession.onload(); +}); -- cgit v1.2.3