summaryrefslogtreecommitdiff
path: root/node_modules/electron-notarize/lib
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/electron-notarize/lib')
-rw-r--r--node_modules/electron-notarize/lib/helpers.d.ts13
-rw-r--r--node_modules/electron-notarize/lib/helpers.js78
-rw-r--r--node_modules/electron-notarize/lib/helpers.js.map1
-rw-r--r--node_modules/electron-notarize/lib/index.d.ts4
-rw-r--r--node_modules/electron-notarize/lib/index.js60
-rw-r--r--node_modules/electron-notarize/lib/index.js.map1
-rw-r--r--node_modules/electron-notarize/lib/legacy.d.ts3
-rw-r--r--node_modules/electron-notarize/lib/legacy.js115
-rw-r--r--node_modules/electron-notarize/lib/legacy.js.map1
-rw-r--r--node_modules/electron-notarize/lib/notarytool.d.ts3
-rw-r--r--node_modules/electron-notarize/lib/notarytool.js100
-rw-r--r--node_modules/electron-notarize/lib/notarytool.js.map1
-rw-r--r--node_modules/electron-notarize/lib/spawn.d.ts7
-rw-r--r--node_modules/electron-notarize/lib/spawn.js23
-rw-r--r--node_modules/electron-notarize/lib/spawn.js.map1
-rw-r--r--node_modules/electron-notarize/lib/staple.d.ts2
-rw-r--r--node_modules/electron-notarize/lib/staple.js29
-rw-r--r--node_modules/electron-notarize/lib/staple.js.map1
-rw-r--r--node_modules/electron-notarize/lib/types.d.ts47
-rw-r--r--node_modules/electron-notarize/lib/types.js2
-rw-r--r--node_modules/electron-notarize/lib/types.js.map1
-rw-r--r--node_modules/electron-notarize/lib/validate-args.d.ts8
-rw-r--r--node_modules/electron-notarize/lib/validate-args.js101
-rw-r--r--node_modules/electron-notarize/lib/validate-args.js.map1
24 files changed, 0 insertions, 603 deletions
diff --git a/node_modules/electron-notarize/lib/helpers.d.ts b/node_modules/electron-notarize/lib/helpers.d.ts
deleted file mode 100644
index 774dc2e..0000000
--- a/node_modules/electron-notarize/lib/helpers.d.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-export declare function withTempDir<T>(fn: (dir: string) => Promise<T>): Promise<T>;
-export declare function makeSecret(s: string): string;
-export declare function isSecret(s: string): boolean;
-export interface NotarizationInfo {
- uuid: string;
- date: Date;
- status: 'invalid' | 'in progress' | 'success';
- logFileUrl: string | null;
- statusCode?: 0 | 2;
- statusMessage?: string;
-}
-export declare function parseNotarizationInfo(info: string): NotarizationInfo;
-export declare function delay(ms: number): Promise<void>;
diff --git a/node_modules/electron-notarize/lib/helpers.js b/node_modules/electron-notarize/lib/helpers.js
deleted file mode 100644
index 27519ab..0000000
--- a/node_modules/electron-notarize/lib/helpers.js
+++ /dev/null
@@ -1,78 +0,0 @@
-var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
-};
-Object.defineProperty(exports, "__esModule", { value: true });
-const debug = require("debug");
-const fs = require("fs-extra");
-const os = require("os");
-const path = require("path");
-const d = debug('electron-notarize:helpers');
-function withTempDir(fn) {
- return __awaiter(this, void 0, void 0, function* () {
- const dir = yield fs.mkdtemp(path.resolve(os.tmpdir(), 'electron-notarize-'));
- d('doing work inside temp dir:', dir);
- let result;
- try {
- result = yield fn(dir);
- }
- catch (err) {
- d('work failed');
- yield fs.remove(dir);
- throw err;
- }
- d('work succeeded');
- yield fs.remove(dir);
- return result;
- });
-}
-exports.withTempDir = withTempDir;
-class Secret {
- constructor(value) {
- this.value = value;
- }
- toString() {
- return this.value;
- }
- inspect() {
- return '******';
- }
-}
-function makeSecret(s) {
- return new Secret(s);
-}
-exports.makeSecret = makeSecret;
-function isSecret(s) {
- return s instanceof Secret;
-}
-exports.isSecret = isSecret;
-function parseNotarizationInfo(info) {
- const out = {};
- const matchToProperty = (key, r, modifier) => {
- const exec = r.exec(info);
- if (exec) {
- out[key] = modifier ? modifier(exec[1]) : exec[1];
- }
- };
- matchToProperty('uuid', /\n *RequestUUID: (.+?)\n/);
- matchToProperty('date', /\n *Date: (.+?)\n/, d => new Date(d));
- matchToProperty('status', /\n *Status: (.+?)\n/);
- matchToProperty('logFileUrl', /\n *LogFileURL: (.+?)\n/);
- matchToProperty('statusCode', /\n *Status Code: (.+?)\n/, n => parseInt(n, 10));
- matchToProperty('statusMessage', /\n *Status Message: (.+?)\n/);
- if (out.logFileUrl === '(null)') {
- out.logFileUrl = null;
- }
- return out;
-}
-exports.parseNotarizationInfo = parseNotarizationInfo;
-function delay(ms) {
- return new Promise(resolve => setTimeout(resolve, ms));
-}
-exports.delay = delay;
-//# sourceMappingURL=helpers.js.map \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/helpers.js.map b/node_modules/electron-notarize/lib/helpers.js.map
deleted file mode 100644
index ed5e9bd..0000000
--- a/node_modules/electron-notarize/lib/helpers.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../src/helpers.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,+BAA+B;AAC/B,+BAA+B;AAC/B,yBAAyB;AACzB,6BAA6B;AAE7B,MAAM,CAAC,GAAG,KAAK,CAAC,2BAA2B,CAAC,CAAC;AAE7C,SAAsB,WAAW,CAAI,EAA+B;;QAClE,MAAM,GAAG,GAAG,MAAM,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,MAAM,EAAE,EAAE,oBAAoB,CAAC,CAAC,CAAC;QAC9E,CAAC,CAAC,6BAA6B,EAAE,GAAG,CAAC,CAAC;QACtC,IAAI,MAAS,CAAC;QACd,IAAI;YACF,MAAM,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;SACxB;QAAC,OAAO,GAAG,EAAE;YACZ,CAAC,CAAC,aAAa,CAAC,CAAC;YACjB,MAAM,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;YACrB,MAAM,GAAG,CAAC;SACX;QACD,CAAC,CAAC,gBAAgB,CAAC,CAAC;QACpB,MAAM,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;QACrB,OAAO,MAAM,CAAC;IAChB,CAAC;CAAA;AAdD,kCAcC;AAED,MAAM,MAAM;IACV,YAAoB,KAAa;QAAb,UAAK,GAAL,KAAK,CAAQ;IAAG,CAAC;IAErC,QAAQ;QACN,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IACD,OAAO;QACL,OAAO,QAAQ,CAAC;IAClB,CAAC;CACF;AAED,SAAgB,UAAU,CAAC,CAAS;IAClC,OAAQ,IAAI,MAAM,CAAC,CAAC,CAAmB,CAAC;AAC1C,CAAC;AAFD,gCAEC;AAED,SAAgB,QAAQ,CAAC,CAAS;IAChC,OAAQ,CAAS,YAAY,MAAM,CAAC;AACtC,CAAC;AAFD,4BAEC;AAYD,SAAgB,qBAAqB,CAAC,IAAY;IAChD,MAAM,GAAG,GAAG,EAAS,CAAC;IACtB,MAAM,eAAe,GAAG,CACtB,GAAM,EACN,CAAS,EACT,QAA6C,EAC7C,EAAE;QACF,MAAM,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC1B,IAAI,IAAI,EAAE;YACR,GAAG,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;SACnD;IACH,CAAC,CAAC;IACF,eAAe,CAAC,MAAM,EAAE,0BAA0B,CAAC,CAAC;IACpD,eAAe,CAAC,MAAM,EAAE,mBAAmB,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;IAC/D,eAAe,CAAC,QAAQ,EAAE,qBAAqB,CAAC,CAAC;IACjD,eAAe,CAAC,YAAY,EAAE,yBAAyB,CAAC,CAAC;IACzD,eAAe,CAAC,YAAY,EAAE,0BAA0B,EAAE,CAAC,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAQ,CAAC,CAAC;IACvF,eAAe,CAAC,eAAe,EAAE,6BAA6B,CAAC,CAAC;IAEhE,IAAI,GAAG,CAAC,UAAU,KAAK,QAAQ,EAAE;QAC/B,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC;KACvB;IAED,OAAO,GAAG,CAAC;AACb,CAAC;AAxBD,sDAwBC;AAED,SAAgB,KAAK,CAAC,EAAU;IAC9B,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC;AACzD,CAAC;AAFD,sBAEC"} \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/index.d.ts b/node_modules/electron-notarize/lib/index.d.ts
deleted file mode 100644
index b013467..0000000
--- a/node_modules/electron-notarize/lib/index.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import { NotarizeOptions } from './types';
-export { NotarizeOptions };
-export { validateLegacyAuthorizationArgs as validateAuthorizationArgs } from './validate-args';
-export declare function notarize({ appPath, ...otherOptions }: NotarizeOptions): Promise<void>;
diff --git a/node_modules/electron-notarize/lib/index.js b/node_modules/electron-notarize/lib/index.js
deleted file mode 100644
index 9c0a58d..0000000
--- a/node_modules/electron-notarize/lib/index.js
+++ /dev/null
@@ -1,60 +0,0 @@
-var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
-};
-var __rest = (this && this.__rest) || function (s, e) {
- var t = {};
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
- t[p] = s[p];
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
- t[p[i]] = s[p[i]];
- }
- return t;
-};
-Object.defineProperty(exports, "__esModule", { value: true });
-const debug = require("debug");
-const helpers_1 = require("./helpers");
-const legacy_1 = require("./legacy");
-const notarytool_1 = require("./notarytool");
-const staple_1 = require("./staple");
-const d = debug('electron-notarize');
-var validate_args_1 = require("./validate-args");
-exports.validateAuthorizationArgs = validate_args_1.validateLegacyAuthorizationArgs;
-function notarize(_a) {
- var { appPath } = _a, otherOptions = __rest(_a, ["appPath"]);
- return __awaiter(this, void 0, void 0, function* () {
- if (otherOptions.tool === 'notarytool') {
- d('notarizing using the new notarytool system');
- if (!(yield notarytool_1.isNotaryToolAvailable())) {
- throw new Error('notarytool is not available, you must be on at least Xcode 13');
- }
- yield notarytool_1.notarizeAndWaitForNotaryTool(Object.assign({ appPath }, otherOptions));
- }
- else {
- d('notarizing using the legacy notarization system, this will be slow');
- const { uuid } = yield legacy_1.startLegacyNotarize(Object.assign({ appPath }, otherOptions));
- /**
- * Wait for Apples API to initialize the status UUID
- *
- * If we start checking too quickly the UUID is not ready yet
- * and this step will fail. It takes Apple a number of minutes
- * to actually complete the job so an extra 10 second delay here
- * is not a big deal
- */
- d('notarization started, waiting for 10 seconds before pinging Apple for status');
- yield helpers_1.delay(10000);
- d('starting to poll for notarization status');
- yield legacy_1.waitForLegacyNotarize(Object.assign({ uuid }, otherOptions));
- }
- yield staple_1.stapleApp({ appPath });
- });
-}
-exports.notarize = notarize;
-//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/index.js.map b/node_modules/electron-notarize/lib/index.js.map
deleted file mode 100644
index 02f0627..0000000
--- a/node_modules/electron-notarize/lib/index.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,+BAA+B;AAC/B,uCAAkC;AAClC,qCAAsE;AACtE,6CAAmF;AACnF,qCAAqC;AAGrC,MAAM,CAAC,GAAG,KAAK,CAAC,mBAAmB,CAAC,CAAC;AAIrC,iDAA+F;AAAtF,oDAAA,+BAA+B,CAA6B;AAErE,SAAsB,QAAQ,CAAC,EAA6C;QAA7C,EAAE,OAAO,OAAoC,EAAlC,sCAAe;;QACvD,IAAI,YAAY,CAAC,IAAI,KAAK,YAAY,EAAE;YACtC,CAAC,CAAC,4CAA4C,CAAC,CAAC;YAChD,IAAI,CAAC,CAAC,MAAM,kCAAqB,EAAE,CAAC,EAAE;gBACpC,MAAM,IAAI,KAAK,CAAC,+DAA+D,CAAC,CAAC;aAClF;YAED,MAAM,yCAA4B,iBAChC,OAAO,IACJ,YAAY,EACf,CAAC;SACJ;aAAM;YACL,CAAC,CAAC,oEAAoE,CAAC,CAAC;YACxE,MAAM,EAAE,IAAI,EAAE,GAAG,MAAM,4BAAmB,iBACxC,OAAO,IACJ,YAAY,EACf,CAAC;YACH;;;;;;;eAOG;YACH,CAAC,CAAC,8EAA8E,CAAC,CAAC;YAClF,MAAM,eAAK,CAAC,KAAK,CAAC,CAAC;YACnB,CAAC,CAAC,0CAA0C,CAAC,CAAC;YAC9C,MAAM,8BAAqB,iBAAG,IAAI,IAAK,YAAY,EAAG,CAAC;SACxD;QAED,MAAM,kBAAS,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC;;CAC9B;AAhCD,4BAgCC"} \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/legacy.d.ts b/node_modules/electron-notarize/lib/legacy.d.ts
deleted file mode 100644
index 2534eaa..0000000
--- a/node_modules/electron-notarize/lib/legacy.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { NotarizeResult, LegacyNotarizeStartOptions, LegacyNotarizeWaitOptions } from './types';
-export declare function startLegacyNotarize(opts: LegacyNotarizeStartOptions): Promise<NotarizeResult>;
-export declare function waitForLegacyNotarize(opts: LegacyNotarizeWaitOptions): Promise<void>;
diff --git a/node_modules/electron-notarize/lib/legacy.js b/node_modules/electron-notarize/lib/legacy.js
deleted file mode 100644
index 90bdafe..0000000
--- a/node_modules/electron-notarize/lib/legacy.js
+++ /dev/null
@@ -1,115 +0,0 @@
-var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
-};
-Object.defineProperty(exports, "__esModule", { value: true });
-const debug = require("debug");
-const path = require("path");
-const spawn_1 = require("./spawn");
-const helpers_1 = require("./helpers");
-const validate_args_1 = require("./validate-args");
-const d = debug('electron-notarize:legacy');
-function authorizationArgs(rawOpts) {
- const opts = validate_args_1.validateLegacyAuthorizationArgs(rawOpts);
- if (validate_args_1.isLegacyPasswordCredentials(opts)) {
- return ['-u', helpers_1.makeSecret(opts.appleId), '-p', helpers_1.makeSecret(opts.appleIdPassword)];
- }
- else {
- return [
- '--apiKey',
- helpers_1.makeSecret(opts.appleApiKey),
- '--apiIssuer',
- helpers_1.makeSecret(opts.appleApiIssuer),
- ];
- }
-}
-function startLegacyNotarize(opts) {
- return __awaiter(this, void 0, void 0, function* () {
- d('starting notarize process for app:', opts.appPath);
- return yield helpers_1.withTempDir((dir) => __awaiter(this, void 0, void 0, function* () {
- const zipPath = path.resolve(dir, `${path.basename(opts.appPath, '.app')}.zip`);
- d('zipping application to:', zipPath);
- const zipResult = yield spawn_1.spawn('ditto', ['-c', '-k', '--sequesterRsrc', '--keepParent', path.basename(opts.appPath), zipPath], {
- cwd: path.dirname(opts.appPath),
- });
- if (zipResult.code !== 0) {
- throw new Error(`Failed to zip application, exited with code: ${zipResult.code}\n\n${zipResult.output}`);
- }
- d('zip succeeded, attempting to upload to Apple');
- const notarizeArgs = [
- 'altool',
- '--notarize-app',
- '-f',
- zipPath,
- '--primary-bundle-id',
- opts.appBundleId,
- ...authorizationArgs(opts),
- ];
- if (opts.ascProvider) {
- notarizeArgs.push('-itc_provider', opts.ascProvider);
- }
- const result = yield spawn_1.spawn('xcrun', notarizeArgs);
- if (result.code !== 0) {
- throw new Error(`Failed to upload app to Apple's notarization servers\n\n${result.output}`);
- }
- d('upload success');
- const uuidMatch = /\nRequestUUID = (.+?)\n/g.exec(result.output);
- if (!uuidMatch) {
- throw new Error(`Failed to find request UUID in output:\n\n${result.output}`);
- }
- d('found UUID:', uuidMatch[1]);
- return {
- uuid: uuidMatch[1],
- };
- }));
- });
-}
-exports.startLegacyNotarize = startLegacyNotarize;
-function waitForLegacyNotarize(opts) {
- return __awaiter(this, void 0, void 0, function* () {
- d('checking notarization status:', opts.uuid);
- const result = yield spawn_1.spawn('xcrun', [
- 'altool',
- '--notarization-info',
- opts.uuid,
- ...authorizationArgs(opts),
- ]);
- if (result.code !== 0) {
- // These checks could fail for all sorts of reasons, including:
- // * The status of a request isn't available as soon as the upload request returns, so
- // it may just not be ready yet.
- // * If using keychain password, user's mac went to sleep and keychain locked.
- // * Regular old connectivity failure.
- d(`Failed to check status of notarization request, retrying in 30 seconds: ${opts.uuid}\n\n${result.output}`);
- yield helpers_1.delay(30000);
- return waitForLegacyNotarize(opts);
- }
- const notarizationInfo = helpers_1.parseNotarizationInfo(result.output);
- if (notarizationInfo.status === 'in progress') {
- d('still in progress, waiting 30 seconds');
- yield helpers_1.delay(30000);
- return waitForLegacyNotarize(opts);
- }
- d('notarzation done with info:', notarizationInfo);
- if (notarizationInfo.status === 'invalid') {
- d('notarization failed');
- throw new Error(`Apple failed to notarize your application, check the logs for more info
-
-Status Code: ${notarizationInfo.statusCode || 'No Code'}
-Message: ${notarizationInfo.statusMessage || 'No Message'}
-Logs: ${notarizationInfo.logFileUrl}`);
- }
- if (notarizationInfo.status !== 'success') {
- throw new Error(`Unrecognized notarization status: "${notarizationInfo.status}"`);
- }
- d('notarization was successful');
- return;
- });
-}
-exports.waitForLegacyNotarize = waitForLegacyNotarize;
-//# sourceMappingURL=legacy.js.map \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/legacy.js.map b/node_modules/electron-notarize/lib/legacy.js.map
deleted file mode 100644
index 1f8a0c0..0000000
--- a/node_modules/electron-notarize/lib/legacy.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"legacy.js","sourceRoot":"","sources":["../src/legacy.ts"],"names":[],"mappings":"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"} \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/notarytool.d.ts b/node_modules/electron-notarize/lib/notarytool.d.ts
deleted file mode 100644
index 7eab59d..0000000
--- a/node_modules/electron-notarize/lib/notarytool.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { NotaryToolStartOptions } from './types';
-export declare function isNotaryToolAvailable(): Promise<boolean>;
-export declare function notarizeAndWaitForNotaryTool(opts: NotaryToolStartOptions): Promise<void>;
diff --git a/node_modules/electron-notarize/lib/notarytool.js b/node_modules/electron-notarize/lib/notarytool.js
deleted file mode 100644
index ed59c82..0000000
--- a/node_modules/electron-notarize/lib/notarytool.js
+++ /dev/null
@@ -1,100 +0,0 @@
-var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
-};
-Object.defineProperty(exports, "__esModule", { value: true });
-const debug = require("debug");
-const path = require("path");
-const spawn_1 = require("./spawn");
-const helpers_1 = require("./helpers");
-const validate_args_1 = require("./validate-args");
-const d = debug('electron-notarize:notarytool');
-function authorizationArgs(rawOpts) {
- const opts = validate_args_1.validateNotaryToolAuthorizationArgs(rawOpts);
- if (validate_args_1.isNotaryToolPasswordCredentials(opts)) {
- return [
- '--apple-id',
- helpers_1.makeSecret(opts.appleId),
- '--password',
- helpers_1.makeSecret(opts.appleIdPassword),
- '--team-id',
- helpers_1.makeSecret(opts.teamId),
- ];
- }
- else if (validate_args_1.isNotaryToolApiKeyCredentials(opts)) {
- return [
- '--key',
- helpers_1.makeSecret(opts.appleApiKey),
- '--key-id',
- helpers_1.makeSecret(opts.appleApiKeyId),
- '--issuer',
- helpers_1.makeSecret(opts.appleApiIssuer),
- ];
- }
- else {
- // --keychain is optional -- when not specified, the iCloud keychain is used by notarytool
- if (opts.keychain) {
- return ['--keychain', opts.keychain, '--keychain-profile', opts.keychainProfile];
- }
- return ['--keychain-profile', opts.keychainProfile];
- }
-}
-function isNotaryToolAvailable() {
- return __awaiter(this, void 0, void 0, function* () {
- const result = yield spawn_1.spawn('xcrun', ['--find', 'notarytool']);
- return result.code === 0;
- });
-}
-exports.isNotaryToolAvailable = isNotaryToolAvailable;
-function notarizeAndWaitForNotaryTool(opts) {
- return __awaiter(this, void 0, void 0, function* () {
- d('starting notarize process for app:', opts.appPath);
- return yield helpers_1.withTempDir((dir) => __awaiter(this, void 0, void 0, function* () {
- const zipPath = path.resolve(dir, `${path.parse(opts.appPath).name}.zip`);
- d('zipping application to:', zipPath);
- const zipResult = yield spawn_1.spawn('ditto', ['-c', '-k', '--sequesterRsrc', '--keepParent', path.basename(opts.appPath), zipPath], {
- cwd: path.dirname(opts.appPath),
- });
- if (zipResult.code !== 0) {
- throw new Error(`Failed to zip application, exited with code: ${zipResult.code}\n\n${zipResult.output}`);
- }
- d('zip succeeded, attempting to upload to Apple');
- const notarizeArgs = [
- 'notarytool',
- 'submit',
- zipPath,
- ...authorizationArgs(opts),
- '--wait',
- '--output-format',
- 'json',
- ];
- const result = yield spawn_1.spawn('xcrun', notarizeArgs);
- if (result.code !== 0) {
- try {
- const parsed = JSON.parse(result.output.trim());
- if (parsed && parsed.id) {
- const logResult = yield spawn_1.spawn('xcrun', [
- 'notarytool',
- 'log',
- parsed.id,
- ...authorizationArgs(opts),
- ]);
- d('notarization log', 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');
- }));
- });
-}
-exports.notarizeAndWaitForNotaryTool = notarizeAndWaitForNotaryTool;
-//# sourceMappingURL=notarytool.js.map \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/notarytool.js.map b/node_modules/electron-notarize/lib/notarytool.js.map
deleted file mode 100644
index 5f086a1..0000000
--- a/node_modules/electron-notarize/lib/notarytool.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"notarytool.js","sourceRoot":"","sources":["../src/notarytool.ts"],"names":[],"mappings":"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"} \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/spawn.d.ts b/node_modules/electron-notarize/lib/spawn.d.ts
deleted file mode 100644
index df894c1..0000000
--- a/node_modules/electron-notarize/lib/spawn.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-/// <reference types="node" />
-import { SpawnOptions } from 'child_process';
-export interface SpawnResult {
- code: number | null;
- output: string;
-}
-export declare const spawn: (cmd: string, args?: string[], opts?: SpawnOptions) => Promise<SpawnResult>;
diff --git a/node_modules/electron-notarize/lib/spawn.js b/node_modules/electron-notarize/lib/spawn.js
deleted file mode 100644
index 505e34a..0000000
--- a/node_modules/electron-notarize/lib/spawn.js
+++ /dev/null
@@ -1,23 +0,0 @@
-Object.defineProperty(exports, "__esModule", { value: true });
-const child_process_1 = require("child_process");
-const debug = require("debug");
-const helpers_1 = require("./helpers");
-const d = debug('electron-notarize:spawn');
-exports.spawn = (cmd, args = [], opts = {}) => {
- d('spawning cmd:', cmd, 'args:', args.map(arg => (helpers_1.isSecret(arg) ? '*********' : arg)), 'opts:', opts);
- const child = child_process_1.spawn(cmd, args, opts);
- const out = [];
- const dataHandler = (data) => out.push(data.toString());
- child.stdout.on('data', dataHandler);
- child.stderr.on('data', dataHandler);
- return new Promise(resolve => {
- child.on('exit', code => {
- d(`cmd ${cmd} terminated with code: ${code}`);
- resolve({
- code,
- output: out.join(''),
- });
- });
- });
-};
-//# sourceMappingURL=spawn.js.map \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/spawn.js.map b/node_modules/electron-notarize/lib/spawn.js.map
deleted file mode 100644
index b9be838..0000000
--- a/node_modules/electron-notarize/lib/spawn.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"spawn.js","sourceRoot":"","sources":["../src/spawn.ts"],"names":[],"mappings":";AAAA,iDAA+D;AAC/D,+BAA+B;AAC/B,uCAAqC;AAErC,MAAM,CAAC,GAAG,KAAK,CAAC,yBAAyB,CAAC,CAAC;AAO9B,QAAA,KAAK,GAAG,CACnB,GAAW,EACX,OAAiB,EAAE,EACnB,OAAqB,EAAE,EACD,EAAE;IACxB,CAAC,CACC,eAAe,EACf,GAAG,EACH,OAAO,EACP,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,kBAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EACpD,OAAO,EACP,IAAI,CACL,CAAC;IACF,MAAM,KAAK,GAAG,qBAAO,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;IACvC,MAAM,GAAG,GAAa,EAAE,CAAC;IACzB,MAAM,WAAW,GAAG,CAAC,IAAY,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;IAChE,KAAK,CAAC,MAAO,CAAC,EAAE,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IACtC,KAAK,CAAC,MAAO,CAAC,EAAE,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IACtC,OAAO,IAAI,OAAO,CAAc,OAAO,CAAC,EAAE;QACxC,KAAK,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE;YACtB,CAAC,CAAC,OAAO,GAAG,0BAA0B,IAAI,EAAE,CAAC,CAAC;YAC9C,OAAO,CAAC;gBACN,IAAI;gBACJ,MAAM,EAAE,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;aACrB,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC"} \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/staple.d.ts b/node_modules/electron-notarize/lib/staple.d.ts
deleted file mode 100644
index e507c1e..0000000
--- a/node_modules/electron-notarize/lib/staple.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-import { NotarizeStapleOptions } from './types';
-export declare function stapleApp(opts: NotarizeStapleOptions): Promise<void>;
diff --git a/node_modules/electron-notarize/lib/staple.js b/node_modules/electron-notarize/lib/staple.js
deleted file mode 100644
index d89a944..0000000
--- a/node_modules/electron-notarize/lib/staple.js
+++ /dev/null
@@ -1,29 +0,0 @@
-var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
-};
-Object.defineProperty(exports, "__esModule", { value: true });
-const debug = require("debug");
-const path = require("path");
-const spawn_1 = require("./spawn");
-const d = debug('electron-notarize:staple');
-function stapleApp(opts) {
- return __awaiter(this, void 0, void 0, function* () {
- d('attempting to staple app:', opts.appPath);
- const result = yield spawn_1.spawn('xcrun', ['stapler', 'staple', '-v', path.basename(opts.appPath)], {
- cwd: path.dirname(opts.appPath),
- });
- if (result.code !== 0) {
- throw new Error(`Failed to staple your application with code: ${result.code}\n\n${result.output}`);
- }
- d('staple succeeded');
- return;
- });
-}
-exports.stapleApp = stapleApp;
-//# sourceMappingURL=staple.js.map \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/staple.js.map b/node_modules/electron-notarize/lib/staple.js.map
deleted file mode 100644
index 85a699e..0000000
--- a/node_modules/electron-notarize/lib/staple.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"staple.js","sourceRoot":"","sources":["../src/staple.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,+BAA+B;AAC/B,6BAA6B;AAE7B,mCAAgC;AAGhC,MAAM,CAAC,GAAG,KAAK,CAAC,0BAA0B,CAAC,CAAC;AAE5C,SAAsB,SAAS,CAAC,IAA2B;;QACzD,CAAC,CAAC,2BAA2B,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QAC7C,MAAM,MAAM,GAAG,MAAM,aAAK,CAAC,OAAO,EAAE,CAAC,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE;YAC5F,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC;SAChC,CAAC,CAAC;QAEH,IAAI,MAAM,CAAC,IAAI,KAAK,CAAC,EAAE;YACrB,MAAM,IAAI,KAAK,CACb,gDAAgD,MAAM,CAAC,IAAI,OAAO,MAAM,CAAC,MAAM,EAAE,CAClF,CAAC;SACH;QAED,CAAC,CAAC,kBAAkB,CAAC,CAAC;QACtB,OAAO;IACT,CAAC;CAAA;AAdD,8BAcC"} \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/types.d.ts b/node_modules/electron-notarize/lib/types.d.ts
deleted file mode 100644
index 5a9d6d0..0000000
--- a/node_modules/electron-notarize/lib/types.d.ts
+++ /dev/null
@@ -1,47 +0,0 @@
-export interface LegacyNotarizePasswordCredentials {
- appleId: string;
- appleIdPassword: string;
-}
-export interface NotaryToolPasswordCredentials {
- appleId: string;
- appleIdPassword: string;
- teamId: string;
-}
-export interface LegacyNotarizeApiKeyCredentials {
- appleApiKey: string;
- appleApiIssuer: string;
-}
-export interface NotaryToolApiKeyCredentials {
- appleApiKey: string;
- appleApiKeyId: string;
- appleApiIssuer: string;
-}
-export interface NotaryToolKeychainCredentials {
- keychainProfile: string;
- keychain?: string;
-}
-export declare type LegacyNotarizeCredentials = LegacyNotarizePasswordCredentials | LegacyNotarizeApiKeyCredentials;
-export declare type NotaryToolCredentials = NotaryToolPasswordCredentials | NotaryToolApiKeyCredentials | NotaryToolKeychainCredentials;
-export declare type NotarizeCredentials = LegacyNotarizeCredentials | NotaryToolCredentials;
-export interface LegacyNotarizeAppOptions {
- appPath: string;
- appBundleId: string;
-}
-export interface NotaryToolNotarizeAppOptions {
- appPath: string;
-}
-export interface TransporterOptions {
- ascProvider?: string;
-}
-export interface NotarizeResult {
- uuid: string;
-}
-export declare type LegacyNotarizeStartOptions = LegacyNotarizeAppOptions & LegacyNotarizeCredentials & TransporterOptions;
-export declare type NotaryToolStartOptions = NotaryToolNotarizeAppOptions & NotaryToolCredentials;
-export declare type LegacyNotarizeWaitOptions = NotarizeResult & LegacyNotarizeCredentials;
-export declare type NotarizeStapleOptions = Pick<LegacyNotarizeAppOptions, 'appPath'>;
-export declare type NotarizeOptions = ({
- tool?: 'legacy';
-} & LegacyNotarizeStartOptions) | ({
- tool: 'notarytool';
-} & NotaryToolStartOptions);
diff --git a/node_modules/electron-notarize/lib/types.js b/node_modules/electron-notarize/lib/types.js
deleted file mode 100644
index 5fb9015..0000000
--- a/node_modules/electron-notarize/lib/types.js
+++ /dev/null
@@ -1,2 +0,0 @@
-Object.defineProperty(exports, "__esModule", { value: true });
-//# sourceMappingURL=types.js.map \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/types.js.map b/node_modules/electron-notarize/lib/types.js.map
deleted file mode 100644
index c768b79..0000000
--- a/node_modules/electron-notarize/lib/types.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""} \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/validate-args.d.ts b/node_modules/electron-notarize/lib/validate-args.d.ts
deleted file mode 100644
index 20b815b..0000000
--- a/node_modules/electron-notarize/lib/validate-args.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import { LegacyNotarizeApiKeyCredentials, LegacyNotarizeCredentials, LegacyNotarizePasswordCredentials, NotaryToolApiKeyCredentials, NotaryToolCredentials, NotaryToolKeychainCredentials, NotaryToolPasswordCredentials } from './types';
-export declare function isLegacyPasswordCredentials(opts: LegacyNotarizeCredentials): opts is LegacyNotarizePasswordCredentials;
-export declare function isLegacyApiKeyCredentials(opts: LegacyNotarizeCredentials): opts is LegacyNotarizeApiKeyCredentials;
-export declare function validateLegacyAuthorizationArgs(opts: LegacyNotarizeCredentials): LegacyNotarizeCredentials;
-export declare function isNotaryToolPasswordCredentials(opts: NotaryToolCredentials): opts is NotaryToolPasswordCredentials;
-export declare function isNotaryToolApiKeyCredentials(opts: NotaryToolCredentials): opts is NotaryToolApiKeyCredentials;
-export declare function isNotaryToolKeychainCredentials(opts: NotaryToolCredentials): opts is NotaryToolKeychainCredentials;
-export declare function validateNotaryToolAuthorizationArgs(opts: NotaryToolCredentials): NotaryToolCredentials;
diff --git a/node_modules/electron-notarize/lib/validate-args.js b/node_modules/electron-notarize/lib/validate-args.js
deleted file mode 100644
index 9a72caf..0000000
--- a/node_modules/electron-notarize/lib/validate-args.js
+++ /dev/null
@@ -1,101 +0,0 @@
-Object.defineProperty(exports, "__esModule", { value: true });
-function isLegacyPasswordCredentials(opts) {
- const creds = opts;
- return creds.appleId !== undefined || creds.appleIdPassword !== undefined;
-}
-exports.isLegacyPasswordCredentials = isLegacyPasswordCredentials;
-function isLegacyApiKeyCredentials(opts) {
- const creds = opts;
- return creds.appleApiKey !== undefined || creds.appleApiIssuer !== undefined;
-}
-exports.isLegacyApiKeyCredentials = isLegacyApiKeyCredentials;
-function validateLegacyAuthorizationArgs(opts) {
- const isPassword = isLegacyPasswordCredentials(opts);
- const isApiKey = isLegacyApiKeyCredentials(opts);
- if (isPassword && isApiKey) {
- throw new Error('Cannot use both password credentials and API key credentials at once');
- }
- if (isPassword) {
- const passwordCreds = opts;
- if (!passwordCreds.appleId) {
- throw new Error('The appleId property is required when using notarization with appleIdPassword');
- }
- else if (!passwordCreds.appleIdPassword) {
- throw new Error('The appleIdPassword property is required when using notarization with appleId');
- }
- return passwordCreds;
- }
- if (isApiKey) {
- const apiKeyCreds = opts;
- if (!apiKeyCreds.appleApiKey) {
- throw new Error('The appleApiKey property is required when using notarization with appleApiIssuer');
- }
- else if (!apiKeyCreds.appleApiIssuer) {
- throw new Error('The appleApiIssuer property is required when using notarization with appleApiKey');
- }
- return apiKeyCreds;
- }
- throw new Error('No authentication properties provided (e.g. appleId, appleApiKey)');
-}
-exports.validateLegacyAuthorizationArgs = validateLegacyAuthorizationArgs;
-function isNotaryToolPasswordCredentials(opts) {
- const creds = opts;
- return (creds.appleId !== undefined || creds.appleIdPassword !== undefined || creds.teamId !== undefined);
-}
-exports.isNotaryToolPasswordCredentials = isNotaryToolPasswordCredentials;
-function isNotaryToolApiKeyCredentials(opts) {
- const creds = opts;
- return (creds.appleApiIssuer !== undefined ||
- creds.appleApiKey !== undefined ||
- creds.appleApiKeyId !== undefined);
-}
-exports.isNotaryToolApiKeyCredentials = isNotaryToolApiKeyCredentials;
-function isNotaryToolKeychainCredentials(opts) {
- const creds = opts;
- return creds.keychain !== undefined || creds.keychainProfile !== undefined;
-}
-exports.isNotaryToolKeychainCredentials = isNotaryToolKeychainCredentials;
-function validateNotaryToolAuthorizationArgs(opts) {
- const isPassword = isNotaryToolPasswordCredentials(opts);
- const isApiKey = isNotaryToolApiKeyCredentials(opts);
- const isKeychain = isNotaryToolKeychainCredentials(opts);
- if ((isPassword ? 1 : 0) + (isApiKey ? 1 : 0) + (isKeychain ? 1 : 0) > 1) {
- throw new Error('Cannot use password credentials, API key credentials and keychain credentials at once');
- }
- if (isPassword) {
- const passwordCreds = opts;
- if (!passwordCreds.appleId) {
- throw new Error('The appleId property is required when using notarization with password credentials');
- }
- else if (!passwordCreds.appleIdPassword) {
- throw new Error('The appleIdPassword property is required when using notarization with password credentials');
- }
- else if (!passwordCreds.teamId) {
- throw new Error('The teamId property is required when using notarization with password credentials');
- }
- return passwordCreds;
- }
- if (isApiKey) {
- const apiKeyCreds = opts;
- if (!apiKeyCreds.appleApiKey) {
- throw new Error('The appleApiKey property is required when using notarization with ASC credentials');
- }
- else if (!apiKeyCreds.appleApiIssuer) {
- throw new Error('The appleApiIssuer property is required when using notarization with ASC credentials');
- }
- else if (!apiKeyCreds.appleApiKeyId) {
- throw new Error('The appleApiKeyId property is required when using notarization with ASC credentials');
- }
- return apiKeyCreds;
- }
- if (isKeychain) {
- const keychainCreds = opts;
- if (!keychainCreds.keychainProfile) {
- throw new Error('The keychainProfile property is required when using notarization with keychain credentials');
- }
- return keychainCreds;
- }
- throw new Error('No authentication properties provided (e.g. appleId, appleApiKey, keychain)');
-}
-exports.validateNotaryToolAuthorizationArgs = validateNotaryToolAuthorizationArgs;
-//# sourceMappingURL=validate-args.js.map \ No newline at end of file
diff --git a/node_modules/electron-notarize/lib/validate-args.js.map b/node_modules/electron-notarize/lib/validate-args.js.map
deleted file mode 100644
index 0e1b3e1..0000000
--- a/node_modules/electron-notarize/lib/validate-args.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"validate-args.js","sourceRoot":"","sources":["../src/validate-args.ts"],"names":[],"mappings":"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"} \ No newline at end of file