snappymail/dev/Settings/User/OpenPgp.js

67 lines
1.9 KiB
JavaScript
Raw Normal View History

2016-07-16 05:29:42 +08:00
import ko from 'ko';
import { delegateRunOnDestroy } from 'Common/UtilsUser';
2014-08-21 23:08:34 +08:00
import { PgpUserStore } from 'Stores/User/Pgp';
import { SettingsUserStore } from 'Stores/User/Settings';
2017-06-29 00:25:53 +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';
import { AddOpenPgpKeyPopupView } from 'View/Popup/AddOpenPgpKey';
import { NewOpenPgpKeyPopupView } from 'View/Popup/NewOpenPgpKey';
import { ViewOpenPgpKeyPopupView } from 'View/Popup/ViewOpenPgpKey';
export class OpenPgpUserSettings /*extends AbstractViewSettings*/ {
2016-07-16 05:29:42 +08:00
constructor() {
this.openpgpkeys = PgpUserStore.openpgpkeys;
this.openpgpkeysPublic = PgpUserStore.openpgpkeysPublic;
this.openpgpkeysPrivate = PgpUserStore.openpgpkeysPrivate;
2016-07-16 05:29:42 +08:00
this.openPgpKeyForDeletion = ko.observable(null).deleteAccessHelper();
2014-08-21 23:08:34 +08:00
this.allowDraftAutosave = SettingsUserStore.allowDraftAutosave;
2021-03-18 23:12:24 +08:00
this.allowDraftAutosave.subscribe(value => Remote.saveSetting('AllowDraftAutosave', value ? 1 : 0))
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(AddOpenPgpKeyPopupView);
2016-07-16 05:29:42 +08:00
}
2014-08-21 23:08:34 +08:00
2016-07-16 05:29:42 +08:00
generateOpenPgpKey() {
showScreenPopup(NewOpenPgpKeyPopupView);
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) {
showScreenPopup(ViewOpenPgpKeyPopupView, [openPgpKey]);
2016-07-16 05:29:42 +08:00
}
}
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
if (openPgpKeyToRemove && PgpUserStore.openpgpKeyring) {
const findedItem = PgpUserStore.openpgpkeys.find(key => openPgpKeyToRemove === key);
2019-07-05 03:19:24 +08:00
if (findedItem) {
PgpUserStore.openpgpkeys.remove(findedItem);
2016-07-16 05:29:42 +08:00
delegateRunOnDestroy(findedItem);
2014-08-21 23:08:34 +08:00
PgpUserStore.openpgpKeyring[findedItem.isPrivate ? 'privateKeys' : 'publicKeys'].removeForId(findedItem.guid);
2014-08-21 23:08:34 +08:00
PgpUserStore.openpgpKeyring.store();
2016-07-16 05:29:42 +08:00
}
2014-08-21 23:08:34 +08:00
PgpUserStore.reloadOpenPgpKeys();
2016-07-16 05:29:42 +08:00
}
2016-06-30 08:02:45 +08:00
}
}
2016-07-16 05:29:42 +08:00
}