1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-24 03:32:51 +02:00
bitwarden-browser/apps/desktop/desktop_native/napi/index.js

210 lines
5.9 KiB
JavaScript
Raw Normal View History

2022-05-05 16:01:09 +02:00
const { existsSync, readFileSync } = require('fs')
const { join } = require('path')
2022-04-11 19:53:16 +02:00
const { platform, arch } = process
let nativeBinding = null
2022-05-05 16:01:09 +02:00
let localFileExisted = false
2022-04-11 19:53:16 +02:00
let loadError = null
2022-05-05 16:01:09 +02:00
function isMusl() {
// For Node 10
if (!process.report || typeof process.report.getReport !== 'function') {
try {
return readFileSync('/usr/bin/ldd', 'utf8').includes('musl')
} catch (e) {
return true
}
} else {
const { glibcVersionRuntime } = process.report.getReport().header
return !glibcVersionRuntime
}
}
2022-04-11 19:53:16 +02:00
switch (platform) {
2022-05-05 16:01:09 +02:00
case 'android':
switch (arch) {
case 'arm64':
localFileExisted = existsSync(join(__dirname, 'desktop_napi.android-arm64.node'))
2022-05-05 16:01:09 +02:00
try {
if (localFileExisted) {
nativeBinding = require('./desktop_napi.android-arm64.node')
2022-05-05 16:01:09 +02:00
} else {
nativeBinding = require('@bitwarden/desktop-napi-android-arm64')
2022-05-05 16:01:09 +02:00
}
} catch (e) {
loadError = e
}
break
case 'arm':
localFileExisted = existsSync(join(__dirname, 'desktop_napi.android-arm-eabi.node'))
2022-05-05 16:01:09 +02:00
try {
if (localFileExisted) {
nativeBinding = require('./desktop_napi.android-arm-eabi.node')
2022-05-05 16:01:09 +02:00
} else {
nativeBinding = require('@bitwarden/desktop-napi-android-arm-eabi')
2022-05-05 16:01:09 +02:00
}
} catch (e) {
loadError = e
}
break
default:
throw new Error(`Unsupported architecture on Android ${arch}`)
}
break
2022-04-11 19:53:16 +02:00
case 'win32':
switch (arch) {
case 'x64':
2022-05-05 16:01:09 +02:00
localFileExisted = existsSync(
join(__dirname, 'desktop_napi.win32-x64-msvc.node')
2022-05-05 16:01:09 +02:00
)
2022-04-11 19:53:16 +02:00
try {
2022-05-05 16:01:09 +02:00
if (localFileExisted) {
nativeBinding = require('./desktop_napi.win32-x64-msvc.node')
2022-05-05 16:01:09 +02:00
} else {
nativeBinding = require('@bitwarden/desktop-napi-win32-x64-msvc')
2022-05-05 16:01:09 +02:00
}
2022-04-11 19:53:16 +02:00
} catch (e) {
loadError = e
}
break
case 'ia32':
2022-05-05 16:01:09 +02:00
localFileExisted = existsSync(
join(__dirname, 'desktop_napi.win32-ia32-msvc.node')
2022-05-05 16:01:09 +02:00
)
2022-04-11 19:53:16 +02:00
try {
2022-05-05 16:01:09 +02:00
if (localFileExisted) {
nativeBinding = require('./desktop_napi.win32-ia32-msvc.node')
2022-05-05 16:01:09 +02:00
} else {
nativeBinding = require('@bitwarden/desktop-napi-win32-ia32-msvc')
2022-05-05 16:01:09 +02:00
}
2022-04-11 19:53:16 +02:00
} catch (e) {
loadError = e
}
break
case 'arm64':
2022-05-05 16:01:09 +02:00
localFileExisted = existsSync(
join(__dirname, 'desktop_napi.win32-arm64-msvc.node')
2022-05-05 16:01:09 +02:00
)
2022-04-11 19:53:16 +02:00
try {
2022-05-05 16:01:09 +02:00
if (localFileExisted) {
nativeBinding = require('./desktop_napi.win32-arm64-msvc.node')
2022-05-05 16:01:09 +02:00
} else {
nativeBinding = require('@bitwarden/desktop-napi-win32-arm64-msvc')
2022-05-05 16:01:09 +02:00
}
2022-04-11 19:53:16 +02:00
} catch (e) {
loadError = e
}
break
default:
throw new Error(`Unsupported architecture on Windows: ${arch}`)
}
break
case 'darwin':
switch (arch) {
case 'x64':
localFileExisted = existsSync(join(__dirname, 'desktop_napi.darwin-x64.node'))
2022-04-11 19:53:16 +02:00
try {
2022-05-05 16:01:09 +02:00
if (localFileExisted) {
nativeBinding = require('./desktop_napi.darwin-x64.node')
2022-05-05 16:01:09 +02:00
} else {
nativeBinding = require('@bitwarden/desktop-napi-darwin-x64')
2022-05-05 16:01:09 +02:00
}
2022-04-11 19:53:16 +02:00
} catch (e) {
loadError = e
}
break
case 'arm64':
2022-05-05 16:01:09 +02:00
localFileExisted = existsSync(
join(__dirname, 'desktop_napi.darwin-arm64.node')
2022-05-05 16:01:09 +02:00
)
2022-04-11 19:53:16 +02:00
try {
2022-05-05 16:01:09 +02:00
if (localFileExisted) {
nativeBinding = require('./desktop_napi.darwin-arm64.node')
2022-05-05 16:01:09 +02:00
} else {
nativeBinding = require('@bitwarden/desktop-napi-darwin-arm64')
2022-05-05 16:01:09 +02:00
}
2022-04-11 19:53:16 +02:00
} catch (e) {
loadError = e
}
break
default:
throw new Error(`Unsupported architecture on macOS: ${arch}`)
}
break
2022-05-05 16:01:09 +02:00
case 'freebsd':
if (arch !== 'x64') {
throw new Error(`Unsupported architecture on FreeBSD: ${arch}`)
}
localFileExisted = existsSync(join(__dirname, 'desktop_napi.freebsd-x64.node'))
2022-05-05 16:01:09 +02:00
try {
if (localFileExisted) {
nativeBinding = require('./desktop_napi.freebsd-x64.node')
2022-05-05 16:01:09 +02:00
} else {
nativeBinding = require('@bitwarden/desktop-napi-freebsd-x64')
2022-05-05 16:01:09 +02:00
}
} catch (e) {
loadError = e
}
break
2022-04-11 19:53:16 +02:00
case 'linux':
switch (arch) {
case 'x64':
localFileExisted = existsSync(
join(__dirname, 'desktop_napi.linux-x64-musl.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./desktop_napi.linux-x64-musl.node')
} else {
nativeBinding = require('@bitwarden/desktop-napi-linux-x64-musl')
2022-04-11 19:53:16 +02:00
}
} catch (e) {
loadError = e
2022-04-11 19:53:16 +02:00
}
break
case 'arm64':
localFileExisted = existsSync(
join(__dirname, 'desktop_napi.linux-arm64-musl.node')
)
try {
if (localFileExisted) {
nativeBinding = require('./desktop_napi.linux-arm64-musl.node')
} else {
nativeBinding = require('@bitwarden/desktop-napi-linux-arm64-musl')
2022-04-11 19:53:16 +02:00
}
} catch (e) {
loadError = e
2022-04-11 19:53:16 +02:00
}
break
case 'arm':
2022-05-05 16:01:09 +02:00
localFileExisted = existsSync(
join(__dirname, 'desktop_napi.linux-arm-gnueabihf.node')
2022-05-05 16:01:09 +02:00
)
2022-04-11 19:53:16 +02:00
try {
2022-05-05 16:01:09 +02:00
if (localFileExisted) {
nativeBinding = require('./desktop_napi.linux-arm-gnueabihf.node')
2022-05-05 16:01:09 +02:00
} else {
nativeBinding = require('@bitwarden/desktop-napi-linux-arm-gnueabihf')
2022-05-05 16:01:09 +02:00
}
2022-04-11 19:53:16 +02:00
} catch (e) {
loadError = e
}
break
default:
throw new Error(`Unsupported architecture on Linux: ${arch}`)
}
break
default:
throw new Error(`Unsupported OS: ${platform}, architecture: ${arch}`)
}
if (!nativeBinding) {
if (loadError) {
throw loadError
}
throw new Error(`Failed to load native binding`)
}
[PM-7846] Implement a rust based native messaging proxy and IPC system (#9894) * [PM-7846] Implement a rust based native messaging proxy and IPC system * Only build desktop_proxy * Bundle the desktop_proxy file * Make sys deps optional for the proxy * Restore accidentally deleted after-sign * Update native cache to contain dist folder * Add some test logging * Native module cache seems very aggressive * Fix invalid directory * Fix debug print * Remove cache force * Remove cache debug code * Only log to file in debug builds * Place the binary in the correct place for mac and make sure it's signed * Fix platform paths * Test unsigned appx * Revert "Test unsigned appx" This reverts commit e47535440afa981c7fbe0cad2e09f2a633735b2f. * Fix comment * Remove logs * Use debug builds in native code, and test private path on MacOS * Add connected message * Update IPC API comments * Update linux to also use XDG_ dir * Update main.rs comment * Improve docs and split some tasks spawned into separate functions * Update send docs and return number of elements sent * Mark `listen` as async to ensure it runs in a tokio context, handle errors better * Add log on client channel closed * Move binary to MacOS folder, and sign it manually so it gets the correct entitlements * Fix some review comments * Run prettier * Added missing zbus_polkit dep * Extract magic number and increase it to match spec * Comment fix * Use Napi object, combine nativeBinding export, always log to file * Missed one comment * Remove unnecessary generics * Correct comment * Select only codesigning identities * Filter certificates * Also add local dev cert * Remove log * Fix package ID * debug_assert won't run the pop() in release mode * Better error messages * Fix review comments * Remove unnecessary comment * Update napi generated TS file * Temporary fix for DDG
2024-09-05 12:54:24 +02:00
module.exports = nativeBinding