-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathindex.js
More file actions
532 lines (460 loc) · 16.9 KB
/
index.js
File metadata and controls
532 lines (460 loc) · 16.9 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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
const fs = require('fs');
const path = require('path');
const { execSync } = require('node:child_process');
const isDev = require('electron-is-dev');
const os = require('os');
const { initializeShellEnv } = require('@usebruno/requests');
const { percentageToZoomLevel } = require('@usebruno/common');
if (isDev) {
if (!fs.existsSync(path.join(__dirname, '../../bruno-js/src/sandbox/bundle-browser-rollup.js'))) {
console.log('JS Sandbox libraries have not been bundled yet');
console.log('Please run the below command \nnpm run sandbox:bundle-libraries --workspace=packages/bruno-js');
throw new Error('JS Sandbox libraries have not been bundled yet');
}
}
const { format } = require('url');
const { BrowserWindow, app, session, Menu, globalShortcut, ipcMain, nativeTheme } = require('electron');
const { setContentSecurityPolicy } = require('electron-util');
if (isDev && process.env.ELECTRON_USER_DATA_PATH) {
console.debug('`ELECTRON_USER_DATA_PATH` found, modifying `userData` path: \n'
+ `\t${app.getPath('userData')} -> ${process.env.ELECTRON_USER_DATA_PATH}`);
app.setPath('userData', process.env.ELECTRON_USER_DATA_PATH);
}
// Command line switches
if (os.platform() === 'linux') {
// Use portal version 4 that supports current_folder option
// to address https://github.com/usebruno/bruno/issues/5471
// Runtime sets the default version to 3, refs https://github.com/electron/electron/pull/44426
app.commandLine.appendSwitch('xdg-portal-required-version', '4');
}
const menuTemplate = require('./app/menu-template');
const { openCollection } = require('./app/collections');
const registerNetworkIpc = require('./ipc/network');
const registerCollectionsIpc = require('./ipc/collection');
const registerFilesystemIpc = require('./ipc/filesystem');
const registerPreferencesIpc = require('./ipc/preferences');
const registerSystemMonitorIpc = require('./ipc/system-monitor');
const registerWorkspaceIpc = require('./ipc/workspace');
const registerApiSpecIpc = require('./ipc/apiSpec');
const registerGitIpc = require('./ipc/git');
const registerOpenAPISyncIpc = require('./ipc/openapi-sync');
const collectionWatcher = require('./app/collection-watcher');
const WorkspaceWatcher = require('./app/workspace-watcher');
const ApiSpecWatcher = require('./app/apiSpecsWatcher');
const { loadWindowState, saveBounds, saveMaximized } = require('./utils/window');
const { preferencesUtil, getPreferences, savePreferences } = require('./store/preferences');
const { globalEnvironmentsManager } = require('./store/workspace-environments');
const registerNotificationsIpc = require('./ipc/notifications');
const registerGlobalEnvironmentsIpc = require('./ipc/global-environments');
const TerminalManager = require('./ipc/terminal');
const { safeParseJSON, safeStringifyJSON } = require('./utils/common');
const { getDomainsWithCookies } = require('./utils/cookies');
const { cookiesStore } = require('./store/cookies');
const SystemMonitor = require('./app/system-monitor');
const { getIsRunningInRosetta } = require('./utils/arch');
const { handleAppProtocolUrl, getAppProtocolUrlFromArgv } = require('./utils/deeplink');
const systemMonitor = new SystemMonitor();
const terminalManager = new TerminalManager();
const workspaceWatcher = new WorkspaceWatcher();
const apiSpecWatcher = new ApiSpecWatcher();
// Reference: https://content-security-policy.com/
const contentSecurityPolicy = [
'default-src \'self\'',
'connect-src \'self\' https://*.posthog.com',
'font-src \'self\' https: data:;',
'frame-src data:',
'script-src \'self\' data: \'wasm-unsafe-eval\'',
// this has been commented out to make oauth2 work
// "form-action 'none'",
// we make an exception and allow http for images so that
// they can be used as link in the embedded markdown editors
'img-src \'self\' blob: data: http: https:',
'media-src \'self\' blob: data: https:',
'style-src \'self\' \'unsafe-inline\' https:'
];
setContentSecurityPolicy(contentSecurityPolicy.join(';') + ';');
const menu = Menu.buildFromTemplate(menuTemplate);
const isMac = process.platform === 'darwin';
const isWindows = process.platform === 'win32';
const isLinux = process.platform === 'linux';
let mainWindow;
let appProtocolUrl;
// Helper function to save zoom percentage to preferences and notify renderer
const saveZoomPreferences = async (percentage) => {
if (!mainWindow) return;
const clampedPercentage = Math.max(50, Math.min(150, percentage));
const prefs = getPreferences();
prefs.display = prefs.display || {};
prefs.display.zoomPercentage = clampedPercentage;
try {
await savePreferences(prefs);
// Notify renderer to update Redux state only after successful save
mainWindow.webContents.send('main:load-preferences', prefs);
} catch (err) {
console.error('Failed to save zoom preference:', err);
}
};
// Helper function to focus and restore the main window
const focusMainWindow = () => {
if (mainWindow) {
app.focus({ steal: true });
if (mainWindow.isMinimized()) {
mainWindow.restore();
}
mainWindow.focus();
}
};
// Parse protocol URL from command line arguments (if any)
appProtocolUrl = getAppProtocolUrlFromArgv(process.argv);
// Single instance lock - ensures only one instance of Bruno runs at a time (enabled by default)
const useSingleInstance = process.env.DISABLE_SINGLE_INSTANCE !== 'true';
const gotTheLock = useSingleInstance ? app.requestSingleInstanceLock() : true;
if (useSingleInstance && !gotTheLock) {
// Another instance is already running, quit immediately
app.quit();
} else {
// This is the primary instance (or single instance is disabled)
// Try to remove any existing registrations
app.removeAsDefaultProtocolClient('bruno');
// Register as default handler for `bruno://` protocol URLs
app.setAsDefaultProtocolClient('bruno');
if (isLinux) {
try {
execSync('xdg-mime default bruno.desktop x-scheme-handler/bruno');
} catch (err) {}
}
// Handle protocol URLs for MacOS
if (isMac) {
app.on('open-url', (event, url) => {
event.preventDefault();
if (url) {
if (mainWindow) {
focusMainWindow();
handleAppProtocolUrl(url);
} else {
// Store for handling after window is ready
appProtocolUrl = url;
}
}
});
}
// Handle second instance attempts - focus primary window on all platforms
app.on('second-instance', (event, commandLine) => {
focusMainWindow();
// Extract and handle protocol URL from the second instance attempt
const url = getAppProtocolUrlFromArgv(commandLine);
if (url) {
handleAppProtocolUrl(url);
}
});
}
// Prepare the renderer once the app is ready
app.on('ready', async () => {
// Ensure shell environment is loaded before any operations that need it
await initializeShellEnv();
if (isDev) {
const { installExtension, REDUX_DEVTOOLS, REACT_DEVELOPER_TOOLS } = require('electron-devtools-installer');
try {
const extensions = await installExtension([REDUX_DEVTOOLS, REACT_DEVELOPER_TOOLS], {
loadExtensionOptions: { allowFileAccess: true }
});
console.log(`Added Extensions: ${extensions.map((ext) => ext.name).join(', ')}`);
await require('node:timers/promises').setTimeout(1000);
session.defaultSession.getAllExtensions().map((ext) => {
console.log(`Loading Extension: ${ext.name}`);
session.defaultSession.loadExtension(ext.path);
});
} catch (err) {
console.error('An error occurred while loading extensions: ', err);
}
}
// Initialize system proxy cache early (non-blocking)
const { fetchSystemProxy } = require('./store/system-proxy');
fetchSystemProxy().catch((err) => {
console.warn('Failed to initialize system proxy cache:', err);
});
Menu.setApplicationMenu(menu);
const { maximized, x, y, width, height } = loadWindowState();
mainWindow = new BrowserWindow({
x,
y,
width,
height,
minWidth: 700,
minHeight: 400,
show: false,
webPreferences: {
nodeIntegration: true,
contextIsolation: true,
preload: path.join(__dirname, 'preload.js'),
webviewTag: true,
zoomFactor: 1.0
},
title: 'Bruno',
icon: path.join(__dirname, 'about/256x256.png'),
titleBarStyle: isMac ? 'hiddenInset' : isWindows ? 'hidden' : undefined,
frame: isLinux ? false : true,
trafficLightPosition: isMac ? { x: 12, y: 10 } : undefined
// we will bring this back
// see https://github.com/usebruno/bruno/issues/440
// autoHideMenuBar: true
});
if (maximized) {
mainWindow.maximize();
}
ipcMain.on('renderer:window-minimize', () => {
if (!isWindows && !isLinux) return;
mainWindow.minimize();
});
ipcMain.on('renderer:window-maximize', () => {
if (!isWindows && !isLinux) return;
if (mainWindow.isMaximized()) {
mainWindow.unmaximize();
} else {
mainWindow.maximize();
}
});
// Handle zoom shortcuts
ipcMain.on('main:zoom-in', () => {
if (mainWindow && mainWindow.webContents) {
const currentZoom = mainWindow.webContents.getZoomLevel();
mainWindow.webContents.setZoomLevel(currentZoom + 0.5);
}
});
ipcMain.on('main:zoom-out', () => {
if (mainWindow && mainWindow.webContents) {
const currentZoom = mainWindow.webContents.getZoomLevel();
mainWindow.webContents.setZoomLevel(currentZoom - 0.5);
}
});
ipcMain.on('main:zoom-reset', () => {
if (mainWindow && mainWindow.webContents) {
mainWindow.webContents.setZoomLevel(0);
}
});
ipcMain.on('renderer:window-close', () => {
// if (!isWindows && !isLinux) return;
mainWindow.close();
});
ipcMain.handle('renderer:window-is-maximized', () => {
if (!isWindows && !isLinux) return false;
return mainWindow.isMaximized();
});
ipcMain.handle('renderer:open-preferences', () => {
ipcMain.emit('main:open-preferences');
});
ipcMain.handle('renderer:toggle-devtools', () => {
mainWindow.webContents.toggleDevTools();
});
ipcMain.handle('renderer:reset-zoom', () => {
updateZoomLevel(100);
});
ipcMain.handle('renderer:zoom-in', () => {
incrementZoomAndPersist(10);
});
ipcMain.handle('renderer:zoom-out', () => {
incrementZoomAndPersist(-10);
});
// Menu event handlers for zoom (from menu-template.js)
ipcMain.on('menu:reset-zoom', () => {
updateZoomLevel(100);
});
ipcMain.on('menu:zoom-in', () => {
incrementZoomAndPersist(10);
});
ipcMain.on('menu:zoom-out', () => {
incrementZoomAndPersist(-10);
});
ipcMain.handle('renderer:set-zoom-level', (event, zoomLevel) => {
mainWindow.webContents.setZoomLevel(zoomLevel);
});
ipcMain.handle('renderer:toggle-fullscreen', () => {
mainWindow.setFullScreen(!mainWindow.isFullScreen());
});
ipcMain.handle('renderer:open-docs', () => {
ipcMain.emit('main:open-docs');
});
ipcMain.handle('renderer:open-about', () => {
const { version } = require('../package.json');
const aboutBruno = require('./app/about-bruno');
const aboutWindow = new BrowserWindow({
width: 350,
height: 250,
webPreferences: {
nodeIntegration: true
}
});
aboutWindow.removeMenu();
aboutWindow.loadURL(`data:text/html;charset=utf-8,${encodeURIComponent(aboutBruno({ version }))}`);
});
mainWindow.once('ready-to-show', () => {
// Apply saved zoom level from preferences before showing window
const zoomPercentage = preferencesUtil.getZoomPercentage();
if (zoomPercentage) {
const zoomLevel = percentageToZoomLevel(zoomPercentage);
mainWindow.webContents.setZoomLevel(zoomLevel);
}
mainWindow.show();
});
const devPort = process.env.BRUNO_DEV_PORT || 3000;
const url = isDev
? `http://localhost:${devPort}`
: format({
pathname: path.join(__dirname, '../web/index.html'),
protocol: 'file:',
slashes: true
});
mainWindow.loadURL(url).catch((reason) => {
console.error(`Error: Failed to load URL: "${url}" (Electron shows a blank screen because of this).`);
console.error('Original message:', reason);
if (isDev) {
console.error(
'Could not connect to Next.Js dev server, is it running?'
+ ' Start the dev server using "npm run dev:web" and restart electron'
);
} else {
console.error(
'If you are using an official production build: the above error is most likely a bug! '
+ ' Please report this under: https://github.com/usebruno/bruno/issues'
);
}
});
let boundsTimeout;
const handleBoundsChange = () => {
if (!mainWindow.isMaximized()) {
if (boundsTimeout) {
clearTimeout(boundsTimeout);
}
boundsTimeout = setTimeout(() => {
saveBounds(mainWindow);
}, 100);
}
};
mainWindow.on('resize', handleBoundsChange);
mainWindow.on('move', handleBoundsChange);
mainWindow.on('maximize', () => {
saveMaximized(true);
mainWindow.webContents.send('main:window-maximized');
});
mainWindow.on('unmaximize', () => {
saveMaximized(false);
mainWindow.webContents.send('main:window-unmaximized');
});
// Full screen events for title bar padding adjustment
mainWindow.on('enter-full-screen', () => {
mainWindow.webContents.send('main:enter-full-screen');
});
mainWindow.on('leave-full-screen', () => {
mainWindow.webContents.send('main:leave-full-screen');
});
mainWindow.on('close', (e) => {
e.preventDefault();
terminalManager.cleanup(mainWindow.webContents);
ipcMain.emit('main:start-quit-flow');
});
mainWindow.webContents.on('will-redirect', (event, url) => {
event.preventDefault();
if (/^(http:\/\/|https:\/\/)/.test(url)) {
require('electron').shell.openExternal(url);
}
});
mainWindow.webContents.once('did-finish-load', () => {
if (appProtocolUrl) {
handleAppProtocolUrl(appProtocolUrl);
}
});
mainWindow.webContents.setWindowOpenHandler(({ url }) => {
try {
const { protocol } = new URL(url);
if (['https:', 'http:'].includes(protocol)) {
require('electron').shell.openExternal(url);
}
} catch (e) {
console.error(e);
}
return { action: 'deny' };
});
mainWindow.webContents.on('did-finish-load', async () => {
try {
let ogSend = mainWindow.webContents.send;
mainWindow.webContents.send = function (channel, ...args) {
return ogSend.apply(this, [channel, ...args.map((_) => {
// todo: replace this with @msgpack/msgpack encode/decode
return safeParseJSON(safeStringifyJSON(_));
})]);
};
} catch (err) {
console.error('Error wrapping webContents.send:', err);
}
// Send cookies list after renderer is ready
try {
cookiesStore.initializeCookies();
const cookiesList = await getDomainsWithCookies();
mainWindow.webContents.send('main:cookies-update', cookiesList);
} catch (err) {
console.error('Failed to load cookies for renderer', err);
}
mainWindow.webContents.send('main:app-loaded', {
isRunningInRosetta: getIsRunningInRosetta()
});
});
// register all ipc handlers
registerNetworkIpc(mainWindow);
registerGlobalEnvironmentsIpc(mainWindow, globalEnvironmentsManager);
registerCollectionsIpc(mainWindow, collectionWatcher);
registerPreferencesIpc(mainWindow, collectionWatcher);
registerWorkspaceIpc(mainWindow, workspaceWatcher);
registerApiSpecIpc(mainWindow, apiSpecWatcher);
registerNotificationsIpc(mainWindow, collectionWatcher);
registerFilesystemIpc(mainWindow);
registerSystemMonitorIpc(mainWindow, systemMonitor);
registerGitIpc(mainWindow);
registerOpenAPISyncIpc(mainWindow);
});
// Quit the app once all windows are closed
app.on('before-quit', () => {
// Release single instance lock to allow other instances to take over
if (useSingleInstance && gotTheLock) {
app.releaseSingleInstanceLock();
}
try {
cookiesStore.saveCookieJar(true);
} catch (err) {
console.warn('Failed to flush cookies on quit', err);
}
// Stop system monitoring
systemMonitor.stop();
try {
terminalManager.killAll();
} catch (err) {
console.error('Failed to kill all terminals on quit', err);
}
});
app.on('window-all-closed', app.quit);
// Open collection from Recent menu (#1521)
app.on('open-file', (event, path) => {
openCollection(mainWindow, collectionWatcher, path);
});
// Disable global shortcuts when not focused
app.on('browser-window-blur', () => {
globalShortcut.unregisterAll();
});
/**
* @param {number} inc (+/- amount to zoom in / out);
*/
function incrementZoomAndPersist(inc) {
const currentPercentage = preferencesUtil.getZoomPercentage();
const nextPercentage = Math.min(
Math.max(currentPercentage + inc, 50),
150
);
updateZoomLevel(nextPercentage);
}
/**
* @param {number} percent percentage to increase or decrease zoom by, percentage is converted to chrome's log value internally
*/
function updateZoomLevel(percent) {
const zoomLevel = percentageToZoomLevel(percent);
mainWindow.webContents.setZoomLevel(zoomLevel);
saveZoomPreferences(percent);
}