2016-07-16 05:29:42 +08:00
|
|
|
import ko from 'ko';
|
2014-09-02 08:15:31 +08:00
|
|
|
|
2020-10-15 01:16:37 +08:00
|
|
|
import { delegateRunOnDestroy } from 'Common/UtilsUser';
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2016-07-16 05:29:42 +08:00
|
|
|
import PgpStore from 'Stores/User/Pgp';
|
2017-06-29 00:25:53 +08:00
|
|
|
import SettingsStore from 'Stores/User/Settings';
|
|
|
|
|
2020-09-15 01:40:56 +08:00
|
|
|
import Remote from 'Remote/User/Fetch';
|
2014-10-04 19:58:01 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
import { showScreenPopup } from 'Knoin/Knoin';
|
2016-08-17 06:01:20 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
class OpenPgpUserSettings {
|
2016-07-16 05:29:42 +08:00
|
|
|
constructor() {
|
|
|
|
this.openpgpkeys = PgpStore.openpgpkeys;
|
|
|
|
this.openpgpkeysPublic = PgpStore.openpgpkeysPublic;
|
|
|
|
this.openpgpkeysPrivate = PgpStore.openpgpkeysPrivate;
|
2014-09-02 08:15:31 +08:00
|
|
|
|
2016-07-16 05:29:42 +08:00
|
|
|
this.openPgpKeyForDeletion = ko.observable(null).deleteAccessHelper();
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2017-06-29 00:25:53 +08:00
|
|
|
this.allowDraftAutosave = SettingsStore.allowDraftAutosave;
|
2016-07-16 05:29:42 +08:00
|
|
|
}
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2016-07-16 05:29:42 +08:00
|
|
|
addOpenPgpKey() {
|
|
|
|
showScreenPopup(require('View/Popup/AddOpenPgpKey'));
|
|
|
|
}
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2016-07-16 05:29:42 +08:00
|
|
|
generateOpenPgpKey() {
|
|
|
|
showScreenPopup(require('View/Popup/NewOpenPgpKey'));
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
|
|
|
|
2016-07-16 05:29:42 +08:00
|
|
|
viewOpenPgpKey(openPgpKey) {
|
2019-07-05 03:19:24 +08:00
|
|
|
if (openPgpKey) {
|
2016-07-16 05:29:42 +08:00
|
|
|
showScreenPopup(require('View/Popup/ViewOpenPgpKey'), [openPgpKey]);
|
|
|
|
}
|
|
|
|
}
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2016-07-16 05:29:42 +08:00
|
|
|
/**
|
|
|
|
* @param {OpenPgpKeyModel} openPgpKeyToRemove
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
deleteOpenPgpKey(openPgpKeyToRemove) {
|
2019-07-05 03:19:24 +08:00
|
|
|
if (openPgpKeyToRemove && openPgpKeyToRemove.deleteAccess()) {
|
2016-07-16 05:29:42 +08:00
|
|
|
this.openPgpKeyForDeletion(null);
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
if (openPgpKeyToRemove && PgpStore.openpgpKeyring) {
|
2020-07-22 16:43:19 +08:00
|
|
|
const findedItem = PgpStore.openpgpkeys().find(key => openPgpKeyToRemove === key);
|
2019-07-05 03:19:24 +08:00
|
|
|
if (findedItem) {
|
2016-07-16 05:29:42 +08:00
|
|
|
PgpStore.openpgpkeys.remove(findedItem);
|
|
|
|
delegateRunOnDestroy(findedItem);
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
PgpStore.openpgpKeyring[findedItem.isPrivate ? 'privateKeys' : 'publicKeys'].removeForId(findedItem.guid);
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2016-07-16 05:29:42 +08:00
|
|
|
PgpStore.openpgpKeyring.store();
|
|
|
|
}
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2020-09-15 15:29:25 +08:00
|
|
|
rl.app.reloadOpenPgpKeys();
|
2016-07-16 05:29:42 +08:00
|
|
|
}
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
|
|
|
}
|
2017-06-29 00:25:53 +08:00
|
|
|
|
|
|
|
onBuild() {
|
2020-07-23 02:28:25 +08:00
|
|
|
setTimeout(() => {
|
2020-07-30 03:49:41 +08:00
|
|
|
this.allowDraftAutosave.subscribe(Remote.saveSettingsHelper('AllowDraftAutosave', v=>v?'1':'0'));
|
2020-08-14 04:58:41 +08:00
|
|
|
}, 50);
|
2017-06-29 00:25:53 +08:00
|
|
|
}
|
2016-07-16 05:29:42 +08:00
|
|
|
}
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
export { OpenPgpUserSettings, OpenPgpUserSettings as default };
|