2021-09-14 02:37:35 +02:00
|
|
|
import React, { useState } from "react";
|
|
|
|
|
2021-09-17 01:23:03 +02:00
|
|
|
import Accordion from "@mui/material/Accordion";
|
|
|
|
import AccordionSummary from "@mui/material/AccordionSummary";
|
|
|
|
import AccordionDetails from "@mui/material/AccordionDetails";
|
|
|
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
2021-09-14 02:37:35 +02:00
|
|
|
|
2021-09-17 01:23:03 +02:00
|
|
|
import Button from "@mui/material/Button";
|
|
|
|
import Select, { SelectChangeEvent } from "@mui/material/Select";
|
2021-09-14 02:37:35 +02:00
|
|
|
import { AllServers } from "../../Server/AllServers";
|
|
|
|
import { HacknetServer } from "../../Hacknet/HacknetServer";
|
|
|
|
import { GetServerByHostname } from "../../Server/ServerHelpers";
|
2021-09-17 01:23:03 +02:00
|
|
|
import MenuItem from "@mui/material/MenuItem";
|
2021-09-14 02:37:35 +02:00
|
|
|
|
2021-09-14 04:27:43 +02:00
|
|
|
export function Servers(): React.ReactElement {
|
2021-09-14 02:37:35 +02:00
|
|
|
const [server, setServer] = useState("home");
|
2021-09-17 01:23:03 +02:00
|
|
|
function setServerDropdown(event: SelectChangeEvent<string>): void {
|
2021-09-14 02:37:35 +02:00
|
|
|
setServer(event.target.value as string);
|
|
|
|
}
|
|
|
|
function rootServer(): void {
|
|
|
|
const s = GetServerByHostname(server);
|
|
|
|
if (s === null) return;
|
|
|
|
if (s instanceof HacknetServer) return;
|
|
|
|
s.hasAdminRights = true;
|
|
|
|
s.sshPortOpen = true;
|
|
|
|
s.ftpPortOpen = true;
|
|
|
|
s.smtpPortOpen = true;
|
|
|
|
s.httpPortOpen = true;
|
|
|
|
s.sqlPortOpen = true;
|
|
|
|
s.openPortCount = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
function rootAllServers(): void {
|
|
|
|
for (const i in AllServers) {
|
|
|
|
const s = AllServers[i];
|
|
|
|
if (s instanceof HacknetServer) return;
|
|
|
|
s.hasAdminRights = true;
|
|
|
|
s.sshPortOpen = true;
|
|
|
|
s.ftpPortOpen = true;
|
|
|
|
s.smtpPortOpen = true;
|
|
|
|
s.httpPortOpen = true;
|
|
|
|
s.sqlPortOpen = true;
|
|
|
|
s.openPortCount = 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function minSecurity(): void {
|
|
|
|
const s = GetServerByHostname(server);
|
|
|
|
if (s === null) return;
|
|
|
|
if (s instanceof HacknetServer) return;
|
|
|
|
s.hackDifficulty = s.minDifficulty;
|
|
|
|
}
|
|
|
|
|
|
|
|
function minAllSecurity(): void {
|
|
|
|
for (const i in AllServers) {
|
|
|
|
const server = AllServers[i];
|
|
|
|
if (server instanceof HacknetServer) continue;
|
|
|
|
server.hackDifficulty = server.minDifficulty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function maxMoney(): void {
|
|
|
|
const s = GetServerByHostname(server);
|
|
|
|
if (s === null) return;
|
|
|
|
if (s instanceof HacknetServer) return;
|
|
|
|
s.moneyAvailable = s.moneyMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
function maxAllMoney(): void {
|
|
|
|
for (const i in AllServers) {
|
|
|
|
const server = AllServers[i];
|
|
|
|
if (server instanceof HacknetServer) continue;
|
|
|
|
server.moneyAvailable = server.moneyMax;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2021-09-18 03:30:02 +02:00
|
|
|
<Accordion TransitionProps={{ unmountOnExit: true }}>
|
2021-09-14 02:37:35 +02:00
|
|
|
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
|
|
|
|
<h2>Servers</h2>
|
|
|
|
</AccordionSummary>
|
|
|
|
<AccordionDetails>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Server:</span>
|
|
|
|
</td>
|
|
|
|
<td colSpan={2}>
|
|
|
|
<Select id="dev-servers-dropdown" className="dropdown" onChange={setServerDropdown} value={server}>
|
|
|
|
{Object.values(AllServers).map((server) => (
|
|
|
|
<MenuItem key={server.hostname} value={server.hostname}>
|
|
|
|
{server.hostname}
|
|
|
|
</MenuItem>
|
|
|
|
))}
|
|
|
|
</Select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Root:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={rootServer}>Root one</Button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={rootAllServers}>Root all</Button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Security:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={minSecurity}>Min one</Button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={minAllSecurity}>Min all</Button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Money:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={maxMoney}>Max one</Button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={maxAllMoney}>Max all</Button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</AccordionDetails>
|
|
|
|
</Accordion>
|
|
|
|
);
|
|
|
|
}
|