snappymail/dev/View/Popup/AddOpenPgpKey.js

97 lines
2 KiB
JavaScript
Raw Normal View History

import { PgpUserStore } from 'Stores/User/Pgp';
2014-08-21 23:08:34 +08:00
import { decorateKoCommands } from 'Knoin/Knoin';
import { AbstractViewPopup } from 'Knoin/AbstractViews';
class AddOpenPgpKeyPopupView extends AbstractViewPopup {
constructor() {
super('AddOpenPgpKey');
2014-08-21 23:08:34 +08:00
this.addObservables({
key: '',
keyError: false,
keyErrorMessage: ''
});
2014-08-25 15:10:51 +08:00
this.key.subscribe(() => {
this.keyError(false);
this.keyErrorMessage('');
});
decorateKoCommands(this, {
addOpenPgpKeyCommand: 1
});
2016-09-10 06:38:16 +08:00
}
2016-06-30 08:02:45 +08:00
2016-09-10 06:38:16 +08:00
addOpenPgpKeyCommand() {
2019-07-05 03:19:24 +08:00
// 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,
openpgpKeyring = PgpUserStore.openpgpKeyring;
2016-06-30 08:02:45 +08:00
let keyTrimmed = this.key().trim();
2016-06-30 08:02:45 +08:00
2019-07-05 03:19:24 +08:00
if (/[\n]/.test(keyTrimmed)) {
2016-09-10 06:38:16 +08:00
keyTrimmed = keyTrimmed.replace(/[\r]+/g, '').replace(/[\n]{2,}/g, '\n\n');
}
2016-06-30 08:02:45 +08:00
this.keyError(!keyTrimmed);
this.keyErrorMessage('');
2016-06-30 08:02:45 +08:00
if (!openpgpKeyring || this.keyError()) {
2016-09-10 06:38:16 +08:00
return false;
}
2019-07-05 03:19:24 +08:00
let match = null,
2016-09-10 06:38:16 +08:00
count = 30,
done = false;
2016-08-10 03:52:30 +08:00
2019-07-05 03:19:24 +08:00
do {
2016-09-10 06:38:16 +08:00
match = reg.exec(keyTrimmed);
2019-07-05 03:19:24 +08:00
if (match && 0 < count) {
if (match[0] && match[1] && match[2] && match[1] === match[2]) {
2016-09-10 06:38:16 +08:00
let err = null;
2019-07-05 03:19:24 +08:00
if ('PRIVATE' === match[1]) {
2016-09-10 06:38:16 +08:00
err = openpgpKeyring.privateKeys.importKey(match[0]);
2019-07-05 03:19:24 +08:00
} else if ('PUBLIC' === match[1]) {
2016-09-10 06:38:16 +08:00
err = openpgpKeyring.publicKeys.importKey(match[0]);
2016-06-30 08:02:45 +08:00
}
2014-08-21 23:08:34 +08:00
2019-07-05 03:19:24 +08:00
if (err) {
this.keyError(true);
this.keyErrorMessage(err && err[0] ? '' + err[0] : '');
console.log(err);
2016-09-10 06:38:16 +08:00
}
}
2016-09-10 06:38:16 +08:00
--count;
2016-09-10 06:38:16 +08:00
done = false;
2019-07-05 03:19:24 +08:00
} else {
2016-09-10 06:38:16 +08:00
done = true;
}
2019-07-05 03:19:24 +08:00
} while (!done);
2016-09-10 06:38:16 +08:00
openpgpKeyring.store();
2014-07-12 02:57:22 +08:00
2020-09-15 15:29:25 +08:00
rl.app.reloadOpenPgpKeys();
if (this.keyError()) {
2016-09-10 06:38:16 +08:00
return false;
}
2016-06-30 08:02:45 +08:00
this.cancelCommand();
2016-09-10 06:38:16 +08:00
return true;
}
clearPopup() {
this.key('');
this.keyError(false);
this.keyErrorMessage('');
}
onShow() {
this.clearPopup();
}
}
2019-07-05 03:19:24 +08:00
export { AddOpenPgpKeyPopupView, AddOpenPgpKeyPopupView as default };