-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.js
More file actions
289 lines (257 loc) · 7.31 KB
/
main.js
File metadata and controls
289 lines (257 loc) · 7.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
import { Menu, session, Tray } from "electron";
import { app, BrowserWindow, shell } from "electron/main";
import Store from "electron-store";
import path from "node:path";
let win;
let tray;
const store = new Store();
const isDev = process.env.NODE_ENV === "development" || !app.isPackaged;
// const host = isDev ? "https://bolls.local" : "https://bolls.life";
const host = "https://bolls.life";
// const host = "https://bolls.local";
function createTray() {
tray = new Tray("build/tray.png");
tray.setToolTip("Bolls");
tray.setContextMenu(
Menu.buildFromTemplate([
{
label: "Bolls",
click: () => {
win.show();
},
},
{ type: "separator" },
{
label: "New Window",
accelerator: "CmdOrCtrl+shift+N",
click: createWindow,
},
{
label: "New Private Window",
accelerator: "CmdOrCtrl+shift+P",
click: createPrivateWindow,
},
{ type: "separator" },
{ role: "quit" },
])
);
}
const menu = Menu.buildFromTemplate([
{
label: "Bolls",
submenu: [
{
label: "New Window",
accelerator: "CmdOrCtrl+shift+N",
click: createWindow,
},
{
label: "New Private Window",
accelerator: "CmdOrCtrl+shift+P",
click: createPrivateWindow,
},
{ type: "separator" },
{ role: "quit" },
],
},
{ role: "editMenu" },
{ role: "viewMenu" },
{ role: "windowMenu" },
]);
Menu.setApplicationMenu(menu);
function windowsCount() {
return BrowserWindow.getAllWindows().filter((b) => {
return b.isVisible();
}).length;
}
/**
* Returns saved window state
* sets default values if not saved
* @returns {Object} mainWindowState
*/
function getMainWindowState() {
let mainWindowState = store.get();
if (!mainWindowState) {
mainWindowState = {};
}
if (!store.has("width")) {
mainWindowState.width = 1280;
}
if (!store.has("height")) {
mainWindowState.height = 800;
}
if (!store.has("isFullScreen")) {
mainWindowState.isFullScreen = false;
}
if (!store.has("isMaximized")) {
mainWindowState.isMaximized = false;
}
return mainWindowState;
}
function createPrivateWindow() {
let private_session = session.fromPartition("private");
let windows_count = windowsCount();
const mainWindowState = getMainWindowState();
// Create the browser window.
let private_win = new BrowserWindow({
show: false,
backgroundColor: "#04060c",
icon: "build/icon.png",
webPreferences: {
sandbox: true,
defaultFontFamily: "sansSerif",
session: private_session,
},
darkTheme: true,
x: mainWindowState.x + 64 * (windows_count - 1),
y: mainWindowState.y + 64 * (windows_count - 1),
width: mainWindowState.width,
height: mainWindowState.height,
});
private_win.loadURL(host);
private_win.once("ready-to-show", () => {
private_win.show();
});
private_win.on("enter-full-screen", () => {
private_win.setAutoHideMenuBar(true);
});
private_win.on("leave-full-screen", () => {
private_win.setAutoHideMenuBar(false);
});
}
function createWindow() {
// Used to offset every new window to avoid overlaping with existing windows
let windows_count = windowsCount();
const winState = getMainWindowState();
// Create the browser window.
win = new BrowserWindow({
show: false,
backgroundColor: "#04060c",
icon: "build/icon.png",
webPreferences: {
sandbox: true,
defaultFontFamily: "sansSerif",
devTools: !app.isPackaged,
},
darkTheme: true,
x: winState.x + 64 * windows_count,
y: winState.y + 64 * windows_count,
width: winState.width,
height: winState.height,
});
// Register listeners on the window to update the state
// automatically (the listeners will be removed when the window is closed)
// and restore the maximized or full screen state
if (windows_count === 0) {
// Manage only main window
win.on("maximize", () => {
store.set("isMaximized", true);
});
win.on("unmaximize", () => {
store.set("isMaximized", false);
});
win.on("resize", () => {
store.set("width", win.getSize()[0]);
store.set("height", win.getSize()[1]);
});
win.on("move", () => {
store.set("x", win.getPosition()[0]);
store.set("y", win.getPosition()[1]);
});
if (winState.isMaximized) {
win.maximize();
}
if (winState.isFullScreen) {
win.setFullScreen(true);
}
}
// win.webContents.openDevTools()
win.loadURL(host);
win.once("ready-to-show", () => {
win.show();
});
win.on("enter-full-screen", () => {
win.setAutoHideMenuBar(true);
if (windows_count === 0) store.set("isFullScreen", true);
});
win.on("leave-full-screen", () => {
win.setAutoHideMenuBar(false);
if (windows_count === 0) store.set("isFullScreen", false);
});
}
if (process.defaultApp) {
if (process.argv.length >= 2) {
app.setAsDefaultProtocolClient("bolls", process.execPath, [
path.resolve(process.argv[1]),
]);
}
} else {
app.setAsDefaultProtocolClient("bolls");
}
const gotTheLock = app.requestSingleInstanceLock();
if (!gotTheLock) {
app.quit(); // or maybe ignore
} else {
app.on("second-instance", async (event, commandLine, workingDirectory) => {
consoe.log("second-instance", event, commandLine, workingDirectory);
// Someone tried to run a second instance, we should focus our window.
if (win) {
if (win.isMinimized()) win.restore();
win.focus();
}
const mainSession = win.webContents.session
? win.webContents.session
: session.defaultSession;
// the commandLine is array of strings in which last element is deep link url
const lastCommand = commandLine.pop();
try {
// if the last element is not a url -- then it's not a deep link
new URL(lastCommand);
} catch (e) {
// if the last element is not a url -- then it's not a deep link
console.log("Not a deep link", e);
return;
}
const url = new URL(commandLine.pop());
if (url.protocol !== "bolls:" || !url.searchParams.get("sessionid")) return;
// if the we already have the cookie set -- we don't need to set it again
const mySessionidCookies = await mainSession.cookies.get({
name: "sessionid",
});
const mySessionid = mySessionidCookies[0]?.value;
if (mySessionid === atob(url.searchParams.get("sessionid"))) return;
mainSession.cookies.set({
url: host,
name: "sessionid",
value: atob(url.searchParams.get("sessionid")),
expirationDate: Math.floor(Date.now() / 1000) + 31536000, // Expires in 1 year
});
// then reload the main window
win.loadURL(host);
});
// Create win, load the rest of the app, etc...
app.whenReady().then(() => {
createWindow();
createTray();
app.on("activate", () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});
});
}
app.on("web-contents-created", (_, contents) => {
contents.setWindowOpenHandler((details) => {
if (details.disposition === "foreground-tab") {
shell.openExternal(details.url);
return { action: "deny" };
}
return { action: "allow" };
});
});
// Make OSX work same as all other systems
app.on("window-all-closed", () => {
if (process.platform !== "darwin") {
app.quit();
}
});