mirror of
https://git.bits.team/Bits/mod-manager.git
synced 2025-04-04 15:08:36 -04:00
28 lines
1019 B
TypeScript
28 lines
1019 B
TypeScript
import path from "path";
|
|
import * as https from "https";
|
|
import {createWriteStream} from "fs";
|
|
import DownloadError from "../errors/download_error.js";
|
|
import ModManager from "../mod-manager.js";
|
|
|
|
|
|
export default class FileDownloader {
|
|
static downloadMod(version: Version): void {
|
|
try {
|
|
if (version.url == null) {
|
|
throw new Error("URL was null");
|
|
}
|
|
|
|
https.get(version.url, res => {
|
|
const filePath = path.join(ModManager.FilePaths.MODS_FOLDER_PATH, version.fileName);
|
|
const writeStream = createWriteStream(filePath);
|
|
res.pipe(writeStream);
|
|
writeStream.on("finish", () => writeStream.close());
|
|
writeStream.on('error', () => {
|
|
throw new Error("Error while writing file during download")
|
|
})
|
|
})
|
|
} catch (e) {
|
|
throw new DownloadError(`Failed to download ${version.fileName} from ${version.url}`)
|
|
}
|
|
}
|
|
} |