mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 05:59:21 +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>
234 lines
6.1 KiB
JavaScript
234 lines
6.1 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import { SettingsCapa } from 'Common/Globals';
|
|
|
|
//import { EmailModel } from 'Model/Email';
|
|
//import { OpenPgpKeyModel } from 'Model/OpenPgpKey';
|
|
|
|
import Remote from 'Remote/User/Fetch';
|
|
|
|
import { showScreenPopup } from 'Knoin/Knoin';
|
|
import { OpenPgpKeyPopupView } from 'View/Popup/OpenPgpKey';
|
|
|
|
import { Passphrases } from 'Storage/Passphrases';
|
|
|
|
const
|
|
findGnuPGKey = (keys, query/*, sign*/) =>
|
|
keys.find(key =>
|
|
// key[sign ? 'can_sign' : 'can_decrypt']
|
|
(key.can_sign || key.can_decrypt)
|
|
&& (key.emails.includes(query) || key.subkeys.find(key => query == key.keyid || query == key.fingerprint))
|
|
);
|
|
|
|
export const GnuPGUserStore = new class {
|
|
constructor() {
|
|
/**
|
|
* PECL gnupg / PEAR Crypt_GPG
|
|
* [ {email, can_encrypt, can_sign}, ... ]
|
|
*/
|
|
this.keyring;
|
|
this.publicKeys = ko.observableArray();
|
|
this.privateKeys = ko.observableArray();
|
|
}
|
|
|
|
loadKeyrings() {
|
|
this.keyring = null;
|
|
this.publicKeys([]);
|
|
this.privateKeys([]);
|
|
SettingsCapa('GnuPG')
|
|
&& Remote.request('GnupgGetKeys',
|
|
(iError, oData) => {
|
|
if (oData?.Result) {
|
|
this.keyring = oData.Result;
|
|
const initKey = (key, isPrivate) => {
|
|
const aEmails = [];
|
|
key.id = key.subkeys[0].keyid;
|
|
key.fingerprint = key.subkeys[0].fingerprint;
|
|
key.uids.forEach(uid => uid.email && aEmails.push(uid.email));
|
|
key.emails = aEmails;
|
|
key.askDelete = ko.observable(false);
|
|
key.openForDeletion = ko.observable(null).askDeleteHelper();
|
|
key.remove = () => {
|
|
if (key.askDelete()) {
|
|
Remote.request('GnupgDeleteKey',
|
|
(iError, oData) => {
|
|
if (oData) {
|
|
if (iError) {
|
|
alert(oData.ErrorMessage);
|
|
} else if (oData.Result) {
|
|
isPrivate
|
|
? this.privateKeys.remove(key)
|
|
: this.publicKeys.remove(key);
|
|
}
|
|
}
|
|
}, {
|
|
keyId: key.id,
|
|
isPrivate: isPrivate
|
|
}
|
|
);
|
|
}
|
|
};
|
|
if (isPrivate) {
|
|
key.password = async btnTxt => {
|
|
const pass = await Passphrases.ask(key,
|
|
'GnuPG key<br>' + key.id + ' ' + key.emails[0],
|
|
btnTxt
|
|
);
|
|
pass && pass.remember && Passphrases.set(key, pass.password);
|
|
return pass?.password;
|
|
};
|
|
}
|
|
key.fetch = async callback => {
|
|
if (key.armor) {
|
|
callback && callback();
|
|
} else {
|
|
let pass = isPrivate ? await key.password('OPENPGP/POPUP_VIEW_TITLE') : '';
|
|
if (null != pass) try {
|
|
const result = await Remote.post('GnupgExportKey', null, {
|
|
keyId: key.id,
|
|
isPrivate: isPrivate,
|
|
passphrase: pass
|
|
});
|
|
if (result?.Result) {
|
|
key.armor = result.Result;
|
|
callback && callback();
|
|
} else {
|
|
Passphrases.delete(key);
|
|
}
|
|
} catch (e) {
|
|
Passphrases.delete(key);
|
|
alert(e.message);
|
|
}
|
|
}
|
|
return key.armor;
|
|
};
|
|
key.view = () => key.fetch(() => showScreenPopup(OpenPgpKeyPopupView, [key]));
|
|
return key;
|
|
},
|
|
collator = new Intl.Collator(undefined, {sensitivity: 'base'}),
|
|
sort = keys => keys.sort(
|
|
(a, b) => collator.compare(a.emails[0], b.emails[0]) || collator.compare(a.id, b.id)
|
|
);
|
|
this.publicKeys(sort(oData.Result.public.map(key => initKey(key, 0))));
|
|
this.privateKeys(sort(oData.Result.private.map(key => initKey(key, 1))));
|
|
console.log('gnupg ready');
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @returns {boolean}
|
|
*/
|
|
isSupported() {
|
|
return SettingsCapa('GnuPG');
|
|
}
|
|
|
|
/**
|
|
keyPair.privateKey
|
|
keyPair.publicKey
|
|
keyPair.revocationCertificate
|
|
keyPair.onServer
|
|
keyPair.inGnuPG
|
|
*/
|
|
storeKeyPair(keyPair, callback) {
|
|
Remote.request('PgpStoreKeyPair',
|
|
(iError, oData) => {
|
|
if (oData?.Result) {
|
|
// this.gnupgKeyring = oData.Result;
|
|
}
|
|
callback?.(iError, oData);
|
|
}, keyPair
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Checks if verifying/encrypting a message is possible with given email addresses.
|
|
*/
|
|
hasPublicKeyForEmails(recipients) {
|
|
const count = recipients.length,
|
|
length = count ? recipients.filter(email =>
|
|
// (key.can_verify || key.can_encrypt) &&
|
|
this.publicKeys.find(key => key.emails.includes(email))
|
|
).length : 0;
|
|
return length && length === count;
|
|
}
|
|
|
|
getPublicKeyFingerprints(recipients) {
|
|
const fingerprints = [];
|
|
recipients.forEach(email => {
|
|
fingerprints.push(this.publicKeys.find(key => key.emails.includes(email)).fingerprint);
|
|
});
|
|
return fingerprints;
|
|
}
|
|
|
|
getPrivateKeyFor(query, sign) {
|
|
return findGnuPGKey(this.privateKeys, query, sign);
|
|
}
|
|
|
|
async decrypt(message) {
|
|
const
|
|
pgpInfo = message.pgpEncrypted();
|
|
if (pgpInfo) {
|
|
let ids = [message.to[0].email].concat(pgpInfo.keyIds),
|
|
i = ids.length, key;
|
|
while (i--) {
|
|
key = findGnuPGKey(this.privateKeys, ids[i]);
|
|
if (key) {
|
|
break;
|
|
}
|
|
}
|
|
if (key) {
|
|
// Also check message.from[0].email
|
|
let params = {
|
|
folder: message.folder,
|
|
uid: message.uid,
|
|
partId: pgpInfo.partId,
|
|
keyId: key.id,
|
|
passphrase: await key.password('CRYPTO/DECRYPT'),
|
|
data: '' // message.plain() optional
|
|
}
|
|
if (null != params.passphrase) {
|
|
try {
|
|
const response = await Remote.post('GnupgDecrypt', null, params);
|
|
if (response?.Result?.data) {
|
|
return response.Result;
|
|
}
|
|
throw response;
|
|
} catch (e) {
|
|
Passphrases.delete(key);
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
async verify(message) {
|
|
let data = message.pgpSigned(); // { partId: "1", sigPartId: "2", micAlg: "pgp-sha256" }
|
|
if (data) {
|
|
data = { ...data }; // clone
|
|
// const sender = message.from[0].email;
|
|
// let mode = await this.hasPublicKeyForEmails([sender]);
|
|
data.folder = message.folder;
|
|
data.uid = message.uid;
|
|
if (data.bodyPart) {
|
|
data.bodyPart = data.bodyPart.raw;
|
|
data.sigPart = data.sigPart.body;
|
|
}
|
|
let response = await Remote.post('PgpVerifyMessage', null, data);
|
|
if (response?.Result) {
|
|
return {
|
|
fingerprint: response.Result.fingerprint,
|
|
success: 0 == response.Result.status, // GOODSIG
|
|
error: response.Result.message
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
async sign(privateKey) {
|
|
return await privateKey.password('CRYPTO/SIGN');
|
|
}
|
|
|
|
};
|