2021-03-11 05:41:35 +08:00
|
|
|
import { PgpUserStore } from 'Stores/User/Pgp';
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2021-02-19 19:09:20 +08:00
|
|
|
import { decorateKoCommands } from 'Knoin/Knoin';
|
2021-01-24 17:25:23 +08:00
|
|
|
import { AbstractViewPopup } from 'Knoin/AbstractViews';
|
|
|
|
|
|
|
|
class AddOpenPgpKeyPopupView extends AbstractViewPopup {
|
2016-08-17 06:01:20 +08:00
|
|
|
constructor() {
|
2021-01-24 17:25:23 +08:00
|
|
|
super('AddOpenPgpKey');
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2020-10-26 19:54:03 +08:00
|
|
|
this.addObservables({
|
|
|
|
key: '',
|
|
|
|
keyError: false,
|
|
|
|
keyErrorMessage: ''
|
|
|
|
});
|
2014-08-25 15:10:51 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
this.key.subscribe(() => {
|
2020-10-26 19:54:03 +08:00
|
|
|
this.keyError(false);
|
|
|
|
this.keyErrorMessage('');
|
2016-08-17 06:01:20 +08:00
|
|
|
});
|
2021-02-19 19:09:20 +08:00
|
|
|
|
|
|
|
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,
|
2021-03-11 05:41:35 +08:00
|
|
|
openpgpKeyring = PgpUserStore.openpgpKeyring;
|
2016-06-30 08:02:45 +08:00
|
|
|
|
2020-08-07 00:24:46 +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
|
|
|
|
2020-10-26 19:54:03 +08:00
|
|
|
this.keyError(!keyTrimmed);
|
|
|
|
this.keyErrorMessage('');
|
2016-06-30 08:02:45 +08:00
|
|
|
|
2020-10-26 19:54:03 +08:00
|
|
|
if (!openpgpKeyring || this.keyError()) {
|
2016-09-10 06:38:16 +08:00
|
|
|
return false;
|
|
|
|
}
|
2016-08-17 06:01:20 +08:00
|
|
|
|
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) {
|
2020-10-26 19:54:03 +08:00
|
|
|
this.keyError(true);
|
|
|
|
this.keyErrorMessage(err && err[0] ? '' + err[0] : '');
|
2020-08-12 06:25:36 +08:00
|
|
|
console.log(err);
|
2016-09-10 06:38:16 +08:00
|
|
|
}
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2016-09-10 06:38:16 +08:00
|
|
|
|
2020-09-20 17:29:31 +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);
|
2014-03-13 06:29:33 +08:00
|
|
|
|
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();
|
2014-03-13 06:29:33 +08:00
|
|
|
|
2020-10-26 19:54:03 +08:00
|
|
|
if (this.keyError()) {
|
2016-09-10 06:38:16 +08:00
|
|
|
return false;
|
|
|
|
}
|
2016-06-30 08:02:45 +08:00
|
|
|
|
2021-07-16 15:11:10 +08:00
|
|
|
this.cancelCommand();
|
2016-09-10 06:38:16 +08:00
|
|
|
return true;
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2014-03-13 06:29:33 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
clearPopup() {
|
|
|
|
this.key('');
|
2020-10-26 19:54:03 +08:00
|
|
|
this.keyError(false);
|
|
|
|
this.keyErrorMessage('');
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2014-03-13 06:29:33 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
onShow() {
|
|
|
|
this.clearPopup();
|
|
|
|
}
|
|
|
|
}
|
2014-03-13 06:29:33 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
export { AddOpenPgpKeyPopupView, AddOpenPgpKeyPopupView as default };
|