mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-24 07:38:12 +08:00
107 lines
2.3 KiB
JavaScript
107 lines
2.3 KiB
JavaScript
import { PgpUserStore } from 'Stores/User/Pgp';
|
|
|
|
import { decorateKoCommands } from 'Knoin/Knoin';
|
|
import { AbstractViewPopup } from 'Knoin/AbstractViews';
|
|
|
|
import { Capa } from 'Common/Enums';
|
|
import { Settings } from 'Common/Globals';
|
|
|
|
class AddOpenPgpKeyPopupView extends AbstractViewPopup {
|
|
constructor() {
|
|
super('AddOpenPgpKey');
|
|
|
|
this.addObservables({
|
|
key: '',
|
|
keyError: false,
|
|
keyErrorMessage: '',
|
|
|
|
saveGnuPG: true,
|
|
saveOpenPGP: true
|
|
});
|
|
|
|
this.canGnuPG = Settings.capa(Capa.GnuPG);
|
|
this.canOpenPGP = Settings.capa(Capa.OpenPGP);
|
|
|
|
this.key.subscribe(() => {
|
|
this.keyError(false);
|
|
this.keyErrorMessage('');
|
|
});
|
|
|
|
decorateKoCommands(this, {
|
|
addOpenPgpKeyCommand: 1
|
|
});
|
|
}
|
|
|
|
addOpenPgpKeyCommand() {
|
|
let keyTrimmed = this.key().trim();
|
|
|
|
if (/\n/.test(keyTrimmed)) {
|
|
keyTrimmed = keyTrimmed.replace(/\r+/g, '').replace(/\n{2,}/g, '\n\n');
|
|
}
|
|
|
|
this.keyError(!keyTrimmed);
|
|
this.keyErrorMessage('');
|
|
|
|
if (!keyTrimmed) {
|
|
return false;
|
|
}
|
|
|
|
let match = null,
|
|
count = 30,
|
|
done = false;
|
|
// eslint-disable-next-line max-len
|
|
const reg = /[-]{3,6}BEGIN[\s]PGP[\s](PRIVATE|PUBLIC)[\s]KEY[\s]BLOCK[-]{3,6}[\s\S]+?[-]{3,6}END[\s]PGP[\s](PRIVATE|PUBLIC)[\s]KEY[\s]BLOCK[-]{3,6}/gi,
|
|
keyring = PgpUserStore.openpgpKeyring;
|
|
|
|
do {
|
|
match = reg.exec(keyTrimmed);
|
|
if (match && 0 < count) {
|
|
if (match[0] && match[1] && match[2] && match[1] === match[2]) {
|
|
let err = null;
|
|
if (this.saveGnuPG()) {
|
|
PgpUserStore.gnupgImportKey(this.key());
|
|
}
|
|
if (this.canOpenPGP && this.saveOpenPGP()) {
|
|
if ('PRIVATE' === match[1]) {
|
|
err = keyring.privateKeys.importKey(match[0]);
|
|
} else if ('PUBLIC' === match[1]) {
|
|
err = keyring.publicKeys.importKey(match[0]);
|
|
}
|
|
}
|
|
|
|
if (err) {
|
|
this.keyError(true);
|
|
this.keyErrorMessage(err && err[0] ? '' + err[0] : '');
|
|
console.log(err);
|
|
}
|
|
}
|
|
|
|
--count;
|
|
done = false;
|
|
} else {
|
|
done = true;
|
|
}
|
|
} while (!done);
|
|
|
|
if (this.canOpenPGP && this.saveOpenPGP()) {
|
|
keyring.store();
|
|
}
|
|
|
|
// PgpUserStore.reloadOpenPgpKeys();
|
|
|
|
if (this.keyError()) {
|
|
return false;
|
|
}
|
|
|
|
this.cancelCommand();
|
|
return true;
|
|
}
|
|
|
|
onShow() {
|
|
this.key('');
|
|
this.keyError(false);
|
|
this.keyErrorMessage('');
|
|
}
|
|
}
|
|
|
|
export { AddOpenPgpKeyPopupView, AddOpenPgpKeyPopupView as default };
|