forked from olcxjas-softworks/LarpixClient
Update gitignore (sorry)
This commit is contained in:
parent
a8f8c4d7ad
commit
cca8b02fea
6604 changed files with 1219661 additions and 4 deletions
134
electron/node_modules/electron-updater/out/providers/Provider.js
generated
vendored
Normal file
134
electron/node_modules/electron-updater/out/providers/Provider.js
generated
vendored
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.resolveFiles = exports.getFileList = exports.parseUpdateInfo = exports.findFile = exports.Provider = void 0;
|
||||
const builder_util_runtime_1 = require("builder-util-runtime");
|
||||
const js_yaml_1 = require("js-yaml");
|
||||
const util_1 = require("../util");
|
||||
class Provider {
|
||||
constructor(runtimeOptions) {
|
||||
this.runtimeOptions = runtimeOptions;
|
||||
this.requestHeaders = null;
|
||||
this.executor = runtimeOptions.executor;
|
||||
}
|
||||
get isUseMultipleRangeRequest() {
|
||||
return this.runtimeOptions.isUseMultipleRangeRequest !== false;
|
||||
}
|
||||
getChannelFilePrefix() {
|
||||
if (this.runtimeOptions.platform === "linux") {
|
||||
const arch = process.env["TEST_UPDATER_ARCH"] || process.arch;
|
||||
const archSuffix = arch === "x64" ? "" : `-${arch}`;
|
||||
return "-linux" + archSuffix;
|
||||
}
|
||||
else {
|
||||
return this.runtimeOptions.platform === "darwin" ? "-mac" : "";
|
||||
}
|
||||
}
|
||||
// due to historical reasons for windows we use channel name without platform specifier
|
||||
getDefaultChannelName() {
|
||||
return this.getCustomChannelName("latest");
|
||||
}
|
||||
getCustomChannelName(channel) {
|
||||
return `${channel}${this.getChannelFilePrefix()}`;
|
||||
}
|
||||
get fileExtraDownloadHeaders() {
|
||||
return null;
|
||||
}
|
||||
setRequestHeaders(value) {
|
||||
this.requestHeaders = value;
|
||||
}
|
||||
/**
|
||||
* Method to perform API request only to resolve update info, but not to download update.
|
||||
*/
|
||||
httpRequest(url, headers, cancellationToken) {
|
||||
return this.executor.request(this.createRequestOptions(url, headers), cancellationToken);
|
||||
}
|
||||
createRequestOptions(url, headers) {
|
||||
const result = {};
|
||||
if (this.requestHeaders == null) {
|
||||
if (headers != null) {
|
||||
result.headers = headers;
|
||||
}
|
||||
}
|
||||
else {
|
||||
result.headers = headers == null ? this.requestHeaders : { ...this.requestHeaders, ...headers };
|
||||
}
|
||||
builder_util_runtime_1.configureRequestUrl(url, result);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
exports.Provider = Provider;
|
||||
function findFile(files, extension, not) {
|
||||
if (files.length === 0) {
|
||||
throw builder_util_runtime_1.newError("No files provided", "ERR_UPDATER_NO_FILES_PROVIDED");
|
||||
}
|
||||
const result = files.find(it => it.url.pathname.toLowerCase().endsWith(`.${extension}`));
|
||||
if (result != null) {
|
||||
return result;
|
||||
}
|
||||
else if (not == null) {
|
||||
return files[0];
|
||||
}
|
||||
else {
|
||||
return files.find(fileInfo => !not.some(ext => fileInfo.url.pathname.toLowerCase().endsWith(`.${ext}`)));
|
||||
}
|
||||
}
|
||||
exports.findFile = findFile;
|
||||
function parseUpdateInfo(rawData, channelFile, channelFileUrl) {
|
||||
if (rawData == null) {
|
||||
throw builder_util_runtime_1.newError(`Cannot parse update info from ${channelFile} in the latest release artifacts (${channelFileUrl}): rawData: null`, "ERR_UPDATER_INVALID_UPDATE_INFO");
|
||||
}
|
||||
let result;
|
||||
try {
|
||||
result = js_yaml_1.load(rawData);
|
||||
}
|
||||
catch (e) {
|
||||
throw builder_util_runtime_1.newError(`Cannot parse update info from ${channelFile} in the latest release artifacts (${channelFileUrl}): ${e.stack || e.message}, rawData: ${rawData}`, "ERR_UPDATER_INVALID_UPDATE_INFO");
|
||||
}
|
||||
return result;
|
||||
}
|
||||
exports.parseUpdateInfo = parseUpdateInfo;
|
||||
function getFileList(updateInfo) {
|
||||
const files = updateInfo.files;
|
||||
if (files != null && files.length > 0) {
|
||||
return files;
|
||||
}
|
||||
// noinspection JSDeprecatedSymbols
|
||||
if (updateInfo.path != null) {
|
||||
// noinspection JSDeprecatedSymbols
|
||||
return [
|
||||
{
|
||||
url: updateInfo.path,
|
||||
sha2: updateInfo.sha2,
|
||||
sha512: updateInfo.sha512,
|
||||
},
|
||||
];
|
||||
}
|
||||
else {
|
||||
throw builder_util_runtime_1.newError(`No files provided: ${builder_util_runtime_1.safeStringifyJson(updateInfo)}`, "ERR_UPDATER_NO_FILES_PROVIDED");
|
||||
}
|
||||
}
|
||||
exports.getFileList = getFileList;
|
||||
function resolveFiles(updateInfo, baseUrl, pathTransformer = (p) => p) {
|
||||
const files = getFileList(updateInfo);
|
||||
const result = files.map(fileInfo => {
|
||||
if (fileInfo.sha2 == null && fileInfo.sha512 == null) {
|
||||
throw builder_util_runtime_1.newError(`Update info doesn't contain nor sha256 neither sha512 checksum: ${builder_util_runtime_1.safeStringifyJson(fileInfo)}`, "ERR_UPDATER_NO_CHECKSUM");
|
||||
}
|
||||
return {
|
||||
url: util_1.newUrlFromBase(pathTransformer(fileInfo.url), baseUrl),
|
||||
info: fileInfo,
|
||||
};
|
||||
});
|
||||
const packages = updateInfo.packages;
|
||||
const packageInfo = packages == null ? null : packages[process.arch] || packages.ia32;
|
||||
if (packageInfo != null) {
|
||||
;
|
||||
result[0].packageInfo = {
|
||||
...packageInfo,
|
||||
path: util_1.newUrlFromBase(pathTransformer(packageInfo.path), baseUrl).href,
|
||||
};
|
||||
}
|
||||
return result;
|
||||
}
|
||||
exports.resolveFiles = resolveFiles;
|
||||
//# sourceMappingURL=Provider.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue