@adrouter/agent 0.1.0-beta.2 → 0.1.0-beta.4
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.
- package/README.md +16 -17
- package/lib/cli.mjs +2 -2
- package/lib/installer.mjs +267 -107
- package/lib/manifest.mjs +98 -21
- package/package.json +5 -3
- package/release-manifest.json +47 -8
package/README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
# `@adrouter/agent`
|
|
2
2
|
|
|
3
|
-
This dependency-free package installs and launches the
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
The desktop application is not duplicated in the npm tarball.
|
|
3
|
+
This dependency-free package installs and launches the matching AdRouter Agent
|
|
4
|
+
portable application from the canonical GitHub release. The desktop binaries
|
|
5
|
+
are not duplicated in the npm tarball.
|
|
7
6
|
|
|
8
7
|
```bash
|
|
9
8
|
npm install --global @adrouter/agent@beta
|
|
@@ -11,25 +10,25 @@ adrouter-agent doctor --json
|
|
|
11
10
|
adrouter-agent
|
|
12
11
|
```
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
22.19
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
integrity checks.
|
|
13
|
+
Supported targets are macOS 12+ arm64/x64, Ubuntu Desktop 24.04 LTS x64, and
|
|
14
|
+
Windows 11 x64 with Node.js 22.19 or newer. The launcher accepts no alternate
|
|
15
|
+
download URL or checksum. It validates the embedded schema-3 manifest, bounded
|
|
16
|
+
download, SHA-256 digest, archive paths, executable, managed receipt, and
|
|
17
|
+
staged-update rollback before activation.
|
|
20
18
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
macOS is ad-hoc signed but not notarized. Linux and Windows portable beta
|
|
20
|
+
artifacts are unsigned. Run `adrouter-agent doctor --json` for the platform
|
|
21
|
+
install path, artifact key, verification result, sandbox readiness, and static
|
|
22
|
+
setup guidance. The launcher never disables host security or auto-elevates.
|
|
24
23
|
|
|
25
24
|
Commands:
|
|
26
25
|
|
|
27
26
|
- `adrouter-agent` or `adrouter-agent launch`: install if needed, then launch.
|
|
28
27
|
- `adrouter-agent install`: install and verify without launching.
|
|
29
|
-
- `adrouter-agent doctor --json`: report
|
|
30
|
-
|
|
28
|
+
- `adrouter-agent doctor --json`: report installation, integrity, and sandbox
|
|
29
|
+
status without credentials.
|
|
31
30
|
- `adrouter-agent --version`: print the package/release version without a
|
|
32
31
|
network request.
|
|
33
32
|
|
|
34
|
-
See the
|
|
35
|
-
|
|
33
|
+
See the repository's platform-setup guide for Ubuntu dependencies, Windows
|
|
34
|
+
one-time sandbox provisioning, and staging bearer-token onboarding.
|
package/lib/cli.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { inspectInstallation, install, launch } from './installer.mjs';
|
|
2
|
-
import { readManifest } from './manifest.mjs';
|
|
2
|
+
import { readManifest, selectArtifact } from './manifest.mjs';
|
|
3
3
|
|
|
4
4
|
const USAGE = `Usage: adrouter-agent [launch|install|doctor [--json]|--version]
|
|
5
5
|
|
|
@@ -46,5 +46,5 @@ export async function runCli(args, io = process) {
|
|
|
46
46
|
const appPath = await install(manifest);
|
|
47
47
|
const report = await inspectInstallation(manifest);
|
|
48
48
|
if (report.warning) io.stderr.write(`Warning: ${report.warning}\n`);
|
|
49
|
-
await launch(appPath);
|
|
49
|
+
await launch(appPath, { artifact: selectArtifact(manifest) });
|
|
50
50
|
}
|
package/lib/installer.mjs
CHANGED
|
@@ -2,28 +2,32 @@ import { execFile, spawn } from 'node:child_process';
|
|
|
2
2
|
import { createHash } from 'node:crypto';
|
|
3
3
|
import {
|
|
4
4
|
access,
|
|
5
|
+
constants as fsConstants,
|
|
5
6
|
lstat,
|
|
6
7
|
mkdir,
|
|
7
8
|
mkdtemp,
|
|
8
9
|
open,
|
|
9
10
|
readdir,
|
|
10
11
|
readFile,
|
|
12
|
+
readlink,
|
|
11
13
|
realpath,
|
|
12
14
|
rename,
|
|
13
15
|
rm,
|
|
14
16
|
} from 'node:fs/promises';
|
|
15
17
|
import { homedir } from 'node:os';
|
|
16
|
-
import { basename, join, sep } from 'node:path';
|
|
18
|
+
import { basename, join, posix, relative, sep } from 'node:path';
|
|
17
19
|
import { promisify } from 'node:util';
|
|
20
|
+
import { selectArtifact } from './manifest.mjs';
|
|
18
21
|
|
|
19
22
|
const execFileAsync = promisify(execFile);
|
|
20
|
-
const APP_NAME = 'AdRouter Agent.app';
|
|
21
|
-
const EXECUTABLE_NAME = 'AdRouter Agent';
|
|
22
23
|
const RECEIPT_OWNER = '@adrouter/agent';
|
|
23
24
|
const MAX_DOWNLOAD_BYTES = 512 * 1024 * 1024;
|
|
24
25
|
const MAX_REDIRECTS = 5;
|
|
25
|
-
const
|
|
26
|
+
const WINDOWS_SANDBOX_SETUP = 'npx @anthropic-ai/sandbox-runtime@0.0.65 windows-install';
|
|
27
|
+
const MAC_WARNING =
|
|
26
28
|
'This credential-free beta is not Developer ID signed or notarized. If macOS blocks it, open System Settings > Privacy & Security and choose Open Anyway.';
|
|
29
|
+
const PORTABLE_WARNING =
|
|
30
|
+
'This portable beta is unsigned. Install only from the canonical release and retain checksum verification.';
|
|
27
31
|
const ALLOWED_HOSTS = new Set([
|
|
28
32
|
'github.com',
|
|
29
33
|
'objects.githubusercontent.com',
|
|
@@ -31,12 +35,13 @@ const ALLOWED_HOSTS = new Set([
|
|
|
31
35
|
]);
|
|
32
36
|
|
|
33
37
|
export function assertSupportedPlatform(platform = process.platform, arch = process.arch) {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
selectArtifact(
|
|
39
|
+
{
|
|
40
|
+
artifacts: [{ key: 'darwin-universal' }, { key: 'linux-x64' }, { key: 'win32-x64' }],
|
|
41
|
+
},
|
|
42
|
+
platform,
|
|
43
|
+
arch
|
|
44
|
+
);
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
export function assertSupportedMacOsVersion(version) {
|
|
@@ -48,7 +53,9 @@ export function assertSupportedMacOsVersion(version) {
|
|
|
48
53
|
|
|
49
54
|
export function assertNonRoot(uid = process.getuid?.()) {
|
|
50
55
|
if (uid === 0) {
|
|
51
|
-
throw new Error(
|
|
56
|
+
throw new Error(
|
|
57
|
+
'Do not run adrouter-agent with sudo or as root; install it as the logged-in user.'
|
|
58
|
+
);
|
|
52
59
|
}
|
|
53
60
|
}
|
|
54
61
|
|
|
@@ -63,7 +70,7 @@ export function assertAllowedDownloadUrl(input) {
|
|
|
63
70
|
return url;
|
|
64
71
|
}
|
|
65
72
|
|
|
66
|
-
export function assertSafeArchiveEntries(entries) {
|
|
73
|
+
export function assertSafeArchiveEntries(entries, archiveRoot = 'AdRouter Agent.app') {
|
|
67
74
|
if (!Array.isArray(entries) || entries.length === 0) {
|
|
68
75
|
throw new Error('The release ZIP is empty.');
|
|
69
76
|
}
|
|
@@ -77,24 +84,73 @@ export function assertSafeArchiveEntries(entries) {
|
|
|
77
84
|
) {
|
|
78
85
|
throw new Error(`Unsafe ZIP entry: ${JSON.stringify(entry)}`);
|
|
79
86
|
}
|
|
80
|
-
|
|
87
|
+
const normalized = entry.replaceAll('\\', '/').replace(/\/$/, '');
|
|
88
|
+
if (normalized !== archiveRoot && !normalized.startsWith(`${archiveRoot}/`)) {
|
|
81
89
|
throw new Error(`Unexpected ZIP layout entry: ${entry}`);
|
|
82
90
|
}
|
|
83
91
|
}
|
|
84
92
|
}
|
|
85
93
|
|
|
86
|
-
export function
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
'
|
|
92
|
-
'
|
|
93
|
-
|
|
94
|
+
export function assertSafeArchiveSymlink(entry, target, archiveRoot = 'AdRouter Agent.app') {
|
|
95
|
+
assertSafeArchiveEntries([entry], archiveRoot);
|
|
96
|
+
if (
|
|
97
|
+
typeof target !== 'string' ||
|
|
98
|
+
target.length === 0 ||
|
|
99
|
+
target.includes('\0') ||
|
|
100
|
+
target.startsWith('/') ||
|
|
101
|
+
target.startsWith('\\') ||
|
|
102
|
+
target.includes('\\')
|
|
103
|
+
) {
|
|
104
|
+
throw new Error(`Unsafe ZIP symbolic link target: ${JSON.stringify(target)}`);
|
|
105
|
+
}
|
|
106
|
+
const resolved = posix.resolve('/', posix.dirname(entry), target);
|
|
107
|
+
const root = `/${archiveRoot}`;
|
|
108
|
+
if (resolved !== root && !resolved.startsWith(`${root}/`)) {
|
|
109
|
+
throw new Error(`ZIP symbolic link escapes ${archiveRoot}: ${entry} -> ${target}`);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export function releasePaths(
|
|
114
|
+
_manifest,
|
|
115
|
+
homeDirectory = homedir(),
|
|
116
|
+
platform = process.platform,
|
|
117
|
+
options = {}
|
|
118
|
+
) {
|
|
119
|
+
if (platform === 'darwin') {
|
|
120
|
+
const applicationsDirectory = join(homeDirectory, 'Applications');
|
|
121
|
+
const supportDirectory = join(
|
|
122
|
+
homeDirectory,
|
|
123
|
+
'Library',
|
|
124
|
+
'Application Support',
|
|
125
|
+
'adrouter-agent-launcher'
|
|
126
|
+
);
|
|
127
|
+
return {
|
|
128
|
+
applicationsDirectory,
|
|
129
|
+
supportDirectory,
|
|
130
|
+
appPath: join(applicationsDirectory, 'AdRouter Agent.app'),
|
|
131
|
+
receiptPath: join(supportDirectory, 'receipt.json'),
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
if (platform === 'linux') {
|
|
135
|
+
const dataDirectory =
|
|
136
|
+
options.xdgDataHome ?? process.env.XDG_DATA_HOME ?? join(homeDirectory, '.local', 'share');
|
|
137
|
+
const applicationsDirectory = join(dataDirectory, 'adrouter-agent');
|
|
138
|
+
const supportDirectory = join(dataDirectory, 'adrouter-agent-launcher');
|
|
139
|
+
return {
|
|
140
|
+
applicationsDirectory,
|
|
141
|
+
supportDirectory,
|
|
142
|
+
appPath: join(applicationsDirectory, 'app'),
|
|
143
|
+
receiptPath: join(supportDirectory, 'receipt.json'),
|
|
144
|
+
};
|
|
145
|
+
}
|
|
146
|
+
const localAppData =
|
|
147
|
+
options.localAppData ?? process.env.LOCALAPPDATA ?? join(homeDirectory, 'AppData', 'Local');
|
|
148
|
+
const applicationsDirectory = join(localAppData, 'Programs');
|
|
149
|
+
const supportDirectory = join(localAppData, 'adrouter-agent-launcher');
|
|
94
150
|
return {
|
|
95
151
|
applicationsDirectory,
|
|
96
152
|
supportDirectory,
|
|
97
|
-
appPath: join(applicationsDirectory,
|
|
153
|
+
appPath: join(applicationsDirectory, 'AdRouter Agent'),
|
|
98
154
|
receiptPath: join(supportDirectory, 'receipt.json'),
|
|
99
155
|
};
|
|
100
156
|
}
|
|
@@ -122,7 +178,7 @@ async function plistValue(appPath, key, executeImpl) {
|
|
|
122
178
|
return stdout.trim();
|
|
123
179
|
}
|
|
124
180
|
|
|
125
|
-
async function
|
|
181
|
+
async function verifyMacApp(appPath, manifest, executeImpl) {
|
|
126
182
|
await executeImpl('/usr/bin/codesign', ['--verify', '--deep', '--strict', appPath]);
|
|
127
183
|
const signatureResult = await executeImpl('/usr/bin/codesign', ['-dv', '--verbose=4', appPath]);
|
|
128
184
|
const signatureDetails = `${signatureResult.stdout ?? ''}${signatureResult.stderr ?? ''}`;
|
|
@@ -132,27 +188,44 @@ async function verifyApp(appPath, manifest, executeImpl = execute) {
|
|
|
132
188
|
) {
|
|
133
189
|
throw new Error('The application is not the expected credential-free ad-hoc build.');
|
|
134
190
|
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
const buildVersion = await plistValue(appPath, 'CFBundleVersion', executeImpl);
|
|
139
|
-
if (bundleIdentifier !== manifest.bundleIdentifier) {
|
|
191
|
+
if (
|
|
192
|
+
(await plistValue(appPath, 'CFBundleIdentifier', executeImpl)) !== manifest.bundleIdentifier
|
|
193
|
+
) {
|
|
140
194
|
throw new Error('The installed app bundle identifier does not match the release manifest.');
|
|
141
195
|
}
|
|
142
|
-
if (
|
|
196
|
+
if (
|
|
197
|
+
(await plistValue(appPath, 'CFBundleShortVersionString', executeImpl)) !==
|
|
198
|
+
manifest.bundleShortVersion
|
|
199
|
+
) {
|
|
143
200
|
throw new Error('The installed app short bundle version does not match the release manifest.');
|
|
144
201
|
}
|
|
145
|
-
if (
|
|
202
|
+
if ((await plistValue(appPath, 'CFBundleVersion', executeImpl)) !== manifest.bundleVersion) {
|
|
146
203
|
throw new Error('The installed app build version does not match the release manifest.');
|
|
147
204
|
}
|
|
148
|
-
|
|
149
|
-
const executable = join(appPath, 'Contents', 'MacOS', EXECUTABLE_NAME);
|
|
205
|
+
const executable = join(appPath, 'Contents', 'MacOS', 'AdRouter Agent');
|
|
150
206
|
const { stdout: architectures } = await executeImpl('/usr/bin/lipo', ['-archs', executable]);
|
|
151
207
|
if (!architectures.includes('arm64') || !architectures.includes('x86_64')) {
|
|
152
208
|
throw new Error('The installed app is not a universal arm64+x86_64 build.');
|
|
153
209
|
}
|
|
154
210
|
}
|
|
155
211
|
|
|
212
|
+
async function verifyPortableApp(appPath, artifact) {
|
|
213
|
+
const executable = join(appPath, ...artifact.executablePath.split('/'));
|
|
214
|
+
const stat = await lstat(executable);
|
|
215
|
+
if (!stat.isFile() || stat.isSymbolicLink()) {
|
|
216
|
+
throw new Error('The portable application executable is missing or unsafe.');
|
|
217
|
+
}
|
|
218
|
+
if (artifact.platform === 'linux') await access(executable, fsConstants.X_OK);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
async function verifyApp(appPath, manifest, artifact, executeImpl = execute) {
|
|
222
|
+
if (artifact.verificationMode === 'macos-adhoc') {
|
|
223
|
+
await verifyMacApp(appPath, manifest, executeImpl);
|
|
224
|
+
} else {
|
|
225
|
+
await verifyPortableApp(appPath, artifact);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
156
229
|
async function assessGatekeeper(appPath, executeImpl = execute) {
|
|
157
230
|
try {
|
|
158
231
|
await executeImpl('/usr/sbin/spctl', ['--assess', '--type', 'execute', appPath]);
|
|
@@ -163,27 +236,30 @@ async function assessGatekeeper(appPath, executeImpl = execute) {
|
|
|
163
236
|
}
|
|
164
237
|
}
|
|
165
238
|
|
|
166
|
-
async function verifyExtractedTree(root, appPath) {
|
|
239
|
+
async function verifyExtractedTree(root, appPath, archiveRoot) {
|
|
167
240
|
const canonicalRoot = `${await realpath(root)}${sep}`;
|
|
168
241
|
async function visit(path) {
|
|
169
242
|
const stat = await lstat(path);
|
|
170
|
-
if (stat.isSymbolicLink())
|
|
243
|
+
if (stat.isSymbolicLink()) {
|
|
244
|
+
const entry = relative(root, path).split(sep).join('/');
|
|
245
|
+
assertSafeArchiveSymlink(entry, await readlink(path), archiveRoot);
|
|
246
|
+
}
|
|
171
247
|
const canonical = await realpath(path);
|
|
172
248
|
if (canonical !== canonicalRoot.slice(0, -1) && !canonical.startsWith(canonicalRoot)) {
|
|
173
249
|
throw new Error('Release archive escaped its extraction directory.');
|
|
174
250
|
}
|
|
175
|
-
if (!stat.isDirectory()) return;
|
|
251
|
+
if (!stat.isDirectory() || stat.isSymbolicLink()) return;
|
|
176
252
|
for (const entry of await readdir(path)) await visit(join(path, entry));
|
|
177
253
|
}
|
|
178
254
|
const topLevel = await readdir(root);
|
|
179
|
-
if (topLevel.length !== 1 || topLevel[0] !==
|
|
180
|
-
throw new Error(
|
|
255
|
+
if (topLevel.length !== 1 || topLevel[0] !== archiveRoot) {
|
|
256
|
+
throw new Error(`Release archive must contain exactly ${archiveRoot}.`);
|
|
181
257
|
}
|
|
182
258
|
await visit(appPath);
|
|
183
259
|
}
|
|
184
260
|
|
|
185
|
-
async function download(manifest, destination, fetchImpl = fetch) {
|
|
186
|
-
let current = assertAllowedDownloadUrl(
|
|
261
|
+
async function download(manifest, artifact, destination, fetchImpl = fetch) {
|
|
262
|
+
let current = assertAllowedDownloadUrl(artifact.assetUrl);
|
|
187
263
|
for (let redirect = 0; redirect <= MAX_REDIRECTS; redirect += 1) {
|
|
188
264
|
const response = await fetchImpl(current, {
|
|
189
265
|
redirect: 'manual',
|
|
@@ -230,46 +306,87 @@ async function download(manifest, destination, fetchImpl = fetch) {
|
|
|
230
306
|
throw new Error('Release download ended before the declared content length.');
|
|
231
307
|
}
|
|
232
308
|
const actual = digest.digest('hex');
|
|
233
|
-
if (actual !==
|
|
309
|
+
if (actual !== artifact.sha256) throw new Error('Release ZIP checksum verification failed.');
|
|
234
310
|
return { bytes: received, sha256: actual, finalUrl: current.href };
|
|
235
311
|
}
|
|
236
312
|
throw new Error('Release download exceeded the redirect limit.');
|
|
237
313
|
}
|
|
238
314
|
|
|
239
|
-
async function archiveEntries(zipPath, executeImpl = execute) {
|
|
315
|
+
async function archiveEntries(zipPath, artifact, executeImpl = execute) {
|
|
316
|
+
if (artifact.platform === 'win32') {
|
|
317
|
+
const script =
|
|
318
|
+
'Add-Type -AssemblyName System.IO.Compression.FileSystem; ' +
|
|
319
|
+
'$z=[IO.Compression.ZipFile]::OpenRead($args[0]); try {$z.Entries.FullName} finally {$z.Dispose()}';
|
|
320
|
+
const { stdout } = await executeImpl('powershell.exe', [
|
|
321
|
+
'-NoProfile',
|
|
322
|
+
'-NonInteractive',
|
|
323
|
+
'-Command',
|
|
324
|
+
script,
|
|
325
|
+
zipPath,
|
|
326
|
+
]);
|
|
327
|
+
const entries = stdout.split(/\r?\n/).filter(Boolean);
|
|
328
|
+
assertSafeArchiveEntries(entries, artifact.archiveRoot);
|
|
329
|
+
return entries;
|
|
330
|
+
}
|
|
240
331
|
const { stdout } = await executeImpl('/usr/bin/unzip', ['-Z1', zipPath]);
|
|
241
332
|
const entries = stdout.split('\n').filter(Boolean);
|
|
242
|
-
assertSafeArchiveEntries(entries);
|
|
333
|
+
assertSafeArchiveEntries(entries, artifact.archiveRoot);
|
|
243
334
|
const { stdout: listing } = await executeImpl('/usr/bin/zipinfo', ['-l', zipPath]);
|
|
244
|
-
|
|
245
|
-
|
|
335
|
+
for (const line of listing.split('\n').filter((value) => /^l[rwx-]{9}\s/.test(value))) {
|
|
336
|
+
const match = line.match(/^l[rwx-]{9}\s+\S+\s+\S+\s+\d+\s+\S+\s+\d+\s+\S+\s+\S+\s+\S+\s+(.+)$/);
|
|
337
|
+
if (!match) throw new Error('Unable to validate a ZIP symbolic link entry.');
|
|
338
|
+
const entry = match[1];
|
|
339
|
+
const { stdout: target } = await executeImpl('/usr/bin/unzip', ['-p', zipPath, entry]);
|
|
340
|
+
assertSafeArchiveSymlink(entry, target, artifact.archiveRoot);
|
|
246
341
|
}
|
|
247
342
|
return entries;
|
|
248
343
|
}
|
|
249
344
|
|
|
250
|
-
async function
|
|
345
|
+
async function extractArchive(archive, extracted, artifact, executeImpl) {
|
|
346
|
+
if (artifact.platform === 'darwin') {
|
|
347
|
+
await executeImpl('/usr/bin/ditto', ['-x', '-k', archive, extracted]);
|
|
348
|
+
} else if (artifact.platform === 'linux') {
|
|
349
|
+
await executeImpl('/usr/bin/unzip', ['-q', archive, '-d', extracted]);
|
|
350
|
+
} else {
|
|
351
|
+
const script = 'Expand-Archive -LiteralPath $args[0] -DestinationPath $args[1] -Force';
|
|
352
|
+
await executeImpl('powershell.exe', [
|
|
353
|
+
'-NoProfile',
|
|
354
|
+
'-NonInteractive',
|
|
355
|
+
'-Command',
|
|
356
|
+
script,
|
|
357
|
+
archive,
|
|
358
|
+
extracted,
|
|
359
|
+
]);
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
async function readReceipt(receiptPath, appPath, platform) {
|
|
251
364
|
try {
|
|
252
365
|
const receipt = JSON.parse(await readFile(receiptPath, 'utf8'));
|
|
366
|
+
const current = receipt.schema === 3;
|
|
367
|
+
const legacyMac = platform === 'darwin' && receipt.schema === 2;
|
|
253
368
|
const owned =
|
|
254
|
-
|
|
369
|
+
(current || legacyMac) &&
|
|
255
370
|
receipt.owner === RECEIPT_OWNER &&
|
|
256
371
|
receipt.applicationPath === appPath;
|
|
257
|
-
return { receipt, owned };
|
|
372
|
+
return { receipt, owned, legacyMac };
|
|
258
373
|
} catch {
|
|
259
|
-
return { receipt: null, owned: false };
|
|
374
|
+
return { receipt: null, owned: false, legacyMac: false };
|
|
260
375
|
}
|
|
261
376
|
}
|
|
262
377
|
|
|
263
|
-
function receiptMatchesManifest(receipt, manifest) {
|
|
378
|
+
function receiptMatchesManifest(receipt, manifest, artifact) {
|
|
264
379
|
return (
|
|
265
380
|
receipt?.releaseVersion === manifest.releaseVersion &&
|
|
266
|
-
receipt?.sha256 ===
|
|
267
|
-
receipt?.releaseTag === manifest.releaseTag
|
|
381
|
+
receipt?.sha256 === artifact.sha256 &&
|
|
382
|
+
receipt?.releaseTag === manifest.releaseTag &&
|
|
383
|
+
(receipt.schema === 2 || receipt.artifactKey === artifact.key)
|
|
268
384
|
);
|
|
269
385
|
}
|
|
270
386
|
|
|
271
|
-
async function appIsRunning(appPath, executeImpl = execute) {
|
|
272
|
-
const executable = join(appPath, '
|
|
387
|
+
async function appIsRunning(appPath, artifact, executeImpl = execute) {
|
|
388
|
+
const executable = join(appPath, ...artifact.executablePath.split('/'));
|
|
389
|
+
if (artifact.platform === 'win32') return false;
|
|
273
390
|
const { stdout } = await executeImpl('/bin/ps', ['-axo', 'command=']);
|
|
274
391
|
return stdout
|
|
275
392
|
.split('\n')
|
|
@@ -277,14 +394,42 @@ async function appIsRunning(appPath, executeImpl = execute) {
|
|
|
277
394
|
.some((line) => line === executable || line.startsWith(`${executable} `));
|
|
278
395
|
}
|
|
279
396
|
|
|
397
|
+
function sandboxReport(platform, override) {
|
|
398
|
+
if (override) return override;
|
|
399
|
+
if (platform === 'win32') {
|
|
400
|
+
return {
|
|
401
|
+
status: 'setup-required',
|
|
402
|
+
detail: 'Run the one-time elevated Windows sandbox setup before command tools are enabled.',
|
|
403
|
+
setupCommands: [WINDOWS_SANDBOX_SETUP],
|
|
404
|
+
};
|
|
405
|
+
}
|
|
406
|
+
if (platform === 'linux') {
|
|
407
|
+
return {
|
|
408
|
+
status: 'setup-required',
|
|
409
|
+
detail: 'Verify Bubblewrap, socat, ripgrep, and the Ubuntu AppArmor userns profile.',
|
|
410
|
+
setupCommands: ['sudo apt-get install bubblewrap socat ripgrep'],
|
|
411
|
+
};
|
|
412
|
+
}
|
|
413
|
+
return {
|
|
414
|
+
status: 'ready',
|
|
415
|
+
detail: 'Seatbelt command sandboxing is built into macOS.',
|
|
416
|
+
setupCommands: [],
|
|
417
|
+
};
|
|
418
|
+
}
|
|
419
|
+
|
|
280
420
|
export async function inspectInstallation(manifest, options = {}) {
|
|
281
|
-
const
|
|
421
|
+
const platform = options.platform ?? process.platform;
|
|
422
|
+
const architecture = options.arch ?? process.arch;
|
|
423
|
+
const artifact = selectArtifact(manifest, platform, architecture);
|
|
424
|
+
const paths = releasePaths(manifest, options.homeDirectory, platform, options);
|
|
282
425
|
const report = {
|
|
283
|
-
schema:
|
|
426
|
+
schema: 3,
|
|
284
427
|
distributionMode: manifest.distributionMode,
|
|
285
|
-
platform
|
|
286
|
-
architecture
|
|
287
|
-
|
|
428
|
+
platform,
|
|
429
|
+
architecture,
|
|
430
|
+
artifactKey: artifact.key,
|
|
431
|
+
verificationMode: artifact.verificationMode,
|
|
432
|
+
operatingSystemVersion: null,
|
|
288
433
|
supported: false,
|
|
289
434
|
releaseVersion: manifest.releaseVersion,
|
|
290
435
|
releaseTag: manifest.releaseTag,
|
|
@@ -293,89 +438,96 @@ export async function inspectInstallation(manifest, options = {}) {
|
|
|
293
438
|
receiptMatches: false,
|
|
294
439
|
bundleIntegrity: false,
|
|
295
440
|
signatureType: 'missing',
|
|
296
|
-
gatekeeperAssessment: 'unavailable',
|
|
297
|
-
|
|
441
|
+
gatekeeperAssessment: platform === 'darwin' ? 'unavailable' : 'not-applicable',
|
|
442
|
+
sandbox: sandboxReport(platform, options.sandbox),
|
|
443
|
+
warning: platform === 'darwin' ? MAC_WARNING : PORTABLE_WARNING,
|
|
298
444
|
};
|
|
299
445
|
try {
|
|
300
|
-
assertSupportedPlatform(
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
446
|
+
assertSupportedPlatform(platform, architecture);
|
|
447
|
+
if (platform === 'darwin') {
|
|
448
|
+
const versionResult =
|
|
449
|
+
options.macOsVersion === undefined
|
|
450
|
+
? await (options.executeImpl ?? execute)('/usr/bin/sw_vers', ['-productVersion'])
|
|
451
|
+
: { stdout: options.macOsVersion };
|
|
452
|
+
report.operatingSystemVersion = versionResult.stdout.trim();
|
|
453
|
+
assertSupportedMacOsVersion(report.operatingSystemVersion);
|
|
454
|
+
}
|
|
307
455
|
report.supported = true;
|
|
308
456
|
} catch (error) {
|
|
309
457
|
report.error = error instanceof Error ? error.message : String(error);
|
|
310
458
|
return report;
|
|
311
459
|
}
|
|
312
|
-
|
|
313
460
|
report.installed = await exists(paths.appPath);
|
|
314
461
|
if (!report.installed) return report;
|
|
315
|
-
const receiptStatus = await readReceipt(paths.receiptPath, paths.appPath);
|
|
462
|
+
const receiptStatus = await readReceipt(paths.receiptPath, paths.appPath, platform);
|
|
316
463
|
report.receiptMatches =
|
|
317
|
-
receiptStatus.owned && receiptMatchesManifest(receiptStatus.receipt, manifest);
|
|
464
|
+
receiptStatus.owned && receiptMatchesManifest(receiptStatus.receipt, manifest, artifact);
|
|
318
465
|
try {
|
|
319
|
-
await verifyApp(paths.appPath, manifest, options.executeImpl);
|
|
466
|
+
await verifyApp(paths.appPath, manifest, artifact, options.executeImpl);
|
|
320
467
|
report.bundleIntegrity = true;
|
|
321
|
-
report.signatureType = 'adhoc';
|
|
468
|
+
report.signatureType = platform === 'darwin' ? 'adhoc' : 'unsigned-portable';
|
|
322
469
|
} catch (error) {
|
|
323
470
|
report.signatureType = 'invalid';
|
|
324
471
|
report.error = error instanceof Error ? error.message : String(error);
|
|
325
472
|
}
|
|
326
|
-
|
|
327
|
-
|
|
473
|
+
if (platform === 'darwin') {
|
|
474
|
+
report.gatekeeperAssessment = await assessGatekeeper(paths.appPath, options.executeImpl);
|
|
475
|
+
if (report.gatekeeperAssessment === 'accepted') report.warning = null;
|
|
476
|
+
}
|
|
328
477
|
return report;
|
|
329
478
|
}
|
|
330
479
|
|
|
331
480
|
export async function install(manifest, options = {}) {
|
|
332
|
-
|
|
481
|
+
const platform = options.platform ?? process.platform;
|
|
482
|
+
const architecture = options.arch ?? process.arch;
|
|
483
|
+
const artifact = selectArtifact(manifest, platform, architecture);
|
|
333
484
|
assertNonRoot(options.uid ?? process.getuid?.());
|
|
334
|
-
const paths = releasePaths(manifest, options.homeDirectory);
|
|
485
|
+
const paths = releasePaths(manifest, options.homeDirectory, platform, options);
|
|
335
486
|
const executeImpl = options.executeImpl ?? execute;
|
|
336
487
|
const existing = await inspectInstallation(manifest, options);
|
|
337
|
-
if (!existing.supported)
|
|
338
|
-
throw new Error(existing.error ?? 'This
|
|
339
|
-
|
|
340
|
-
if (
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
488
|
+
if (!existing.supported)
|
|
489
|
+
throw new Error(existing.error ?? 'This operating system is not supported.');
|
|
490
|
+
const receiptStatus = await readReceipt(paths.receiptPath, paths.appPath, platform);
|
|
491
|
+
if (existing.installed && existing.receiptMatches && existing.bundleIntegrity) {
|
|
492
|
+
if (receiptStatus.legacyMac) {
|
|
493
|
+
await (options.writeReceiptImpl ?? writeReceipt)(paths.receiptPath, {
|
|
494
|
+
...receiptStatus.receipt,
|
|
495
|
+
schema: 3,
|
|
496
|
+
distributionMode: manifest.distributionMode,
|
|
497
|
+
artifactKey: artifact.key,
|
|
498
|
+
migratedAt: new Date().toISOString(),
|
|
499
|
+
});
|
|
500
|
+
}
|
|
346
501
|
return paths.appPath;
|
|
347
502
|
}
|
|
348
|
-
|
|
349
|
-
const receiptStatus = await readReceipt(paths.receiptPath, paths.appPath);
|
|
350
503
|
if (existing.installed && !receiptStatus.owned) {
|
|
351
504
|
throw new Error(
|
|
352
505
|
`${paths.appPath} already exists and is not managed by @adrouter/agent; move or remove it before installing.`
|
|
353
506
|
);
|
|
354
507
|
}
|
|
355
|
-
if (existing.installed && (await appIsRunning(paths.appPath, executeImpl))) {
|
|
508
|
+
if (existing.installed && (await appIsRunning(paths.appPath, artifact, executeImpl))) {
|
|
356
509
|
throw new Error('Quit AdRouter Agent before installing or updating it.');
|
|
357
510
|
}
|
|
358
511
|
|
|
359
512
|
await mkdir(paths.applicationsDirectory, { recursive: true, mode: 0o755 });
|
|
360
513
|
await mkdir(paths.supportDirectory, { recursive: true, mode: 0o700 });
|
|
361
514
|
const staging = await mkdtemp(join(paths.applicationsDirectory, '.adrouter-agent-staging-'));
|
|
362
|
-
const archive = join(staging, basename(
|
|
515
|
+
const archive = join(staging, basename(artifact.assetName));
|
|
363
516
|
const extracted = join(staging, 'extracted');
|
|
364
|
-
const stagedApp = join(extracted,
|
|
517
|
+
const stagedApp = join(extracted, artifact.archiveRoot);
|
|
365
518
|
const backupPath = join(
|
|
366
519
|
paths.applicationsDirectory,
|
|
367
|
-
`.
|
|
520
|
+
`.adrouter-agent-backup-${process.pid}-${Date.now()}`
|
|
368
521
|
);
|
|
369
522
|
let backedUp = false;
|
|
370
523
|
let activated = false;
|
|
371
524
|
try {
|
|
372
|
-
const receipt = await download(manifest, archive, options.fetchImpl);
|
|
373
|
-
await archiveEntries(archive, executeImpl);
|
|
525
|
+
const receipt = await download(manifest, artifact, archive, options.fetchImpl);
|
|
526
|
+
await archiveEntries(archive, artifact, executeImpl);
|
|
374
527
|
await mkdir(extracted, { mode: 0o700 });
|
|
375
|
-
await
|
|
376
|
-
await verifyExtractedTree(extracted, stagedApp);
|
|
377
|
-
await verifyApp(stagedApp, manifest, executeImpl);
|
|
378
|
-
|
|
528
|
+
await extractArchive(archive, extracted, artifact, executeImpl);
|
|
529
|
+
await verifyExtractedTree(extracted, stagedApp, artifact.archiveRoot);
|
|
530
|
+
await verifyApp(stagedApp, manifest, artifact, executeImpl);
|
|
379
531
|
if (existing.installed) {
|
|
380
532
|
await rename(paths.appPath, backupPath);
|
|
381
533
|
backedUp = true;
|
|
@@ -383,9 +535,10 @@ export async function install(manifest, options = {}) {
|
|
|
383
535
|
await rename(stagedApp, paths.appPath);
|
|
384
536
|
activated = true;
|
|
385
537
|
await (options.writeReceiptImpl ?? writeReceipt)(paths.receiptPath, {
|
|
386
|
-
schema:
|
|
538
|
+
schema: 3,
|
|
387
539
|
owner: RECEIPT_OWNER,
|
|
388
540
|
distributionMode: manifest.distributionMode,
|
|
541
|
+
artifactKey: artifact.key,
|
|
389
542
|
releaseVersion: manifest.releaseVersion,
|
|
390
543
|
releaseTag: manifest.releaseTag,
|
|
391
544
|
sha256: receipt.sha256,
|
|
@@ -421,17 +574,24 @@ async function writeReceipt(path, receipt) {
|
|
|
421
574
|
}
|
|
422
575
|
}
|
|
423
576
|
|
|
424
|
-
export async function launch(appPath,
|
|
577
|
+
export async function launch(appPath, options = {}) {
|
|
578
|
+
const platform = options.platform ?? process.platform;
|
|
579
|
+
const artifact = options.artifact ?? {
|
|
580
|
+
executablePath:
|
|
581
|
+
platform === 'darwin'
|
|
582
|
+
? 'Contents/MacOS/AdRouter Agent'
|
|
583
|
+
: platform === 'win32'
|
|
584
|
+
? 'AdRouter Agent.exe'
|
|
585
|
+
: 'AdRouter Agent',
|
|
586
|
+
};
|
|
587
|
+
const spawnImpl = options.spawnImpl ?? spawn;
|
|
588
|
+
const executable =
|
|
589
|
+
platform === 'darwin' ? '/usr/bin/open' : join(appPath, ...artifact.executablePath.split('/'));
|
|
590
|
+
const args = platform === 'darwin' ? [appPath] : [];
|
|
425
591
|
await new Promise((resolvePromise, reject) => {
|
|
426
|
-
const child = spawnImpl(
|
|
427
|
-
detached: true,
|
|
428
|
-
stdio: 'ignore',
|
|
429
|
-
});
|
|
592
|
+
const child = spawnImpl(executable, args, { detached: true, stdio: 'ignore' });
|
|
430
593
|
child.once('error', reject);
|
|
431
|
-
child.once('
|
|
432
|
-
if (code === 0) resolvePromise();
|
|
433
|
-
else reject(new Error(`macOS open failed with exit code ${code}.`));
|
|
434
|
-
});
|
|
594
|
+
child.once('spawn', resolvePromise);
|
|
435
595
|
child.unref();
|
|
436
596
|
});
|
|
437
597
|
}
|
package/lib/manifest.mjs
CHANGED
|
@@ -2,30 +2,68 @@ import { readFile } from 'node:fs/promises';
|
|
|
2
2
|
|
|
3
3
|
const SHA256_PATTERN = /^[a-f0-9]{64}$/;
|
|
4
4
|
const VERSION_PATTERN = /^\d+\.\d+\.\d+-beta\.\d+$/;
|
|
5
|
+
const ARTIFACTS = Object.freeze({
|
|
6
|
+
'darwin-universal': {
|
|
7
|
+
platform: 'darwin',
|
|
8
|
+
architectures: ['arm64', 'x64'],
|
|
9
|
+
archiveRoot: 'AdRouter Agent.app',
|
|
10
|
+
executablePath: 'Contents/MacOS/AdRouter Agent',
|
|
11
|
+
verificationMode: 'macos-adhoc',
|
|
12
|
+
suffix: 'darwin-universal',
|
|
13
|
+
},
|
|
14
|
+
'linux-x64': {
|
|
15
|
+
platform: 'linux',
|
|
16
|
+
architectures: ['x64'],
|
|
17
|
+
archiveRoot: 'AdRouter Agent-linux-x64',
|
|
18
|
+
executablePath: 'AdRouter Agent',
|
|
19
|
+
verificationMode: 'portable-checksum',
|
|
20
|
+
suffix: 'linux-x64',
|
|
21
|
+
},
|
|
22
|
+
'win32-x64': {
|
|
23
|
+
platform: 'win32',
|
|
24
|
+
architectures: ['x64'],
|
|
25
|
+
archiveRoot: 'AdRouter Agent-win32-x64',
|
|
26
|
+
executablePath: 'AdRouter Agent.exe',
|
|
27
|
+
verificationMode: 'portable-checksum',
|
|
28
|
+
suffix: 'win32-x64',
|
|
29
|
+
},
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
export function artifactKey(platform = process.platform, arch = process.arch) {
|
|
33
|
+
if (platform === 'darwin' && (arch === 'arm64' || arch === 'x64')) {
|
|
34
|
+
return 'darwin-universal';
|
|
35
|
+
}
|
|
36
|
+
if (platform === 'linux' && arch === 'x64') return 'linux-x64';
|
|
37
|
+
if (platform === 'win32' && arch === 'x64') return 'win32-x64';
|
|
38
|
+
throw new Error(`Unsupported operating system/architecture combination: ${platform}/${arch}.`);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export function selectArtifact(manifest, platform = process.platform, arch = process.arch) {
|
|
42
|
+
const key = artifactKey(platform, arch);
|
|
43
|
+
const artifact = manifest.artifacts.find((candidate) => candidate.key === key);
|
|
44
|
+
if (!artifact) throw new Error(`The release manifest does not contain ${key}.`);
|
|
45
|
+
return artifact;
|
|
46
|
+
}
|
|
5
47
|
|
|
6
48
|
export function validateManifest(value) {
|
|
7
49
|
if (!value || typeof value !== 'object' || Array.isArray(value)) {
|
|
8
50
|
throw new Error('The embedded release manifest is not an object.');
|
|
9
51
|
}
|
|
10
|
-
const
|
|
52
|
+
for (const key of [
|
|
11
53
|
'releaseVersion',
|
|
12
54
|
'releaseTag',
|
|
13
|
-
'assetName',
|
|
14
|
-
'assetUrl',
|
|
15
|
-
'sha256',
|
|
16
55
|
'repository',
|
|
17
56
|
'distributionMode',
|
|
18
57
|
'bundleIdentifier',
|
|
19
58
|
'bundleShortVersion',
|
|
20
59
|
'bundleVersion',
|
|
21
|
-
]
|
|
22
|
-
for (const key of requiredStrings) {
|
|
60
|
+
]) {
|
|
23
61
|
if (typeof value[key] !== 'string' || value[key].length === 0) {
|
|
24
62
|
throw new Error(`The embedded release manifest has an invalid ${key}.`);
|
|
25
63
|
}
|
|
26
64
|
}
|
|
27
|
-
if (value.schema !==
|
|
28
|
-
if (value.distributionMode !== 'credential-free-
|
|
65
|
+
if (value.schema !== 3) throw new Error('Unsupported release manifest schema.');
|
|
66
|
+
if (value.distributionMode !== 'credential-free-portable') {
|
|
29
67
|
throw new Error('The embedded release distribution mode is not supported.');
|
|
30
68
|
}
|
|
31
69
|
if (!VERSION_PATTERN.test(value.releaseVersion)) {
|
|
@@ -40,25 +78,64 @@ export function validateManifest(value) {
|
|
|
40
78
|
if (value.bundleIdentifier !== 'com.adrouter.agent') {
|
|
41
79
|
throw new Error('The embedded bundle identifier is not canonical.');
|
|
42
80
|
}
|
|
43
|
-
if (value.assetName !== `AdRouter-Agent-${value.releaseVersion}-universal.zip`) {
|
|
44
|
-
throw new Error('The embedded release asset name is not canonical.');
|
|
45
|
-
}
|
|
46
|
-
const expectedUrl =
|
|
47
|
-
`https://github.com/${value.repository}/releases/download/` +
|
|
48
|
-
`${value.releaseTag}/${value.assetName}`;
|
|
49
|
-
if (value.assetUrl !== expectedUrl) {
|
|
50
|
-
throw new Error('The embedded release asset URL is not canonical.');
|
|
51
|
-
}
|
|
52
|
-
if (!SHA256_PATTERN.test(value.sha256)) {
|
|
53
|
-
throw new Error('The embedded release checksum is not a SHA-256 digest.');
|
|
54
|
-
}
|
|
55
81
|
if (!/^\d+\.\d+\.\d+$/.test(value.bundleShortVersion)) {
|
|
56
82
|
throw new Error('The embedded short bundle version is invalid.');
|
|
57
83
|
}
|
|
58
84
|
if (!/^\d+(?:\.\d+){0,2}$/.test(value.bundleVersion)) {
|
|
59
85
|
throw new Error('The embedded numeric bundle version is invalid.');
|
|
60
86
|
}
|
|
61
|
-
|
|
87
|
+
if (!Array.isArray(value.artifacts) || value.artifacts.length !== 3) {
|
|
88
|
+
throw new Error('The embedded release manifest must contain exactly three artifacts.');
|
|
89
|
+
}
|
|
90
|
+
const seen = new Set();
|
|
91
|
+
for (const artifact of value.artifacts) {
|
|
92
|
+
const expected = ARTIFACTS[artifact?.key];
|
|
93
|
+
if (!expected || seen.has(artifact.key)) {
|
|
94
|
+
throw new Error(
|
|
95
|
+
`The embedded release manifest has an invalid artifact key: ${artifact?.key}.`
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
seen.add(artifact.key);
|
|
99
|
+
for (const field of [
|
|
100
|
+
'platform',
|
|
101
|
+
'assetName',
|
|
102
|
+
'assetUrl',
|
|
103
|
+
'sha256',
|
|
104
|
+
'archiveRoot',
|
|
105
|
+
'executablePath',
|
|
106
|
+
'verificationMode',
|
|
107
|
+
]) {
|
|
108
|
+
if (typeof artifact[field] !== 'string' || artifact[field].length === 0) {
|
|
109
|
+
throw new Error(`Artifact ${artifact.key} has an invalid ${field}.`);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
if (
|
|
113
|
+
artifact.platform !== expected.platform ||
|
|
114
|
+
JSON.stringify(artifact.architectures) !== JSON.stringify(expected.architectures) ||
|
|
115
|
+
artifact.archiveRoot !== expected.archiveRoot ||
|
|
116
|
+
artifact.executablePath !== expected.executablePath ||
|
|
117
|
+
artifact.verificationMode !== expected.verificationMode
|
|
118
|
+
) {
|
|
119
|
+
throw new Error(`Artifact ${artifact.key} does not match its canonical target metadata.`);
|
|
120
|
+
}
|
|
121
|
+
const expectedName = `AdRouter-Agent-${value.releaseVersion}-${expected.suffix}.zip`;
|
|
122
|
+
if (artifact.assetName !== expectedName) {
|
|
123
|
+
throw new Error(`Artifact ${artifact.key} has a non-canonical asset name.`);
|
|
124
|
+
}
|
|
125
|
+
const expectedUrl =
|
|
126
|
+
`https://github.com/${value.repository}/releases/download/` +
|
|
127
|
+
`${value.releaseTag}/${expectedName}`;
|
|
128
|
+
if (artifact.assetUrl !== expectedUrl) {
|
|
129
|
+
throw new Error(`Artifact ${artifact.key} has a non-canonical asset URL.`);
|
|
130
|
+
}
|
|
131
|
+
if (!SHA256_PATTERN.test(artifact.sha256)) {
|
|
132
|
+
throw new Error(`Artifact ${artifact.key} checksum is not a SHA-256 digest.`);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
return Object.freeze({
|
|
136
|
+
...value,
|
|
137
|
+
artifacts: Object.freeze(value.artifacts.map((artifact) => Object.freeze({ ...artifact }))),
|
|
138
|
+
});
|
|
62
139
|
}
|
|
63
140
|
|
|
64
141
|
export async function readManifest(url = new URL('../release-manifest.json', import.meta.url)) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adrouter/agent",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
4
|
-
"description": "Verified installer and launcher for the AdRouter Agent
|
|
3
|
+
"version": "0.1.0-beta.4",
|
|
4
|
+
"description": "Verified installer and launcher for the AdRouter Agent desktop application.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -18,7 +18,9 @@
|
|
|
18
18
|
"node": ">=22.19.0"
|
|
19
19
|
},
|
|
20
20
|
"os": [
|
|
21
|
-
"darwin"
|
|
21
|
+
"darwin",
|
|
22
|
+
"linux",
|
|
23
|
+
"win32"
|
|
22
24
|
],
|
|
23
25
|
"cpu": [
|
|
24
26
|
"arm64",
|
package/release-manifest.json
CHANGED
|
@@ -1,13 +1,52 @@
|
|
|
1
1
|
{
|
|
2
|
-
"schema":
|
|
3
|
-
"distributionMode": "credential-free-
|
|
4
|
-
"releaseVersion": "0.1.0-beta.
|
|
5
|
-
"releaseTag": "v0.1.0-beta.
|
|
6
|
-
"assetName": "AdRouter-Agent-0.1.0-beta.2-universal.zip",
|
|
7
|
-
"assetUrl": "https://github.com/adrouter/adrouterAgent/releases/download/v0.1.0-beta.2/AdRouter-Agent-0.1.0-beta.2-universal.zip",
|
|
8
|
-
"sha256": "51bc43a700e06ced94ad6e64d281ee7f6f20ae092a3a8b2e6effa39bea52df8a",
|
|
2
|
+
"schema": 3,
|
|
3
|
+
"distributionMode": "credential-free-portable",
|
|
4
|
+
"releaseVersion": "0.1.0-beta.4",
|
|
5
|
+
"releaseTag": "v0.1.0-beta.4",
|
|
9
6
|
"repository": "adrouter/adrouterAgent",
|
|
10
7
|
"bundleIdentifier": "com.adrouter.agent",
|
|
11
8
|
"bundleShortVersion": "0.1.0",
|
|
12
|
-
"bundleVersion": "
|
|
9
|
+
"bundleVersion": "10004",
|
|
10
|
+
"artifacts": [
|
|
11
|
+
{
|
|
12
|
+
"key": "darwin-universal",
|
|
13
|
+
"platform": "darwin",
|
|
14
|
+
"architectures": [
|
|
15
|
+
"arm64",
|
|
16
|
+
"x64"
|
|
17
|
+
],
|
|
18
|
+
"archiveRoot": "AdRouter Agent.app",
|
|
19
|
+
"executablePath": "Contents/MacOS/AdRouter Agent",
|
|
20
|
+
"verificationMode": "macos-adhoc",
|
|
21
|
+
"assetName": "AdRouter-Agent-0.1.0-beta.4-darwin-universal.zip",
|
|
22
|
+
"assetUrl": "https://github.com/adrouter/adrouterAgent/releases/download/v0.1.0-beta.4/AdRouter-Agent-0.1.0-beta.4-darwin-universal.zip",
|
|
23
|
+
"sha256": "8ef05bc2098f4ac9c8ecff943ee64e0e76389c5e69e3a2fd165a42edad7df48d"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"key": "linux-x64",
|
|
27
|
+
"platform": "linux",
|
|
28
|
+
"architectures": [
|
|
29
|
+
"x64"
|
|
30
|
+
],
|
|
31
|
+
"archiveRoot": "AdRouter Agent-linux-x64",
|
|
32
|
+
"executablePath": "AdRouter Agent",
|
|
33
|
+
"verificationMode": "portable-checksum",
|
|
34
|
+
"assetName": "AdRouter-Agent-0.1.0-beta.4-linux-x64.zip",
|
|
35
|
+
"assetUrl": "https://github.com/adrouter/adrouterAgent/releases/download/v0.1.0-beta.4/AdRouter-Agent-0.1.0-beta.4-linux-x64.zip",
|
|
36
|
+
"sha256": "85b81bab36458938f74afd2d0de30150cbd1bd7c5e92f20f6cc65cb1d36e2346"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"key": "win32-x64",
|
|
40
|
+
"platform": "win32",
|
|
41
|
+
"architectures": [
|
|
42
|
+
"x64"
|
|
43
|
+
],
|
|
44
|
+
"archiveRoot": "AdRouter Agent-win32-x64",
|
|
45
|
+
"executablePath": "AdRouter Agent.exe",
|
|
46
|
+
"verificationMode": "portable-checksum",
|
|
47
|
+
"assetName": "AdRouter-Agent-0.1.0-beta.4-win32-x64.zip",
|
|
48
|
+
"assetUrl": "https://github.com/adrouter/adrouterAgent/releases/download/v0.1.0-beta.4/AdRouter-Agent-0.1.0-beta.4-win32-x64.zip",
|
|
49
|
+
"sha256": "f5cefd74b561511642832aa9e17b00a2dc3034bbb00467b09aaeca0818e4c443"
|
|
50
|
+
}
|
|
51
|
+
]
|
|
13
52
|
}
|