desktop: expose electron's safeStorage api via trpc

This commit is contained in:
Abdullah Atta
2024-02-07 13:27:17 +05:00
parent 63ab54cc42
commit 3df8cc53e3
2 changed files with 41 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ import { osIntegrationRouter } from "./os-integration";
import { spellCheckerRouter } from "./spell-checker"; import { spellCheckerRouter } from "./spell-checker";
import { updaterRouter } from "./updater"; import { updaterRouter } from "./updater";
import { bridgeRouter } from "./bridge"; import { bridgeRouter } from "./bridge";
import { safeStorageRouter } from "./safe-storage";
const t = initTRPC.create(); const t = initTRPC.create();
@@ -31,7 +32,8 @@ export const router = t.router({
integration: osIntegrationRouter, integration: osIntegrationRouter,
spellChecker: spellCheckerRouter, spellChecker: spellCheckerRouter,
updater: updaterRouter, updater: updaterRouter,
bridge: bridgeRouter bridge: bridgeRouter,
safeStorage: safeStorageRouter
}); });
export const api = router.createCaller({}); export const api = router.createCaller({});

View File

@@ -0,0 +1,38 @@
/*
This file is part of the Notesnook project (https://notesnook.com/)
Copyright (C) 2023 Streetwriters (Private) Limited
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import { safeStorage } from "electron";
import { initTRPC } from "@trpc/server";
import { z } from "zod";
const t = initTRPC.create();
export const safeStorageRouter = t.router({
/**
* Takes a string and returns an encrypted base64 string
*/
encryptString: t.procedure.input(z.string()).query(async ({ input }) => {
return safeStorage.encryptString(input).toString("base64");
}),
/**
* Takes an encrypted base64 string and returns a string
*/
decryptString: t.procedure.input(z.string()).query(async ({ input }) => {
return safeStorage.decryptString(Buffer.from(input, "base64"));
})
});