2021-12-24 01:58:15 +08:00
|
|
|
import fs from "fs-extra";
|
2021-12-29 01:01:09 +08:00
|
|
|
import zlib from "zlib";
|
2021-12-24 01:58:15 +08:00
|
|
|
import path from "path";
|
|
|
|
import AdmZip from "adm-zip";
|
|
|
|
import fetch from "node-fetch";
|
2022-04-17 00:37:21 +08:00
|
|
|
import proxyAgent from "https-proxy-agent";
|
2021-12-24 01:58:15 +08:00
|
|
|
import { execSync } from "child_process";
|
|
|
|
|
|
|
|
const cwd = process.cwd();
|
2022-04-24 15:35:30 +08:00
|
|
|
const TEMP_DIR = path.join(cwd, "node_modules/.verge");
|
|
|
|
|
2022-03-09 20:14:15 +08:00
|
|
|
const FORCE = process.argv.includes("--force");
|
2021-12-24 01:58:15 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the correct clash release infomation
|
|
|
|
*/
|
|
|
|
function resolveClash() {
|
|
|
|
const { platform, arch } = process;
|
|
|
|
|
2022-03-20 12:35:49 +08:00
|
|
|
const CLASH_URL_PREFIX =
|
|
|
|
"https://github.com/Dreamacro/clash/releases/download/premium/";
|
2022-04-20 21:02:41 +08:00
|
|
|
const CLASH_LATEST_DATE = "2022.04.17";
|
2022-03-20 12:35:49 +08:00
|
|
|
|
2021-12-24 01:58:15 +08:00
|
|
|
// todo
|
2021-12-29 01:01:09 +08:00
|
|
|
const map = {
|
2022-03-09 20:14:15 +08:00
|
|
|
"win32-x64": "clash-windows-amd64",
|
2021-12-29 01:01:09 +08:00
|
|
|
"darwin-x64": "clash-darwin-amd64",
|
|
|
|
"darwin-arm64": "clash-darwin-arm64",
|
2022-03-09 20:14:15 +08:00
|
|
|
"linux-x64": "clash-linux-amd64",
|
2021-12-29 01:01:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const name = map[`${platform}-${arch}`];
|
2021-12-24 01:58:15 +08:00
|
|
|
|
|
|
|
if (!name) {
|
2021-12-29 01:01:09 +08:00
|
|
|
throw new Error(`unsupport platform "${platform}-${arch}"`);
|
2021-12-24 01:58:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const isWin = platform === "win32";
|
|
|
|
const zip = isWin ? "zip" : "gz";
|
|
|
|
const url = `${CLASH_URL_PREFIX}${name}-${CLASH_LATEST_DATE}.${zip}`;
|
|
|
|
const exefile = `${name}${isWin ? ".exe" : ""}`;
|
|
|
|
const zipfile = `${name}.${zip}`;
|
|
|
|
|
|
|
|
return { url, zip, exefile, zipfile };
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the sidecar bin
|
|
|
|
*/
|
|
|
|
async function resolveSidecar() {
|
|
|
|
const sidecarDir = path.join(cwd, "src-tauri", "sidecar");
|
|
|
|
|
|
|
|
const host = execSync("rustc -vV | grep host").toString().slice(6).trim();
|
|
|
|
const ext = process.platform === "win32" ? ".exe" : "";
|
|
|
|
const sidecarFile = `clash-${host}${ext}`;
|
|
|
|
const sidecarPath = path.join(sidecarDir, sidecarFile);
|
|
|
|
|
2022-02-18 23:49:39 +08:00
|
|
|
await fs.mkdirp(sidecarDir);
|
2022-03-09 20:14:15 +08:00
|
|
|
if (!FORCE && (await fs.pathExists(sidecarPath))) return;
|
2021-12-24 01:58:15 +08:00
|
|
|
|
|
|
|
// download sidecar
|
|
|
|
const binInfo = resolveClash();
|
2022-04-24 15:35:30 +08:00
|
|
|
const tempDir = path.join(TEMP_DIR, "clash");
|
2021-12-24 01:58:15 +08:00
|
|
|
const tempZip = path.join(tempDir, binInfo.zipfile);
|
|
|
|
const tempExe = path.join(tempDir, binInfo.exefile);
|
|
|
|
|
2022-02-18 23:49:39 +08:00
|
|
|
await fs.mkdirp(tempDir);
|
2021-12-24 01:58:15 +08:00
|
|
|
if (!(await fs.pathExists(tempZip))) await downloadFile(binInfo.url, tempZip);
|
|
|
|
|
2021-12-29 01:01:09 +08:00
|
|
|
if (binInfo.zip === "zip") {
|
|
|
|
const zip = new AdmZip(tempZip);
|
|
|
|
zip.getEntries().forEach((entry) => {
|
|
|
|
console.log("[INFO]: entry name", entry.entryName);
|
|
|
|
});
|
|
|
|
zip.extractAllTo(tempDir, true);
|
|
|
|
// save as sidecar
|
|
|
|
await fs.rename(tempExe, sidecarPath);
|
|
|
|
console.log(`[INFO]: unzip finished`);
|
|
|
|
} else {
|
|
|
|
// gz
|
|
|
|
const readStream = fs.createReadStream(tempZip);
|
|
|
|
const writeStream = fs.createWriteStream(sidecarPath);
|
|
|
|
readStream
|
|
|
|
.pipe(zlib.createGunzip())
|
|
|
|
.pipe(writeStream)
|
|
|
|
.on("finish", () => {
|
|
|
|
console.log(`[INFO]: gunzip finished`);
|
|
|
|
execSync(`chmod 755 ${sidecarPath}`);
|
|
|
|
console.log(`[INFO]: chmod binary finished`);
|
2022-03-20 12:35:49 +08:00
|
|
|
})
|
|
|
|
.on("error", (error) => console.error(error));
|
2021-12-29 01:01:09 +08:00
|
|
|
}
|
2021-12-24 01:58:15 +08:00
|
|
|
|
|
|
|
// delete temp dir
|
|
|
|
await fs.remove(tempDir);
|
|
|
|
}
|
|
|
|
|
2022-03-17 19:29:30 +08:00
|
|
|
/**
|
|
|
|
* only Windows
|
|
|
|
* get the wintun.dll (not required)
|
|
|
|
*/
|
|
|
|
async function resolveWintun() {
|
|
|
|
const { platform } = process;
|
|
|
|
|
|
|
|
if (platform !== "win32") return;
|
|
|
|
|
|
|
|
const url = "https://www.wintun.net/builds/wintun-0.14.1.zip";
|
|
|
|
|
2022-04-24 15:35:30 +08:00
|
|
|
const tempDir = path.join(TEMP_DIR, "wintun");
|
2022-03-17 19:29:30 +08:00
|
|
|
const tempZip = path.join(tempDir, "wintun.zip");
|
|
|
|
|
|
|
|
const wintunPath = path.join(tempDir, "wintun/bin/amd64/wintun.dll");
|
|
|
|
const targetPath = path.join(cwd, "src-tauri/resources", "wintun.dll");
|
|
|
|
|
|
|
|
if (!FORCE && (await fs.pathExists(targetPath))) return;
|
|
|
|
|
|
|
|
await fs.mkdirp(tempDir);
|
|
|
|
|
|
|
|
if (!(await fs.pathExists(tempZip))) {
|
|
|
|
await downloadFile(url, tempZip);
|
|
|
|
}
|
|
|
|
|
|
|
|
// unzip
|
|
|
|
const zip = new AdmZip(tempZip);
|
|
|
|
zip.extractAllTo(tempDir, true);
|
|
|
|
|
|
|
|
if (!(await fs.pathExists(wintunPath))) {
|
|
|
|
throw new Error(`path not found "${wintunPath}"`);
|
|
|
|
}
|
|
|
|
|
|
|
|
await fs.rename(wintunPath, targetPath);
|
|
|
|
await fs.remove(tempDir);
|
|
|
|
|
|
|
|
console.log(`[INFO]: resolve wintun.dll finished`);
|
|
|
|
}
|
|
|
|
|
2022-04-24 15:35:30 +08:00
|
|
|
/**
|
|
|
|
* only Windows
|
|
|
|
* get the clash-verge-service.exe
|
|
|
|
*/
|
|
|
|
async function resolveService() {
|
|
|
|
const { platform } = process;
|
|
|
|
|
|
|
|
if (platform !== "win32") return;
|
|
|
|
|
2022-04-27 15:46:44 +08:00
|
|
|
const resDir = path.join(cwd, "src-tauri/resources");
|
2022-04-24 15:35:30 +08:00
|
|
|
|
2022-04-27 15:46:44 +08:00
|
|
|
const repo =
|
|
|
|
"https://github.com/zzzgydi/clash-verge-service/releases/download/latest";
|
2022-04-24 15:35:30 +08:00
|
|
|
|
2022-04-27 15:46:44 +08:00
|
|
|
async function help(bin) {
|
|
|
|
const targetPath = path.join(resDir, bin);
|
2022-04-24 15:35:30 +08:00
|
|
|
|
2022-04-27 15:46:44 +08:00
|
|
|
if (!FORCE && (await fs.pathExists(targetPath))) return;
|
|
|
|
|
|
|
|
const url = `${repo}/${bin}`;
|
|
|
|
await downloadFile(url, targetPath);
|
|
|
|
}
|
2022-04-24 15:35:30 +08:00
|
|
|
|
|
|
|
await fs.mkdirp(resDir);
|
2022-04-27 15:46:44 +08:00
|
|
|
await help("clash-verge-service.exe");
|
|
|
|
await help("install-service.exe");
|
|
|
|
await help("uninstall-service.exe");
|
2022-04-24 15:35:30 +08:00
|
|
|
|
2022-04-27 15:46:44 +08:00
|
|
|
console.log(`[INFO]: resolve Service finished`);
|
2022-04-24 15:35:30 +08:00
|
|
|
}
|
|
|
|
|
2021-12-24 01:58:15 +08:00
|
|
|
/**
|
|
|
|
* get the Country.mmdb (not required)
|
|
|
|
*/
|
|
|
|
async function resolveMmdb() {
|
|
|
|
const url =
|
|
|
|
"https://github.com/Dreamacro/maxmind-geoip/releases/latest/download/Country.mmdb";
|
|
|
|
|
2022-02-18 23:49:39 +08:00
|
|
|
const resDir = path.join(cwd, "src-tauri", "resources");
|
|
|
|
const resPath = path.join(resDir, "Country.mmdb");
|
2022-04-24 15:35:30 +08:00
|
|
|
|
2022-03-09 20:14:15 +08:00
|
|
|
if (!FORCE && (await fs.pathExists(resPath))) return;
|
2022-04-24 15:35:30 +08:00
|
|
|
|
2022-02-18 23:49:39 +08:00
|
|
|
await fs.mkdirp(resDir);
|
2021-12-24 01:58:15 +08:00
|
|
|
await downloadFile(url, resPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* download file and save to `path`
|
|
|
|
*/
|
|
|
|
async function downloadFile(url, path) {
|
|
|
|
console.log(`[INFO]: downloading from "${url}"`);
|
|
|
|
|
2022-04-17 00:37:21 +08:00
|
|
|
const options = {};
|
|
|
|
|
|
|
|
const httpProxy =
|
|
|
|
process.env.HTTP_PROXY ||
|
|
|
|
process.env.http_proxy ||
|
|
|
|
process.env.HTTPS_PROXY ||
|
|
|
|
process.env.https_proxy;
|
|
|
|
|
|
|
|
if (httpProxy) {
|
|
|
|
options.agent = proxyAgent(httpProxy);
|
|
|
|
}
|
|
|
|
|
2021-12-24 01:58:15 +08:00
|
|
|
const response = await fetch(url, {
|
2022-04-17 00:37:21 +08:00
|
|
|
...options,
|
2021-12-24 01:58:15 +08:00
|
|
|
method: "GET",
|
|
|
|
headers: { "Content-Type": "application/octet-stream" },
|
|
|
|
});
|
|
|
|
const buffer = await response.arrayBuffer();
|
|
|
|
await fs.writeFile(path, new Uint8Array(buffer));
|
2021-12-29 01:01:09 +08:00
|
|
|
|
|
|
|
console.log(`[INFO]: download finished "${url}"`);
|
2021-12-24 01:58:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// main
|
2022-02-18 23:49:39 +08:00
|
|
|
resolveSidecar().catch(console.error);
|
2022-03-17 19:29:30 +08:00
|
|
|
resolveWintun().catch(console.error);
|
2022-02-18 23:49:39 +08:00
|
|
|
resolveMmdb().catch(console.error);
|
2022-04-24 15:35:30 +08:00
|
|
|
resolveService().catch(console.error);
|