mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-16 00:04:34 +00:00
* Update versions in package.json * Rebuild package-lock.json fix * Update electron-log usage * Change necessary logic to get the newest version of the package working * Wrap up `init()` logic in a way that has parity with Bitwarden Desktop Updates for electron-log fix * Update notarize script to match the latest @electron/notarize version Update notarize step to look more like clients
157 lines
4.9 KiB
TypeScript
157 lines
4.9 KiB
TypeScript
import * as path from "path";
|
|
|
|
import { app } from "electron";
|
|
|
|
import { StateFactory } from "@/jslib/common/src/factories/stateFactory";
|
|
import { GlobalState } from "@/jslib/common/src/models/domain/globalState";
|
|
import { ElectronLogService } from "@/jslib/electron/src/services/electronLog.service";
|
|
import { ElectronMainMessagingService } from "@/jslib/electron/src/services/electronMainMessaging.service";
|
|
import { ElectronStorageService } from "@/jslib/electron/src/services/electronStorage.service";
|
|
import { TrayMain } from "@/jslib/electron/src/tray.main";
|
|
import { UpdaterMain } from "@/jslib/electron/src/updater.main";
|
|
import { WindowMain } from "@/jslib/electron/src/window.main";
|
|
|
|
import { DCCredentialStorageListener } from "./main/credential-storage-listener";
|
|
import { MenuMain } from "./main/menu.main";
|
|
import { MessagingMain } from "./main/messaging.main";
|
|
import { Account } from "./models/account";
|
|
import { I18nService } from "./services/i18n.service";
|
|
import { StateService } from "./services/state.service";
|
|
|
|
export class Main {
|
|
logService: ElectronLogService;
|
|
i18nService: I18nService;
|
|
storageService: ElectronStorageService;
|
|
messagingService: ElectronMainMessagingService;
|
|
credentialStorageListener: DCCredentialStorageListener;
|
|
stateService: StateService;
|
|
|
|
windowMain: WindowMain;
|
|
messagingMain: MessagingMain;
|
|
menuMain: MenuMain;
|
|
updaterMain: UpdaterMain;
|
|
trayMain: TrayMain;
|
|
|
|
constructor() {
|
|
// Set paths for portable builds
|
|
let appDataPath = null;
|
|
if (process.env.BITWARDEN_CONNECTOR_APPDATA_DIR != null) {
|
|
appDataPath = process.env.BITWARDEN_CONNECTOR_APPDATA_DIR;
|
|
} else if (process.platform === "win32" && process.env.PORTABLE_EXECUTABLE_DIR != null) {
|
|
appDataPath = path.join(process.env.PORTABLE_EXECUTABLE_DIR, "bitwarden-connector-appdata");
|
|
}
|
|
|
|
if (appDataPath != null) {
|
|
app.setPath("userData", appDataPath);
|
|
}
|
|
app.setPath("logs", path.join(app.getPath("userData"), "logs"));
|
|
|
|
const args = process.argv.slice(1);
|
|
const watch = args.some((val) => val === "--watch");
|
|
|
|
if (watch) {
|
|
// eslint-disable-next-line
|
|
require("electron-reload")(__dirname, {});
|
|
}
|
|
|
|
this.logService = new ElectronLogService(null, app.getPath("userData"));
|
|
this.logService.init();
|
|
this.i18nService = new I18nService("en", "./locales/");
|
|
this.storageService = new ElectronStorageService(app.getPath("userData"));
|
|
this.stateService = new StateService(
|
|
this.storageService,
|
|
null,
|
|
this.logService,
|
|
null,
|
|
true,
|
|
new StateFactory(GlobalState, Account),
|
|
);
|
|
|
|
this.windowMain = new WindowMain(
|
|
this.stateService,
|
|
this.logService,
|
|
false,
|
|
800,
|
|
600,
|
|
(arg) => this.processDeepLink(arg),
|
|
null,
|
|
);
|
|
|
|
this.menuMain = new MenuMain(this);
|
|
this.updaterMain = new UpdaterMain(
|
|
this.i18nService,
|
|
this.windowMain,
|
|
"directory-connector",
|
|
() => {
|
|
this.messagingService.send("checkingForUpdate");
|
|
},
|
|
() => {
|
|
this.messagingService.send("doneCheckingForUpdate");
|
|
},
|
|
() => {
|
|
this.messagingService.send("doneCheckingForUpdate");
|
|
},
|
|
"bitwardenDirectoryConnector",
|
|
);
|
|
|
|
this.trayMain = new TrayMain(this.windowMain, this.i18nService, this.stateService);
|
|
|
|
this.messagingMain = new MessagingMain(
|
|
this.windowMain,
|
|
this.menuMain,
|
|
this.updaterMain,
|
|
this.trayMain,
|
|
);
|
|
this.messagingService = new ElectronMainMessagingService(this.windowMain, (message) => {
|
|
this.messagingMain.onMessage(message);
|
|
});
|
|
|
|
this.credentialStorageListener = new DCCredentialStorageListener(
|
|
"Bitwarden Directory Connector",
|
|
);
|
|
}
|
|
|
|
bootstrap() {
|
|
this.credentialStorageListener.init();
|
|
this.windowMain.init().then(
|
|
async () => {
|
|
await this.i18nService.init(app.getLocale());
|
|
this.menuMain.init();
|
|
this.messagingMain.init();
|
|
await this.updaterMain.init();
|
|
await this.trayMain.init(this.i18nService.t("bitwardenDirectoryConnector"));
|
|
|
|
if (!app.isDefaultProtocolClient("bwdc")) {
|
|
app.setAsDefaultProtocolClient("bwdc");
|
|
}
|
|
|
|
// Process protocol for macOS
|
|
app.on("open-url", (event, url) => {
|
|
event.preventDefault();
|
|
this.processDeepLink([url]);
|
|
});
|
|
},
|
|
(e: any) => {
|
|
// eslint-disable-next-line
|
|
console.error(e);
|
|
},
|
|
);
|
|
}
|
|
|
|
private processDeepLink(argv: string[]): void {
|
|
argv
|
|
.filter((s) => s.indexOf("bwdc://") === 0)
|
|
.forEach((s) => {
|
|
const url = new URL(s);
|
|
const code = url.searchParams.get("code");
|
|
const receivedState = url.searchParams.get("state");
|
|
if (code != null && receivedState != null) {
|
|
this.messagingService.send("ssoCallback", { code: code, state: receivedState });
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
const main = new Main();
|
|
main.bootstrap();
|