sussudio
Version:
An unofficial VS Code Internal API
47 lines (46 loc) • 2.55 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
import { CancellationToken } from "../../../base/common/cancellation.mjs";
import { Schemas } from "../../../base/common/network.mjs";
import { IFileService } from "../../files/common/files.mjs";
import { asTextOrError, IRequestService } from "../../request/common/request.mjs";
let DownloadService = class DownloadService {
requestService;
fileService;
constructor(requestService, fileService) {
this.requestService = requestService;
this.fileService = fileService;
}
async download(resource, target, cancellationToken = CancellationToken.None) {
if (resource.scheme === Schemas.file || resource.scheme === Schemas.vscodeRemote) {
// Intentionally only support this for file|remote<->file|remote scenarios
await this.fileService.copy(resource, target);
return;
}
const options = { type: 'GET', url: resource.toString(true) };
const context = await this.requestService.request(options, cancellationToken);
if (context.res.statusCode === 200) {
await this.fileService.writeFile(target, context.stream);
}
else {
const message = await asTextOrError(context);
throw new Error(`Expected 200, got back ${context.res.statusCode} instead.\n\n${message}`);
}
}
};
DownloadService = __decorate([
__param(0, IRequestService),
__param(1, IFileService)
], DownloadService);
export { DownloadService };