‘liusuyi’
2023-08-09 161b9318e345c8a0c9cdc133b33a1c759495f323
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
"use strict";
 
const execa = require("execa");
const ipRegex = require("ip-regex");
 
const gwArgs = "path Win32_NetworkAdapterConfiguration where IPEnabled=true get DefaultIPGateway,Index /format:table".split(" ");
const ifArgs = "path Win32_NetworkAdapter get Index,NetConnectionID /format:table".split(" ");
 
const parse = (gwTable, ifTable, family) => {
  let gateway, gwid, result;
 
  (gwTable || "").trim().split("\n").splice(1).some(line => {
    const results = line.trim().split(/} +/) || [];
    const gw = results[0];
    const id = results[1];
    gateway = (ipRegex[family]().exec((gw || "").trim()) || [])[0];
    if (gateway) {
      gwid = id;
      return true;
    }
  });
 
  (ifTable || "").trim().split("\n").splice(1).some(line => {
    const i = line.indexOf(" ");
    const id = line.substr(0, i).trim();
    const name = line.substr(i + 1).trim();
    if (id === gwid) {
      result = {gateway, interface: name ? name : null};
      return true;
    }
  });
 
  if (!result) {
    throw new Error("Unable to determine default gateway");
  }
 
  return result;
};
 
const spawnOpts = {
  windowsHide: true,
};
 
const promise = family => {
  return Promise.all([
    execa.stdout("wmic", gwArgs, spawnOpts),
    execa.stdout("wmic", ifArgs, spawnOpts),
  ]).then(results => {
    const gwTable = results[0];
    const ifTable = results[1];
 
    return parse(gwTable, ifTable, family);
  });
};
 
const sync = family => {
  const gwTable = execa.sync("wmic", gwArgs, spawnOpts).stdout;
  const ifTable = execa.sync("wmic", ifArgs, spawnOpts).stdout;
 
  return parse(gwTable, ifTable, family);
};
 
module.exports.v4 = () => promise("v4");
module.exports.v6 = () => promise("v6");
 
module.exports.v4.sync = () => sync("v4");
module.exports.v6.sync = () => sync("v6");