-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixiecore-api.ts
More file actions
118 lines (103 loc) · 3.46 KB
/
Copy pathpixiecore-api.ts
File metadata and controls
118 lines (103 loc) · 3.46 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
const nfsServer = Deno.env.get("NFS_SERVER")!;
const port = parseInt(Deno.env.get("API_PORT")!, 10);
const kernelFile = Deno.env.get("KERNEL")!;
const initrdFile = Deno.env.get("INITRD")!;
const cmdline = Deno.env.get("CMDLINE");
const kernelMinFile = Deno.env.get("KERNEL_MIN")!;
const initrdMinFile = Deno.env.get("INITRD_MIN")!;
const cmdlineMin = Deno.env.get("CMDLINE_MIN");
Deno.serve({ hostname: "0.0.0.0", port }, (req) => {
if (req.url.endsWith("kernel")) {
console.log("Deno API server: Serving kernel");
const kernel = Deno.readFileSync(kernelFile);
return new Response(kernel, {
headers: {
"Content-Type": "application/octet-stream",
"Content-Length": String(kernel.byteLength),
},
});
}
if (req.url.endsWith("initrd")) {
console.log("Deno API server: Serving initrd");
const initrd = Deno.readFileSync(initrdFile);
return new Response(initrd, {
headers: {
"Content-Type": "application/octet-stream",
"Content-Length": String(initrd.byteLength),
},
});
}
if (req.url.endsWith("booting")) {
console.log("Deno API server: Booting");
return new Response("OK", { headers: [["Content-Type", "text/plain"]] });
}
if (req.url.endsWith("kernel-min")) {
console.log("Deno API server: Serving kernel");
const kernel = Deno.readFileSync(kernelMinFile);
return new Response(kernel, {
headers: {
"Content-Type": "application/octet-stream",
"Content-Length": String(kernel.byteLength),
},
});
}
if (req.url.endsWith("initrd-min")) {
console.log("Deno API server: Serving initrd");
const initrd = Deno.readFileSync(initrdMinFile);
return new Response(initrd, {
headers: {
"Content-Type": "application/octet-stream",
"Content-Length": String(initrd.byteLength),
},
});
}
if (req.url.endsWith("booting-min")) {
console.log("Deno API server: Booting Min");
return new Response("OK", { headers: [["Content-Type", "text/plain"]] });
}
function getIpxeScript() {
return `
#!ipxe
# Show boot menu with timeout
:start
menu Boot Options
item --gap -- ------------------------- Boot Options -------------------------
item --default local Start Windows
item network Start Linux
item networkmin Start Linux Min
item --gap -- --------------------------------------------------------
choose --timeout 10000 --default local selected || goto cancel
goto \${selected}
:network
kernel --name kernel http://${nfsServer}:${port}/kernel
initrd --name initrd0 http://${nfsServer}:${port}/initrd
imgfetch --name ready http://${nfsServer}:${port}/booting ||
imgfree ready ||
boot kernel initrd=initrd0 ${cmdline}
:networkmin
kernel --name kernel http://${nfsServer}:${port}/kernel-min
initrd --name initrd0 http://${nfsServer}:${port}/initrd-min
imgfetch --name ready http://${nfsServer}:${port}/booting-min ||
imgfree ready ||
boot kernel initrd=initrd0 ${cmdlineMin}
:local
echo Exiting to next boot device...
exit 1
:cancel
echo Boot cancelled, exiting to next boot device...
exit 1
`.trim();
}
console.log("Deno API server: Responding with boot spec...");
return new Response(
JSON.stringify(
{
"kernel": `http://${nfsServer}:${port}/kernel`,
"initrd": [`http://${nfsServer}:${port}/initrd`],
"cmdline": cmdline,
"ipxe-script": getIpxeScript(),
},
),
{ headers: [["Content-Type", "application/json"]] },
);
});