Skip to content

Commit

Permalink
refact: Simplified notary error handling logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Connor G Meehan committed May 8, 2024
1 parent 77eda12 commit 5dc95c6
Showing 1 changed file with 30 additions and 34 deletions.
64 changes: 30 additions & 34 deletions src/notarytool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,44 +84,40 @@ export async function notarizeAndWaitForNotaryTool(opts: NotaryToolStartOptions)

const result = await spawn('xcrun', notarizeArgs);

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

let logId: undefined | string;
if (!parsed.status || parsed.status !== 'Accepted') {
logId = parsed.id;
}
if (result.code === 0 ) {
d('notarization success');
return;
}

let logOutput: undefined | string;
if (logId) {
try {
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);
}
}
let parsed: any;
try {
parsed = JSON.parse(result.output.trim());
} catch (err) {
throw new Error(
`Failed to notarize via notarytool. Failed with unexpected result: \n\n${result.output.trim()}`,
);
}

let message = `Failed to notarize via notarytool\n\n${result.output}`;
if (logOutput) {
message += `\n\nDiagnostics from notarytool log: ${logOutput}`;
let logOutput: undefined | string;
if (parsed.id) {
try {
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(message);
}

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 5dc95c6

Please sign in to comment.