@fredlackey/devutils 0.0.11 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,968 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * @fileoverview Install Brave Browser - a privacy-focused web browser.
5
+ * @module installs/brave-browser
6
+ *
7
+ * Brave is a free, open-source web browser developed by Brave Software, Inc.
8
+ * Built on the Chromium web browser engine, Brave focuses on privacy and speed
9
+ * by blocking ads and website trackers by default. Key features include:
10
+ * - Built-in ad blocking
11
+ * - HTTPS Everywhere integration
12
+ * - Fingerprinting protection
13
+ * - Optional Brave Rewards program for earning cryptocurrency (BAT)
14
+ *
15
+ * This installer provides:
16
+ * - Brave Browser via Homebrew cask on macOS
17
+ * - Brave Browser via official APT repository on Ubuntu/Debian
18
+ * - Brave Browser via official DNF/YUM repository on Amazon Linux/RHEL/Fedora
19
+ * - Brave Browser via Chocolatey on Windows
20
+ * - Brave Browser within WSL (same as Ubuntu installation)
21
+ * - Brave Browser on Windows host from Git Bash
22
+ *
23
+ * IMPORTANT PLATFORM NOTES:
24
+ * - Raspberry Pi OS: Brave Browser supports both x86_64 and ARM64 architectures.
25
+ * - All platforms require a desktop environment since Brave is a GUI application.
26
+ * - WSL requires WSLg (Windows 11 / Windows 10 21H2+) for GUI support.
27
+ */
28
+
29
+ const os = require('../utils/common/os');
30
+ const shell = require('../utils/common/shell');
31
+ const brew = require('../utils/macos/brew');
32
+ const choco = require('../utils/windows/choco');
33
+ const apt = require('../utils/ubuntu/apt');
34
+
35
+ /**
36
+ * Indicates whether this installer requires a desktop environment.
37
+ * Brave Browser is a GUI web browser and requires a display.
38
+ * @type {boolean}
39
+ */
40
+ const REQUIRES_DESKTOP = true;
41
+
42
+ /**
43
+ * The Homebrew cask name for Brave Browser on macOS.
44
+ * Using the cask (not formula) because Brave is a GUI application.
45
+ */
46
+ const HOMEBREW_CASK_NAME = 'brave-browser';
47
+
48
+ /**
49
+ * The Chocolatey package name for Brave Browser on Windows.
50
+ */
51
+ const CHOCO_PACKAGE_NAME = 'brave';
52
+
53
+ /**
54
+ * The APT package name for Brave Browser on Debian-based systems.
55
+ */
56
+ const APT_PACKAGE_NAME = 'brave-browser';
57
+
58
+ /**
59
+ * Path to Brave Browser application on macOS.
60
+ * Used to verify installation succeeded.
61
+ */
62
+ const MACOS_APP_PATH = '/Applications/Brave Browser.app';
63
+
64
+ /**
65
+ * Path to Brave Browser executable on Windows (system-wide installation).
66
+ * Used to verify installation and check version.
67
+ */
68
+ const WINDOWS_BRAVE_PATH_SYSTEM = 'C:\\Program Files\\BraveSoftware\\Brave-Browser\\Application\\brave.exe';
69
+
70
+ /**
71
+ * Path to Brave Browser executable on Windows (per-user installation).
72
+ * Chocolatey sometimes installs to the user's AppData folder.
73
+ */
74
+ const WINDOWS_BRAVE_PATH_USER_APPDATA = process.env.LOCALAPPDATA
75
+ ? `${process.env.LOCALAPPDATA}\\BraveSoftware\\Brave-Browser\\Application\\brave.exe`
76
+ : null;
77
+
78
+ /**
79
+ * URL for the Brave Browser GPG keyring on Debian/Ubuntu.
80
+ * Used to verify package authenticity.
81
+ */
82
+ const BRAVE_GPG_KEYRING_URL = 'https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg';
83
+
84
+ /**
85
+ * URL for the Brave Browser APT sources file on Debian/Ubuntu.
86
+ * This modern DEB822 format file contains repository configuration.
87
+ */
88
+ const BRAVE_APT_SOURCES_URL = 'https://brave-browser-apt-release.s3.brave.com/brave-browser.sources';
89
+
90
+ /**
91
+ * URL for the Brave Browser RPM repository file.
92
+ * Used on Fedora, RHEL, and Amazon Linux.
93
+ */
94
+ const BRAVE_RPM_REPO_URL = 'https://brave-browser-rpm-release.s3.brave.com/brave-browser.repo';
95
+
96
+ /**
97
+ * URL for the Brave Browser GPG key for RPM packages.
98
+ * Used to verify package authenticity on Fedora/RHEL/Amazon Linux.
99
+ */
100
+ const BRAVE_RPM_GPG_KEY_URL = 'https://brave-browser-rpm-release.s3.brave.com/brave-core.asc';
101
+
102
+ /**
103
+ * Check if Brave Browser is installed on macOS by verifying the app bundle exists.
104
+ *
105
+ * On macOS, GUI applications are typically installed as .app bundles in /Applications.
106
+ * We check for the bundle's existence rather than relying on PATH because Brave
107
+ * is a GUI application that may not add itself to the shell PATH.
108
+ *
109
+ * @returns {boolean} True if Brave Browser.app exists in /Applications, false otherwise
110
+ */
111
+ function isBraveInstalledMacOS() {
112
+ const fs = require('fs');
113
+ return fs.existsSync(MACOS_APP_PATH);
114
+ }
115
+
116
+ /**
117
+ * Get the installed version of Brave Browser on macOS.
118
+ *
119
+ * Executes the Brave binary within the app bundle with --version flag.
120
+ * The output format is: "Brave 1.86.139 Chromium: 128.0.6613.137"
121
+ *
122
+ * @returns {Promise<string|null>} Version string (e.g., "1.86.139") or null if not installed
123
+ */
124
+ async function getBraveVersionMacOS() {
125
+ if (!isBraveInstalledMacOS()) {
126
+ return null;
127
+ }
128
+
129
+ const bravePath = `${MACOS_APP_PATH}/Contents/MacOS/Brave Browser`;
130
+ const result = await shell.exec(`"${bravePath}" --version`);
131
+
132
+ if (result.code === 0 && result.stdout) {
133
+ // Output format: "Brave 1.86.139 Chromium: 128.0.6613.137"
134
+ const match = result.stdout.match(/Brave\s+([\d.]+)/);
135
+ return match ? match[1] : null;
136
+ }
137
+ return null;
138
+ }
139
+
140
+ /**
141
+ * Check if Brave Browser is installed on Linux by verifying the brave-browser command exists.
142
+ *
143
+ * When installed from Brave's official repository, the 'brave-browser' command
144
+ * is added to /usr/bin.
145
+ *
146
+ * @returns {boolean} True if the brave-browser command is available, false otherwise
147
+ */
148
+ function isBraveInstalledLinux() {
149
+ return shell.commandExists('brave-browser');
150
+ }
151
+
152
+ /**
153
+ * Get the installed version of Brave Browser on Linux.
154
+ *
155
+ * Executes the brave-browser command with --version flag to retrieve the version.
156
+ * Output format: "Brave 1.86.139 Chromium: 128.0.6613.137"
157
+ *
158
+ * @returns {Promise<string|null>} Version string or null if not installed
159
+ */
160
+ async function getBraveVersionLinux() {
161
+ if (!isBraveInstalledLinux()) {
162
+ return null;
163
+ }
164
+
165
+ const result = await shell.exec('brave-browser --version');
166
+ if (result.code === 0 && result.stdout) {
167
+ const match = result.stdout.match(/Brave\s+([\d.]+)/);
168
+ return match ? match[1] : null;
169
+ }
170
+ return null;
171
+ }
172
+
173
+ /**
174
+ * Check if Brave Browser is installed on Windows.
175
+ *
176
+ * Checks for the Brave executable at the default installation paths.
177
+ * Brave is typically installed to Program Files for system-wide installation
178
+ * or to LocalAppData for per-user installation.
179
+ *
180
+ * @returns {boolean} True if Brave executable exists, false otherwise
181
+ */
182
+ function isBraveInstalledWindows() {
183
+ const fs = require('fs');
184
+
185
+ // Check system-wide installation path
186
+ if (fs.existsSync(WINDOWS_BRAVE_PATH_SYSTEM)) {
187
+ return true;
188
+ }
189
+
190
+ // Check per-user installation path
191
+ if (WINDOWS_BRAVE_PATH_USER_APPDATA && fs.existsSync(WINDOWS_BRAVE_PATH_USER_APPDATA)) {
192
+ return true;
193
+ }
194
+
195
+ return false;
196
+ }
197
+
198
+ /**
199
+ * Get the installed version of Brave Browser on Windows.
200
+ *
201
+ * Executes the Brave executable with --version flag to retrieve the version.
202
+ *
203
+ * @returns {Promise<string|null>} Version string or null if not installed
204
+ */
205
+ async function getBraveVersionWindows() {
206
+ const fs = require('fs');
207
+
208
+ // Determine which path has Brave installed
209
+ let bravePath = null;
210
+ if (fs.existsSync(WINDOWS_BRAVE_PATH_SYSTEM)) {
211
+ bravePath = WINDOWS_BRAVE_PATH_SYSTEM;
212
+ } else if (WINDOWS_BRAVE_PATH_USER_APPDATA && fs.existsSync(WINDOWS_BRAVE_PATH_USER_APPDATA)) {
213
+ bravePath = WINDOWS_BRAVE_PATH_USER_APPDATA;
214
+ }
215
+
216
+ if (!bravePath) {
217
+ return null;
218
+ }
219
+
220
+ const result = await shell.exec(`"${bravePath}" --version`);
221
+ if (result.code === 0 && result.stdout) {
222
+ const match = result.stdout.match(/Brave\s+([\d.]+)/);
223
+ return match ? match[1] : null;
224
+ }
225
+ return null;
226
+ }
227
+
228
+ /**
229
+ * Set up Brave's APT repository for Ubuntu/Debian.
230
+ *
231
+ * This function:
232
+ * 1. Downloads and installs the Brave GPG keyring for package verification
233
+ * 2. Downloads and installs the Brave repository sources file
234
+ * 3. Updates the package cache to include the new repository
235
+ *
236
+ * @returns {Promise<void>}
237
+ * @throws {Error} If any step fails
238
+ */
239
+ async function setupBraveAptRepository() {
240
+ console.log('Setting up Brave APT repository...');
241
+
242
+ // Step 1: Download and install the Brave GPG keyring
243
+ console.log('Downloading Brave GPG keyring...');
244
+ const keyringResult = await shell.exec(
245
+ `sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg ${BRAVE_GPG_KEYRING_URL}`
246
+ );
247
+ if (keyringResult.code !== 0) {
248
+ throw new Error(
249
+ `Failed to download Brave GPG keyring.\n` +
250
+ `Error: ${keyringResult.stderr}\n\n` +
251
+ `Troubleshooting:\n` +
252
+ ` 1. Check your internet connection\n` +
253
+ ` 2. Ensure curl is installed: sudo apt-get install -y curl\n` +
254
+ ` 3. Try downloading manually: curl -fsSLo /tmp/brave-keyring.gpg ${BRAVE_GPG_KEYRING_URL}`
255
+ );
256
+ }
257
+
258
+ // Step 2: Download and install the Brave repository sources file
259
+ console.log('Adding Brave repository...');
260
+ const sourcesResult = await shell.exec(
261
+ `sudo curl -fsSLo /etc/apt/sources.list.d/brave-browser-release.sources ${BRAVE_APT_SOURCES_URL}`
262
+ );
263
+ if (sourcesResult.code !== 0) {
264
+ throw new Error(
265
+ `Failed to add Brave repository.\n` +
266
+ `Error: ${sourcesResult.stderr}\n\n` +
267
+ `Troubleshooting:\n` +
268
+ ` 1. Verify sudo privileges\n` +
269
+ ` 2. Try downloading manually: curl -fsSL ${BRAVE_APT_SOURCES_URL}`
270
+ );
271
+ }
272
+
273
+ // Step 3: Update package cache to include the new repository
274
+ console.log('Updating package cache...');
275
+ const updateResult = await shell.exec('sudo DEBIAN_FRONTEND=noninteractive apt-get update -y');
276
+ if (updateResult.code !== 0) {
277
+ throw new Error(
278
+ `Failed to update package cache.\n` +
279
+ `Error: ${updateResult.stderr}\n\n` +
280
+ `Troubleshooting:\n` +
281
+ ` 1. Check the repository configuration: cat /etc/apt/sources.list.d/brave-browser-release.sources\n` +
282
+ ` 2. Verify the GPG key exists: ls -la /usr/share/keyrings/brave-browser-archive-keyring.gpg`
283
+ );
284
+ }
285
+
286
+ console.log('Brave APT repository configured successfully.');
287
+ }
288
+
289
+ /**
290
+ * Set up Brave's DNF/YUM repository for Amazon Linux/RHEL/Fedora.
291
+ *
292
+ * This function:
293
+ * 1. Installs dnf-plugins-core if needed (for config-manager command)
294
+ * 2. Adds the Brave repository using the appropriate method for the dnf version
295
+ *
296
+ * @returns {Promise<void>}
297
+ * @throws {Error} If any step fails
298
+ */
299
+ async function setupBraveDnfRepository() {
300
+ console.log('Setting up Brave DNF repository...');
301
+
302
+ // Detect package manager (dnf for AL2023/Fedora/RHEL8+, yum for AL2)
303
+ const hasDnf = shell.commandExists('dnf');
304
+
305
+ if (hasDnf) {
306
+ // Install dnf-plugins-core if not already installed
307
+ console.log('Ensuring dnf-plugins-core is installed...');
308
+ await shell.exec('sudo dnf install -y dnf-plugins-core');
309
+
310
+ // Try the modern dnf5 syntax first (Fedora 41+)
311
+ console.log('Adding Brave repository...');
312
+ let repoResult = await shell.exec(
313
+ `sudo dnf config-manager addrepo --from-repofile=${BRAVE_RPM_REPO_URL}`
314
+ );
315
+
316
+ // If dnf5 syntax fails, fall back to legacy dnf4 syntax
317
+ if (repoResult.code !== 0) {
318
+ console.log('Trying legacy dnf syntax...');
319
+ repoResult = await shell.exec(
320
+ `sudo dnf config-manager --add-repo ${BRAVE_RPM_REPO_URL}`
321
+ );
322
+ }
323
+
324
+ if (repoResult.code !== 0) {
325
+ throw new Error(
326
+ `Failed to add Brave repository.\n` +
327
+ `Error: ${repoResult.stderr}\n\n` +
328
+ `Troubleshooting:\n` +
329
+ ` 1. Import GPG key manually: sudo rpm --import ${BRAVE_RPM_GPG_KEY_URL}\n` +
330
+ ` 2. Download repo file manually: sudo curl -fsSLo /etc/yum.repos.d/brave-browser.repo ${BRAVE_RPM_REPO_URL}`
331
+ );
332
+ }
333
+ } else {
334
+ // Legacy YUM for Amazon Linux 2
335
+ console.log('Importing Brave GPG key...');
336
+ const gpgResult = await shell.exec(`sudo rpm --import ${BRAVE_RPM_GPG_KEY_URL}`);
337
+ if (gpgResult.code !== 0) {
338
+ throw new Error(`Failed to import Brave GPG key: ${gpgResult.stderr}`);
339
+ }
340
+
341
+ console.log('Adding Brave repository...');
342
+ const repoResult = await shell.exec(
343
+ `sudo curl -fsSLo /etc/yum.repos.d/brave-browser.repo ${BRAVE_RPM_REPO_URL}`
344
+ );
345
+ if (repoResult.code !== 0) {
346
+ throw new Error(`Failed to add Brave repository: ${repoResult.stderr}`);
347
+ }
348
+ }
349
+
350
+ console.log('Brave repository configured successfully.');
351
+ }
352
+
353
+ /**
354
+ * Install Brave Browser on macOS using Homebrew.
355
+ *
356
+ * Prerequisites:
357
+ * - macOS 12 (Monterey) or later
358
+ * - Homebrew package manager installed
359
+ * - Terminal access
360
+ *
361
+ * The installation uses the Homebrew cask 'brave-browser' which downloads
362
+ * and installs Brave to /Applications/Brave Browser.app.
363
+ *
364
+ * This function is idempotent - it checks if Brave is already installed
365
+ * before attempting installation and skips if already present.
366
+ *
367
+ * @returns {Promise<void>}
368
+ */
369
+ async function install_macos() {
370
+ console.log('Checking if Brave Browser is already installed...');
371
+
372
+ // Check if Brave is already installed via file system check
373
+ if (isBraveInstalledMacOS()) {
374
+ const version = await getBraveVersionMacOS();
375
+ if (version) {
376
+ console.log(`Brave Browser ${version} is already installed, skipping installation.`);
377
+ } else {
378
+ console.log('Brave Browser is already installed, skipping installation.');
379
+ }
380
+ return;
381
+ }
382
+
383
+ // Also check if the Homebrew cask is installed (Brave may be installed but not detected)
384
+ const caskInstalled = await brew.isCaskInstalled(HOMEBREW_CASK_NAME);
385
+ if (caskInstalled) {
386
+ console.log('Brave Browser is already installed via Homebrew, skipping installation.');
387
+ return;
388
+ }
389
+
390
+ // Verify Homebrew is available before proceeding
391
+ if (!brew.isInstalled()) {
392
+ console.log('Homebrew is not installed. Please install Homebrew first.');
393
+ console.log('Run: dev install homebrew');
394
+ return;
395
+ }
396
+
397
+ console.log('Installing Brave Browser via Homebrew...');
398
+
399
+ // Install Brave Browser cask
400
+ const result = await brew.installCask(HOMEBREW_CASK_NAME);
401
+
402
+ if (!result.success) {
403
+ console.log('Failed to install Brave Browser via Homebrew.');
404
+ console.log(result.output);
405
+ console.log('');
406
+ console.log('Troubleshooting:');
407
+ console.log(' 1. Run "brew update && brew cleanup" and retry');
408
+ console.log(' 2. Try manual installation: brew reinstall --cask brave-browser');
409
+ console.log(' 3. Check if macOS Gatekeeper is blocking the app:');
410
+ console.log(' xattr -cr /Applications/Brave\\ Browser.app');
411
+ return;
412
+ }
413
+
414
+ // Verify the installation succeeded
415
+ if (!isBraveInstalledMacOS()) {
416
+ console.log('Installation may have failed: Brave Browser was not found.');
417
+ console.log('Please check /Applications folder for Brave Browser.app');
418
+ return;
419
+ }
420
+
421
+ const installedVersion = await getBraveVersionMacOS();
422
+ console.log(`Brave Browser ${installedVersion || ''} installed successfully.`);
423
+ console.log('');
424
+ console.log('You can launch Brave from Applications or run:');
425
+ console.log(' open -a "Brave Browser"');
426
+ }
427
+
428
+ /**
429
+ * Install Brave Browser on Ubuntu/Debian using APT.
430
+ *
431
+ * Prerequisites:
432
+ * - Ubuntu 18.04 or later, or Debian 10 or later
433
+ * - Both x86_64 (amd64) and ARM64 (aarch64) architectures are supported
434
+ * - sudo privileges
435
+ * - curl installed
436
+ *
437
+ * This function adds Brave's official APT repository and installs the browser.
438
+ * The repository is configured using the modern DEB822 format for Ubuntu 22.04+
439
+ * compatibility.
440
+ *
441
+ * This function is idempotent - it checks if Brave is already installed
442
+ * before attempting installation.
443
+ *
444
+ * @returns {Promise<void>}
445
+ */
446
+ async function install_ubuntu() {
447
+ console.log('Checking if Brave Browser is already installed...');
448
+
449
+ // Check if Brave is already installed
450
+ if (isBraveInstalledLinux()) {
451
+ const version = await getBraveVersionLinux();
452
+ if (version) {
453
+ console.log(`Brave Browser ${version} is already installed, skipping installation.`);
454
+ } else {
455
+ console.log('Brave Browser is already installed, skipping installation.');
456
+ }
457
+ return;
458
+ }
459
+
460
+ // Ensure curl is installed (required for downloading GPG key and sources file)
461
+ if (!shell.commandExists('curl')) {
462
+ console.log('Installing curl...');
463
+ const curlResult = await shell.exec('sudo DEBIAN_FRONTEND=noninteractive apt-get update -y && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y curl');
464
+ if (curlResult.code !== 0) {
465
+ console.log('Failed to install curl. Please install it manually:');
466
+ console.log(' sudo apt-get install -y curl');
467
+ return;
468
+ }
469
+ }
470
+
471
+ // Set up Brave's APT repository
472
+ try {
473
+ await setupBraveAptRepository();
474
+ } catch (error) {
475
+ console.log(`Failed to set up Brave repository: ${error.message}`);
476
+ return;
477
+ }
478
+
479
+ // Install Brave Browser from the repository
480
+ console.log('Installing Brave Browser via APT...');
481
+ const installResult = await shell.exec(
482
+ `sudo DEBIAN_FRONTEND=noninteractive apt-get install -y ${APT_PACKAGE_NAME}`
483
+ );
484
+
485
+ if (installResult.code !== 0) {
486
+ console.log('Failed to install Brave Browser via APT.');
487
+ console.log(installResult.stderr || installResult.stdout);
488
+ console.log('');
489
+ console.log('Troubleshooting:');
490
+ console.log(' 1. Run "sudo apt-get update" and retry');
491
+ console.log(' 2. Install missing dependencies: sudo apt-get install -y -f');
492
+ console.log(' 3. Check the repository configuration:');
493
+ console.log(' cat /etc/apt/sources.list.d/brave-browser-release.sources');
494
+ return;
495
+ }
496
+
497
+ // Verify installation
498
+ if (!isBraveInstalledLinux()) {
499
+ console.log('Installation may have failed: brave-browser command not found.');
500
+ console.log('Please try running: brave-browser --version');
501
+ return;
502
+ }
503
+
504
+ const installedVersion = await getBraveVersionLinux();
505
+ console.log(`Brave Browser ${installedVersion || ''} installed successfully.`);
506
+ console.log('');
507
+ console.log('Launch Brave with:');
508
+ console.log(' brave-browser &');
509
+ console.log('');
510
+ console.log('NOTE: Brave will automatically update via apt-get upgrade.');
511
+ }
512
+
513
+ /**
514
+ * Install Brave Browser on Ubuntu running in WSL (Windows Subsystem for Linux).
515
+ *
516
+ * Prerequisites:
517
+ * - Windows 10 version 2004 or higher, or Windows 11
518
+ * - WSL 2 with Ubuntu distribution installed
519
+ * - WSLg enabled (included by default in Windows 11 and Windows 10 21H2+)
520
+ * - sudo privileges within WSL
521
+ *
522
+ * This function installs Brave using the same method as Ubuntu since
523
+ * WSL Ubuntu is functionally identical to native Ubuntu for package management.
524
+ * However, running Brave requires WSLg for GUI support.
525
+ *
526
+ * @returns {Promise<void>}
527
+ */
528
+ async function install_ubuntu_wsl() {
529
+ console.log('Detected Ubuntu running in WSL (Windows Subsystem for Linux).');
530
+ console.log('');
531
+
532
+ // Use the same installation process as Ubuntu
533
+ await install_ubuntu();
534
+
535
+ // Add WSL-specific post-installation notes
536
+ console.log('');
537
+ console.log('WSL-SPECIFIC NOTES:');
538
+ console.log('');
539
+ console.log('1. Running GUI apps in WSL requires WSLg (Windows 11 / Windows 10 21H2+).');
540
+ console.log(' If Brave fails to launch, ensure WSLg is enabled.');
541
+ console.log('');
542
+ console.log('2. If you see sandbox errors, try:');
543
+ console.log(' brave-browser --no-sandbox');
544
+ console.log('');
545
+ console.log('3. For headless automation in WSL:');
546
+ console.log(' brave-browser --headless --disable-gpu --dump-dom https://example.com');
547
+ }
548
+
549
+ /**
550
+ * Install Brave Browser on Raspberry Pi OS using APT.
551
+ *
552
+ * Prerequisites:
553
+ * - Raspberry Pi OS (64-bit or 32-bit) - Bookworm or Bullseye
554
+ * - Raspberry Pi 3B+ or later recommended
555
+ * - Desktop environment installed
556
+ * - sudo privileges
557
+ *
558
+ * Brave Browser supports both ARM64 and armhf architectures, making it
559
+ * compatible with Raspberry Pi devices. This function uses the same
560
+ * APT repository setup as Ubuntu/Debian.
561
+ *
562
+ * @returns {Promise<void>}
563
+ */
564
+ async function install_raspbian() {
565
+ console.log('Checking if Brave Browser is already installed...');
566
+
567
+ // Check if Brave is already installed
568
+ if (isBraveInstalledLinux()) {
569
+ const version = await getBraveVersionLinux();
570
+ if (version) {
571
+ console.log(`Brave Browser ${version} is already installed, skipping installation.`);
572
+ } else {
573
+ console.log('Brave Browser is already installed, skipping installation.');
574
+ }
575
+ return;
576
+ }
577
+
578
+ // Check and report architecture for informational purposes
579
+ const archResult = await shell.exec('uname -m');
580
+ const arch = archResult.stdout.trim();
581
+ console.log(`Detected architecture: ${arch}`);
582
+ console.log('');
583
+
584
+ // Ensure curl is installed
585
+ if (!shell.commandExists('curl')) {
586
+ console.log('Installing curl...');
587
+ const curlResult = await shell.exec('sudo DEBIAN_FRONTEND=noninteractive apt-get update -y && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y curl');
588
+ if (curlResult.code !== 0) {
589
+ console.log('Failed to install curl. Please install it manually:');
590
+ console.log(' sudo apt-get install -y curl');
591
+ return;
592
+ }
593
+ }
594
+
595
+ // Set up Brave's APT repository (same as Ubuntu/Debian)
596
+ try {
597
+ await setupBraveAptRepository();
598
+ } catch (error) {
599
+ console.log(`Failed to set up Brave repository: ${error.message}`);
600
+ return;
601
+ }
602
+
603
+ // Install Brave Browser from the repository
604
+ console.log('Installing Brave Browser via APT...');
605
+ const installResult = await shell.exec(
606
+ `sudo DEBIAN_FRONTEND=noninteractive apt-get install -y ${APT_PACKAGE_NAME}`
607
+ );
608
+
609
+ if (installResult.code !== 0) {
610
+ console.log('Failed to install Brave Browser via APT.');
611
+ console.log(installResult.stderr || installResult.stdout);
612
+ console.log('');
613
+ console.log('Troubleshooting:');
614
+ console.log(' 1. Ensure you have a desktop environment installed');
615
+ console.log(' 2. Run "sudo apt-get update" and retry');
616
+ console.log(' 3. Install missing dependencies: sudo apt-get install -y -f');
617
+ return;
618
+ }
619
+
620
+ // Verify installation
621
+ if (!isBraveInstalledLinux()) {
622
+ console.log('Installation may have failed: brave-browser command not found.');
623
+ return;
624
+ }
625
+
626
+ const installedVersion = await getBraveVersionLinux();
627
+ console.log(`Brave Browser ${installedVersion || ''} installed successfully.`);
628
+ console.log('');
629
+ console.log('NOTE: If Brave is slow on Raspberry Pi, you can try disabling');
630
+ console.log('hardware acceleration in Brave settings (brave://settings/system).');
631
+ }
632
+
633
+ /**
634
+ * Install Brave Browser on Amazon Linux/RHEL/Fedora using DNF or YUM.
635
+ *
636
+ * Prerequisites:
637
+ * - Amazon Linux 2023, RHEL 8+, Fedora 37+, Rocky Linux, or AlmaLinux
638
+ * - x86_64 or ARM64 architecture
639
+ * - sudo privileges
640
+ * - Desktop environment installed (GNOME, KDE, etc.)
641
+ *
642
+ * IMPORTANT: Amazon Linux and RHEL are typically used for server workloads.
643
+ * Installing Brave Browser requires a desktop environment with graphical
644
+ * capabilities. This is uncommon on cloud instances but applicable to
645
+ * workstation configurations.
646
+ *
647
+ * This function automatically detects whether the system uses DNF or YUM
648
+ * and uses the appropriate package manager.
649
+ *
650
+ * @returns {Promise<void>}
651
+ */
652
+ async function install_amazon_linux() {
653
+ console.log('Checking if Brave Browser is already installed...');
654
+
655
+ // Check if Brave is already installed
656
+ if (isBraveInstalledLinux()) {
657
+ const version = await getBraveVersionLinux();
658
+ if (version) {
659
+ console.log(`Brave Browser ${version} is already installed, skipping installation.`);
660
+ } else {
661
+ console.log('Brave Browser is already installed, skipping installation.');
662
+ }
663
+ return;
664
+ }
665
+
666
+ // Detect package manager (dnf for AL2023/Fedora/RHEL8+, yum for AL2)
667
+ const hasDnf = shell.commandExists('dnf');
668
+ const hasYum = shell.commandExists('yum');
669
+ const packageManager = hasDnf ? 'dnf' : (hasYum ? 'yum' : null);
670
+
671
+ if (!packageManager) {
672
+ console.log('Neither dnf nor yum package manager found.');
673
+ console.log('This installer supports Amazon Linux 2023 (dnf) and Amazon Linux 2 (yum).');
674
+ return;
675
+ }
676
+
677
+ console.log(`Detected package manager: ${packageManager}`);
678
+
679
+ // Set up Brave's DNF/YUM repository
680
+ try {
681
+ await setupBraveDnfRepository();
682
+ } catch (error) {
683
+ console.log(`Failed to set up Brave repository: ${error.message}`);
684
+ return;
685
+ }
686
+
687
+ // Install Brave Browser from the repository
688
+ console.log(`Installing Brave Browser via ${packageManager}...`);
689
+ const installResult = await shell.exec(
690
+ `sudo ${packageManager} install -y ${APT_PACKAGE_NAME}`
691
+ );
692
+
693
+ if (installResult.code !== 0) {
694
+ console.log(`Failed to install Brave Browser via ${packageManager}.`);
695
+ console.log(installResult.stderr || installResult.stdout);
696
+ console.log('');
697
+ console.log('Troubleshooting:');
698
+ console.log(' 1. Install common dependencies first:');
699
+ console.log(` sudo ${packageManager} install -y libXcomposite libXdamage libXrandr libgbm libxkbcommon pango alsa-lib atk at-spi2-atk cups-libs libdrm mesa-libgbm`);
700
+ console.log(' 2. Then retry the installation');
701
+ return;
702
+ }
703
+
704
+ // Verify installation
705
+ if (!isBraveInstalledLinux()) {
706
+ console.log('Installation may have failed: brave-browser command not found.');
707
+ return;
708
+ }
709
+
710
+ const installedVersion = await getBraveVersionLinux();
711
+ console.log(`Brave Browser ${installedVersion || ''} installed successfully.`);
712
+ console.log('');
713
+ console.log('NOTE: On EC2 instances, you may need to run Brave with additional flags:');
714
+ console.log(' brave-browser --no-sandbox --headless');
715
+ }
716
+
717
+ /**
718
+ * Install Brave Browser on Windows using Chocolatey.
719
+ *
720
+ * Prerequisites:
721
+ * - Windows 10 version 1809 or later, or Windows 11
722
+ * - Administrator privileges
723
+ * - Chocolatey package manager installed
724
+ *
725
+ * The Chocolatey package installs Brave Browser system-wide and handles
726
+ * all dependencies automatically.
727
+ *
728
+ * @returns {Promise<void>}
729
+ */
730
+ async function install_windows() {
731
+ console.log('Checking if Brave Browser is already installed...');
732
+
733
+ // Check if Brave is already installed
734
+ if (isBraveInstalledWindows()) {
735
+ const version = await getBraveVersionWindows();
736
+ if (version) {
737
+ console.log(`Brave Browser ${version} is already installed, skipping installation.`);
738
+ } else {
739
+ console.log('Brave Browser is already installed, skipping installation.');
740
+ }
741
+ return;
742
+ }
743
+
744
+ // Also check if Chocolatey has the package installed
745
+ const isChocoInstalled = await choco.isPackageInstalled(CHOCO_PACKAGE_NAME);
746
+ if (isChocoInstalled) {
747
+ console.log('Brave Browser is already installed via Chocolatey, skipping installation.');
748
+ return;
749
+ }
750
+
751
+ // Verify Chocolatey is available
752
+ if (!choco.isInstalled()) {
753
+ console.log('Chocolatey is not installed. Please install Chocolatey first.');
754
+ console.log('Run: dev install chocolatey');
755
+ return;
756
+ }
757
+
758
+ console.log('Installing Brave Browser via Chocolatey...');
759
+ console.log('This may take a few minutes...');
760
+
761
+ const result = await choco.install(CHOCO_PACKAGE_NAME);
762
+
763
+ if (!result.success) {
764
+ console.log('Failed to install Brave Browser via Chocolatey.');
765
+ console.log(result.output);
766
+ console.log('');
767
+ console.log('Troubleshooting:');
768
+ console.log(' 1. Ensure you are running as Administrator');
769
+ console.log(' 2. Try: choco install brave -y --force');
770
+ return;
771
+ }
772
+
773
+ // Verify the installation succeeded
774
+ const verified = await choco.isPackageInstalled(CHOCO_PACKAGE_NAME);
775
+ if (!verified && !isBraveInstalledWindows()) {
776
+ console.log('Installation may have failed: Brave Browser package not found after install.');
777
+ return;
778
+ }
779
+
780
+ console.log('Brave Browser installed successfully via Chocolatey.');
781
+ console.log('');
782
+ console.log('NOTE: Brave is now available in your Start Menu.');
783
+ console.log('You may need to open a new terminal to use it from the command line.');
784
+ }
785
+
786
+ /**
787
+ * Install Brave Browser from Git Bash on Windows.
788
+ *
789
+ * Git Bash runs within Windows, so this function installs Brave Browser
790
+ * on the Windows host using PowerShell interop with Chocolatey.
791
+ *
792
+ * Prerequisites:
793
+ * - Windows 10 or Windows 11
794
+ * - Git Bash installed (comes with Git for Windows)
795
+ * - Chocolatey package manager installed on Windows
796
+ * - Administrator privileges
797
+ *
798
+ * @returns {Promise<void>}
799
+ */
800
+ async function install_gitbash() {
801
+ console.log('Detected Git Bash on Windows.');
802
+ console.log('Installing Brave Browser on the Windows host...');
803
+ console.log('');
804
+
805
+ // Check if Brave is already installed by checking the Windows path
806
+ const fs = require('fs');
807
+
808
+ // Git Bash path format uses forward slashes with drive letter prefix
809
+ const windowsPath = '/c/Program Files/BraveSoftware/Brave-Browser/Application/brave.exe';
810
+ const exists = fs.existsSync(windowsPath);
811
+
812
+ if (exists) {
813
+ console.log('Brave Browser is already installed, skipping installation.');
814
+ console.log('');
815
+ console.log('To use Brave from Git Bash:');
816
+ console.log(' "/c/Program Files/BraveSoftware/Brave-Browser/Application/brave.exe" --version');
817
+ return;
818
+ }
819
+
820
+ // Try Chocolatey via PowerShell
821
+ console.log('Attempting installation via Chocolatey...');
822
+ const chocoResult = await shell.exec(
823
+ 'powershell.exe -NoProfile -Command "choco install brave -y"'
824
+ );
825
+
826
+ if (chocoResult.code === 0) {
827
+ console.log('Brave Browser installed successfully via Chocolatey.');
828
+ console.log('');
829
+ console.log('To use Brave from Git Bash:');
830
+ console.log(' "/c/Program Files/BraveSoftware/Brave-Browser/Application/brave.exe" --version');
831
+ return;
832
+ }
833
+
834
+ // Chocolatey failed
835
+ console.log('Failed to install Brave Browser.');
836
+ console.log(chocoResult.stdout || chocoResult.stderr);
837
+ console.log('');
838
+ console.log('Troubleshooting:');
839
+ console.log(' 1. Ensure Chocolatey is installed on Windows');
840
+ console.log(' 2. Run Git Bash as Administrator and retry');
841
+ console.log(' 3. Try installing directly from PowerShell:');
842
+ console.log(' choco install brave -y');
843
+ }
844
+
845
+ /**
846
+ * Check if Brave Browser is currently installed on the system.
847
+ *
848
+ * This function checks for Brave Browser installation across all supported platforms:
849
+ * - macOS: Checks for Brave Browser.app via Homebrew cask or application bundle
850
+ * - Windows: Checks for brave.exe at standard installation paths
851
+ * - Linux: Checks if brave-browser command exists
852
+ *
853
+ * @returns {Promise<boolean>} True if Brave Browser is installed, false otherwise
854
+ */
855
+ async function isInstalled() {
856
+ const platform = os.detect();
857
+
858
+ if (platform.type === 'macos') {
859
+ // Check if Brave Browser app bundle exists
860
+ if (isBraveInstalledMacOS()) {
861
+ return true;
862
+ }
863
+ // Also check via Homebrew cask
864
+ return await brew.isCaskInstalled(HOMEBREW_CASK_NAME);
865
+ }
866
+
867
+ if (platform.type === 'windows' || platform.type === 'gitbash') {
868
+ return isBraveInstalledWindows();
869
+ }
870
+
871
+ // Linux platforms: Check if brave-browser command exists
872
+ return isBraveInstalledLinux();
873
+ }
874
+
875
+ /**
876
+ * Check if this installer is supported on the current platform.
877
+ *
878
+ * Brave Browser is supported on most major platforms but requires a desktop
879
+ * environment since it is a GUI application. On headless servers or
880
+ * containers without a display, this function returns false.
881
+ *
882
+ * @returns {boolean} True if installation is supported on this platform
883
+ */
884
+ function isEligible() {
885
+ const platform = os.detect();
886
+
887
+ // First check if the platform is supported
888
+ const supportedPlatforms = ['macos', 'ubuntu', 'debian', 'wsl', 'raspbian', 'amazon_linux', 'rhel', 'fedora', 'windows', 'gitbash'];
889
+ if (!supportedPlatforms.includes(platform.type)) {
890
+ return false;
891
+ }
892
+
893
+ // This installer requires a desktop environment
894
+ if (REQUIRES_DESKTOP && !os.isDesktopAvailable()) {
895
+ return false;
896
+ }
897
+
898
+ return true;
899
+ }
900
+
901
+ /**
902
+ * Main installation entry point.
903
+ *
904
+ * Detects the current platform using os.detect() and routes to the appropriate
905
+ * platform-specific installer function. Handles platform aliases to ensure
906
+ * all supported distributions use the correct installation method.
907
+ *
908
+ * Supported platforms:
909
+ * - macOS: Brave Browser via Homebrew cask
910
+ * - Ubuntu/Debian: Brave Browser via official APT repository
911
+ * - Raspberry Pi OS: Brave Browser via official APT repository (ARM supported)
912
+ * - Amazon Linux/RHEL/Fedora: Brave Browser via official DNF/YUM repository
913
+ * - Windows: Brave Browser via Chocolatey
914
+ * - WSL (Ubuntu): Brave Browser within WSL environment
915
+ * - Git Bash: Brave Browser on Windows host
916
+ *
917
+ * @returns {Promise<void>}
918
+ */
919
+ async function install() {
920
+ const platform = os.detect();
921
+
922
+ // Map platform types to their installer functions
923
+ // This mapping handles aliases (e.g., debian uses the same installer as ubuntu)
924
+ const installers = {
925
+ 'macos': install_macos,
926
+ 'ubuntu': install_ubuntu,
927
+ 'debian': install_ubuntu,
928
+ 'wsl': install_ubuntu_wsl,
929
+ 'raspbian': install_raspbian,
930
+ 'amazon_linux': install_amazon_linux,
931
+ 'rhel': install_amazon_linux,
932
+ 'fedora': install_amazon_linux,
933
+ 'windows': install_windows,
934
+ 'gitbash': install_gitbash
935
+ };
936
+
937
+ const installer = installers[platform.type];
938
+
939
+ if (!installer) {
940
+ console.log(`Brave Browser is not available for ${platform.type}.`);
941
+ return;
942
+ }
943
+
944
+ await installer();
945
+ }
946
+
947
+ // Export all functions for use as a module and for testing
948
+ module.exports = {
949
+ REQUIRES_DESKTOP,
950
+ install,
951
+ isInstalled,
952
+ isEligible,
953
+ install_macos,
954
+ install_ubuntu,
955
+ install_ubuntu_wsl,
956
+ install_raspbian,
957
+ install_amazon_linux,
958
+ install_windows,
959
+ install_gitbash
960
+ };
961
+
962
+ // Allow direct execution: node brave-browser.js
963
+ if (require.main === module) {
964
+ install().catch(err => {
965
+ console.error(err.message);
966
+ process.exit(1);
967
+ });
968
+ }