mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-21 18:13:55 +00:00
19 lines
561 B
TypeScript
19 lines
561 B
TypeScript
import jwt from "jsonwebtoken";
|
|
import * as Sentry from "@sentry/electron/main";
|
|
|
|
import { userAuthRepository } from "@main/repository";
|
|
import { registerEvent } from "../register-event";
|
|
|
|
const getSessionHash = async (_event: Electron.IpcMainInvokeEvent) => {
|
|
const auth = await userAuthRepository.findOne({ where: { id: 1 } });
|
|
|
|
if (!auth) return null;
|
|
const payload = jwt.decode(auth.accessToken) as jwt.JwtPayload;
|
|
|
|
Sentry.setContext("sessionId", payload.sessionId);
|
|
|
|
return payload.sessionId;
|
|
};
|
|
|
|
registerEvent("getSessionHash", getSessionHash);
|