Moved keys functionality into options now, except for the encryption code, which will stay in the background script.

This commit is contained in:
Ryan Breen
2023-01-27 22:04:40 -05:00
parent 6171b9395c
commit f0c5cd29dc
3 changed files with 99 additions and 92 deletions

View File

@@ -35,19 +35,8 @@ browser.runtime.onMessage.addListener(
message.payload.msg
);
break;
case 'init':
await initialize();
break;
case 'setProfileIndex':
await setProfileIndex(message.payload);
break;
case 'getProfileIndex':
let profileIndex = await getProfileIndex();
sendResponse(profileIndex);
break;
case 'getProfileNames':
let profileNames = await getProfileNames();
sendResponse(profileNames);
case 'generatePrivateKey':
sendResponse(generatePrivateKey());
break;
// Options page
@@ -122,28 +111,6 @@ browser.runtime.onMessage.addListener(
}
);
// General
async function initialize() {
await getOrSetDefault('profileIndex', 0);
await getOrSetDefault('profiles', [
{
name: 'Default',
privKey: generatePrivateKey(),
hosts: [],
relays: [],
},
]);
}
async function setProfileIndex(profileIndex) {
await storage.set({ profileIndex });
}
async function getProfileIndex() {
return await get('profileIndex');
}
// Options
async function clearData() {
let ignoreInstallHook = await storage.get({ ignoreInstallHook: false });
@@ -190,11 +157,6 @@ async function getPubKey() {
return pubKey;
}
async function getProfileNames() {
let profiles = await get('profiles');
return profiles.map(p => p.name);
}
async function currentProfile() {
let index = await getProfileIndex();
let profiles = await get('profiles');
@@ -216,22 +178,6 @@ async function newProfile() {
return profiles.length - 1;
}
async function deleteProfile(index) {
let profiles = await get('profiles');
profiles.splice(index, 1);
if (profiles.length == 0) {
await clearData(); // If we have deleted all of the profiles, let's just start fresh with all new data
await initialize();
} else {
// If the index deleted was the active profile, change the active profile to the next one
let profileIndex =
this.profileIndex === index
? Math.max(index - 1, 0)
: this.profileIndex;
await storage.set({ profiles, profileIndex });
}
}
async function signEvent_(event) {
event = { ...event };
let privKey = await getPrivKey();
@@ -284,16 +230,6 @@ async function get(item) {
return (await storage.get(item))[item];
}
async function getOrSetDefault(key, def) {
let val = (await storage.get(key))[key];
if (val == null || val == undefined) {
await storage.set({ [key]: def });
return def;
}
return val;
}
async function getProfile(index) {
let profiles = await get('profiles');
return profiles[index];