mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 20:49:20 +03:00
* Cleanup OpenPgpImportPopupView code * update polish translation * small fix * Added Import S/MIME certificate popup And much better handling of the sign and encrypt options * bugfix: store in Passphrases * Resolve #1448 * pre-verify S/MIME opaque signed messages so we have a body to view * Fix timestampToString() for future dates * Move php8.php to /app/libraries/polyfill/ * Improved Settings handling to prevent bugs in outer code * Changed AbstractProvider::IsActive() to be abstract * Example for #1449 * bugfix: previous IsActive() commit * OpenSSL required due to S/MIME * Use get_debug_type() instead of gettype() * update polish translation * Make all Enumerations classes abstract * Added search functionality in Admin -> Config And removed the unused ['capa']['quota'] * Cleanup Quota handling * OPEN_PGP should be OPENPGP as it is one word * Improve Capa handling * Resolve #1451 * Bugfix TypeError: b64Encode(...).match(...) is null * Small StorageType change * Bugfix: mailvelope editor failed * Bugfix: undefined getMailvelopePrivateKeyFor() * Bugfix: MIME parser RegExp didn't escape `boundary` which caused issues * Return detailed info on PgpImportKey * Show GnuPG verify error * Sort PGP keys by email and id * Sort S/MIME certificates on emailAddress else validTo * S/MIME import from signature use `BEGIN PKCS7` * Optionally use existing private key to generate S/MIME certificate * Chaned some error_log() to MailSo Logger() * Force reload of S/MIME certificates list on import * Make better use of SnappyMail\SensitiveString * Fix view PGP key button * Mask all POST data that has a key which contains `pass` * v2.35.1 * Resolve #1455 * Improved GnuPG error handling * Update pt/pt-PT translation * update Polish translation * Drop support for gnupg pecl extension as it fails with "no passphrase" issues * Resolve #1456 * Resolve #1458 * v2.35.2 * fix changelog * Resolve #1461 * Update pt/pt-PT translation * compact-composer plugin v1.0.0 * Resolve #1462 * Fix decrypt error message * `new Error()` to `Error()` * Resolve #1463 * Show url for #1466 * Simplify SignMe/Remember me code * Simplify language Notifications * Bugfix: SetPassword expects \SnappyMail\SensitiveString * https://github.com/the-djmaze/snappymail/issues/1450#issuecomment-1972147950 * improve: fire the 'squire2-toolbar' event after more props are added * improve: add dark theme support and use 'button' element as menu trigger for consistent styling * fix: use compact template in non-destructive way (do not replace the PopupsCompose template if a different wysiwyg is used) * Update admin.json * Update user.json * CSS rainloopErrorTip location * Improved error handling on PGP and S/MIME decrypt * KnockoutJS remove unused `beforeRemove` * KnockoutJS drop unused `as` * KnockoutJS simplify renderMode because only 1 option is used * KnoutJS cleanup templating.js a bit * KnockoutJS drop unused `bindingRewriteValidators` * KnockoutJS drop the twoWayBindings code * KnockoutJS simplify virtualElements binding check * KnockoutJS simplify applyBindingsToNodeInternal * KnockoutJS use Array.isArray * KnockoutJS drop alias `textinput` for `textInput` * KnockoutJS scramble `createChildContext` * KnockoutJS scramble `controlsDescendantBindings` * KnockoutJS scramble `exportDependencies` * KnockoutJS drop unused `throttleEvaluation` * KnockoutJS drop unused `valueAllowUnset` * KnockoutJS drop unused `templateNodes` * KnockoutJS drop unused `optionsCaption` * KnockoutJS drop unused `dontLimitMoves` * KnockoutJS drop unused `uniqueName` * KnockoutJS drop IE leftovers * KnockoutJS drop unused `preprocess` * KnockoutJS drop unused "disposeWhenNodeIsRemoved" and "disposeWhen" * KnockoutJS don't scramble exportDependencies. controlsDescendantBindings, createChildContext * KnockoutJS drop unused `$parentContext` and `$parents` * KnockoutJS drop unused `$rawData` * Knockoutjs built latest * KnockoutJS drop unused template options `nodes`, `if`, `ifnot` * KnockoutJS use more Array.isArray * KnockoutJS cleanup code a bit * KnockoutJS primitiveTypes can just be checked with Object() * KnockoutJS rebuilt * Verify S/MIME signed automatically and log Exception * Automatically verify PGP and S/MIME signed messages * `new Error` to `Error` * By default throw AccountNotAllowed as confused in #1478 * GPG use pinentries for decrypt, sign and export * Better GPG error handling * GPG show error on view/export * OpenPGP fix handling of importing keys * Make "verify signatures automatically" optional, as it requires more IMAP fetching * S/MIME don't post identity key and certificate, just fetch from server * Show error to old browsers, instead of crashing * Automatically verify S/MIME decrypted signed message --------- Co-authored-by: the-djmaze <> Co-authored-by: tinola <tinola@poczta.onet.pl> Co-authored-by: Maarten <3752035+the-djmaze@users.noreply.github.com> Co-authored-by: lmperfis <joint.striker@gmail.com> Co-authored-by: Sergey Mosin <sergey@srgdev.com> Co-authored-by: hguilbert <51283484+hguilbert@users.noreply.github.com>
326 lines
9.2 KiB
JavaScript
326 lines
9.2 KiB
JavaScript
/**
|
|
* OpenPGP.js
|
|
*/
|
|
|
|
import ko from 'ko';
|
|
|
|
import { arrayLength } from 'Common/Utils';
|
|
|
|
import Remote from 'Remote/User/Fetch';
|
|
|
|
import { showScreenPopup } from 'Knoin/Knoin';
|
|
import { OpenPgpKeyPopupView } from 'View/Popup/OpenPgpKey';
|
|
|
|
import { Passphrases } from 'Storage/Passphrases';
|
|
|
|
const
|
|
findOpenPGPKey = (keys, query/*, sign*/) =>
|
|
keys.find(key =>
|
|
key.emails.includes(query) || query == key.id || query == key.fingerprint
|
|
),
|
|
|
|
decryptKey = async (privateKey, btnTxt = 'SIGN') => {
|
|
if (privateKey.key.isDecrypted()) {
|
|
return privateKey.key;
|
|
}
|
|
const key = privateKey.id,
|
|
pass = await Passphrases.ask(privateKey,
|
|
'OpenPGP.js key<br>' + key + ' ' + privateKey.emails[0],
|
|
'CRYPTO/'+btnTxt
|
|
);
|
|
if (pass) {
|
|
const passphrase = pass.password,
|
|
result = await openpgp.decryptKey({
|
|
privateKey: privateKey.key,
|
|
passphrase
|
|
});
|
|
result && pass.remember && Passphrases.set(privateKey, passphrase);
|
|
return result;
|
|
}
|
|
},
|
|
|
|
collator = new Intl.Collator(undefined, {sensitivity: 'base'}),
|
|
sort = keys => keys.sort(
|
|
// (a, b) => collator.compare(a.emails[0], b.emails[0]) || collator.compare(a.fingerprint, b.fingerprint)
|
|
(a, b) => collator.compare(a.emails[0], b.emails[0]) || collator.compare(a.id, b.id)
|
|
),
|
|
dedup = keys => sort((keys || [])
|
|
.filter((v, i, a) => a.findIndex(entry => entry.fingerprint == v.fingerprint) === i)
|
|
),
|
|
|
|
/**
|
|
* OpenPGP.js v5 removed the localStorage (keyring)
|
|
* This should be compatible with the old OpenPGP.js v2
|
|
*/
|
|
publicKeysItem = 'openpgp-public-keys',
|
|
privateKeysItem = 'openpgp-private-keys',
|
|
storage = window.localStorage,
|
|
loadOpenPgpKeys = async itemname => {
|
|
let keys = [], key,
|
|
armoredKeys = JSON.parse(storage.getItem(itemname)),
|
|
i = arrayLength(armoredKeys);
|
|
while (i--) {
|
|
key = await openpgp.readKey({armoredKey:armoredKeys[i]});
|
|
key.err || keys.push(new OpenPgpKeyModel(armoredKeys[i], key));
|
|
}
|
|
return keys;
|
|
},
|
|
storeOpenPgpKeys = (keys, section) => {
|
|
let armoredKeys = keys.map(item => item.armor);
|
|
if (armoredKeys.length) {
|
|
storage.setItem(section, JSON.stringify(armoredKeys));
|
|
} else {
|
|
storage.removeItem(section);
|
|
}
|
|
};
|
|
|
|
class OpenPgpKeyModel {
|
|
constructor(armor, key) {
|
|
this.key = key;
|
|
this.id = key.getKeyID().toHex().toUpperCase();
|
|
this.fingerprint = key.getFingerprint();
|
|
this.can_encrypt = !!key.getEncryptionKey();
|
|
this.can_sign = !!key.getSigningKey();
|
|
this.emails = key.users.map(user => user.userID.email).filter(email => email);
|
|
this.armor = armor;
|
|
this.askDelete = ko.observable(false);
|
|
this.openForDeletion = ko.observable(null).askDeleteHelper();
|
|
// key.getUserIDs()
|
|
// key.getPrimaryUser()
|
|
}
|
|
|
|
/*
|
|
get id() { return this.key.getKeyID().toHex().toUpperCase(); }
|
|
get fingerprint() { return this.key.getFingerprint(); }
|
|
get can_encrypt() { return !!this.key.getEncryptionKey(); }
|
|
get can_sign() { return !!this.key.getSigningKey(); }
|
|
get emails() { return this.key.users.map(user => user.userID.email).filter(email => email); }
|
|
get armor() { return this.key.armor(); }
|
|
*/
|
|
|
|
view() {
|
|
showScreenPopup(OpenPgpKeyPopupView, [this]);
|
|
}
|
|
|
|
remove() {
|
|
if (this.askDelete()) {
|
|
if (this.key.isPrivate()) {
|
|
OpenPGPUserStore.privateKeys.remove(this);
|
|
storeOpenPgpKeys(OpenPGPUserStore.privateKeys, privateKeysItem);
|
|
} else {
|
|
OpenPGPUserStore.publicKeys.remove(this);
|
|
storeOpenPgpKeys(OpenPGPUserStore.publicKeys, publicKeysItem);
|
|
}
|
|
}
|
|
}
|
|
/*
|
|
toJSON() {
|
|
return this.armor;
|
|
}
|
|
*/
|
|
}
|
|
|
|
export const OpenPGPUserStore = new class {
|
|
constructor() {
|
|
this.publicKeys = ko.observableArray();
|
|
this.privateKeys = ko.observableArray();
|
|
}
|
|
|
|
loadKeyrings() {
|
|
if (window.openpgp) {
|
|
loadOpenPgpKeys(publicKeysItem).then(keys => {
|
|
this.publicKeys(dedup(keys));
|
|
console.log('openpgp.js public keys loaded');
|
|
});
|
|
loadOpenPgpKeys(privateKeysItem).then(keys => {
|
|
this.privateKeys(dedup(keys));
|
|
console.log('openpgp.js private keys loaded');
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @returns {boolean}
|
|
*/
|
|
isSupported() {
|
|
return !!window.openpgp;
|
|
}
|
|
|
|
importKey(armoredKey) {
|
|
this.importKeys([armoredKey]);
|
|
}
|
|
|
|
async importKeys(keys) {
|
|
if (window.openpgp) {
|
|
const privateKeys = this.privateKeys(),
|
|
publicKeys = this.publicKeys();
|
|
for (const armoredKey of keys) try {
|
|
let key = await openpgp.readKey({armoredKey:armoredKey});
|
|
if (!key.err) {
|
|
key = new OpenPgpKeyModel(armoredKey, key);
|
|
const keys = key.key.isPrivate() ? privateKeys : publicKeys;
|
|
keys.find(entry => entry.fingerprint == key.fingerprint)
|
|
|| keys.push(key);
|
|
}
|
|
} catch (e) {
|
|
console.error(e, armoredKey);
|
|
}
|
|
this.privateKeys(sort(privateKeys));
|
|
this.publicKeys(sort(publicKeys));
|
|
storeOpenPgpKeys(privateKeys, privateKeysItem);
|
|
storeOpenPgpKeys(publicKeys, publicKeysItem);
|
|
}
|
|
}
|
|
|
|
/**
|
|
keyPair.privateKey
|
|
keyPair.publicKey
|
|
keyPair.revocationCertificate
|
|
*/
|
|
storeKeyPair(keyPair) {
|
|
if (window.openpgp) {
|
|
openpgp.readKey({armoredKey:keyPair.publicKey}).then(key => {
|
|
this.publicKeys.push(new OpenPgpKeyModel(keyPair.publicKey, key));
|
|
storeOpenPgpKeys(this.publicKeys, publicKeysItem);
|
|
});
|
|
openpgp.readKey({armoredKey:keyPair.privateKey}).then(key => {
|
|
this.privateKeys.push(new OpenPgpKeyModel(keyPair.privateKey, key));
|
|
storeOpenPgpKeys(this.privateKeys, privateKeysItem);
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks if verifying/encrypting a message is possible with given email addresses.
|
|
*/
|
|
hasPublicKeyForEmails(recipients) {
|
|
const count = recipients.length,
|
|
length = count ? recipients.filter(email =>
|
|
this.publicKeys().find(key => key.emails.includes(email))
|
|
).length : 0;
|
|
return length && length === count;
|
|
}
|
|
|
|
getPrivateKeyFor(query/*, sign*/) {
|
|
return findOpenPGPKey(this.privateKeys, query/*, sign*/);
|
|
}
|
|
|
|
/**
|
|
* https://docs.openpgpjs.org/#encrypt-and-decrypt-string-data-with-pgp-keys
|
|
*/
|
|
async decrypt(armoredText, sender)
|
|
{
|
|
const message = await openpgp.readMessage({ armoredMessage: armoredText }),
|
|
privateKeys = this.privateKeys(),
|
|
msgEncryptionKeyIDs = message.getEncryptionKeyIDs().map(key => key.bytes);
|
|
// Find private key that can decrypt message
|
|
let i = privateKeys.length, privateKey;
|
|
while (i--) {
|
|
if ((await privateKeys[i].key.getDecryptionKeys()).find(
|
|
key => msgEncryptionKeyIDs.includes(key.getKeyID().bytes)
|
|
)) {
|
|
privateKey = privateKeys[i];
|
|
break;
|
|
}
|
|
}
|
|
if (privateKey) try {
|
|
const decryptedKey = await decryptKey(privateKey, 'DECRYPT');
|
|
if (decryptedKey) {
|
|
const publicKey = findOpenPGPKey(this.publicKeys, sender/*, sign*/);
|
|
return await openpgp.decrypt({
|
|
message,
|
|
verificationKeys: publicKey?.key,
|
|
// expectSigned: true,
|
|
// signature: '', // Detached signature
|
|
decryptionKeys: decryptedKey
|
|
});
|
|
}
|
|
} catch (err) {
|
|
alert(err);
|
|
console.error(err);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* https://docs.openpgpjs.org/#sign-and-verify-cleartext-messages
|
|
*/
|
|
async verify(message) {
|
|
const data = message.pgpSigned(), // { partId: "1", sigPartId: "2", micAlg: "pgp-sha256" }
|
|
publicKey = this.publicKeys().find(key => key.emails.includes(message.from[0].email));
|
|
if (data && publicKey) {
|
|
data.folder = message.folder;
|
|
data.uid = message.uid;
|
|
data.tryGnuPG = 0;
|
|
let response;
|
|
if (data.sigPartId) {
|
|
response = await Remote.post('PgpVerifyMessage', null, data);
|
|
} else if (data.bodyPart) {
|
|
// MimePart
|
|
response = { Result: { text: data.bodyPart.raw, signature: data.sigPart.body } };
|
|
} else {
|
|
response = { Result: { text: message.plain(), signature: null } };
|
|
}
|
|
if (response) {
|
|
const signature = response.Result.signature
|
|
? await openpgp.readSignature({ armoredSignature: response.Result.signature })
|
|
: null;
|
|
const signedMessage = signature
|
|
? await openpgp.createMessage({ text: response.Result.text })
|
|
: await openpgp.readCleartextMessage({ cleartextMessage: response.Result.text });
|
|
// (signature||signedMessage).getSigningKeyIDs();
|
|
let result = await openpgp.verify({
|
|
message: signedMessage,
|
|
verificationKeys: publicKey.key,
|
|
// expectSigned: true, // !!detachedSignature
|
|
signature: signature
|
|
});
|
|
return {
|
|
fingerprint: publicKey.fingerprint,
|
|
success: result && !!result.signatures.length
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* https://docs.openpgpjs.org/global.html#sign
|
|
*/
|
|
async sign(text, privateKey, detached) {
|
|
const signingKey = await decryptKey(privateKey);
|
|
if (signingKey) {
|
|
const message = detached
|
|
? await openpgp.createMessage({ text: text })
|
|
: await openpgp.createCleartextMessage({ text: text });
|
|
return await openpgp.sign({
|
|
message: message,
|
|
signingKeys: signingKey,
|
|
detached: !!detached
|
|
});
|
|
}
|
|
throw 'Sign cancelled';
|
|
}
|
|
|
|
/**
|
|
* https://docs.openpgpjs.org/global.html#encrypt
|
|
*/
|
|
async encrypt(text, recipients, signPrivateKey) {
|
|
const count = recipients.length;
|
|
recipients = recipients.map(email => this.publicKeys().find(key => key.emails.includes(email))).filter(key => key);
|
|
if (count === recipients.length) {
|
|
if (signPrivateKey) {
|
|
signPrivateKey = await decryptKey(signPrivateKey);
|
|
if (!signPrivateKey) {
|
|
return;
|
|
}
|
|
}
|
|
return await openpgp.encrypt({
|
|
message: await openpgp.createMessage({ text: text }),
|
|
encryptionKeys: recipients.map(pkey => pkey.key),
|
|
signingKeys: signPrivateKey
|
|
// signature
|
|
});
|
|
}
|
|
throw 'Encrypt failed';
|
|
}
|
|
|
|
};
|