Skip to content

Commit

Permalink
fix: Brittle response parsing from notarytool (#191)
Browse files Browse the repository at this point in the history
* fix: Brittle response parsing from notarytool

* fix: Fixes result.code check blocking notarytool log diagnostics

* fix: Concat notarytool error with notarytool log result

* clean: Cleanup unused import

* refact: Simplified notary error handling logic

* chore: bump electronjs/node in .circleci/config.yml to 2.2.2 (#195)

Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>

* fix: ensure status is Accepted

---------

Co-authored-by: Connor G Meehan <[email protected]>
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: Samuel Attard <[email protected]>
  • Loading branch information
4 people authored May 14, 2024
1 parent f48a181 commit 8440fa1
Showing 1 changed file with 31 additions and 13 deletions.
44 changes: 31 additions & 13 deletions src/notarytool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,24 +83,42 @@ export async function notarizeAndWaitForNotaryTool(opts: NotaryToolStartOptions)
];

const result = await spawn('xcrun', notarizeArgs);
const parsed = JSON.parse(result.output.trim());
const rawOut = result.output.trim();

if (result.code !== 0 || !parsed.status || parsed.status !== 'Accepted') {
let parsed: any;
try {
parsed = JSON.parse(rawOut);
} catch (err) {
throw new Error(
`Failed to notarize via notarytool. Failed with unexpected result: \n\n${rawOut}`,
);
}

if (result.code === 0 && parsed.status === 'Accepted') {
d('notarization success');
return;
}

let logOutput: undefined | string;
if (parsed.id) {
try {
if (parsed && parsed.id) {
const logResult = await spawn('xcrun', [
'notarytool',
'log',
parsed.id,
...authorizationArgs(opts),
]);
d('notarization log', logResult.output);
}
const logResult = await spawn('xcrun', [
'notarytool',
'log',
parsed.id,
...authorizationArgs(opts),
]);
d('notarization log', logResult.output);
logOutput = logResult.output;
} catch (e) {
d('failed to pull notarization logs', e);
}
throw new Error(`Failed to notarize via notarytool\n\n${result.output}`);
}
d('notarization success');

let message = `Failed to notarize via notarytool\n\n${result.output}`;
if (logOutput) {
message += `\n\nDiagnostics from notarytool log: ${logOutput}`;
}
throw new Error(message);
});
}

0 comments on commit 8440fa1

Please sign in to comment.