-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_all_tailscale_ips.ts
85 lines (83 loc) · 2.59 KB
/
get_all_tailscale_ips.ts
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import { isIPv6 } from "https://deno.land/[email protected]/node/internal/net.ts";
import { DDNScontentContent } from "./DDNScontentContent.ts";
import { runCommand } from "./runCommand.ts";
import {
getPublicIpv4,
getPublicIpv6,
} from "https://deno.land/x/[email protected]/mod.ts";
import { isIPv4 } from "https://deno.land/[email protected]/node/internal/net.ts";
/**
* 获取所有Tailscale网络IP和自定义公共IP
* @param opts - 选项参数
* @returns Promise<DDNScontentContent[]>
*/
export async function getAllTailscaleNetworkIPsAndSelfPublicIPs(
opts: {
name: string;
public: boolean;
tailscale: boolean;
ipv4: boolean;
ipv6: boolean;
},
): Promise<DDNScontentContent[]> {
const { name, tailscale, ipv4, ipv6 } = opts;
const selfIPs: string[] = [];
const config = {
[name]: selfIPs,
};
if (tailscale) {
const text = await runCommand("tailscale", ["status", "--json"]);
const data: {
Self: { DNSName: string; TailscaleIPs: string[] };
// Peer: Record<string, { DNSName: string; TailscaleIPs: string[] }>;
} = JSON.parse(text);
selfIPs.push(...Array.from(data.Self.TailscaleIPs));
const tailscale_name = tailscale
? data.Self.DNSName.slice(0, -1)
: name;
config[tailscale_name] = selfIPs;
}
// for (const v of Object.values(data.Peer)) {
// Object.assign(config, {
// [v.DNSName.slice(0, -1)]: v.TailscaleIPs,
// });
// }
if (opts.public) {
if (ipv4) {
try {
selfIPs.push(await getPublicIpv4());
} catch (error) {
console.error(error);
}
}
if (ipv6) {
try {
selfIPs.push(await getPublicIpv6());
} catch (error) {
console.error(error);
}
}
}
// console.log(JSONSTRINGIFYNULL4(config, null, 4))
// return config;
const result = new Array<DDNScontentContent>();
for (const [k, v] of Object.entries(config)) {
for (const ip of v) {
if (opts.ipv4 && isIPv4(ip)) {
result.push({
name: k,
content: ip,
type: isIPv6(ip) ? "AAAA" : "A",
});
}
if (opts.ipv6 && isIPv6(ip)) {
result.push({
name: k,
content: ip,
type: isIPv6(ip) ? "AAAA" : "A",
});
}
}
}
return result;
}