2020-07-08 06:47:34 -05:00
|
|
|
// Replace with `import fetch from "node-fetch"` once this is fixed in rollup:
|
|
|
|
// https://github.com/rollup/plugins/issues/491
|
|
|
|
const fetch = require("node-fetch") as typeof import("node-fetch")["default"];
|
|
|
|
|
2020-03-09 12:54:40 -05:00
|
|
|
import * as vscode from "vscode";
|
2020-02-12 13:40:35 -06:00
|
|
|
import * as stream from "stream";
|
2020-06-24 17:00:30 -05:00
|
|
|
import * as crypto from "crypto";
|
2020-06-20 07:38:08 -05:00
|
|
|
import * as fs from "fs";
|
2020-06-21 07:58:34 -05:00
|
|
|
import * as zlib from "zlib";
|
2020-02-12 13:40:35 -06:00
|
|
|
import * as util from "util";
|
2020-06-24 17:00:30 -05:00
|
|
|
import * as path from "path";
|
2020-03-17 06:44:31 -05:00
|
|
|
import { log, assert } from "./util";
|
2020-02-11 15:58:20 -06:00
|
|
|
|
2020-02-12 13:40:35 -06:00
|
|
|
const pipeline = util.promisify(stream.pipeline);
|
|
|
|
|
2020-03-17 06:44:31 -05:00
|
|
|
const GITHUB_API_ENDPOINT_URL = "https://api.github.com";
|
|
|
|
const OWNER = "rust-analyzer";
|
|
|
|
const REPO = "rust-analyzer";
|
|
|
|
|
|
|
|
export async function fetchRelease(
|
2020-09-23 01:12:51 -05:00
|
|
|
releaseTag: string,
|
|
|
|
githubToken: string | null | undefined,
|
2020-03-17 06:44:31 -05:00
|
|
|
): Promise<GithubRelease> {
|
|
|
|
|
|
|
|
const apiEndpointPath = `/repos/${OWNER}/${REPO}/releases/tags/${releaseTag}`;
|
|
|
|
|
|
|
|
const requestUrl = GITHUB_API_ENDPOINT_URL + apiEndpointPath;
|
|
|
|
|
|
|
|
log.debug("Issuing request for released artifacts metadata to", requestUrl);
|
|
|
|
|
2020-09-23 10:24:35 -05:00
|
|
|
const headers: Record<string, string> = { Accept: "application/vnd.github.v3+json" };
|
2020-09-23 01:12:51 -05:00
|
|
|
if (githubToken != null) {
|
|
|
|
headers.Authorization = "token " + githubToken;
|
|
|
|
}
|
|
|
|
|
|
|
|
const response = await fetch(requestUrl, { headers: headers });
|
2020-03-17 06:44:31 -05:00
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
log.error("Error fetching artifact release info", {
|
|
|
|
requestUrl,
|
|
|
|
releaseTag,
|
|
|
|
response: {
|
|
|
|
headers: response.headers,
|
|
|
|
status: response.status,
|
|
|
|
body: await response.text(),
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
throw new Error(
|
|
|
|
`Got response ${response.status} when trying to fetch ` +
|
|
|
|
`release info for ${releaseTag} release`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// We skip runtime type checks for simplicity (here we cast from `any` to `GithubRelease`)
|
|
|
|
const release: GithubRelease = await response.json();
|
|
|
|
return release;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We omit declaration of tremendous amount of fields that we are not using here
|
|
|
|
export interface GithubRelease {
|
|
|
|
name: string;
|
|
|
|
id: number;
|
|
|
|
// eslint-disable-next-line camelcase
|
|
|
|
published_at: string;
|
|
|
|
assets: Array<{
|
|
|
|
name: string;
|
|
|
|
// eslint-disable-next-line camelcase
|
|
|
|
browser_download_url: string;
|
|
|
|
}>;
|
|
|
|
}
|
|
|
|
|
2020-06-22 13:36:56 -05:00
|
|
|
interface DownloadOpts {
|
|
|
|
progressTitle: string;
|
|
|
|
url: string;
|
|
|
|
dest: string;
|
|
|
|
mode?: number;
|
2020-06-21 07:58:34 -05:00
|
|
|
gunzip?: boolean;
|
2020-09-23 10:39:04 -05:00
|
|
|
overwrite?: boolean;
|
2020-06-22 13:36:56 -05:00
|
|
|
}
|
2020-03-17 06:44:31 -05:00
|
|
|
|
2020-06-22 13:36:56 -05:00
|
|
|
export async function download(opts: DownloadOpts) {
|
2020-06-24 05:19:14 -05:00
|
|
|
// Put artifact into a temporary file (in the same dir for simplicity)
|
|
|
|
// to prevent partially downloaded files when user kills vscode
|
2020-06-24 17:00:30 -05:00
|
|
|
const dest = path.parse(opts.dest);
|
|
|
|
const randomHex = crypto.randomBytes(5).toString("hex");
|
|
|
|
const tempFile = path.join(dest.dir, `${dest.name}${randomHex}`);
|
2020-06-24 05:19:14 -05:00
|
|
|
|
2020-09-23 10:37:02 -05:00
|
|
|
if (opts.overwrite) {
|
|
|
|
// Unlinking the exe file before moving new one on its place should prevent ETXTBSY error.
|
|
|
|
await fs.promises.unlink(opts.dest).catch(err => {
|
|
|
|
if (err.code !== "ENOENT") throw err;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-24 05:19:14 -05:00
|
|
|
await vscode.window.withProgress(
|
|
|
|
{
|
|
|
|
location: vscode.ProgressLocation.Notification,
|
|
|
|
cancellable: false,
|
|
|
|
title: opts.progressTitle
|
|
|
|
},
|
|
|
|
async (progress, _cancellationToken) => {
|
|
|
|
let lastPercentage = 0;
|
2020-06-21 07:58:34 -05:00
|
|
|
await downloadFile(opts.url, tempFile, opts.mode, !!opts.gunzip, (readBytes, totalBytes) => {
|
2020-06-24 05:19:14 -05:00
|
|
|
const newPercentage = (readBytes / totalBytes) * 100;
|
|
|
|
progress.report({
|
|
|
|
message: newPercentage.toFixed(0) + "%",
|
|
|
|
increment: newPercentage - lastPercentage
|
2020-03-17 06:44:31 -05:00
|
|
|
});
|
|
|
|
|
2020-06-24 05:19:14 -05:00
|
|
|
lastPercentage = newPercentage;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
await fs.promises.rename(tempFile, opts.dest);
|
2020-03-17 06:44:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
async function downloadFile(
|
2020-02-06 19:11:24 -06:00
|
|
|
url: string,
|
|
|
|
destFilePath: fs.PathLike,
|
2020-03-17 06:44:31 -05:00
|
|
|
mode: number | undefined,
|
2020-06-21 07:58:34 -05:00
|
|
|
gunzip: boolean,
|
2020-02-06 19:11:24 -06:00
|
|
|
onProgress: (readBytes: number, totalBytes: number) => void
|
|
|
|
): Promise<void> {
|
2020-02-13 16:31:23 -06:00
|
|
|
const res = await fetch(url);
|
2020-02-06 19:11:24 -06:00
|
|
|
|
2020-02-10 18:14:04 -06:00
|
|
|
if (!res.ok) {
|
2020-02-21 08:59:46 -06:00
|
|
|
log.error("Error", res.status, "while downloading file from", url);
|
|
|
|
log.error({ body: await res.text(), headers: res.headers });
|
2020-02-10 18:14:04 -06:00
|
|
|
|
2020-02-13 16:31:23 -06:00
|
|
|
throw new Error(`Got response ${res.status} when trying to download a file.`);
|
2020-02-10 18:14:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
const totalBytes = Number(res.headers.get('content-length'));
|
2020-02-08 13:03:27 -06:00
|
|
|
assert(!Number.isNaN(totalBytes), "Sanity check of content-length protocol");
|
|
|
|
|
2020-02-21 08:59:46 -06:00
|
|
|
log.debug("Downloading file of", totalBytes, "bytes size from", url, "to", destFilePath);
|
2020-02-09 07:01:00 -06:00
|
|
|
|
2020-06-22 13:36:56 -05:00
|
|
|
let readBytes = 0;
|
|
|
|
res.body.on("data", (chunk: Buffer) => {
|
|
|
|
readBytes += chunk.length;
|
|
|
|
onProgress(readBytes, totalBytes);
|
|
|
|
});
|
2020-06-22 11:50:57 -05:00
|
|
|
|
2020-06-22 13:36:56 -05:00
|
|
|
const destFileStream = fs.createWriteStream(destFilePath, { mode });
|
2020-06-21 07:58:34 -05:00
|
|
|
const srcStream = gunzip ? res.body.pipe(zlib.createGunzip()) : res.body;
|
|
|
|
|
|
|
|
await pipeline(srcStream, destFileStream);
|
|
|
|
|
2020-08-21 14:12:22 -05:00
|
|
|
// Don't apply the workaround in fixed versions of nodejs, since the process
|
|
|
|
// freezes on them, the process waits for no-longer emitted `close` event.
|
|
|
|
// The fix was applied in commit 7eed9d6bcc in v13.11.0
|
|
|
|
// See the nodejs changelog:
|
|
|
|
// https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V13.md
|
|
|
|
const [, major, minor] = /v(\d+)\.(\d+)\.(\d+)/.exec(process.version)!;
|
|
|
|
if (+major > 13 || (+major === 13 && +minor >= 11)) return;
|
|
|
|
|
2020-06-22 13:36:56 -05:00
|
|
|
await new Promise<void>(resolve => {
|
|
|
|
destFileStream.on("close", resolve);
|
|
|
|
destFileStream.destroy();
|
|
|
|
// This workaround is awaiting to be removed when vscode moves to newer nodejs version:
|
|
|
|
// https://github.com/rust-analyzer/rust-analyzer/issues/3167
|
2020-02-12 13:40:35 -06:00
|
|
|
});
|
2020-02-06 19:11:24 -06:00
|
|
|
}
|