1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/*
* 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 https://mozilla.org/MPL/2.0/.
*/
"use strict";
var { EnigmailCore } = ChromeUtils.import(
"chrome://openpgp/content/modules/core.jsm"
);
var { RNP } = ChromeUtils.import("chrome://openpgp/content/modules/RNP.jsm");
var l10nCommon = new Localization(["messenger/openpgp/openpgp.ftl"], true);
var gEnigmailSvc;
function GetEnigmailSvc() {
if (!gEnigmailSvc) {
gEnigmailSvc = EnigmailCore.getService(window);
}
return gEnigmailSvc;
}
async function EnigRevokeKey(keyObj, callbackFunc) {
var enigmailSvc = GetEnigmailSvc();
if (!enigmailSvc) {
return;
}
if (keyObj.keyTrust == "r") {
Services.prompt.alert(
null,
document.title,
l10nCommon.formatValueSync("already-revoked")
);
return;
}
let promptFlags =
Services.prompt.BUTTON_POS_0 * Services.prompt.BUTTON_TITLE_IS_STRING +
Services.prompt.BUTTON_POS_1 * Services.prompt.BUTTON_TITLE_CANCEL;
let confirm = Services.prompt.confirmEx(
window,
l10nCommon.formatValueSync("openpgp-key-revoke-title"),
l10nCommon.formatValueSync("revoke-key-question", {
identity: `0x${keyObj.keyId} - ${keyObj.userId}`,
}),
promptFlags,
l10nCommon.formatValueSync("key-man-button-revoke-key"),
null,
null,
null,
{}
);
if (confirm != 0) {
return;
}
await RNP.revokeKey(keyObj.fpr);
callbackFunc(true);
Services.prompt.alert(
null,
l10nCommon.formatValueSync("openpgp-key-revoke-success"),
l10nCommon.formatValueSync("after-revoke-info")
);
}
|