2022-02-22 10:05:21 +01:00
|
|
|
import { ipcMain, app } from "electron";
|
2022-02-20 20:30:53 +01:00
|
|
|
import electronIsDev from "electron-is-dev";
|
2022-02-17 19:48:08 +01:00
|
|
|
import { createAndShowNotification } from "./notification";
|
2022-02-20 20:30:53 +01:00
|
|
|
import { Server } from "./preload-local-app/types";
|
2022-02-18 01:51:35 +01:00
|
|
|
import settings from "./settings";
|
2022-02-22 10:05:21 +01:00
|
|
|
import { saveShortcut } from "./shortcuts";
|
2022-02-20 20:30:53 +01:00
|
|
|
import { getWindow, hideAppView, showAppView } from "./window";
|
2022-02-17 19:48:08 +01:00
|
|
|
|
2022-02-22 10:05:21 +01:00
|
|
|
export function emitMuteToggle() {
|
2022-02-18 23:03:05 +01:00
|
|
|
const mainWindow = getWindow();
|
|
|
|
if (!mainWindow) {
|
|
|
|
throw new Error("Main window not found");
|
|
|
|
}
|
2022-02-17 19:48:08 +01:00
|
|
|
|
2022-02-22 10:05:21 +01:00
|
|
|
mainWindow.webContents.send("app:on-camera-toggle");
|
|
|
|
}
|
|
|
|
|
|
|
|
export function emitCameraToggle() {
|
|
|
|
const mainWindow = getWindow();
|
|
|
|
if (!mainWindow) {
|
|
|
|
throw new Error("Main window not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
mainWindow.webContents.send("app:on-mute-toggle");
|
2022-02-17 19:48:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export default () => {
|
2022-02-20 20:30:53 +01:00
|
|
|
ipcMain.handle("is-development", () => electronIsDev);
|
2022-02-22 10:05:21 +01:00
|
|
|
ipcMain.handle("get-version", () => (electronIsDev ? "dev" : app.getVersion()));
|
2022-02-20 20:30:53 +01:00
|
|
|
|
|
|
|
// app ipc
|
2022-02-18 23:03:05 +01:00
|
|
|
ipcMain.on("app:notify", (event, txt) => {
|
|
|
|
createAndShowNotification({ body: txt });
|
|
|
|
});
|
2022-02-18 01:51:35 +01:00
|
|
|
|
2022-02-20 20:30:53 +01:00
|
|
|
// local-app ipc
|
|
|
|
ipcMain.handle("local-app:showLocalApp", () => {
|
|
|
|
hideAppView();
|
|
|
|
});
|
|
|
|
|
2022-02-19 01:08:33 +01:00
|
|
|
ipcMain.handle("local-app:getServers", () => {
|
2022-02-20 20:30:53 +01:00
|
|
|
return (
|
|
|
|
settings.get("servers") || [
|
2022-02-22 10:05:21 +01:00
|
|
|
// TODO: remove this default server
|
2022-02-18 23:03:05 +01:00
|
|
|
{
|
|
|
|
_id: "1",
|
|
|
|
name: "WA Demo",
|
|
|
|
url: "https://play.staging.workadventu.re/@/tcm/workadventure/wa-village",
|
|
|
|
},
|
2022-02-20 20:30:53 +01:00
|
|
|
]
|
|
|
|
);
|
2022-02-18 23:03:05 +01:00
|
|
|
});
|
2022-02-18 01:51:35 +01:00
|
|
|
|
2022-02-19 01:08:33 +01:00
|
|
|
ipcMain.handle("local-app:selectServer", (event, serverId: string) => {
|
2022-02-19 01:48:56 +01:00
|
|
|
const servers = settings.get("servers") || [];
|
2022-02-18 23:03:05 +01:00
|
|
|
const selectedServer = servers.find((s) => s._id === serverId);
|
2022-02-18 01:51:35 +01:00
|
|
|
|
2022-02-18 23:03:05 +01:00
|
|
|
if (!selectedServer) {
|
|
|
|
return new Error("Server not found");
|
|
|
|
}
|
2022-02-18 01:51:35 +01:00
|
|
|
|
2022-02-19 01:08:33 +01:00
|
|
|
showAppView(selectedServer.url);
|
2022-02-18 23:03:05 +01:00
|
|
|
return true;
|
|
|
|
});
|
2022-02-18 01:51:35 +01:00
|
|
|
|
2022-02-22 10:05:21 +01:00
|
|
|
ipcMain.handle("local-app:addServer", async (event, server: Omit<Server, "_id">) => {
|
2022-02-19 01:48:56 +01:00
|
|
|
const servers = settings.get("servers") || [];
|
2022-02-22 10:05:21 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
// TODO: add proper test to see if server url is valid and points to a real WA server
|
|
|
|
await fetch(`${server.url}/iframe_api.js`);
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
return new Error("Invalid server url");
|
|
|
|
}
|
|
|
|
|
2022-02-20 20:30:53 +01:00
|
|
|
const newServer = {
|
|
|
|
...server,
|
2022-02-18 23:03:05 +01:00
|
|
|
_id: `${servers.length + 1}`,
|
2022-02-20 20:30:53 +01:00
|
|
|
};
|
|
|
|
servers.push(newServer);
|
2022-02-18 23:03:05 +01:00
|
|
|
settings.set("servers", servers);
|
2022-02-20 20:30:53 +01:00
|
|
|
return newServer;
|
|
|
|
});
|
|
|
|
|
|
|
|
ipcMain.handle("local-app:removeServer", (event, server: Server) => {
|
|
|
|
const servers = settings.get("servers") || [];
|
|
|
|
settings.set(
|
|
|
|
"servers",
|
|
|
|
servers.filter((s) => s._id !== server._id)
|
|
|
|
);
|
2022-02-18 23:03:05 +01:00
|
|
|
return true;
|
|
|
|
});
|
2022-02-22 10:05:21 +01:00
|
|
|
|
|
|
|
ipcMain.handle("local-app:saveShortcut", (event, shortcut, key) => saveShortcut(shortcut, key));
|
|
|
|
|
|
|
|
ipcMain.handle("local-app:getShortcuts", (event) => settings.get("shortcuts") || {});
|
2022-02-17 19:48:08 +01:00
|
|
|
};
|