Compare commits
1 Commits
20240407
...
b351954e10
Author | SHA1 | Date | |
---|---|---|---|
b351954e10 |
28
.drone.yml
28
.drone.yml
@ -5,14 +5,13 @@ name: default
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: web_build
|
- name: web_build
|
||||||
image: node:23
|
image: node:22
|
||||||
volumes:
|
volumes:
|
||||||
- name: web_app
|
- name: web_app
|
||||||
path: /tmp/web_build
|
path: /tmp/web_build
|
||||||
commands:
|
commands:
|
||||||
- cd virtweb_frontend
|
- cd virtweb_frontend
|
||||||
- npm install --legacy-peer-deps # TODO : remove when mui-file-input is updated
|
- npm install
|
||||||
- npm run lint
|
|
||||||
- npm run build
|
- npm run build
|
||||||
- mv dist /tmp/web_build
|
- mv dist /tmp/web_build
|
||||||
|
|
||||||
@ -26,7 +25,6 @@ steps:
|
|||||||
- rustup component add clippy
|
- rustup component add clippy
|
||||||
- cd virtweb_backend
|
- cd virtweb_backend
|
||||||
- cargo clippy -- -D warnings
|
- cargo clippy -- -D warnings
|
||||||
- cargo clippy --examples -- -D warnings
|
|
||||||
- cargo test
|
- cargo test
|
||||||
|
|
||||||
- name: backend_compile
|
- name: backend_compile
|
||||||
@ -36,8 +34,6 @@ steps:
|
|||||||
path: /usr/local/cargo/registry
|
path: /usr/local/cargo/registry
|
||||||
- name: web_app
|
- name: web_app
|
||||||
path: /tmp/web_build
|
path: /tmp/web_build
|
||||||
- name: release
|
|
||||||
path: /tmp/release
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- backend_check
|
- backend_check
|
||||||
- web_build
|
- web_build
|
||||||
@ -47,30 +43,10 @@ steps:
|
|||||||
- mv /tmp/web_build/dist static
|
- mv /tmp/web_build/dist static
|
||||||
- cargo build --release
|
- cargo build --release
|
||||||
- ls -lah target/release/virtweb_backend
|
- ls -lah target/release/virtweb_backend
|
||||||
- cp target/release/virtweb_backend /tmp/release
|
|
||||||
|
|
||||||
- name: gitea_release
|
|
||||||
image: plugins/gitea-release
|
|
||||||
depends_on:
|
|
||||||
- backend_compile
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
volumes:
|
|
||||||
- name: release
|
|
||||||
path: /tmp/release
|
|
||||||
environment:
|
|
||||||
PLUGIN_API_KEY:
|
|
||||||
from_secret: API_KEY
|
|
||||||
settings:
|
|
||||||
base_url: https://gitea.communiquons.org
|
|
||||||
files: /tmp/release/*
|
|
||||||
checksum: sha512
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: rust_registry
|
- name: rust_registry
|
||||||
temp: {}
|
temp: {}
|
||||||
- name: web_app
|
- name: web_app
|
||||||
temp: {}
|
temp: {}
|
||||||
- name: release
|
|
||||||
temp: {}
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
{
|
{
|
||||||
"extends": ["local>renovate/presets"]
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"matchUpdateTypes": ["major", "minor", "patch"],
|
||||||
|
"automerge": true
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
1977
virtweb_backend/Cargo.lock
generated
1977
virtweb_backend/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,48 +1,48 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "virtweb_backend"
|
name = "virtweb_backend"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2024"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
log = "0.4.27"
|
log = "0.4.21"
|
||||||
env_logger = "0.11.7"
|
env_logger = "0.11.3"
|
||||||
clap = { version = "4.5.34", features = ["derive", "env"] }
|
clap = { version = "4.5.4", features = ["derive", "env"] }
|
||||||
light-openid = { version = "1.0.4", features = ["crypto-wrapper"] }
|
light-openid = { version = "1.0.2", features = ["crypto-wrapper"] }
|
||||||
lazy_static = "1.5.0"
|
lazy_static = "1.4.0"
|
||||||
actix = "0.13.5"
|
actix = "0.13.3"
|
||||||
actix-web = "4.10.2"
|
actix-web = "4.5.1"
|
||||||
actix-remote-ip = "0.1.0"
|
actix-remote-ip = "0.1.0"
|
||||||
actix-session = { version = "0.10.1", features = ["cookie-session"] }
|
actix-session = { version = "0.9.0", features = ["cookie-session"] }
|
||||||
actix-identity = "0.8.0"
|
actix-identity = "0.7.1"
|
||||||
actix-cors = "0.7.1"
|
actix-cors = "0.7.0"
|
||||||
actix-files = "0.6.6"
|
actix-files = "0.6.5"
|
||||||
actix-ws = "0.3.0"
|
actix-web-actors = "4.3.0"
|
||||||
actix-http = "3.10.0"
|
actix-http = "3.6.0"
|
||||||
serde = { version = "1.0.219", features = ["derive"] }
|
serde = { version = "1.0.199", features = ["derive"] }
|
||||||
serde_json = "1.0.140"
|
serde_json = "1.0.116"
|
||||||
quick-xml = { version = "0.37.3", features = ["serialize", "overlapped-lists"] }
|
quick-xml = { version = "0.34.0", features = ["serialize", "overlapped-lists"] }
|
||||||
futures-util = "0.3.31"
|
futures-util = "0.3.30"
|
||||||
anyhow = "1.0.97"
|
anyhow = "1.0.82"
|
||||||
actix-multipart = "0.7.2"
|
actix-multipart = "0.6.1"
|
||||||
tempfile = "3.19.1"
|
tempfile = "3.10.1"
|
||||||
reqwest = { version = "0.12.15", features = ["stream"] }
|
reqwest = { version = "0.12.4", features = ["stream"] }
|
||||||
url = "2.5.4"
|
url = "2.5.0"
|
||||||
virt = "0.4.2"
|
virt = "0.3.1"
|
||||||
sysinfo = { version = "0.34.2", features = ["serde"] }
|
sysinfo = { version = "0.30.11", features = ["serde"] }
|
||||||
uuid = { version = "1.16.0", features = ["v4", "serde"] }
|
uuid = { version = "1.8.0", features = ["v4", "serde"] }
|
||||||
lazy-regex = "3.4.1"
|
lazy-regex = "3.1.0"
|
||||||
thiserror = "2.0.12"
|
thiserror = "1.0.59"
|
||||||
image = "0.25.6"
|
image = "0.25.1"
|
||||||
rand = "0.9.0"
|
rand = "0.8.5"
|
||||||
bytes = "1.10.1"
|
bytes = "1.6.0"
|
||||||
tokio = { version = "1.44.1", features = ["rt", "time", "macros"] }
|
tokio = "1.37.0"
|
||||||
futures = "0.3.31"
|
futures = "0.3.30"
|
||||||
ipnetwork = { version = "0.21.1", features = ["serde"] }
|
ipnetwork = "0.20.0"
|
||||||
num = "0.4.3"
|
num = "0.4.2"
|
||||||
rust-embed = { version = "8.6.0" }
|
rust-embed = { version = "8.3.0" }
|
||||||
mime_guess = "2.0.5"
|
mime_guess = "2.0.4"
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
nix = { version = "0.29.0", features = ["net"] }
|
nix = { version = "0.28.0", features = ["net"] }
|
||||||
basic-jwt = "0.3.0"
|
basic-jwt = "0.2.0"
|
@ -1,8 +1,9 @@
|
|||||||
services:
|
services:
|
||||||
oidc:
|
oidc:
|
||||||
image: dexidp/dex
|
image: qlik/simple-oidc-provider
|
||||||
|
environment:
|
||||||
|
- REDIRECTS=http://localhost:3000/oidc_cb,http://localhost:5173/oidc_cb
|
||||||
|
- PORT=9001
|
||||||
ports:
|
ports:
|
||||||
- 9001:9001
|
- 9001:9001
|
||||||
volumes:
|
|
||||||
- ./docker/dex:/conf:ro
|
|
||||||
command: [ "dex", "serve", "/conf/dex.config.yaml" ]
|
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
issuer: http://127.0.0.1:9001/dex
|
|
||||||
|
|
||||||
storage:
|
|
||||||
type: memory
|
|
||||||
|
|
||||||
web:
|
|
||||||
http: 0.0.0.0:9001
|
|
||||||
|
|
||||||
oauth2:
|
|
||||||
# Automate some clicking
|
|
||||||
# Note: this might actually make some tests pass that otherwise wouldn't.
|
|
||||||
skipApprovalScreen: false
|
|
||||||
|
|
||||||
connectors:
|
|
||||||
# Note: this might actually make some tests pass that otherwise wouldn't.
|
|
||||||
- type: mockCallback
|
|
||||||
id: mock
|
|
||||||
name: Example
|
|
||||||
|
|
||||||
# Basic OP test suite requires two clients.
|
|
||||||
staticClients:
|
|
||||||
- id: foo
|
|
||||||
secret: bar
|
|
||||||
redirectURIs:
|
|
||||||
- http://localhost:3000/oidc_cb
|
|
||||||
- http://localhost:5173/oidc_cb
|
|
||||||
name: Project
|
|
@ -55,13 +55,12 @@ fn main() {
|
|||||||
|
|
||||||
let jwt = key.sign_jwt(&claims).expect("Failed to sign JWT!");
|
let jwt = key.sign_jwt(&claims).expect("Failed to sign JWT!");
|
||||||
|
|
||||||
let err = Command::new("curl")
|
Command::new("curl")
|
||||||
.args(["-X", &args.verb])
|
.args(["-X", &args.verb])
|
||||||
.args(["-H", &format!("x-token-id: {}", args.token_id)])
|
.args(["-H", &format!("x-token-id: {}", args.token_id)])
|
||||||
.args(["-H", &format!("x-token-content: {jwt}")])
|
.args(["-H", &format!("x-token-content: {jwt}")])
|
||||||
.args(args.run)
|
.args(args.run)
|
||||||
.arg(full_url)
|
.arg(full_url)
|
||||||
.exec();
|
.exec();
|
||||||
|
panic!("Failed to run curl!")
|
||||||
panic!("Failed to run cURL! {err}")
|
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ impl LibVirtActor {
|
|||||||
"Will connect to hypvervisor at address '{}'",
|
"Will connect to hypvervisor at address '{}'",
|
||||||
hypervisor_uri
|
hypervisor_uri
|
||||||
);
|
);
|
||||||
let conn = Connect::open(Some(hypervisor_uri))?;
|
let conn = Connect::open(hypervisor_uri)?;
|
||||||
|
|
||||||
Ok(Self { m: conn })
|
Ok(Self { m: conn })
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
pub mod libvirt_actor;
|
pub mod libvirt_actor;
|
||||||
pub mod vnc_handler;
|
pub mod vnc_actor;
|
||||||
pub mod vnc_tokens_actor;
|
pub mod vnc_tokens_actor;
|
||||||
|
209
virtweb_backend/src/actors/vnc_actor.rs
Normal file
209
virtweb_backend/src/actors/vnc_actor.rs
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
use actix::{Actor, ActorContext, AsyncContext, Handler, StreamHandler};
|
||||||
|
use actix_http::ws::Item;
|
||||||
|
use actix_web_actors::ws;
|
||||||
|
use actix_web_actors::ws::Message;
|
||||||
|
use bytes::Bytes;
|
||||||
|
use image::EncodableLayout;
|
||||||
|
use std::path::Path;
|
||||||
|
use std::time::{Duration, Instant};
|
||||||
|
use tokio::io::{AsyncReadExt, AsyncWriteExt};
|
||||||
|
use tokio::net::unix::{OwnedReadHalf, OwnedWriteHalf};
|
||||||
|
use tokio::net::UnixStream;
|
||||||
|
|
||||||
|
/// How often heartbeat pings are sent
|
||||||
|
const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(5);
|
||||||
|
|
||||||
|
/// How long before lack of client response causes a timeout
|
||||||
|
const CLIENT_TIMEOUT: Duration = Duration::from_secs(20);
|
||||||
|
|
||||||
|
#[derive(thiserror::Error, Debug)]
|
||||||
|
enum VNCError {
|
||||||
|
#[error("Socket file does not exists!")]
|
||||||
|
SocketDoesNotExists,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct VNCActor {
|
||||||
|
/// Qemu -> WS
|
||||||
|
read_half: Option<OwnedReadHalf>,
|
||||||
|
|
||||||
|
/// WS -> Qemu
|
||||||
|
write_half: OwnedWriteHalf,
|
||||||
|
|
||||||
|
// Client must respond to ping at a specific interval, otherwise we drop connection
|
||||||
|
hb: Instant,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl VNCActor {
|
||||||
|
pub async fn new(socket_path: &str) -> anyhow::Result<Self> {
|
||||||
|
let socket_path = Path::new(socket_path);
|
||||||
|
|
||||||
|
if !socket_path.exists() {
|
||||||
|
return Err(VNCError::SocketDoesNotExists.into());
|
||||||
|
}
|
||||||
|
|
||||||
|
let socket = UnixStream::connect(socket_path).await?;
|
||||||
|
let (read_half, write_half) = socket.into_split();
|
||||||
|
|
||||||
|
Ok(Self {
|
||||||
|
read_half: Some(read_half),
|
||||||
|
write_half,
|
||||||
|
hb: Instant::now(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// helper method that sends ping to client every second.
|
||||||
|
///
|
||||||
|
/// also this method checks heartbeats from client
|
||||||
|
fn hb(&self, ctx: &mut ws::WebsocketContext<Self>) {
|
||||||
|
ctx.run_interval(HEARTBEAT_INTERVAL, |act, ctx| {
|
||||||
|
// check client heartbeats
|
||||||
|
if Instant::now().duration_since(act.hb) > CLIENT_TIMEOUT {
|
||||||
|
// heartbeat timed out
|
||||||
|
log::warn!("WebSocket Client heartbeat failed, disconnecting!");
|
||||||
|
ctx.stop();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx.ping(b"");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
fn send_to_socket(&mut self, bytes: Bytes, ctx: &mut ws::WebsocketContext<Self>) {
|
||||||
|
log::trace!("Received {} bytes for VNC socket", bytes.len());
|
||||||
|
|
||||||
|
if let Err(e) = futures::executor::block_on(self.write_half.write(bytes.as_bytes())) {
|
||||||
|
log::error!("Failed to relay bytes to VNC socket {e}");
|
||||||
|
ctx.close(None);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn start_qemu_to_ws_end(&mut self, ctx: &mut ws::WebsocketContext<Self>) {
|
||||||
|
let mut read_half = self.read_half.take().unwrap();
|
||||||
|
let addr = ctx.address();
|
||||||
|
let future = async move {
|
||||||
|
let mut buff: [u8; 5000] = [0; 5000];
|
||||||
|
loop {
|
||||||
|
match read_half.read(&mut buff).await {
|
||||||
|
Ok(mut l) => {
|
||||||
|
if l == 0 {
|
||||||
|
log::warn!("Got empty read!");
|
||||||
|
|
||||||
|
// Ugly hack made to wait for next byte
|
||||||
|
let mut one_byte_buff: [u8; 1] = [0; 1];
|
||||||
|
match read_half.read_exact(&mut one_byte_buff).await {
|
||||||
|
Ok(b) => {
|
||||||
|
if b == 0 {
|
||||||
|
log::error!("Did not get a byte !");
|
||||||
|
let _ = addr.send(CloseWebSocketReq).await;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
buff[0] = one_byte_buff[0];
|
||||||
|
l = 1;
|
||||||
|
}
|
||||||
|
Err(e) => {
|
||||||
|
log::error!("Failed to read 1 BYTE from remote socket. Stopping now... {:?}", e);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let to_send = SendBytesReq(Vec::from(&buff[0..l]));
|
||||||
|
if let Err(e) = addr.send(to_send).await {
|
||||||
|
log::error!("Failed to send to websocket. Stopping now... {:?}", e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Err(e) => {
|
||||||
|
log::error!("Failed to read from remote socket. Stopping now... {:?}", e);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
log::info!("Exited read loop");
|
||||||
|
};
|
||||||
|
|
||||||
|
tokio::spawn(future);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Actor for VNCActor {
|
||||||
|
type Context = ws::WebsocketContext<Self>;
|
||||||
|
|
||||||
|
fn started(&mut self, ctx: &mut Self::Context) {
|
||||||
|
self.hb(ctx);
|
||||||
|
self.start_qemu_to_ws_end(ctx);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl StreamHandler<Result<Message, ws::ProtocolError>> for VNCActor {
|
||||||
|
fn handle(&mut self, msg: Result<Message, ws::ProtocolError>, ctx: &mut Self::Context) {
|
||||||
|
match msg {
|
||||||
|
Ok(Message::Ping(msg)) => ctx.pong(&msg),
|
||||||
|
|
||||||
|
Ok(Message::Text(_text)) => {
|
||||||
|
log::error!("Received unexpected text on VNC WebSocket!");
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(Message::Binary(bin)) => {
|
||||||
|
log::info!("Forward {} bytes to VNC server", bin.len());
|
||||||
|
self.send_to_socket(bin, ctx);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(Message::Continuation(msg)) => match msg {
|
||||||
|
Item::FirstText(_) => {
|
||||||
|
log::error!("Received unexpected split text!");
|
||||||
|
ctx.close(None);
|
||||||
|
}
|
||||||
|
Item::FirstBinary(bin) | Item::Continue(bin) | Item::Last(bin) => {
|
||||||
|
self.send_to_socket(bin, ctx);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
Ok(Message::Pong(_)) => {
|
||||||
|
log::trace!("Received PONG message");
|
||||||
|
self.hb = Instant::now();
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(Message::Close(r)) => {
|
||||||
|
log::info!("WebSocket closed. Reason={r:?}");
|
||||||
|
ctx.close(r);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(Message::Nop) => {
|
||||||
|
log::debug!("Received Nop message")
|
||||||
|
}
|
||||||
|
|
||||||
|
Err(e) => {
|
||||||
|
log::error!("WebSocket protocol error! {e}");
|
||||||
|
ctx.close(None)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(actix::Message)]
|
||||||
|
#[rtype(result = "()")]
|
||||||
|
pub struct SendBytesReq(Vec<u8>);
|
||||||
|
|
||||||
|
impl Handler<SendBytesReq> for VNCActor {
|
||||||
|
type Result = ();
|
||||||
|
|
||||||
|
fn handle(&mut self, msg: SendBytesReq, ctx: &mut Self::Context) -> Self::Result {
|
||||||
|
log::trace!("Send {} bytes to WS", msg.0.len());
|
||||||
|
ctx.binary(msg.0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(actix::Message)]
|
||||||
|
#[rtype(result = "()")]
|
||||||
|
pub struct CloseWebSocketReq;
|
||||||
|
|
||||||
|
impl Handler<CloseWebSocketReq> for VNCActor {
|
||||||
|
type Result = ();
|
||||||
|
|
||||||
|
fn handle(&mut self, _msg: CloseWebSocketReq, ctx: &mut Self::Context) -> Self::Result {
|
||||||
|
log::trace!("Close websocket, because VNC socket has terminated");
|
||||||
|
ctx.close(None);
|
||||||
|
}
|
||||||
|
}
|
@ -1,129 +0,0 @@
|
|||||||
use actix_http::ws::Message;
|
|
||||||
use futures_util::StreamExt as _;
|
|
||||||
use std::time::{Duration, Instant};
|
|
||||||
use tokio::io::{AsyncReadExt, AsyncWriteExt};
|
|
||||||
use tokio::net::UnixStream;
|
|
||||||
use tokio::select;
|
|
||||||
use tokio::time::interval;
|
|
||||||
|
|
||||||
/// How often heartbeat pings are sent
|
|
||||||
const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(5);
|
|
||||||
|
|
||||||
/// How long before lack of client response causes a timeout
|
|
||||||
const CLIENT_TIMEOUT: Duration = Duration::from_secs(20);
|
|
||||||
|
|
||||||
/// Broadcast text & binary messages received from a client, respond to ping messages, and monitor
|
|
||||||
/// connection health to detect network issues and free up resources.
|
|
||||||
pub async fn handle(
|
|
||||||
mut session: actix_ws::Session,
|
|
||||||
mut msg_stream: actix_ws::MessageStream,
|
|
||||||
mut socket: UnixStream,
|
|
||||||
) {
|
|
||||||
log::info!("Connected to websocket");
|
|
||||||
|
|
||||||
let mut last_heartbeat = Instant::now();
|
|
||||||
let mut interval = interval(HEARTBEAT_INTERVAL);
|
|
||||||
|
|
||||||
let mut buf_socket = [0u8; 1024];
|
|
||||||
|
|
||||||
let reason = loop {
|
|
||||||
// waits for either `msg_stream` to receive a message from the client, the broadcast channel
|
|
||||||
// to send a message, or the heartbeat interval timer to tick, yielding the value of
|
|
||||||
// whichever one is ready first
|
|
||||||
select! {
|
|
||||||
|
|
||||||
// heartbeat interval ticked
|
|
||||||
_tick = interval.tick() => {
|
|
||||||
// if no heartbeat ping/pong received recently, close the connection
|
|
||||||
if Instant::now().duration_since(last_heartbeat) > CLIENT_TIMEOUT {
|
|
||||||
log::info!(
|
|
||||||
"client has not sent heartbeat in over {CLIENT_TIMEOUT:?}; disconnecting"
|
|
||||||
);
|
|
||||||
|
|
||||||
break None;
|
|
||||||
}
|
|
||||||
|
|
||||||
// send heartbeat ping
|
|
||||||
let _ = session.ping(b"").await;
|
|
||||||
}
|
|
||||||
|
|
||||||
msg = msg_stream.next() => {
|
|
||||||
let msg = match msg {
|
|
||||||
// received message from WebSocket client
|
|
||||||
Some(Ok(msg)) => msg,
|
|
||||||
|
|
||||||
// client WebSocket stream error
|
|
||||||
Some(Err(err)) => {
|
|
||||||
log::error!("{err}");
|
|
||||||
break None;
|
|
||||||
}
|
|
||||||
|
|
||||||
// client WebSocket stream ended
|
|
||||||
None => break None
|
|
||||||
};
|
|
||||||
|
|
||||||
log::debug!("msg: {msg:?}");
|
|
||||||
|
|
||||||
match msg {
|
|
||||||
Message::Text(_) => {
|
|
||||||
log::error!("Received unexpected text on VNC WebSocket!");
|
|
||||||
}
|
|
||||||
|
|
||||||
Message::Binary(bin) => {
|
|
||||||
log::info!("Forward {} bytes to VNC server", bin.len());
|
|
||||||
if let Err(e) = socket.write(&bin).await {
|
|
||||||
log::error!("Failed to relay bytes to VNC socket {e}");
|
|
||||||
break None;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Message::Close(reason) => {
|
|
||||||
break reason;
|
|
||||||
}
|
|
||||||
|
|
||||||
Message::Ping(bytes) => {
|
|
||||||
last_heartbeat = Instant::now();
|
|
||||||
let _ = session.pong(&bytes).await;
|
|
||||||
}
|
|
||||||
|
|
||||||
Message::Pong(_) => {
|
|
||||||
last_heartbeat = Instant::now();
|
|
||||||
}
|
|
||||||
|
|
||||||
Message::Continuation(_) => {
|
|
||||||
log::warn!("no support for continuation frames");
|
|
||||||
}
|
|
||||||
|
|
||||||
// no-op; ignore
|
|
||||||
Message::Nop => {}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// Forward socket packet to WS client
|
|
||||||
count = socket.read(&mut buf_socket) => {
|
|
||||||
let count = match count {
|
|
||||||
Ok(count) => count,
|
|
||||||
Err(e) => {
|
|
||||||
log::error!("[VNC] Failed to read from upstream! {e}");
|
|
||||||
break None;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if count == 0 {
|
|
||||||
log::warn!("[VNC] infinite loop (upstream), closing connection");
|
|
||||||
break None;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Err(e)=session.binary(buf_socket[0..count].to_vec()).await{
|
|
||||||
log::error!("[VNC] Failed to forward messages to upstream, will close connection! {e}");
|
|
||||||
break None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// attempt to close connection gracefully
|
|
||||||
let _ = session.close(reason).await;
|
|
||||||
|
|
||||||
log::info!("Disconnected from websocket");
|
|
||||||
}
|
|
@ -68,7 +68,7 @@ pub struct AppConfig {
|
|||||||
#[arg(
|
#[arg(
|
||||||
long,
|
long,
|
||||||
env,
|
env,
|
||||||
default_value = "http://localhost:9001/dex/.well-known/openid-configuration"
|
default_value = "http://localhost:9001/.well-known/openid-configuration"
|
||||||
)]
|
)]
|
||||||
pub oidc_configuration_url: String,
|
pub oidc_configuration_url: String,
|
||||||
|
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
use crate::api_tokens;
|
use crate::api_tokens;
|
||||||
use crate::api_tokens::{NewToken, TokenID, TokenRights};
|
use crate::api_tokens::{NewToken, TokenID, TokenRights};
|
||||||
use crate::controllers::HttpResult;
|
|
||||||
use crate::controllers::api_tokens_controller::rest_token::RestToken;
|
use crate::controllers::api_tokens_controller::rest_token::RestToken;
|
||||||
use actix_web::{HttpResponse, web};
|
use crate::controllers::HttpResult;
|
||||||
|
use actix_web::{web, HttpResponse};
|
||||||
use basic_jwt::JWTPrivateKey;
|
use basic_jwt::JWTPrivateKey;
|
||||||
|
|
||||||
/// Create a special module for REST token to enforce usage of constructor function
|
/// Create a special module for REST token to enforce usage of constructor function
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use actix_remote_ip::RemoteIP;
|
use actix_remote_ip::RemoteIP;
|
||||||
use actix_web::web::Data;
|
use actix_web::web::Data;
|
||||||
use actix_web::{HttpResponse, Responder, web};
|
use actix_web::{web, HttpResponse, Responder};
|
||||||
use light_openid::basic_state_manager::BasicStateManager;
|
use light_openid::basic_state_manager::BasicStateManager;
|
||||||
|
|
||||||
use crate::app_config::AppConfig;
|
use crate::app_config::AppConfig;
|
||||||
|
@ -1,148 +0,0 @@
|
|||||||
use crate::controllers::{HttpResult, LibVirtReq};
|
|
||||||
use crate::extractors::group_vm_id_extractor::GroupVmIdExtractor;
|
|
||||||
use crate::libvirt_rest_structures::vm::VMInfo;
|
|
||||||
use actix_web::HttpResponse;
|
|
||||||
use std::collections::HashMap;
|
|
||||||
|
|
||||||
/// Get the list of groups
|
|
||||||
pub async fn list(client: LibVirtReq) -> HttpResult {
|
|
||||||
let groups = match client.get_full_groups_list().await {
|
|
||||||
Err(e) => {
|
|
||||||
log::error!("Failed to get the list of groups! {e}");
|
|
||||||
return Ok(HttpResponse::InternalServerError()
|
|
||||||
.json(format!("Failed to get the list of groups! {e}")));
|
|
||||||
}
|
|
||||||
Ok(l) => l,
|
|
||||||
};
|
|
||||||
|
|
||||||
Ok(HttpResponse::Ok().json(groups))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Get information about the VMs of a group
|
|
||||||
pub async fn vm_info(vms_xml: GroupVmIdExtractor) -> HttpResult {
|
|
||||||
let mut vms = Vec::new();
|
|
||||||
for vm in vms_xml.0 {
|
|
||||||
vms.push(VMInfo::from_domain(vm)?)
|
|
||||||
}
|
|
||||||
Ok(HttpResponse::Ok().json(vms))
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Default, serde::Serialize)]
|
|
||||||
pub struct TreatmentResult {
|
|
||||||
ok: usize,
|
|
||||||
failed: usize,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Start the VMs of a group
|
|
||||||
pub async fn vm_start(client: LibVirtReq, vms: GroupVmIdExtractor) -> HttpResult {
|
|
||||||
let mut res = TreatmentResult::default();
|
|
||||||
for vm in vms.0 {
|
|
||||||
if let Some(uuid) = vm.uuid {
|
|
||||||
match client.start_domain(uuid).await {
|
|
||||||
Ok(_) => res.ok += 1,
|
|
||||||
Err(_) => res.failed += 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(HttpResponse::Ok().json(res))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Shutdown the VMs of a group
|
|
||||||
pub async fn vm_shutdown(client: LibVirtReq, vms: GroupVmIdExtractor) -> HttpResult {
|
|
||||||
let mut res = TreatmentResult::default();
|
|
||||||
for vm in vms.0 {
|
|
||||||
if let Some(uuid) = vm.uuid {
|
|
||||||
match client.shutdown_domain(uuid).await {
|
|
||||||
Ok(_) => res.ok += 1,
|
|
||||||
Err(_) => res.failed += 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(HttpResponse::Ok().json(res))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Suspend the VMs of a group
|
|
||||||
pub async fn vm_suspend(client: LibVirtReq, vms: GroupVmIdExtractor) -> HttpResult {
|
|
||||||
let mut res = TreatmentResult::default();
|
|
||||||
for vm in vms.0 {
|
|
||||||
if let Some(uuid) = vm.uuid {
|
|
||||||
match client.suspend_domain(uuid).await {
|
|
||||||
Ok(_) => res.ok += 1,
|
|
||||||
Err(_) => res.failed += 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(HttpResponse::Ok().json(res))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Resume the VMs of a group
|
|
||||||
pub async fn vm_resume(client: LibVirtReq, vms: GroupVmIdExtractor) -> HttpResult {
|
|
||||||
let mut res = TreatmentResult::default();
|
|
||||||
for vm in vms.0 {
|
|
||||||
if let Some(uuid) = vm.uuid {
|
|
||||||
match client.resume_domain(uuid).await {
|
|
||||||
Ok(_) => res.ok += 1,
|
|
||||||
Err(_) => res.failed += 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(HttpResponse::Ok().json(res))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Kill the VMs of a group
|
|
||||||
pub async fn vm_kill(client: LibVirtReq, vms: GroupVmIdExtractor) -> HttpResult {
|
|
||||||
let mut res = TreatmentResult::default();
|
|
||||||
for vm in vms.0 {
|
|
||||||
if let Some(uuid) = vm.uuid {
|
|
||||||
match client.kill_domain(uuid).await {
|
|
||||||
Ok(_) => res.ok += 1,
|
|
||||||
Err(_) => res.failed += 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(HttpResponse::Ok().json(res))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Reset the VMs of a group
|
|
||||||
pub async fn vm_reset(client: LibVirtReq, vms: GroupVmIdExtractor) -> HttpResult {
|
|
||||||
let mut res = TreatmentResult::default();
|
|
||||||
for vm in vms.0 {
|
|
||||||
if let Some(uuid) = vm.uuid {
|
|
||||||
match client.reset_domain(uuid).await {
|
|
||||||
Ok(_) => res.ok += 1,
|
|
||||||
Err(_) => res.failed += 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(HttpResponse::Ok().json(res))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Get the screenshot of the VMs of a group
|
|
||||||
pub async fn vm_screenshot(client: LibVirtReq, vms: GroupVmIdExtractor) -> HttpResult {
|
|
||||||
if vms.0.is_empty() {
|
|
||||||
return Ok(HttpResponse::NoContent().finish());
|
|
||||||
}
|
|
||||||
|
|
||||||
let image = if vms.0.len() == 1 {
|
|
||||||
client.screenshot_domain(vms.0[0].uuid.unwrap()).await?
|
|
||||||
} else {
|
|
||||||
return Ok(
|
|
||||||
HttpResponse::UnprocessableEntity().json("Cannot return multiple VM screenshots!!")
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
Ok(HttpResponse::Ok().content_type("image/png").body(image))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Get the state of the VMs
|
|
||||||
pub async fn vm_state(client: LibVirtReq, vms: GroupVmIdExtractor) -> HttpResult {
|
|
||||||
let mut states = HashMap::new();
|
|
||||||
|
|
||||||
for vm in vms.0 {
|
|
||||||
if let Some(uuid) = vm.uuid {
|
|
||||||
states.insert(uuid, client.get_domain_state(uuid).await?);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(HttpResponse::Ok().json(states))
|
|
||||||
}
|
|
@ -3,9 +3,9 @@ use crate::constants;
|
|||||||
use crate::controllers::HttpResult;
|
use crate::controllers::HttpResult;
|
||||||
use crate::utils::files_utils;
|
use crate::utils::files_utils;
|
||||||
use actix_files::NamedFile;
|
use actix_files::NamedFile;
|
||||||
use actix_multipart::form::MultipartForm;
|
|
||||||
use actix_multipart::form::tempfile::TempFile;
|
use actix_multipart::form::tempfile::TempFile;
|
||||||
use actix_web::{HttpRequest, HttpResponse, web};
|
use actix_multipart::form::MultipartForm;
|
||||||
|
use actix_web::{web, HttpRequest, HttpResponse};
|
||||||
use futures_util::StreamExt;
|
use futures_util::StreamExt;
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
use crate::libvirt_client::LibVirtClient;
|
use crate::libvirt_client::LibVirtClient;
|
||||||
use actix_http::StatusCode;
|
use actix_http::StatusCode;
|
||||||
use actix_web::body::BoxBody;
|
use actix_web::body::BoxBody;
|
||||||
use actix_web::{HttpResponse, web};
|
use actix_web::{web, HttpResponse};
|
||||||
use std::error::Error;
|
use std::error::Error;
|
||||||
use std::fmt::{Display, Formatter};
|
use std::fmt::{Display, Formatter};
|
||||||
use std::io::ErrorKind;
|
use std::io::ErrorKind;
|
||||||
|
|
||||||
pub mod api_tokens_controller;
|
pub mod api_tokens_controller;
|
||||||
pub mod auth_controller;
|
pub mod auth_controller;
|
||||||
pub mod groups_controller;
|
|
||||||
pub mod iso_controller;
|
pub mod iso_controller;
|
||||||
pub mod network_controller;
|
pub mod network_controller;
|
||||||
pub mod nwfilter_controller;
|
pub mod nwfilter_controller;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use crate::controllers::{HttpResult, LibVirtReq};
|
use crate::controllers::{HttpResult, LibVirtReq};
|
||||||
use crate::libvirt_lib_structures::XMLUuid;
|
use crate::libvirt_lib_structures::XMLUuid;
|
||||||
use crate::libvirt_rest_structures::net::NetworkInfo;
|
use crate::libvirt_rest_structures::net::NetworkInfo;
|
||||||
use actix_web::{HttpResponse, web};
|
use actix_web::{web, HttpResponse};
|
||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
pub struct NetworkID {
|
pub struct NetworkID {
|
||||||
|
@ -2,7 +2,7 @@ use crate::constants;
|
|||||||
use crate::controllers::{HttpResult, LibVirtReq};
|
use crate::controllers::{HttpResult, LibVirtReq};
|
||||||
use crate::libvirt_lib_structures::XMLUuid;
|
use crate::libvirt_lib_structures::XMLUuid;
|
||||||
use crate::libvirt_rest_structures::nw_filter::NetworkFilter;
|
use crate::libvirt_rest_structures::nw_filter::NetworkFilter;
|
||||||
use actix_web::{HttpResponse, web};
|
use actix_web::{web, HttpResponse};
|
||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
pub struct NetworkFilterID {
|
pub struct NetworkFilterID {
|
||||||
|
@ -40,7 +40,6 @@ struct ServerConstraints {
|
|||||||
vnc_token_duration: u64,
|
vnc_token_duration: u64,
|
||||||
vm_name_size: LenConstraints,
|
vm_name_size: LenConstraints,
|
||||||
vm_title_size: LenConstraints,
|
vm_title_size: LenConstraints,
|
||||||
group_id_size: LenConstraints,
|
|
||||||
memory_size: LenConstraints,
|
memory_size: LenConstraints,
|
||||||
disk_name_size: LenConstraints,
|
disk_name_size: LenConstraints,
|
||||||
disk_size: LenConstraints,
|
disk_size: LenConstraints,
|
||||||
@ -73,7 +72,6 @@ pub async fn static_config(local_auth: LocalAuthEnabled) -> impl Responder {
|
|||||||
|
|
||||||
vm_name_size: LenConstraints { min: 2, max: 50 },
|
vm_name_size: LenConstraints { min: 2, max: 50 },
|
||||||
vm_title_size: LenConstraints { min: 0, max: 50 },
|
vm_title_size: LenConstraints { min: 0, max: 50 },
|
||||||
group_id_size: LenConstraints { min: 3, max: 50 },
|
|
||||||
memory_size: LenConstraints {
|
memory_size: LenConstraints {
|
||||||
min: constants::MIN_VM_MEMORY,
|
min: constants::MIN_VM_MEMORY,
|
||||||
max: constants::MAX_VM_MEMORY,
|
max: constants::MAX_VM_MEMORY,
|
||||||
@ -136,13 +134,16 @@ pub async fn server_info(client: LibVirtReq) -> HttpResult {
|
|||||||
system.refresh_all();
|
system.refresh_all();
|
||||||
|
|
||||||
let mut components = Components::new();
|
let mut components = Components::new();
|
||||||
components.refresh(true);
|
components.refresh_list();
|
||||||
|
components.refresh();
|
||||||
|
|
||||||
let mut disks = Disks::new();
|
let mut disks = Disks::new();
|
||||||
disks.refresh(true);
|
disks.refresh_list();
|
||||||
|
disks.refresh();
|
||||||
|
|
||||||
let mut networks = Networks::new();
|
let mut networks = Networks::new();
|
||||||
networks.refresh(true);
|
networks.refresh_list();
|
||||||
|
networks.refresh();
|
||||||
|
|
||||||
Ok(HttpResponse::Ok().json(ServerInfo {
|
Ok(HttpResponse::Ok().json(ServerInfo {
|
||||||
hypervisor: client.get_info().await?,
|
hypervisor: client.get_info().await?,
|
||||||
@ -170,7 +171,7 @@ pub async fn network_hook_status() -> HttpResult {
|
|||||||
|
|
||||||
pub async fn number_vcpus() -> HttpResult {
|
pub async fn number_vcpus() -> HttpResult {
|
||||||
let mut system = System::new();
|
let mut system = System::new();
|
||||||
system.refresh_cpu_all();
|
system.refresh_cpu();
|
||||||
let number_cpus = system.cpus().len();
|
let number_cpus = system.cpus().len();
|
||||||
assert_ne!(number_cpus, 0, "Got invlid number of CPU!");
|
assert_ne!(number_cpus, 0, "Got invlid number of CPU!");
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ mod serve_static_debug {
|
|||||||
|
|
||||||
#[cfg(not(debug_assertions))]
|
#[cfg(not(debug_assertions))]
|
||||||
mod serve_static_release {
|
mod serve_static_release {
|
||||||
use actix_web::{HttpResponse, Responder, web};
|
use actix_web::{web, HttpResponse, Responder};
|
||||||
use rust_embed::RustEmbed;
|
use rust_embed::RustEmbed;
|
||||||
|
|
||||||
#[derive(RustEmbed)]
|
#[derive(RustEmbed)]
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
use crate::actors::vnc_handler;
|
use crate::actors::vnc_actor::VNCActor;
|
||||||
use crate::actors::vnc_tokens_actor::VNCTokensManager;
|
use crate::actors::vnc_tokens_actor::VNCTokensManager;
|
||||||
use crate::controllers::{HttpResult, LibVirtReq};
|
use crate::controllers::{HttpResult, LibVirtReq};
|
||||||
use crate::libvirt_lib_structures::XMLUuid;
|
|
||||||
use crate::libvirt_lib_structures::domain::DomainState;
|
use crate::libvirt_lib_structures::domain::DomainState;
|
||||||
|
use crate::libvirt_lib_structures::XMLUuid;
|
||||||
use crate::libvirt_rest_structures::vm::VMInfo;
|
use crate::libvirt_rest_structures::vm::VMInfo;
|
||||||
use actix_web::{HttpRequest, HttpResponse, rt, web};
|
use actix_web::{web, HttpRequest, HttpResponse};
|
||||||
use std::path::Path;
|
use actix_web_actors::ws;
|
||||||
use tokio::net::UnixStream;
|
|
||||||
|
|
||||||
#[derive(serde::Serialize)]
|
#[derive(serde::Serialize)]
|
||||||
struct VMInfoAndState {
|
struct VMInfoAndState {
|
||||||
@ -22,7 +21,7 @@ struct VMUuid {
|
|||||||
|
|
||||||
/// Create a new VM
|
/// Create a new VM
|
||||||
pub async fn create(client: LibVirtReq, req: web::Json<VMInfo>) -> HttpResult {
|
pub async fn create(client: LibVirtReq, req: web::Json<VMInfo>) -> HttpResult {
|
||||||
let domain = match req.0.as_domain() {
|
let domain = match req.0.as_tomain() {
|
||||||
Ok(d) => d,
|
Ok(d) => d,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
log::error!("Failed to extract domain info! {e}");
|
log::error!("Failed to extract domain info! {e}");
|
||||||
@ -84,8 +83,6 @@ pub async fn get_single(client: LibVirtReq, id: web::Path<SingleVMUUidReq>) -> H
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
log::debug!("INFO={info:#?}");
|
|
||||||
|
|
||||||
let state = client.get_domain_state(id.uid).await?;
|
let state = client.get_domain_state(id.uid).await?;
|
||||||
|
|
||||||
Ok(HttpResponse::Ok().json(VMInfoAndState {
|
Ok(HttpResponse::Ok().json(VMInfoAndState {
|
||||||
@ -115,7 +112,7 @@ pub async fn update(
|
|||||||
id: web::Path<SingleVMUUidReq>,
|
id: web::Path<SingleVMUUidReq>,
|
||||||
req: web::Json<VMInfo>,
|
req: web::Json<VMInfo>,
|
||||||
) -> HttpResult {
|
) -> HttpResult {
|
||||||
let mut domain = match req.0.as_domain() {
|
let mut domain = match req.0.as_tomain() {
|
||||||
Ok(d) => d,
|
Ok(d) => d,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
log::error!("Failed to extract domain info! {e}");
|
log::error!("Failed to extract domain info! {e}");
|
||||||
@ -325,19 +322,5 @@ pub async fn vnc(
|
|||||||
};
|
};
|
||||||
|
|
||||||
log::info!("Start VNC connection on socket {socket_path}");
|
log::info!("Start VNC connection on socket {socket_path}");
|
||||||
|
Ok(ws::start(VNCActor::new(&socket_path).await?, &req, stream)?)
|
||||||
let socket_path = Path::new(&socket_path);
|
|
||||||
if !socket_path.exists() {
|
|
||||||
log::error!("VNC socket path {socket_path:?} does not exist!");
|
|
||||||
return Ok(HttpResponse::ServiceUnavailable().json("VNC socket path does not exists!"));
|
|
||||||
}
|
|
||||||
|
|
||||||
let socket = UnixStream::connect(socket_path).await?;
|
|
||||||
|
|
||||||
let (res, session, msg_stream) = actix_ws::handle(&req, stream)?;
|
|
||||||
|
|
||||||
// spawn websocket handler (and don't await it) so that the response is returned immediately
|
|
||||||
rt::spawn(vnc_handler::handle(session, msg_stream, socket));
|
|
||||||
|
|
||||||
Ok(res)
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use actix_identity::Identity;
|
use actix_identity::Identity;
|
||||||
use actix_web::dev::Payload;
|
use actix_web::dev::Payload;
|
||||||
use actix_web::{Error, FromRequest, HttpMessage, HttpRequest};
|
use actix_web::{Error, FromRequest, HttpMessage, HttpRequest};
|
||||||
use futures_util::future::{Ready, ready};
|
use futures_util::future::{ready, Ready};
|
||||||
use std::fmt::Display;
|
use std::fmt::Display;
|
||||||
|
|
||||||
pub struct AuthExtractor {
|
pub struct AuthExtractor {
|
||||||
|
@ -1,66 +0,0 @@
|
|||||||
use crate::controllers::LibVirtReq;
|
|
||||||
use crate::libvirt_lib_structures::XMLUuid;
|
|
||||||
use crate::libvirt_lib_structures::domain::DomainXML;
|
|
||||||
use crate::libvirt_rest_structures::vm::VMGroupId;
|
|
||||||
use actix_http::Payload;
|
|
||||||
use actix_web::error::ErrorBadRequest;
|
|
||||||
use actix_web::web::Query;
|
|
||||||
use actix_web::{Error, FromRequest, HttpRequest, web};
|
|
||||||
use std::future::Future;
|
|
||||||
use std::pin::Pin;
|
|
||||||
|
|
||||||
pub struct GroupVmIdExtractor(pub Vec<DomainXML>);
|
|
||||||
|
|
||||||
#[derive(serde::Deserialize)]
|
|
||||||
struct GroupIDInPath {
|
|
||||||
gid: VMGroupId,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(serde::Deserialize)]
|
|
||||||
struct FilterVM {
|
|
||||||
vm_id: Option<XMLUuid>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FromRequest for GroupVmIdExtractor {
|
|
||||||
type Error = Error;
|
|
||||||
type Future = Pin<Box<dyn Future<Output = Result<Self, Self::Error>>>>;
|
|
||||||
|
|
||||||
fn from_request(req: &HttpRequest, _payload: &mut Payload) -> Self::Future {
|
|
||||||
let req = req.clone();
|
|
||||||
|
|
||||||
Box::pin(async move {
|
|
||||||
let Ok(group_id) =
|
|
||||||
web::Path::<GroupIDInPath>::from_request(&req, &mut Payload::None).await
|
|
||||||
else {
|
|
||||||
return Err(ErrorBadRequest("Group ID not specified in path!"));
|
|
||||||
};
|
|
||||||
let group_id = group_id.into_inner().gid;
|
|
||||||
|
|
||||||
let filter_vm = match Query::<FilterVM>::from_request(&req, &mut Payload::None).await {
|
|
||||||
Ok(v) => v,
|
|
||||||
Err(e) => {
|
|
||||||
log::error!("Failed to extract VM id from request! {e}");
|
|
||||||
return Err(ErrorBadRequest("Failed to extract VM id from request!"));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let Ok(client) = LibVirtReq::from_request(&req, &mut Payload::None).await else {
|
|
||||||
return Err(ErrorBadRequest("Failed to extract client handle!"));
|
|
||||||
};
|
|
||||||
|
|
||||||
let vms = match client.get_full_group_vm_list(&group_id).await {
|
|
||||||
Ok(vms) => vms,
|
|
||||||
Err(e) => {
|
|
||||||
log::error!("Failed to get the VMs of the group {group_id:?}: {e}");
|
|
||||||
return Err(ErrorBadRequest("Failed to get the VMs of the group!"));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Filter (if requested by the user)
|
|
||||||
Ok(GroupVmIdExtractor(match filter_vm.vm_id {
|
|
||||||
None => vms,
|
|
||||||
Some(id) => vms.into_iter().filter(|vms| vms.uuid == Some(id)).collect(),
|
|
||||||
}))
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,7 +1,7 @@
|
|||||||
use crate::app_config::AppConfig;
|
use crate::app_config::AppConfig;
|
||||||
use actix_web::dev::Payload;
|
use actix_web::dev::Payload;
|
||||||
use actix_web::{Error, FromRequest, HttpRequest};
|
use actix_web::{Error, FromRequest, HttpRequest};
|
||||||
use futures_util::future::{Ready, ready};
|
use futures_util::future::{ready, Ready};
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone, PartialEq)]
|
#[derive(Debug, Copy, Clone, PartialEq)]
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
pub mod api_auth_extractor;
|
pub mod api_auth_extractor;
|
||||||
pub mod auth_extractor;
|
pub mod auth_extractor;
|
||||||
pub mod group_vm_id_extractor;
|
|
||||||
pub mod local_auth_extractor;
|
pub mod local_auth_extractor;
|
||||||
|
@ -1,15 +1,14 @@
|
|||||||
use crate::actors::libvirt_actor;
|
use crate::actors::libvirt_actor;
|
||||||
use crate::actors::libvirt_actor::LibVirtActor;
|
use crate::actors::libvirt_actor::LibVirtActor;
|
||||||
use crate::libvirt_lib_structures::XMLUuid;
|
|
||||||
use crate::libvirt_lib_structures::domain::{DomainState, DomainXML};
|
use crate::libvirt_lib_structures::domain::{DomainState, DomainXML};
|
||||||
use crate::libvirt_lib_structures::network::NetworkXML;
|
use crate::libvirt_lib_structures::network::NetworkXML;
|
||||||
use crate::libvirt_lib_structures::nwfilter::NetworkFilterXML;
|
use crate::libvirt_lib_structures::nwfilter::NetworkFilterXML;
|
||||||
|
use crate::libvirt_lib_structures::XMLUuid;
|
||||||
use crate::libvirt_rest_structures::hypervisor::HypervisorInfo;
|
use crate::libvirt_rest_structures::hypervisor::HypervisorInfo;
|
||||||
use crate::libvirt_rest_structures::net::NetworkInfo;
|
use crate::libvirt_rest_structures::net::NetworkInfo;
|
||||||
use crate::libvirt_rest_structures::nw_filter::NetworkFilter;
|
use crate::libvirt_rest_structures::nw_filter::NetworkFilter;
|
||||||
use crate::libvirt_rest_structures::vm::{VMGroupId, VMInfo};
|
use crate::libvirt_rest_structures::vm::VMInfo;
|
||||||
use actix::Addr;
|
use actix::Addr;
|
||||||
use std::collections::HashSet;
|
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct LibVirtClient(pub Addr<LibVirtActor>);
|
pub struct LibVirtClient(pub Addr<LibVirtActor>);
|
||||||
@ -108,35 +107,6 @@ impl LibVirtClient {
|
|||||||
.await?
|
.await?
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the full list of groups
|
|
||||||
pub async fn get_full_groups_list(&self) -> anyhow::Result<Vec<VMGroupId>> {
|
|
||||||
let domains = self.get_full_domains_list().await?;
|
|
||||||
let mut out = HashSet::new();
|
|
||||||
for d in domains {
|
|
||||||
if let Some(g) = VMInfo::from_domain(d)?.group {
|
|
||||||
out.insert(g);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let mut out: Vec<_> = out.into_iter().collect();
|
|
||||||
out.sort();
|
|
||||||
Ok(out)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Get the full list of VMs of a given group
|
|
||||||
pub async fn get_full_group_vm_list(
|
|
||||||
&self,
|
|
||||||
group: &VMGroupId,
|
|
||||||
) -> anyhow::Result<Vec<DomainXML>> {
|
|
||||||
let vms = self.get_full_domains_list().await?;
|
|
||||||
let mut out = Vec::new();
|
|
||||||
for vm in vms {
|
|
||||||
if VMInfo::from_domain(vm.clone())?.group == Some(group.clone()) {
|
|
||||||
out.push(vm);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(out)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Update a network configuration
|
/// Update a network configuration
|
||||||
pub async fn update_network(
|
pub async fn update_network(
|
||||||
&self,
|
&self,
|
||||||
|
@ -1,25 +1,7 @@
|
|||||||
use crate::libvirt_lib_structures::XMLUuid;
|
use crate::libvirt_lib_structures::XMLUuid;
|
||||||
|
|
||||||
/// VirtWeb specific metadata
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Default, Debug, Clone)]
|
|
||||||
#[serde(rename = "virtweb", default)]
|
|
||||||
pub struct DomainMetadataVirtWebXML {
|
|
||||||
#[serde(rename = "@xmlns:virtweb", default)]
|
|
||||||
pub ns: String,
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub group: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Domain metadata
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Default, Debug, Clone)]
|
|
||||||
#[serde(rename = "metadata")]
|
|
||||||
pub struct DomainMetadataXML {
|
|
||||||
#[serde(rename = "virtweb:metadata", default)]
|
|
||||||
pub virtweb: DomainMetadataVirtWebXML,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// OS information
|
/// OS information
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "os")]
|
#[serde(rename = "os")]
|
||||||
pub struct OSXML {
|
pub struct OSXML {
|
||||||
#[serde(rename = "@firmware", default)]
|
#[serde(rename = "@firmware", default)]
|
||||||
@ -29,7 +11,7 @@ pub struct OSXML {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// OS Type information
|
/// OS Type information
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "os")]
|
#[serde(rename = "os")]
|
||||||
pub struct OSTypeXML {
|
pub struct OSTypeXML {
|
||||||
#[serde(rename = "@arch")]
|
#[serde(rename = "@arch")]
|
||||||
@ -41,7 +23,7 @@ pub struct OSTypeXML {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// OS Loader information
|
/// OS Loader information
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "loader")]
|
#[serde(rename = "loader")]
|
||||||
pub struct OSLoaderXML {
|
pub struct OSLoaderXML {
|
||||||
#[serde(rename = "@secure")]
|
#[serde(rename = "@secure")]
|
||||||
@ -49,39 +31,39 @@ pub struct OSLoaderXML {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Hypervisor features
|
/// Hypervisor features
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Clone, Default, Debug)]
|
#[derive(serde::Serialize, serde::Deserialize, Default)]
|
||||||
#[serde(rename = "features")]
|
#[serde(rename = "features")]
|
||||||
pub struct FeaturesXML {
|
pub struct FeaturesXML {
|
||||||
pub acpi: ACPIXML,
|
pub acpi: ACPIXML,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ACPI feature
|
/// ACPI feature
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Clone, Default, Debug)]
|
#[derive(serde::Serialize, serde::Deserialize, Default)]
|
||||||
#[serde(rename = "acpi")]
|
#[serde(rename = "acpi")]
|
||||||
pub struct ACPIXML {}
|
pub struct ACPIXML {}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "mac")]
|
#[serde(rename = "mac")]
|
||||||
pub struct NetMacAddress {
|
pub struct NetMacAddress {
|
||||||
#[serde(rename = "@address")]
|
#[serde(rename = "@address")]
|
||||||
pub address: String,
|
pub address: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "source")]
|
#[serde(rename = "source")]
|
||||||
pub struct NetIntSourceXML {
|
pub struct NetIntSourceXML {
|
||||||
#[serde(rename = "@network")]
|
#[serde(rename = "@network")]
|
||||||
pub network: String,
|
pub network: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "model")]
|
#[serde(rename = "model")]
|
||||||
pub struct NetIntModelXML {
|
pub struct NetIntModelXML {
|
||||||
#[serde(rename = "@type")]
|
#[serde(rename = "@type")]
|
||||||
pub r#type: String,
|
pub r#type: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "filterref")]
|
#[serde(rename = "filterref")]
|
||||||
pub struct NetIntFilterParameterXML {
|
pub struct NetIntFilterParameterXML {
|
||||||
#[serde(rename = "@name")]
|
#[serde(rename = "@name")]
|
||||||
@ -90,7 +72,7 @@ pub struct NetIntFilterParameterXML {
|
|||||||
pub value: String,
|
pub value: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "filterref")]
|
#[serde(rename = "filterref")]
|
||||||
pub struct NetIntfilterRefXML {
|
pub struct NetIntfilterRefXML {
|
||||||
#[serde(rename = "@filter")]
|
#[serde(rename = "@filter")]
|
||||||
@ -99,7 +81,7 @@ pub struct NetIntfilterRefXML {
|
|||||||
pub parameters: Vec<NetIntFilterParameterXML>,
|
pub parameters: Vec<NetIntFilterParameterXML>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "interface")]
|
#[serde(rename = "interface")]
|
||||||
pub struct DomainNetInterfaceXML {
|
pub struct DomainNetInterfaceXML {
|
||||||
#[serde(rename = "@type")]
|
#[serde(rename = "@type")]
|
||||||
@ -113,14 +95,14 @@ pub struct DomainNetInterfaceXML {
|
|||||||
pub filterref: Option<NetIntfilterRefXML>,
|
pub filterref: Option<NetIntfilterRefXML>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "input")]
|
#[serde(rename = "input")]
|
||||||
pub struct DomainInputXML {
|
pub struct DomainInputXML {
|
||||||
#[serde(rename = "@type")]
|
#[serde(rename = "@type")]
|
||||||
pub r#type: String,
|
pub r#type: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "backend")]
|
#[serde(rename = "backend")]
|
||||||
pub struct TPMBackendXML {
|
pub struct TPMBackendXML {
|
||||||
#[serde(rename = "@type")]
|
#[serde(rename = "@type")]
|
||||||
@ -130,7 +112,7 @@ pub struct TPMBackendXML {
|
|||||||
pub r#version: String,
|
pub r#version: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "tpm")]
|
#[serde(rename = "tpm")]
|
||||||
pub struct TPMDeviceXML {
|
pub struct TPMDeviceXML {
|
||||||
#[serde(rename = "@model")]
|
#[serde(rename = "@model")]
|
||||||
@ -139,7 +121,7 @@ pub struct TPMDeviceXML {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Devices information
|
/// Devices information
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "devices")]
|
#[serde(rename = "devices")]
|
||||||
pub struct DevicesXML {
|
pub struct DevicesXML {
|
||||||
/// Graphics (used for VNC)
|
/// Graphics (used for VNC)
|
||||||
@ -168,7 +150,7 @@ pub struct DevicesXML {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Graphics information
|
/// Graphics information
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "graphics")]
|
#[serde(rename = "graphics")]
|
||||||
pub struct GraphicsXML {
|
pub struct GraphicsXML {
|
||||||
#[serde(rename = "@type")]
|
#[serde(rename = "@type")]
|
||||||
@ -178,14 +160,14 @@ pub struct GraphicsXML {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Video device information
|
/// Video device information
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "video")]
|
#[serde(rename = "video")]
|
||||||
pub struct VideoXML {
|
pub struct VideoXML {
|
||||||
pub model: VideoModelXML,
|
pub model: VideoModelXML,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Video model device information
|
/// Video model device information
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "model")]
|
#[serde(rename = "model")]
|
||||||
pub struct VideoModelXML {
|
pub struct VideoModelXML {
|
||||||
#[serde(rename = "@type")]
|
#[serde(rename = "@type")]
|
||||||
@ -193,7 +175,7 @@ pub struct VideoModelXML {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Disk information
|
/// Disk information
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "disk")]
|
#[serde(rename = "disk")]
|
||||||
pub struct DiskXML {
|
pub struct DiskXML {
|
||||||
#[serde(rename = "@type")]
|
#[serde(rename = "@type")]
|
||||||
@ -211,7 +193,7 @@ pub struct DiskXML {
|
|||||||
pub address: Option<DiskAddressXML>,
|
pub address: Option<DiskAddressXML>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "driver")]
|
#[serde(rename = "driver")]
|
||||||
pub struct DiskDriverXML {
|
pub struct DiskDriverXML {
|
||||||
#[serde(rename = "@name")]
|
#[serde(rename = "@name")]
|
||||||
@ -222,14 +204,14 @@ pub struct DiskDriverXML {
|
|||||||
pub r#cache: String,
|
pub r#cache: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "source")]
|
#[serde(rename = "source")]
|
||||||
pub struct DiskSourceXML {
|
pub struct DiskSourceXML {
|
||||||
#[serde(rename = "@file")]
|
#[serde(rename = "@file")]
|
||||||
pub file: String,
|
pub file: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "target")]
|
#[serde(rename = "target")]
|
||||||
pub struct DiskTargetXML {
|
pub struct DiskTargetXML {
|
||||||
#[serde(rename = "@dev")]
|
#[serde(rename = "@dev")]
|
||||||
@ -238,18 +220,18 @@ pub struct DiskTargetXML {
|
|||||||
pub bus: String,
|
pub bus: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "readonly")]
|
#[serde(rename = "readonly")]
|
||||||
pub struct DiskReadOnlyXML {}
|
pub struct DiskReadOnlyXML {}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "boot")]
|
#[serde(rename = "boot")]
|
||||||
pub struct DiskBootXML {
|
pub struct DiskBootXML {
|
||||||
#[serde(rename = "@order")]
|
#[serde(rename = "@order")]
|
||||||
pub order: String,
|
pub order: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "address")]
|
#[serde(rename = "address")]
|
||||||
pub struct DiskAddressXML {
|
pub struct DiskAddressXML {
|
||||||
#[serde(rename = "@type")]
|
#[serde(rename = "@type")]
|
||||||
@ -269,7 +251,7 @@ pub struct DiskAddressXML {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Domain RAM information
|
/// Domain RAM information
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "memory")]
|
#[serde(rename = "memory")]
|
||||||
pub struct DomainMemoryXML {
|
pub struct DomainMemoryXML {
|
||||||
#[serde(rename = "@unit")]
|
#[serde(rename = "@unit")]
|
||||||
@ -279,7 +261,7 @@ pub struct DomainMemoryXML {
|
|||||||
pub memory: usize,
|
pub memory: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "topology")]
|
#[serde(rename = "topology")]
|
||||||
pub struct DomainCPUTopology {
|
pub struct DomainCPUTopology {
|
||||||
#[serde(rename = "@sockets")]
|
#[serde(rename = "@sockets")]
|
||||||
@ -290,14 +272,14 @@ pub struct DomainCPUTopology {
|
|||||||
pub threads: usize,
|
pub threads: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "cpu")]
|
#[serde(rename = "cpu")]
|
||||||
pub struct DomainVCPUXML {
|
pub struct DomainVCPUXML {
|
||||||
#[serde(rename = "$value")]
|
#[serde(rename = "$value")]
|
||||||
pub body: usize,
|
pub body: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "cpu")]
|
#[serde(rename = "cpu")]
|
||||||
pub struct DomainCPUXML {
|
pub struct DomainCPUXML {
|
||||||
#[serde(rename = "@mode")]
|
#[serde(rename = "@mode")]
|
||||||
@ -306,7 +288,7 @@ pub struct DomainCPUXML {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Domain information, see https://libvirt.org/formatdomain.html
|
/// Domain information, see https://libvirt.org/formatdomain.html
|
||||||
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
#[serde(rename = "domain")]
|
#[serde(rename = "domain")]
|
||||||
pub struct DomainXML {
|
pub struct DomainXML {
|
||||||
/// Domain type (kvm)
|
/// Domain type (kvm)
|
||||||
@ -318,9 +300,6 @@ pub struct DomainXML {
|
|||||||
pub genid: Option<uuid::Uuid>,
|
pub genid: Option<uuid::Uuid>,
|
||||||
pub title: Option<String>,
|
pub title: Option<String>,
|
||||||
pub description: Option<String>,
|
pub description: Option<String>,
|
||||||
#[serde(default, skip_serializing_if = "Option::is_none")]
|
|
||||||
pub metadata: Option<DomainMetadataXML>,
|
|
||||||
|
|
||||||
pub os: OSXML,
|
pub os: OSXML,
|
||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
pub features: FeaturesXML,
|
pub features: FeaturesXML,
|
||||||
@ -340,32 +319,10 @@ pub struct DomainXML {
|
|||||||
pub on_crash: String,
|
pub on_crash: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
const METADATA_START_MARKER: &str =
|
|
||||||
"<virtweb:metadata xmlns:virtweb=\"https://virtweb.communiquons.org\">";
|
|
||||||
const METADATA_END_MARKER: &str = "</virtweb:metadata>";
|
|
||||||
|
|
||||||
impl DomainXML {
|
impl DomainXML {
|
||||||
/// Decode Domain structure from XML definition
|
/// Decode Domain structure from XML definition
|
||||||
pub fn parse_xml(xml: &str) -> anyhow::Result<Self> {
|
pub fn parse_xml(xml: &str) -> anyhow::Result<Self> {
|
||||||
let mut res: Self = quick_xml::de::from_str(xml)?;
|
Ok(quick_xml::de::from_str(xml)?)
|
||||||
|
|
||||||
// Handle custom metadata parsing issue
|
|
||||||
//
|
|
||||||
// https://github.com/tafia/quick-xml/pull/797
|
|
||||||
if xml.contains(METADATA_START_MARKER) && xml.contains(METADATA_END_MARKER) {
|
|
||||||
let s = xml
|
|
||||||
.split_once(METADATA_START_MARKER)
|
|
||||||
.unwrap()
|
|
||||||
.1
|
|
||||||
.split_once(METADATA_END_MARKER)
|
|
||||||
.unwrap()
|
|
||||||
.0;
|
|
||||||
let s = format!("<virtweb>{s}</virtweb>");
|
|
||||||
let metadata: DomainMetadataVirtWebXML = quick_xml::de::from_str(&s)?;
|
|
||||||
res.metadata = Some(DomainMetadataXML { virtweb: metadata });
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(res)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Turn this domain into its XML definition
|
/// Turn this domain into its XML definition
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#[derive(serde::Serialize, serde::Deserialize, Clone, Copy, Debug, Eq, PartialEq, Hash)]
|
#[derive(serde::Serialize, serde::Deserialize, Clone, Copy, Debug)]
|
||||||
pub struct XMLUuid(pub uuid::Uuid);
|
pub struct XMLUuid(pub uuid::Uuid);
|
||||||
|
|
||||||
impl XMLUuid {
|
impl XMLUuid {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
use crate::libvirt_lib_structures::XMLUuid;
|
|
||||||
use crate::libvirt_lib_structures::network::*;
|
use crate::libvirt_lib_structures::network::*;
|
||||||
|
use crate::libvirt_lib_structures::XMLUuid;
|
||||||
use crate::libvirt_rest_structures::LibVirtStructError::StructureExtraction;
|
use crate::libvirt_rest_structures::LibVirtStructError::StructureExtraction;
|
||||||
use crate::nat::nat_definition::Nat;
|
use crate::nat::nat_definition::Nat;
|
||||||
use crate::nat::nat_lib;
|
use crate::nat::nat_lib;
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
use crate::libvirt_lib_structures::XMLUuid;
|
|
||||||
use crate::libvirt_lib_structures::nwfilter::{
|
use crate::libvirt_lib_structures::nwfilter::{
|
||||||
NetworkFilterRefXML, NetworkFilterRuleProtocolAllXML, NetworkFilterRuleProtocolArpXML,
|
NetworkFilterRefXML, NetworkFilterRuleProtocolAllXML, NetworkFilterRuleProtocolArpXML,
|
||||||
NetworkFilterRuleProtocolIpvx, NetworkFilterRuleProtocolLayer4, NetworkFilterRuleProtocolMac,
|
NetworkFilterRuleProtocolIpvx, NetworkFilterRuleProtocolLayer4, NetworkFilterRuleProtocolMac,
|
||||||
NetworkFilterRuleXML, NetworkFilterXML,
|
NetworkFilterRuleXML, NetworkFilterXML,
|
||||||
};
|
};
|
||||||
|
use crate::libvirt_lib_structures::XMLUuid;
|
||||||
use crate::libvirt_rest_structures::LibVirtStructError;
|
use crate::libvirt_rest_structures::LibVirtStructError;
|
||||||
use crate::libvirt_rest_structures::LibVirtStructError::{
|
use crate::libvirt_rest_structures::LibVirtStructError::{
|
||||||
NetworkFilterExtraction, StructureExtraction,
|
NetworkFilterExtraction, StructureExtraction,
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use crate::app_config::AppConfig;
|
use crate::app_config::AppConfig;
|
||||||
use crate::constants;
|
use crate::constants;
|
||||||
use crate::libvirt_lib_structures::XMLUuid;
|
|
||||||
use crate::libvirt_lib_structures::domain::*;
|
use crate::libvirt_lib_structures::domain::*;
|
||||||
|
use crate::libvirt_lib_structures::XMLUuid;
|
||||||
use crate::libvirt_rest_structures::LibVirtStructError;
|
use crate::libvirt_rest_structures::LibVirtStructError;
|
||||||
use crate::libvirt_rest_structures::LibVirtStructError::StructureExtraction;
|
use crate::libvirt_rest_structures::LibVirtStructError::StructureExtraction;
|
||||||
use crate::utils::disks_utils::Disk;
|
use crate::utils::disks_utils::Disk;
|
||||||
@ -10,11 +10,6 @@ use crate::utils::files_utils::convert_size_unit_to_mb;
|
|||||||
use lazy_regex::regex;
|
use lazy_regex::regex;
|
||||||
use num::Integer;
|
use num::Integer;
|
||||||
|
|
||||||
#[derive(
|
|
||||||
Debug, Clone, serde::Serialize, serde::Deserialize, PartialEq, Eq, Hash, Ord, PartialOrd,
|
|
||||||
)]
|
|
||||||
pub struct VMGroupId(pub String);
|
|
||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize)]
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
pub enum BootType {
|
pub enum BootType {
|
||||||
UEFI,
|
UEFI,
|
||||||
@ -64,9 +59,6 @@ pub struct VMInfo {
|
|||||||
pub genid: Option<XMLUuid>,
|
pub genid: Option<XMLUuid>,
|
||||||
pub title: Option<String>,
|
pub title: Option<String>,
|
||||||
pub description: Option<String>,
|
pub description: Option<String>,
|
||||||
/// Group associated with the VM (VirtWeb specific field)
|
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
|
||||||
pub group: Option<VMGroupId>,
|
|
||||||
pub boot_type: BootType,
|
pub boot_type: BootType,
|
||||||
pub architecture: VMArchitecture,
|
pub architecture: VMArchitecture,
|
||||||
/// VM allocated memory, in megabytes
|
/// VM allocated memory, in megabytes
|
||||||
@ -87,7 +79,7 @@ pub struct VMInfo {
|
|||||||
|
|
||||||
impl VMInfo {
|
impl VMInfo {
|
||||||
/// Turn this VM into a domain
|
/// Turn this VM into a domain
|
||||||
pub fn as_domain(&self) -> anyhow::Result<DomainXML> {
|
pub fn as_tomain(&self) -> anyhow::Result<DomainXML> {
|
||||||
if !regex!("^[a-zA-Z0-9]+$").is_match(&self.name) {
|
if !regex!("^[a-zA-Z0-9]+$").is_match(&self.name) {
|
||||||
return Err(StructureExtraction("VM name is invalid!").into());
|
return Err(StructureExtraction("VM name is invalid!").into());
|
||||||
}
|
}
|
||||||
@ -113,12 +105,6 @@ impl VMInfo {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(group) = &self.group {
|
|
||||||
if !regex!("^[a-zA-Z0-9]+$").is_match(&group.0) {
|
|
||||||
return Err(StructureExtraction("VM group name is invalid!").into());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if self.memory < constants::MIN_VM_MEMORY || self.memory > constants::MAX_VM_MEMORY {
|
if self.memory < constants::MIN_VM_MEMORY || self.memory > constants::MAX_VM_MEMORY {
|
||||||
return Err(StructureExtraction("VM memory is invalid!").into());
|
return Err(StructureExtraction("VM memory is invalid!").into());
|
||||||
}
|
}
|
||||||
@ -296,12 +282,6 @@ impl VMInfo {
|
|||||||
title: self.title.clone(),
|
title: self.title.clone(),
|
||||||
description: self.description.clone(),
|
description: self.description.clone(),
|
||||||
|
|
||||||
metadata: Some(DomainMetadataXML {
|
|
||||||
virtweb: DomainMetadataVirtWebXML {
|
|
||||||
ns: "https://virtweb.communiquons.org".to_string(),
|
|
||||||
group: self.group.clone().map(|g| g.0),
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
os: OSXML {
|
os: OSXML {
|
||||||
r#type: OSTypeXML {
|
r#type: OSTypeXML {
|
||||||
arch: match self.architecture {
|
arch: match self.architecture {
|
||||||
@ -389,13 +369,6 @@ impl VMInfo {
|
|||||||
genid: domain.genid.map(XMLUuid),
|
genid: domain.genid.map(XMLUuid),
|
||||||
title: domain.title,
|
title: domain.title,
|
||||||
description: domain.description,
|
description: domain.description,
|
||||||
group: domain
|
|
||||||
.metadata
|
|
||||||
.clone()
|
|
||||||
.unwrap_or_default()
|
|
||||||
.virtweb
|
|
||||||
.group
|
|
||||||
.map(VMGroupId),
|
|
||||||
boot_type: match domain.os.loader {
|
boot_type: match domain.os.loader {
|
||||||
None => BootType::UEFI,
|
None => BootType::UEFI,
|
||||||
Some(l) => match l.secure.as_str() {
|
Some(l) => match l.secure.as_str() {
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
use actix::Actor;
|
use actix::Actor;
|
||||||
use actix_cors::Cors;
|
use actix_cors::Cors;
|
||||||
use actix_identity::IdentityMiddleware;
|
|
||||||
use actix_identity::config::LogoutBehaviour;
|
use actix_identity::config::LogoutBehaviour;
|
||||||
use actix_multipart::form::MultipartFormConfig;
|
use actix_identity::IdentityMiddleware;
|
||||||
use actix_multipart::form::tempfile::TempFileConfig;
|
use actix_multipart::form::tempfile::TempFileConfig;
|
||||||
|
use actix_multipart::form::MultipartFormConfig;
|
||||||
use actix_remote_ip::RemoteIPConfig;
|
use actix_remote_ip::RemoteIPConfig;
|
||||||
use actix_session::SessionMiddleware;
|
|
||||||
use actix_session::storage::CookieSessionStore;
|
use actix_session::storage::CookieSessionStore;
|
||||||
|
use actix_session::SessionMiddleware;
|
||||||
use actix_web::cookie::{Key, SameSite};
|
use actix_web::cookie::{Key, SameSite};
|
||||||
use actix_web::http::header;
|
use actix_web::http::header;
|
||||||
use actix_web::middleware::Logger;
|
use actix_web::middleware::Logger;
|
||||||
use actix_web::web::Data;
|
use actix_web::web::Data;
|
||||||
use actix_web::{App, HttpServer, web};
|
use actix_web::{web, App, HttpServer};
|
||||||
use light_openid::basic_state_manager::BasicStateManager;
|
use light_openid::basic_state_manager::BasicStateManager;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
use virtweb_backend::actors::libvirt_actor::LibVirtActor;
|
use virtweb_backend::actors::libvirt_actor::LibVirtActor;
|
||||||
@ -22,7 +22,7 @@ use virtweb_backend::constants::{
|
|||||||
MAX_INACTIVITY_DURATION, MAX_SESSION_DURATION, SESSION_COOKIE_NAME,
|
MAX_INACTIVITY_DURATION, MAX_SESSION_DURATION, SESSION_COOKIE_NAME,
|
||||||
};
|
};
|
||||||
use virtweb_backend::controllers::{
|
use virtweb_backend::controllers::{
|
||||||
api_tokens_controller, auth_controller, groups_controller, iso_controller, network_controller,
|
api_tokens_controller, auth_controller, iso_controller, network_controller,
|
||||||
nwfilter_controller, server_controller, static_controller, vm_controller,
|
nwfilter_controller, server_controller, static_controller, vm_controller,
|
||||||
};
|
};
|
||||||
use virtweb_backend::libvirt_client::LibVirtClient;
|
use virtweb_backend::libvirt_client::LibVirtClient;
|
||||||
@ -210,44 +210,6 @@ async fn main() -> std::io::Result<()> {
|
|||||||
web::get().to(vm_controller::vnc_token),
|
web::get().to(vm_controller::vnc_token),
|
||||||
)
|
)
|
||||||
.route("/api/vnc", web::get().to(vm_controller::vnc))
|
.route("/api/vnc", web::get().to(vm_controller::vnc))
|
||||||
// Groups controller
|
|
||||||
.route("/api/group/list", web::get().to(groups_controller::list))
|
|
||||||
.route(
|
|
||||||
"/api/group/{gid}/vm/info",
|
|
||||||
web::get().to(groups_controller::vm_info),
|
|
||||||
)
|
|
||||||
.route(
|
|
||||||
"/api/group/{gid}/vm/start",
|
|
||||||
web::get().to(groups_controller::vm_start),
|
|
||||||
)
|
|
||||||
.route(
|
|
||||||
"/api/group/{gid}/vm/shutdown",
|
|
||||||
web::get().to(groups_controller::vm_shutdown),
|
|
||||||
)
|
|
||||||
.route(
|
|
||||||
"/api/group/{gid}/vm/suspend",
|
|
||||||
web::get().to(groups_controller::vm_suspend),
|
|
||||||
)
|
|
||||||
.route(
|
|
||||||
"/api/group/{gid}/vm/resume",
|
|
||||||
web::get().to(groups_controller::vm_resume),
|
|
||||||
)
|
|
||||||
.route(
|
|
||||||
"/api/group/{gid}/vm/kill",
|
|
||||||
web::get().to(groups_controller::vm_kill),
|
|
||||||
)
|
|
||||||
.route(
|
|
||||||
"/api/group/{gid}/vm/reset",
|
|
||||||
web::get().to(groups_controller::vm_reset),
|
|
||||||
)
|
|
||||||
.route(
|
|
||||||
"/api/group/{gid}/vm/screenshot",
|
|
||||||
web::get().to(groups_controller::vm_screenshot),
|
|
||||||
)
|
|
||||||
.route(
|
|
||||||
"/api/group/{gid}/vm/state",
|
|
||||||
web::get().to(groups_controller::vm_state),
|
|
||||||
)
|
|
||||||
// Network controller
|
// Network controller
|
||||||
.route(
|
.route(
|
||||||
"/api/network/create",
|
"/api/network/create",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use std::future::{Ready, ready};
|
use std::future::{ready, Ready};
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
|
|
||||||
use crate::app_config::AppConfig;
|
use crate::app_config::AppConfig;
|
||||||
@ -8,8 +8,8 @@ use crate::extractors::auth_extractor::AuthExtractor;
|
|||||||
use actix_web::body::EitherBody;
|
use actix_web::body::EitherBody;
|
||||||
use actix_web::dev::Payload;
|
use actix_web::dev::Payload;
|
||||||
use actix_web::{
|
use actix_web::{
|
||||||
|
dev::{forward_ready, Service, ServiceRequest, ServiceResponse, Transform},
|
||||||
Error, FromRequest, HttpResponse,
|
Error, FromRequest, HttpResponse,
|
||||||
dev::{Service, ServiceRequest, ServiceResponse, Transform, forward_ready},
|
|
||||||
};
|
};
|
||||||
use futures_util::future::LocalBoxFuture;
|
use futures_util::future::LocalBoxFuture;
|
||||||
|
|
||||||
@ -68,10 +68,7 @@ where
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
if !AppConfig::get().is_allowed_ip(remote_ip.0) {
|
if !AppConfig::get().is_allowed_ip(remote_ip.0) {
|
||||||
log::error!(
|
log::error!("An attempt to access VirtWeb from an unauthorized network has been intercepted! {:?}", remote_ip);
|
||||||
"An attempt to access VirtWeb from an unauthorized network has been intercepted! {:?}",
|
|
||||||
remote_ip
|
|
||||||
);
|
|
||||||
return Ok(req
|
return Ok(req
|
||||||
.into_response(
|
.into_response(
|
||||||
HttpResponse::MethodNotAllowed()
|
HttpResponse::MethodNotAllowed()
|
||||||
|
@ -49,9 +49,7 @@ pub async fn sub_main() -> anyhow::Result<()> {
|
|||||||
let args = NatArgs::parse();
|
let args = NatArgs::parse();
|
||||||
|
|
||||||
if !args.network_file().exists() {
|
if !args.network_file().exists() {
|
||||||
log::warn!(
|
log::warn!("Cannot do anything for the network, because the NAT configuration file does not exixsts!");
|
||||||
"Cannot do anything for the network, because the NAT configuration file does not exixsts!"
|
|
||||||
);
|
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -186,9 +184,7 @@ fn toggle_port_forwarding(
|
|||||||
false => "tcp",
|
false => "tcp",
|
||||||
};
|
};
|
||||||
|
|
||||||
log::info!(
|
log::info!("Forward (add={enable}) incoming {protocol} connections for {host_ip}:{host_port} to {guest_ip}:{guest_port} int {net_interface}");
|
||||||
"Forward (add={enable}) incoming {protocol} connections for {host_ip}:{host_port} to {guest_ip}:{guest_port} int {net_interface}"
|
|
||||||
);
|
|
||||||
|
|
||||||
// Rule 1
|
// Rule 1
|
||||||
let cmd = Command::new(program)
|
let cmd = Command::new(program)
|
||||||
|
@ -57,7 +57,7 @@ pub fn is_net_interface_name_valid<D: AsRef<str>>(int: D) -> bool {
|
|||||||
/// Get the list of available network interfaces
|
/// Get the list of available network interfaces
|
||||||
pub fn net_list() -> Vec<String> {
|
pub fn net_list() -> Vec<String> {
|
||||||
let mut networks = Networks::new();
|
let mut networks = Networks::new();
|
||||||
networks.refresh(true);
|
networks.refresh_list();
|
||||||
|
|
||||||
networks
|
networks
|
||||||
.list()
|
.list()
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
use rand::distr::{Alphanumeric, SampleString};
|
use rand::distributions::Alphanumeric;
|
||||||
|
use rand::Rng;
|
||||||
|
|
||||||
/// Generate a random string
|
/// Generate a random string
|
||||||
pub fn rand_str(len: usize) -> String {
|
pub fn rand_str(len: usize) -> String {
|
||||||
Alphanumeric.sample_string(&mut rand::rng(), len)
|
let s: String = rand::thread_rng()
|
||||||
|
.sample_iter(&Alphanumeric)
|
||||||
|
.take(len)
|
||||||
|
.map(char::from)
|
||||||
|
.collect();
|
||||||
|
s
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ make
|
|||||||
|
|
||||||
The release file will be available in `virtweb_backend/target/release/virtweb_backend`.
|
The release file will be available in `virtweb_backend/target/release/virtweb_backend`.
|
||||||
|
|
||||||
This is the only artifact that must be copied to the server. It is recommended to copy it to the `/usr/local/bin` directory.
|
This is the only artifcat that must be copied to the server. It is recommended to copy it to the `/usr/local/bin` directory.
|
||||||
|
|
||||||
## Install requirements
|
## Install requirements
|
||||||
In order to work properly, VirtWeb relies on `libvirt`, `qemu` and `kvm`:
|
In order to work properly, VirtWeb relies on `libvirt`, `qemu` and `kvm`:
|
||||||
|
@ -1,12 +1,46 @@
|
|||||||
# Virtweb frontend
|
# Getting Started with Create React App
|
||||||
Built with Vite + React + TypeScript
|
|
||||||
|
|
||||||
## Get dependencies
|
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||||
```bash
|
|
||||||
npm install
|
|
||||||
```
|
|
||||||
|
|
||||||
# Run for developpment
|
## Available Scripts
|
||||||
```bash
|
|
||||||
npm run dev
|
In the project directory, you can run:
|
||||||
```
|
|
||||||
|
### `npm start`
|
||||||
|
|
||||||
|
Runs the app in the development mode.\
|
||||||
|
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
||||||
|
|
||||||
|
The page will reload if you make edits.\
|
||||||
|
You will also see any lint errors in the console.
|
||||||
|
|
||||||
|
### `npm test`
|
||||||
|
|
||||||
|
Launches the test runner in the interactive watch mode.\
|
||||||
|
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
|
||||||
|
|
||||||
|
### `npm run build`
|
||||||
|
|
||||||
|
Builds the app for production to the `build` folder.\
|
||||||
|
It correctly bundles React in production mode and optimizes the build for the best performance.
|
||||||
|
|
||||||
|
The build is minified and the filenames include the hashes.\
|
||||||
|
Your app is ready to be deployed!
|
||||||
|
|
||||||
|
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
||||||
|
|
||||||
|
### `npm run eject`
|
||||||
|
|
||||||
|
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
|
||||||
|
|
||||||
|
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
||||||
|
|
||||||
|
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
|
||||||
|
|
||||||
|
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
|
||||||
|
|
||||||
|
## Learn More
|
||||||
|
|
||||||
|
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||||
|
|
||||||
|
To learn React, check out the [React documentation](https://reactjs.org/).
|
||||||
|
@ -1,54 +0,0 @@
|
|||||||
import js from "@eslint/js";
|
|
||||||
import reactDom from "eslint-plugin-react-dom";
|
|
||||||
import reactHooks from "eslint-plugin-react-hooks";
|
|
||||||
import reactRefresh from "eslint-plugin-react-refresh";
|
|
||||||
import reactX from "eslint-plugin-react-x";
|
|
||||||
import globals from "globals";
|
|
||||||
import tseslint from "typescript-eslint";
|
|
||||||
|
|
||||||
export default tseslint.config(
|
|
||||||
{ ignores: ["dist"] },
|
|
||||||
{
|
|
||||||
extends: [
|
|
||||||
js.configs.recommended,
|
|
||||||
...tseslint.configs.strictTypeChecked,
|
|
||||||
...tseslint.configs.stylisticTypeChecked,
|
|
||||||
],
|
|
||||||
files: ["**/*.{ts,tsx}"],
|
|
||||||
languageOptions: {
|
|
||||||
ecmaVersion: 2020,
|
|
||||||
globals: globals.browser,
|
|
||||||
parserOptions: {
|
|
||||||
project: ["./tsconfig.node.json", "./tsconfig.app.json"],
|
|
||||||
tsconfigRootDir: import.meta.dirname,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
plugins: {
|
|
||||||
"react-hooks": reactHooks,
|
|
||||||
"react-refresh": reactRefresh,
|
|
||||||
"react-x": reactX,
|
|
||||||
"react-dom": reactDom,
|
|
||||||
},
|
|
||||||
rules: {
|
|
||||||
...reactHooks.configs.recommended.rules,
|
|
||||||
"react-refresh/only-export-components": [
|
|
||||||
"warn",
|
|
||||||
{ allowConstantExport: true },
|
|
||||||
],
|
|
||||||
...reactX.configs["recommended-typescript"].rules,
|
|
||||||
...reactDom.configs.recommended.rules,
|
|
||||||
"@typescript-eslint/no-non-null-assertion": "off",
|
|
||||||
"@typescript-eslint/no-misused-promises": "off",
|
|
||||||
"@typescript-eslint/no-floating-promises": "off",
|
|
||||||
"@typescript-eslint/restrict-template-expressions": "off",
|
|
||||||
"@typescript-eslint/no-extraneous-class": "off",
|
|
||||||
"@typescript-eslint/no-explicit-any": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-return": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-call": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
||||||
"@typescript-eslint/no-unsafe-argument": "off",
|
|
||||||
"react-refresh/only-export-components": "off",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
|
22564
virtweb_frontend/package-lock.json
generated
22564
virtweb_frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -3,51 +3,63 @@
|
|||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
|
||||||
"dev": "vite",
|
|
||||||
"build": "tsc -b && vite build",
|
|
||||||
"lint": "eslint .",
|
|
||||||
"preview": "vite preview"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/react": "^11.14.0",
|
"@emotion/react": "^11.11.1",
|
||||||
"@emotion/styled": "^11.14.0",
|
"@emotion/styled": "^11.11.0",
|
||||||
"@fontsource/roboto": "^5.2.5",
|
"@fontsource/roboto": "^5.0.13",
|
||||||
"@mdi/js": "^7.2.96",
|
"@mdi/js": "^7.2.96",
|
||||||
"@mdi/react": "^1.6.1",
|
"@mdi/react": "^1.6.1",
|
||||||
"@mui/icons-material": "^7.0.0",
|
"@mui/icons-material": "^5.14.7",
|
||||||
"@mui/material": "^7.0.0",
|
"@mui/material": "^5.14.7",
|
||||||
"@mui/x-charts": "^7.28.0",
|
"@mui/x-charts": "^7.3.0",
|
||||||
"@mui/x-data-grid": "^7.28.1",
|
"@mui/x-data-grid": "^7.3.0",
|
||||||
"date-and-time": "^3.6.0",
|
"@testing-library/jest-dom": "^6.4.2",
|
||||||
"filesize": "^10.1.6",
|
"@testing-library/react": "^16.0.0",
|
||||||
|
"@testing-library/user-event": "^14.5.2",
|
||||||
|
"@types/humanize-duration": "^3.27.1",
|
||||||
|
"@types/jest": "^29.5.12",
|
||||||
|
"@types/react": "^18.2.79",
|
||||||
|
"@types/react-dom": "^18.2.25",
|
||||||
|
"@types/react-syntax-highlighter": "^15.5.11",
|
||||||
|
"@types/uuid": "^10.0.0",
|
||||||
|
"@vitejs/plugin-react": "^4.2.1",
|
||||||
|
"date-and-time": "^3.1.1",
|
||||||
|
"filesize": "^10.0.12",
|
||||||
"humanize-duration": "^3.29.0",
|
"humanize-duration": "^3.29.0",
|
||||||
"mui-file-input": "^7.0.0",
|
"mui-file-input": "^4.0.4",
|
||||||
"react": "^19.0.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^19.0.0",
|
"react-dom": "^18.2.0",
|
||||||
"react-router-dom": "^7.4.0",
|
"react-router-dom": "^6.23.0",
|
||||||
"react-syntax-highlighter": "^15.6.1",
|
"react-syntax-highlighter": "^15.5.0",
|
||||||
"react-vnc": "^3.0.7",
|
"react-vnc": "^1.0.0",
|
||||||
"uuid": "^11.1.0",
|
"typescript": "^4.0.0",
|
||||||
|
"uuid": "^10.0.0",
|
||||||
|
"vite": "^5.2.10",
|
||||||
|
"vite-tsconfig-paths": "^4.2.2",
|
||||||
|
"web-vitals": "^3.5.2",
|
||||||
"xml-formatter": "^3.6.0"
|
"xml-formatter": "^3.6.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"scripts": {
|
||||||
"@eslint/js": "^9.21.0",
|
"start": "vite",
|
||||||
"@types/humanize-duration": "^3.27.1",
|
"build": "tsc && vite build",
|
||||||
"@types/jest": "^29.5.14",
|
"preview": "vite preview"
|
||||||
"@types/react": "^19.0.12",
|
},
|
||||||
"@types/react-dom": "^19.0.4",
|
"eslintConfig": {
|
||||||
"@types/react-syntax-highlighter": "^15.5.13",
|
"extends": [
|
||||||
"@types/uuid": "^10.0.0",
|
"react-app",
|
||||||
"@vitejs/plugin-react": "^4.3.4",
|
"react-app/jest"
|
||||||
"eslint": "^9.21.0",
|
]
|
||||||
"eslint-plugin-react-dom": "^1.38.3",
|
},
|
||||||
"eslint-plugin-react-hooks": "^5.1.0",
|
"browserslist": {
|
||||||
"eslint-plugin-react-refresh": "^0.4.19",
|
"production": [
|
||||||
"eslint-plugin-react-x": "^1.38.3",
|
">0.2%",
|
||||||
"globals": "^15.15.0",
|
"not dead",
|
||||||
"typescript": "^5.8.2",
|
"not op_mini all"
|
||||||
"typescript-eslint": "^8.24.1",
|
],
|
||||||
"vite": "^6.2.3"
|
"development": [
|
||||||
|
"last 1 chrome version",
|
||||||
|
"last 1 firefox version",
|
||||||
|
"last 1 safari version"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -51,10 +51,7 @@ export function App() {
|
|||||||
|
|
||||||
const context: AuthContext = {
|
const context: AuthContext = {
|
||||||
signedIn: signedIn,
|
signedIn: signedIn,
|
||||||
setSignedIn: (s) => {
|
setSignedIn: (s) => setSignedIn(s),
|
||||||
setSignedIn(s);
|
|
||||||
location.reload();
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const router = createBrowserRouter(
|
const router = createBrowserRouter(
|
||||||
@ -100,12 +97,12 @@ export function App() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<AuthContextK value={context}>
|
<AuthContextK.Provider value={context}>
|
||||||
<RouterProvider router={router} />
|
<RouterProvider router={router} />
|
||||||
</AuthContextK>
|
</AuthContextK.Provider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useAuth(): AuthContext {
|
export function useAuth(): AuthContext {
|
||||||
return React.use(AuthContextK)!;
|
return React.useContext(AuthContextK)!;
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@ export class APIClient {
|
|||||||
* Get backend URL
|
* Get backend URL
|
||||||
*/
|
*/
|
||||||
static backendURL(): string {
|
static backendURL(): string {
|
||||||
const URL = String(import.meta.env.VITE_APP_BACKEND ?? "");
|
const URL = import.meta.env.VITE_APP_BACKEND ?? "";
|
||||||
if (URL.length === 0) throw new Error("Backend URL undefined!");
|
if (URL.length === 0) throw new Error("Backend URL undefined!");
|
||||||
return URL;
|
return URL;
|
||||||
}
|
}
|
||||||
@ -44,7 +44,7 @@ export class APIClient {
|
|||||||
*/
|
*/
|
||||||
static async exec(args: RequestParams): Promise<APIResponse> {
|
static async exec(args: RequestParams): Promise<APIResponse> {
|
||||||
let body: string | undefined | FormData = undefined;
|
let body: string | undefined | FormData = undefined;
|
||||||
const headers: any = {};
|
let headers: any = {};
|
||||||
|
|
||||||
// JSON request
|
// JSON request
|
||||||
if (args.jsonData) {
|
if (args.jsonData) {
|
||||||
@ -66,25 +66,22 @@ export class APIClient {
|
|||||||
if (args.upProgress) {
|
if (args.upProgress) {
|
||||||
const res: XMLHttpRequest = await new Promise((resolve, reject) => {
|
const res: XMLHttpRequest = await new Promise((resolve, reject) => {
|
||||||
const xhr = new XMLHttpRequest();
|
const xhr = new XMLHttpRequest();
|
||||||
xhr.upload.addEventListener("progress", (e) => {
|
xhr.upload.addEventListener("progress", (e) =>
|
||||||
args.upProgress!(e.loaded / e.total);
|
args.upProgress!(e.loaded / e.total)
|
||||||
});
|
);
|
||||||
xhr.addEventListener("load", () => {
|
xhr.addEventListener("load", () => resolve(xhr));
|
||||||
resolve(xhr);
|
xhr.addEventListener("error", () =>
|
||||||
});
|
reject(new Error("File upload failed"))
|
||||||
xhr.addEventListener("error", () => {
|
);
|
||||||
reject(new Error("File upload failed"));
|
xhr.addEventListener("abort", () =>
|
||||||
});
|
reject(new Error("File upload aborted"))
|
||||||
xhr.addEventListener("abort", () => {
|
);
|
||||||
reject(new Error("File upload aborted"));
|
xhr.addEventListener("timeout", () =>
|
||||||
});
|
reject(new Error("File upload timeout"))
|
||||||
xhr.addEventListener("timeout", () => {
|
);
|
||||||
reject(new Error("File upload timeout"));
|
|
||||||
});
|
|
||||||
xhr.open(args.method, url, true);
|
xhr.open(args.method, url, true);
|
||||||
xhr.withCredentials = true;
|
xhr.withCredentials = true;
|
||||||
for (const key in headers) {
|
for (const key in headers) {
|
||||||
// eslint-disable-next-line no-prototype-builtins
|
|
||||||
if (headers.hasOwnProperty(key))
|
if (headers.hasOwnProperty(key))
|
||||||
xhr.setRequestHeader(key, headers[key]);
|
xhr.setRequestHeader(key, headers[key]);
|
||||||
}
|
}
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
import { APIClient } from "./ApiClient";
|
|
||||||
|
|
||||||
export class GroupApi {
|
|
||||||
/**
|
|
||||||
* Get the entire list of networks
|
|
||||||
*/
|
|
||||||
static async GetList(): Promise<string[]> {
|
|
||||||
return (
|
|
||||||
await APIClient.exec({
|
|
||||||
method: "GET",
|
|
||||||
uri: "/group/list",
|
|
||||||
})
|
|
||||||
).data;
|
|
||||||
}
|
|
||||||
}
|
|
@ -140,7 +140,7 @@ export interface NWFilter {
|
|||||||
rules: NWFilterRule[];
|
rules: NWFilterRule[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export function NWFilterURL(n: NWFilter, edit = false): string {
|
export function NWFilterURL(n: NWFilter, edit: boolean = false): string {
|
||||||
return `/nwfilter/${n.uuid}${edit ? "/edit" : ""}`;
|
return `/nwfilter/${n.uuid}${edit ? "/edit" : ""}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,7 +221,7 @@ export class NWFilterApi {
|
|||||||
static async Delete(n: NWFilter): Promise<void> {
|
static async Delete(n: NWFilter): Promise<void> {
|
||||||
await APIClient.exec({
|
await APIClient.exec({
|
||||||
method: "DELETE",
|
method: "DELETE",
|
||||||
uri: `/nwfilter/${n.uuid!}`,
|
uri: `/nwfilter/${n.uuid}`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,7 +53,7 @@ export interface NetworkInfo {
|
|||||||
|
|
||||||
export type NetworkStatus = "Started" | "Stopped";
|
export type NetworkStatus = "Started" | "Stopped";
|
||||||
|
|
||||||
export function NetworkURL(n: NetworkInfo, edit = false): string {
|
export function NetworkURL(n: NetworkInfo, edit: boolean = false): string {
|
||||||
return `/net/${n.uuid}${edit ? "/edit" : ""}`;
|
return `/net/${n.uuid}${edit ? "/edit" : ""}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@ export interface ServerConstraints {
|
|||||||
vnc_token_duration: number;
|
vnc_token_duration: number;
|
||||||
vm_name_size: LenConstraint;
|
vm_name_size: LenConstraint;
|
||||||
vm_title_size: LenConstraint;
|
vm_title_size: LenConstraint;
|
||||||
group_id_size: LenConstraint;
|
|
||||||
memory_size: LenConstraint;
|
memory_size: LenConstraint;
|
||||||
disk_name_size: LenConstraint;
|
disk_name_size: LenConstraint;
|
||||||
disk_size: LenConstraint;
|
disk_size: LenConstraint;
|
||||||
@ -74,7 +73,7 @@ interface SystemInfo {
|
|||||||
secs: number;
|
secs: number;
|
||||||
nanos: number;
|
nanos: number;
|
||||||
};
|
};
|
||||||
global_cpu_usage: number;
|
global_cpu_info: GlobalCPUInfo;
|
||||||
cpus: CpuCore[];
|
cpus: CpuCore[];
|
||||||
physical_core_count: number;
|
physical_core_count: number;
|
||||||
total_memory: number;
|
total_memory: number;
|
||||||
@ -95,6 +94,14 @@ interface SystemInfo {
|
|||||||
host_name: string;
|
host_name: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface GlobalCPUInfo {
|
||||||
|
cpu_usage: number;
|
||||||
|
name: string;
|
||||||
|
vendor_id: string;
|
||||||
|
brand: string;
|
||||||
|
frequency: number;
|
||||||
|
}
|
||||||
|
|
||||||
interface CpuCore {
|
interface CpuCore {
|
||||||
cpu_usage: number;
|
cpu_usage: number;
|
||||||
name: string;
|
name: string;
|
||||||
|
@ -20,7 +20,7 @@ export interface APIToken {
|
|||||||
max_inactivity?: number;
|
max_inactivity?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function APITokenURL(t: APIToken, edit = false): string {
|
export function APITokenURL(t: APIToken, edit: boolean = false): string {
|
||||||
return `/token/${t.id}${edit ? "/edit" : ""}`;
|
return `/token/${t.id}${edit ? "/edit" : ""}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -63,7 +63,6 @@ interface VMInfoInterface {
|
|||||||
genid?: string;
|
genid?: string;
|
||||||
title?: string;
|
title?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
group?: string;
|
|
||||||
boot_type: "UEFI" | "UEFISecureBoot";
|
boot_type: "UEFI" | "UEFISecureBoot";
|
||||||
architecture: "i686" | "x86_64";
|
architecture: "i686" | "x86_64";
|
||||||
memory: number;
|
memory: number;
|
||||||
@ -81,7 +80,6 @@ export class VMInfo implements VMInfoInterface {
|
|||||||
genid?: string;
|
genid?: string;
|
||||||
title?: string;
|
title?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
group?: string;
|
|
||||||
boot_type: "UEFI" | "UEFISecureBoot";
|
boot_type: "UEFI" | "UEFISecureBoot";
|
||||||
architecture: "i686" | "x86_64";
|
architecture: "i686" | "x86_64";
|
||||||
number_vcpu: number;
|
number_vcpu: number;
|
||||||
@ -98,7 +96,6 @@ export class VMInfo implements VMInfoInterface {
|
|||||||
this.genid = int.genid;
|
this.genid = int.genid;
|
||||||
this.title = int.title;
|
this.title = int.title;
|
||||||
this.description = int.description;
|
this.description = int.description;
|
||||||
this.group = int.group;
|
|
||||||
this.boot_type = int.boot_type;
|
this.boot_type = int.boot_type;
|
||||||
this.architecture = int.architecture;
|
this.architecture = int.architecture;
|
||||||
this.number_vcpu = int.number_vcpu;
|
this.number_vcpu = int.number_vcpu;
|
||||||
|
@ -39,7 +39,7 @@ export function AlertDialogProvider(p: PropsWithChildren): React.ReactElement {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<AlertContextK value={hook}>{p.children}</AlertContextK>
|
<AlertContextK.Provider value={hook}>{p.children}</AlertContextK.Provider>
|
||||||
|
|
||||||
<Dialog
|
<Dialog
|
||||||
open={open}
|
open={open}
|
||||||
@ -67,5 +67,5 @@ export function AlertDialogProvider(p: PropsWithChildren): React.ReactElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function useAlert(): AlertContext {
|
export function useAlert(): AlertContext {
|
||||||
return React.use(AlertContextK)!;
|
return React.useContext(AlertContextK)!;
|
||||||
}
|
}
|
||||||
|
@ -59,13 +59,13 @@ export function ConfirmDialogProvider(
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ConfirmContextK value={hook}>
|
<ConfirmContextK.Provider value={hook}>
|
||||||
{p.children}
|
{p.children}
|
||||||
</ConfirmContextK>
|
</ConfirmContextK.Provider>
|
||||||
|
|
||||||
<Dialog
|
<Dialog
|
||||||
open={open}
|
open={open}
|
||||||
onClose={() => { handleClose(false); }}
|
onClose={() => handleClose(false)}
|
||||||
aria-labelledby="alert-dialog-title"
|
aria-labelledby="alert-dialog-title"
|
||||||
aria-describedby="alert-dialog-description"
|
aria-describedby="alert-dialog-description"
|
||||||
>
|
>
|
||||||
@ -76,10 +76,10 @@ export function ConfirmDialogProvider(
|
|||||||
</DialogContentText>
|
</DialogContentText>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
<DialogActions>
|
<DialogActions>
|
||||||
<Button onClick={() => { handleClose(false); }} autoFocus>
|
<Button onClick={() => handleClose(false)} autoFocus>
|
||||||
{cancelButton ?? "Cancel"}
|
{cancelButton ?? "Cancel"}
|
||||||
</Button>
|
</Button>
|
||||||
<Button onClick={() => { handleClose(true); }} color="error">
|
<Button onClick={() => handleClose(true)} color="error">
|
||||||
{confirmButton ?? "Confirm"}
|
{confirmButton ?? "Confirm"}
|
||||||
</Button>
|
</Button>
|
||||||
</DialogActions>
|
</DialogActions>
|
||||||
@ -89,5 +89,5 @@ export function ConfirmDialogProvider(
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function useConfirm(): ConfirmContext {
|
export function useConfirm(): ConfirmContext {
|
||||||
return React.use(ConfirmContextK)!;
|
return React.useContext(ConfirmContextK)!;
|
||||||
}
|
}
|
||||||
|
@ -6,10 +6,10 @@ import {
|
|||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import React, { PropsWithChildren } from "react";
|
import React, { PropsWithChildren } from "react";
|
||||||
|
|
||||||
interface LoadingMessageContext {
|
type LoadingMessageContext = {
|
||||||
show: (message: string) => void;
|
show: (message: string) => void;
|
||||||
hide: () => void;
|
hide: () => void;
|
||||||
}
|
};
|
||||||
|
|
||||||
const LoadingMessageContextK =
|
const LoadingMessageContextK =
|
||||||
React.createContext<LoadingMessageContext | null>(null);
|
React.createContext<LoadingMessageContext | null>(null);
|
||||||
@ -34,9 +34,9 @@ export function LoadingMessageProvider(
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<LoadingMessageContextK value={hook}>
|
<LoadingMessageContextK.Provider value={hook}>
|
||||||
{p.children}
|
{p.children}
|
||||||
</LoadingMessageContextK>
|
</LoadingMessageContextK.Provider>
|
||||||
|
|
||||||
<Dialog open={open}>
|
<Dialog open={open}>
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
@ -60,5 +60,5 @@ export function LoadingMessageProvider(
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function useLoadingMessage(): LoadingMessageContext {
|
export function useLoadingMessage(): LoadingMessageContext {
|
||||||
return React.use(LoadingMessageContextK)!;
|
return React.useContext(LoadingMessageContextK)!;
|
||||||
}
|
}
|
||||||
|
@ -24,9 +24,9 @@ export function SnackbarProvider(p: PropsWithChildren): React.ReactElement {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<SnackbarContextK value={hook}>
|
<SnackbarContextK.Provider value={hook}>
|
||||||
{p.children}
|
{p.children}
|
||||||
</SnackbarContextK>
|
</SnackbarContextK.Provider>
|
||||||
|
|
||||||
<Snackbar
|
<Snackbar
|
||||||
open={open}
|
open={open}
|
||||||
@ -39,5 +39,5 @@ export function SnackbarProvider(p: PropsWithChildren): React.ReactElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function useSnackbar(): SnackbarContext {
|
export function useSnackbar(): SnackbarContext {
|
||||||
return React.use(SnackbarContextK)!;
|
return React.useContext(SnackbarContextK)!;
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@ import React from "react";
|
|||||||
import ReactDOM from "react-dom/client";
|
import ReactDOM from "react-dom/client";
|
||||||
import { App } from "./App";
|
import { App } from "./App";
|
||||||
import "./index.css";
|
import "./index.css";
|
||||||
|
import reportWebVitals from "./reportWebVitals";
|
||||||
import { LoadServerConfig } from "./widgets/LoadServerConfig";
|
import { LoadServerConfig } from "./widgets/LoadServerConfig";
|
||||||
import { ThemeProvider, createTheme } from "@mui/material";
|
import { ThemeProvider, createTheme } from "@mui/material";
|
||||||
import { LoadingMessageProvider } from "./hooks/providers/LoadingMessageProvider";
|
import { LoadingMessageProvider } from "./hooks/providers/LoadingMessageProvider";
|
||||||
@ -21,7 +22,7 @@ const darkTheme = createTheme({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const root = ReactDOM.createRoot(
|
const root = ReactDOM.createRoot(
|
||||||
document.getElementById("root")!
|
document.getElementById("root") as HTMLElement
|
||||||
);
|
);
|
||||||
root.render(
|
root.render(
|
||||||
<React.StrictMode>
|
<React.StrictMode>
|
||||||
@ -40,3 +41,8 @@ root.render(
|
|||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
</React.StrictMode>
|
</React.StrictMode>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// If you want to start measuring performance in your app, pass a function
|
||||||
|
// to log results (for example: reportWebVitals(console.log))
|
||||||
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
||||||
|
reportWebVitals();
|
||||||
|
15
virtweb_frontend/src/reportWebVitals.ts
Normal file
15
virtweb_frontend/src/reportWebVitals.ts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import { ReportHandler } from 'web-vitals';
|
||||||
|
|
||||||
|
const reportWebVitals = (onPerfEntry?: ReportHandler) => {
|
||||||
|
if (onPerfEntry && onPerfEntry instanceof Function) {
|
||||||
|
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
|
||||||
|
getCLS(onPerfEntry);
|
||||||
|
getFID(onPerfEntry);
|
||||||
|
getFCP(onPerfEntry);
|
||||||
|
getLCP(onPerfEntry);
|
||||||
|
getTTFB(onPerfEntry);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export default reportWebVitals;
|
@ -116,7 +116,7 @@ function EditApiTokenRouteInner(p: {
|
|||||||
const [changed, setChanged] = React.useState(false);
|
const [changed, setChanged] = React.useState(false);
|
||||||
|
|
||||||
const [, updateState] = React.useState<any>();
|
const [, updateState] = React.useState<any>();
|
||||||
const forceUpdate = React.useCallback(() => { updateState({}); }, []);
|
const forceUpdate = React.useCallback(() => updateState({}), []);
|
||||||
|
|
||||||
const valueChanged = () => {
|
const valueChanged = () => {
|
||||||
setChanged(true);
|
setChanged(true);
|
||||||
|
@ -99,7 +99,7 @@ function EditNetworkFilterRouteInner(p: {
|
|||||||
const [changed, setChanged] = React.useState(false);
|
const [changed, setChanged] = React.useState(false);
|
||||||
|
|
||||||
const [, updateState] = React.useState<any>();
|
const [, updateState] = React.useState<any>();
|
||||||
const forceUpdate = React.useCallback(() => { updateState({}); }, []);
|
const forceUpdate = React.useCallback(() => updateState({}), []);
|
||||||
|
|
||||||
const valueChanged = () => {
|
const valueChanged = () => {
|
||||||
setChanged(true);
|
setChanged(true);
|
||||||
|
@ -97,7 +97,7 @@ function EditNetworkRouteInner(p: {
|
|||||||
const [changed, setChanged] = React.useState(false);
|
const [changed, setChanged] = React.useState(false);
|
||||||
|
|
||||||
const [, updateState] = React.useState<any>();
|
const [, updateState] = React.useState<any>();
|
||||||
const forceUpdate = React.useCallback(() => { updateState({}); }, []);
|
const forceUpdate = React.useCallback(() => updateState({}), []);
|
||||||
|
|
||||||
const valueChanged = () => {
|
const valueChanged = () => {
|
||||||
setChanged(true);
|
setChanged(true);
|
||||||
|
@ -15,7 +15,7 @@ export function CreateVMRoute(): React.ReactElement {
|
|||||||
const alert = useAlert();
|
const alert = useAlert();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const [vm, setVM] = React.useState(VMInfo.NewEmpty());
|
const [vm, setVM] = React.useState(VMInfo.NewEmpty);
|
||||||
|
|
||||||
const create = async (v: VMInfo) => {
|
const create = async (v: VMInfo) => {
|
||||||
try {
|
try {
|
||||||
@ -103,9 +103,7 @@ function EditVMInner(p: {
|
|||||||
const [changed, setChanged] = React.useState(false);
|
const [changed, setChanged] = React.useState(false);
|
||||||
|
|
||||||
const [, updateState] = React.useState<any>();
|
const [, updateState] = React.useState<any>();
|
||||||
const forceUpdate = React.useCallback(() => {
|
const forceUpdate = React.useCallback(() => updateState({}), []);
|
||||||
updateState({});
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const valueChanged = () => {
|
const valueChanged = () => {
|
||||||
setChanged(true);
|
setChanged(true);
|
||||||
|
@ -96,7 +96,7 @@ function UploadIsoFileCard(p: {
|
|||||||
p.onFileUploaded();
|
p.onFileUploaded();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
await alert(`Failed to perform file upload! ${e}`);
|
await alert("Failed to perform file upload! " + e);
|
||||||
}
|
}
|
||||||
|
|
||||||
setUploadProgress(null);
|
setUploadProgress(null);
|
||||||
@ -120,9 +120,7 @@ function UploadIsoFileCard(p: {
|
|||||||
value={value}
|
value={value}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
style={{ flex: 1 }}
|
style={{ flex: 1 }}
|
||||||
slotProps={{
|
inputProps={{ accept: ServerApi.Config.iso_mimetypes.join(",") }}
|
||||||
htmlInput: { accept: ServerApi.Config.iso_mimetypes.join(",") },
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{value && <Button onClick={upload}>Upload file</Button>}
|
{value && <Button onClick={upload}>Upload file</Button>}
|
||||||
@ -149,8 +147,6 @@ function UploadIsoFileFromUrlCard(p: {
|
|||||||
loadingMessage.show("Downloading file from URL...");
|
loadingMessage.show("Downloading file from URL...");
|
||||||
await IsoFilesApi.UploadFromURL(url, actualFileName);
|
await IsoFilesApi.UploadFromURL(url, actualFileName);
|
||||||
|
|
||||||
p.onFileUploaded();
|
|
||||||
|
|
||||||
setURL("");
|
setURL("");
|
||||||
setFilename(null);
|
setFilename(null);
|
||||||
snackbar("Successfully downloaded file!");
|
snackbar("Successfully downloaded file!");
|
||||||
@ -168,18 +164,14 @@ function UploadIsoFileFromUrlCard(p: {
|
|||||||
label="URL"
|
label="URL"
|
||||||
value={url}
|
value={url}
|
||||||
style={{ flex: 3 }}
|
style={{ flex: 3 }}
|
||||||
onChange={(e) => {
|
onChange={(e) => setURL(e.target.value)}
|
||||||
setURL(e.target.value);
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
<span style={{ width: "10px" }}></span>
|
<span style={{ width: "10px" }}></span>
|
||||||
<TextField
|
<TextField
|
||||||
label="Filename"
|
label="Filename"
|
||||||
value={actualFileName}
|
value={actualFileName}
|
||||||
style={{ flex: 2 }}
|
style={{ flex: 2 }}
|
||||||
onChange={(e) => {
|
onChange={(e) => setFilename(e.target.value)}
|
||||||
setFilename(e.target.value);
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
{url !== "" && actualFileName !== "" && (
|
{url !== "" && actualFileName !== "" && (
|
||||||
<Button onClick={upload}>Upload file</Button>
|
<Button onClick={upload}>Upload file</Button>
|
||||||
@ -206,7 +198,7 @@ function IsoFilesList(p: {
|
|||||||
try {
|
try {
|
||||||
const blob = await IsoFilesApi.Download(entry, setDlProgress);
|
const blob = await IsoFilesApi.Download(entry, setDlProgress);
|
||||||
|
|
||||||
downloadBlob(blob, entry.filename);
|
await downloadBlob(blob, entry.filename);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
alert("Failed to download iso file!");
|
alert("Failed to download iso file!");
|
||||||
@ -244,7 +236,7 @@ function IsoFilesList(p: {
|
|||||||
</Typography>
|
</Typography>
|
||||||
);
|
);
|
||||||
|
|
||||||
const columns: GridColDef<IsoFile>[] = [
|
const columns: GridColDef[] = [
|
||||||
{ field: "filename", headerName: "File name", flex: 3 },
|
{ field: "filename", headerName: "File name", flex: 3 },
|
||||||
{
|
{
|
||||||
field: "size",
|
field: "size",
|
||||||
@ -309,6 +301,7 @@ function IsoFilesList(p: {
|
|||||||
getRowId={(c) => c.filename}
|
getRowId={(c) => c.filename}
|
||||||
rows={p.list}
|
rows={p.list}
|
||||||
columns={columns}
|
columns={columns}
|
||||||
|
autoHeight={true}
|
||||||
/>
|
/>
|
||||||
</VirtWebPaper>
|
</VirtWebPaper>
|
||||||
</>
|
</>
|
||||||
|
@ -66,7 +66,7 @@ function NetworkFiltersListRouteInner(p: {
|
|||||||
const onlyBuiltin = visibleFilters === VisibleFilters.Builtin;
|
const onlyBuiltin = visibleFilters === VisibleFilters.Builtin;
|
||||||
|
|
||||||
return p.list.filter((f) => NWFilterIsBuiltin(f) === onlyBuiltin);
|
return p.list.filter((f) => NWFilterIsBuiltin(f) === onlyBuiltin);
|
||||||
}, [visibleFilters, p.list]);
|
}, [visibleFilters]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<VirtWebRouteContainer
|
<VirtWebRouteContainer
|
||||||
@ -78,9 +78,7 @@ function NetworkFiltersListRouteInner(p: {
|
|||||||
size="small"
|
size="small"
|
||||||
value={visibleFilters}
|
value={visibleFilters}
|
||||||
exclusive
|
exclusive
|
||||||
onChange={(_ev, v) => {
|
onChange={(_ev, v) => setVisibleFilters(v)}
|
||||||
setVisibleFilters(v);
|
|
||||||
}}
|
|
||||||
aria-label="visible filters"
|
aria-label="visible filters"
|
||||||
>
|
>
|
||||||
<ToggleButton value={VisibleFilters.All}>All</ToggleButton>
|
<ToggleButton value={VisibleFilters.All}>All</ToggleButton>
|
||||||
@ -132,8 +130,8 @@ function NetworkFiltersListRouteInner(p: {
|
|||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
<ul>
|
<ul>
|
||||||
{t.join_filters.map((f) => (
|
{t.join_filters.map((f, n) => (
|
||||||
<li key={f}>{f}</li>
|
<li key={n}>{f}</li>
|
||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable react-x/no-array-index-key */
|
|
||||||
import {
|
import {
|
||||||
mdiHarddisk,
|
mdiHarddisk,
|
||||||
mdiInformation,
|
mdiInformation,
|
||||||
@ -9,6 +8,7 @@ import {
|
|||||||
import Icon from "@mdi/react";
|
import Icon from "@mdi/react";
|
||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
|
Grid,
|
||||||
LinearProgress,
|
LinearProgress,
|
||||||
Table,
|
Table,
|
||||||
TableBody,
|
TableBody,
|
||||||
@ -17,10 +17,7 @@ import {
|
|||||||
TableRow,
|
TableRow,
|
||||||
Typography,
|
Typography,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import Grid from "@mui/material/Grid";
|
|
||||||
import { PieChart } from "@mui/x-charts";
|
import { PieChart } from "@mui/x-charts";
|
||||||
import { filesize } from "filesize";
|
|
||||||
import humanizeDuration from "humanize-duration";
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import {
|
import {
|
||||||
DiskInfo,
|
DiskInfo,
|
||||||
@ -31,6 +28,8 @@ import {
|
|||||||
import { AsyncWidget } from "../widgets/AsyncWidget";
|
import { AsyncWidget } from "../widgets/AsyncWidget";
|
||||||
import { VirtWebPaper } from "../widgets/VirtWebPaper";
|
import { VirtWebPaper } from "../widgets/VirtWebPaper";
|
||||||
import { VirtWebRouteContainer } from "../widgets/VirtWebRouteContainer";
|
import { VirtWebRouteContainer } from "../widgets/VirtWebRouteContainer";
|
||||||
|
import humanizeDuration from "humanize-duration";
|
||||||
|
import { filesize } from "filesize";
|
||||||
|
|
||||||
export function SysInfoRoute(): React.ReactElement {
|
export function SysInfoRoute(): React.ReactElement {
|
||||||
const [info, setInfo] = React.useState<ServerSystemInfo>();
|
const [info, setInfo] = React.useState<ServerSystemInfo>();
|
||||||
@ -66,7 +65,7 @@ export function SysInfoRouteInner(p: {
|
|||||||
<VirtWebRouteContainer label="Sysinfo">
|
<VirtWebRouteContainer label="Sysinfo">
|
||||||
<Grid container spacing={2}>
|
<Grid container spacing={2}>
|
||||||
{/* Memory */}
|
{/* Memory */}
|
||||||
<Grid size={{ xs: 4 }}>
|
<Grid xs={4}>
|
||||||
<Box flexGrow={1}>
|
<Box flexGrow={1}>
|
||||||
<Typography style={{ textAlign: "center" }}>Memory</Typography>
|
<Typography style={{ textAlign: "center" }}>Memory</Typography>
|
||||||
<PieChart
|
<PieChart
|
||||||
@ -98,7 +97,7 @@ export function SysInfoRouteInner(p: {
|
|||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
{/* Disk usage */}
|
{/* Disk usage */}
|
||||||
<Grid size={{ xs: 4 }}>
|
<Grid xs={4}>
|
||||||
<Box flexGrow={1}>
|
<Box flexGrow={1}>
|
||||||
<Typography style={{ textAlign: "center" }}>Disk usage</Typography>
|
<Typography style={{ textAlign: "center" }}>Disk usage</Typography>
|
||||||
<PieChart
|
<PieChart
|
||||||
@ -126,7 +125,7 @@ export function SysInfoRouteInner(p: {
|
|||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
{/* CPU usage */}
|
{/* CPU usage */}
|
||||||
<Grid size={{ xs: 4 }}>
|
<Grid xs={4}>
|
||||||
<Box flexGrow={1}>
|
<Box flexGrow={1}>
|
||||||
<Typography style={{ textAlign: "center" }}>CPU usage</Typography>
|
<Typography style={{ textAlign: "center" }}>CPU usage</Typography>
|
||||||
<PieChart
|
<PieChart
|
||||||
@ -135,13 +134,13 @@ export function SysInfoRouteInner(p: {
|
|||||||
data: [
|
data: [
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
value: 100 - p.info.system.global_cpu_usage,
|
value: 100 - p.info.system.global_cpu_info.cpu_usage,
|
||||||
label: "Free",
|
label: "Free",
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
value: p.info.system.global_cpu_usage,
|
value: p.info.system.global_cpu_info.cpu_usage,
|
||||||
label: "Used",
|
label: "Used",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@ -181,18 +180,18 @@ export function SysInfoRouteInner(p: {
|
|||||||
label="CPU info"
|
label="CPU info"
|
||||||
icon={<Icon size={"1rem"} path={mdiMemory} />}
|
icon={<Icon size={"1rem"} path={mdiMemory} />}
|
||||||
entries={[
|
entries={[
|
||||||
{ label: "Brand", value: p.info.system.cpus[0].brand },
|
{ label: "Brand", value: p.info.system.global_cpu_info.brand },
|
||||||
{
|
{
|
||||||
label: "Vendor ID",
|
label: "Vendor ID",
|
||||||
value: p.info.system.cpus[0].vendor_id,
|
value: p.info.system.global_cpu_info.vendor_id,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "CPU usage",
|
label: "CPU usage",
|
||||||
value: p.info.system.cpus[0].cpu_usage,
|
value: p.info.system.global_cpu_info.cpu_usage,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Name",
|
label: "Name",
|
||||||
value: p.info.system.cpus[0].name,
|
value: p.info.system.global_cpu_info.name,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "CPU model",
|
label: "CPU model",
|
||||||
@ -237,7 +236,7 @@ export function SysInfoRouteInner(p: {
|
|||||||
function SysInfoDetailsTable(p: {
|
function SysInfoDetailsTable(p: {
|
||||||
label: string;
|
label: string;
|
||||||
icon: React.ReactElement;
|
icon: React.ReactElement;
|
||||||
entries: { label: string; value: string | number }[];
|
entries: Array<{ label: string; value: string | number }>;
|
||||||
}): React.ReactElement {
|
}): React.ReactElement {
|
||||||
return (
|
return (
|
||||||
<VirtWebPaper
|
<VirtWebPaper
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable react-x/no-array-index-key */
|
|
||||||
import VisibilityIcon from "@mui/icons-material/Visibility";
|
import VisibilityIcon from "@mui/icons-material/Visibility";
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
@ -100,9 +99,9 @@ export function TokensListRouteInner(p: {
|
|||||||
{t.max_inactivity && timeDiff(0, t.max_inactivity)}
|
{t.max_inactivity && timeDiff(0, t.max_inactivity)}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
{t.rights.map((r, n) => {
|
{t.rights.map((r) => {
|
||||||
return (
|
return (
|
||||||
<div key={n}>
|
<div>
|
||||||
{r.verb} {r.path}
|
{r.verb} {r.path}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
import KeyboardArrowDownIcon from "@mui/icons-material/KeyboardArrowDown";
|
|
||||||
import KeyboardArrowUpIcon from "@mui/icons-material/KeyboardArrowUp";
|
|
||||||
import VisibilityIcon from "@mui/icons-material/Visibility";
|
import VisibilityIcon from "@mui/icons-material/Visibility";
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
@ -9,7 +7,6 @@ import {
|
|||||||
TableBody,
|
TableBody,
|
||||||
TableCell,
|
TableCell,
|
||||||
TableContainer,
|
TableContainer,
|
||||||
TableFooter,
|
|
||||||
TableHead,
|
TableHead,
|
||||||
TableRow,
|
TableRow,
|
||||||
Tooltip,
|
Tooltip,
|
||||||
@ -17,27 +14,19 @@ import {
|
|||||||
import { filesize } from "filesize";
|
import { filesize } from "filesize";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { GroupApi } from "../api/GroupApi";
|
import { VMApi, VMInfo } from "../api/VMApi";
|
||||||
import { VMApi, VMInfo, VMState } from "../api/VMApi";
|
|
||||||
import { AsyncWidget } from "../widgets/AsyncWidget";
|
import { AsyncWidget } from "../widgets/AsyncWidget";
|
||||||
import { RouterLink } from "../widgets/RouterLink";
|
import { RouterLink } from "../widgets/RouterLink";
|
||||||
import { VirtWebRouteContainer } from "../widgets/VirtWebRouteContainer";
|
import { VirtWebRouteContainer } from "../widgets/VirtWebRouteContainer";
|
||||||
import { VMStatusWidget } from "../widgets/vms/VMStatusWidget";
|
import { VMStatusWidget } from "../widgets/vms/VMStatusWidget";
|
||||||
|
|
||||||
export function VMListRoute(): React.ReactElement {
|
export function VMListRoute(): React.ReactElement {
|
||||||
const [groups, setGroups] = React.useState<(string | undefined)[]>();
|
|
||||||
const [list, setList] = React.useState<VMInfo[] | undefined>();
|
const [list, setList] = React.useState<VMInfo[] | undefined>();
|
||||||
|
|
||||||
const loadKey = React.useRef(1);
|
const loadKey = React.useRef(1);
|
||||||
|
|
||||||
const load = async () => {
|
const load = async () => {
|
||||||
const groups: (string | undefined)[] = await GroupApi.GetList();
|
setList(await VMApi.GetList());
|
||||||
const list = await VMApi.GetList();
|
|
||||||
|
|
||||||
if (list.find((v) => !v.group) !== undefined) groups.push(undefined);
|
|
||||||
|
|
||||||
setGroups(groups);
|
|
||||||
setList(list);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const reload = () => {
|
const reload = () => {
|
||||||
@ -62,7 +51,7 @@ export function VMListRoute(): React.ReactElement {
|
|||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<VMListWidget list={list!} groups={groups!} onReload={reload} />
|
<VMListWidget list={list!} onReload={reload} />
|
||||||
</VirtWebRouteContainer>
|
</VirtWebRouteContainer>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
@ -70,37 +59,11 @@ export function VMListRoute(): React.ReactElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function VMListWidget(p: {
|
function VMListWidget(p: {
|
||||||
groups: (string | undefined)[];
|
|
||||||
list: VMInfo[];
|
list: VMInfo[];
|
||||||
onReload: () => void;
|
onReload: () => void;
|
||||||
}): React.ReactElement {
|
}): React.ReactElement {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const [hiddenGroups, setHiddenGroups] = React.useState<
|
|
||||||
Set<string | undefined>
|
|
||||||
>(new Set());
|
|
||||||
|
|
||||||
const [runningVMs, setRunningVMs] = React.useState<Set<string>>(new Set());
|
|
||||||
|
|
||||||
const toggleHiddenGroup = (g: string | undefined) => {
|
|
||||||
if (hiddenGroups.has(g)) hiddenGroups.delete(g);
|
|
||||||
else hiddenGroups.add(g);
|
|
||||||
|
|
||||||
setHiddenGroups(new Set([...hiddenGroups]));
|
|
||||||
};
|
|
||||||
|
|
||||||
const updateVMState = (v: VMInfo, s: VMState) => {
|
|
||||||
const running = s !== "Shutoff";
|
|
||||||
if (runningVMs.has(v.name) === running) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (running) runningVMs.add(v.name);
|
|
||||||
else runningVMs.delete(v.name);
|
|
||||||
|
|
||||||
setRunningVMs(new Set([...runningVMs]));
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<TableContainer component={Paper}>
|
<TableContainer component={Paper}>
|
||||||
<Table>
|
<Table>
|
||||||
@ -109,41 +72,12 @@ function VMListWidget(p: {
|
|||||||
<TableCell>Name</TableCell>
|
<TableCell>Name</TableCell>
|
||||||
<TableCell>Description</TableCell>
|
<TableCell>Description</TableCell>
|
||||||
<TableCell>Memory</TableCell>
|
<TableCell>Memory</TableCell>
|
||||||
<TableCell>vCPU</TableCell>
|
|
||||||
<TableCell>Status</TableCell>
|
<TableCell>Status</TableCell>
|
||||||
<TableCell>Actions</TableCell>
|
<TableCell>Actions</TableCell>
|
||||||
</TableRow>
|
</TableRow>
|
||||||
</TableHead>
|
</TableHead>
|
||||||
<TableBody>
|
<TableBody>
|
||||||
{p.groups.map((g) => (
|
{p.list.map((row) => (
|
||||||
<React.Fragment key={g}>
|
|
||||||
{p.groups.length > 1 && (
|
|
||||||
<TableRow>
|
|
||||||
<TableCell
|
|
||||||
style={{ paddingBottom: 2, paddingTop: 2 }}
|
|
||||||
colSpan={6}
|
|
||||||
>
|
|
||||||
<IconButton
|
|
||||||
size="small"
|
|
||||||
onClick={() => {
|
|
||||||
toggleHiddenGroup(g);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{!hiddenGroups.has(g) ? (
|
|
||||||
<KeyboardArrowUpIcon />
|
|
||||||
) : (
|
|
||||||
<KeyboardArrowDownIcon />
|
|
||||||
)}
|
|
||||||
</IconButton>
|
|
||||||
{g ?? "default"}
|
|
||||||
</TableCell>
|
|
||||||
</TableRow>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{!hiddenGroups.has(g) &&
|
|
||||||
p.list
|
|
||||||
.filter((row) => row.group === g)
|
|
||||||
.map((row) => (
|
|
||||||
<TableRow
|
<TableRow
|
||||||
hover
|
hover
|
||||||
key={row.name}
|
key={row.name}
|
||||||
@ -154,15 +88,9 @@ function VMListWidget(p: {
|
|||||||
{row.name}
|
{row.name}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell>{row.description ?? ""}</TableCell>
|
<TableCell>{row.description ?? ""}</TableCell>
|
||||||
<TableCell>{vmMemoryToHuman(row.memory)}</TableCell>
|
<TableCell>{filesize(row.memory * 1000 * 1000)}</TableCell>
|
||||||
<TableCell>{row.number_vcpu}</TableCell>
|
|
||||||
<TableCell>
|
<TableCell>
|
||||||
<VMStatusWidget
|
<VMStatusWidget vm={row} />
|
||||||
vm={row}
|
|
||||||
onChange={(s) => {
|
|
||||||
updateVMState(row, s);
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
<Tooltip title="View this VM">
|
<Tooltip title="View this VM">
|
||||||
@ -175,38 +103,8 @@ function VMListWidget(p: {
|
|||||||
</TableCell>
|
</TableCell>
|
||||||
</TableRow>
|
</TableRow>
|
||||||
))}
|
))}
|
||||||
</React.Fragment>
|
|
||||||
))}
|
|
||||||
</TableBody>
|
</TableBody>
|
||||||
<TableFooter>
|
|
||||||
<TableRow>
|
|
||||||
<TableCell></TableCell>
|
|
||||||
<TableCell></TableCell>
|
|
||||||
<TableCell>
|
|
||||||
{vmMemoryToHuman(
|
|
||||||
p.list
|
|
||||||
.filter((v) => runningVMs.has(v.name))
|
|
||||||
.reduce((s, v) => s + v.memory, 0)
|
|
||||||
)}
|
|
||||||
{" / "}
|
|
||||||
{vmMemoryToHuman(p.list.reduce((s, v) => s + v.memory, 0))}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell>
|
|
||||||
{p.list
|
|
||||||
.filter((v) => runningVMs.has(v.name))
|
|
||||||
.reduce((s, v) => s + v.number_vcpu, 0)}
|
|
||||||
{" / "}
|
|
||||||
{p.list.reduce((s, v) => s + v.number_vcpu, 0)}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell></TableCell>
|
|
||||||
<TableCell></TableCell>
|
|
||||||
</TableRow>
|
|
||||||
</TableFooter>
|
|
||||||
</Table>
|
</Table>
|
||||||
</TableContainer>
|
</TableContainer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function vmMemoryToHuman(size: number): string {
|
|
||||||
return filesize(size * 1000 * 1000);
|
|
||||||
}
|
|
||||||
|
@ -1,16 +1,17 @@
|
|||||||
import ArrowBackIcon from "@mui/icons-material/ArrowBack";
|
import ArrowBackIcon from "@mui/icons-material/ArrowBack";
|
||||||
import FullscreenIcon from "@mui/icons-material/Fullscreen";
|
import FullscreenIcon from "@mui/icons-material/Fullscreen";
|
||||||
import FullscreenExitIcon from "@mui/icons-material/FullscreenExit";
|
import FullscreenExitIcon from "@mui/icons-material/FullscreenExit";
|
||||||
import KeyboardAltIcon from "@mui/icons-material/KeyboardAlt";
|
|
||||||
import { IconButton, Tooltip } from "@mui/material";
|
import { IconButton, Tooltip } from "@mui/material";
|
||||||
import React, { useEffect } from "react";
|
import React, { useEffect } from "react";
|
||||||
import { useNavigate, useParams } from "react-router-dom";
|
import { useNavigate, useParams } from "react-router-dom";
|
||||||
import { VncScreen, VncScreenHandle } from "react-vnc";
|
import { VncScreen } from "react-vnc";
|
||||||
import { ServerApi } from "../api/ServerApi";
|
import { ServerApi } from "../api/ServerApi";
|
||||||
import { VMApi, VMInfo } from "../api/VMApi";
|
import { VMApi, VMInfo } from "../api/VMApi";
|
||||||
import { useSnackbar } from "../hooks/providers/SnackbarProvider";
|
import { useSnackbar } from "../hooks/providers/SnackbarProvider";
|
||||||
import { time } from "../utils/DateUtils";
|
import { time } from "../utils/DateUtils";
|
||||||
import { AsyncWidget } from "../widgets/AsyncWidget";
|
import { AsyncWidget } from "../widgets/AsyncWidget";
|
||||||
|
import RFB from "react-vnc/dist/types/noVNC/core/rfb";
|
||||||
|
import KeyboardAltIcon from "@mui/icons-material/KeyboardAlt";
|
||||||
|
|
||||||
interface VNCTokenInfo {
|
interface VNCTokenInfo {
|
||||||
url: string;
|
url: string;
|
||||||
@ -42,10 +43,9 @@ function VNCInner(p: { vm: VMInfo }): React.ReactElement {
|
|||||||
|
|
||||||
const [token, setToken] = React.useState<VNCTokenInfo | undefined>();
|
const [token, setToken] = React.useState<VNCTokenInfo | undefined>();
|
||||||
const [counter, setCounter] = React.useState(1);
|
const [counter, setCounter] = React.useState(1);
|
||||||
const [connected, setConnected] = React.useState(false);
|
const [rfb, setRFB] = React.useState<RFB | undefined>();
|
||||||
|
|
||||||
const vncRef = React.useRef<HTMLDivElement>(null);
|
const vncRef = React.createRef<HTMLDivElement>();
|
||||||
const vncScreenRef = React.useRef<VncScreenHandle>(null);
|
|
||||||
|
|
||||||
const connect = async (force: boolean) => {
|
const connect = async (force: boolean) => {
|
||||||
try {
|
try {
|
||||||
@ -71,7 +71,7 @@ function VNCInner(p: { vm: VMInfo }): React.ReactElement {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const disconnected = () => {
|
const disconnected = () => {
|
||||||
setConnected(false);
|
setRFB(undefined);
|
||||||
connect(true);
|
connect(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -91,9 +91,7 @@ function VNCInner(p: { vm: VMInfo }): React.ReactElement {
|
|||||||
connect(false);
|
connect(false);
|
||||||
|
|
||||||
if (vncRef.current) {
|
if (vncRef.current) {
|
||||||
vncRef.current.onfullscreenchange = () => {
|
vncRef.current.onfullscreenchange = () => setCounter(counter + 1);
|
||||||
setCounter(counter + 1);
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -120,9 +118,9 @@ function VNCInner(p: { vm: VMInfo }): React.ReactElement {
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Keystrokes */}
|
{/* Keystrokes */}
|
||||||
{connected && (
|
{rfb && (
|
||||||
<Tooltip title="Send Ctrl+Alt+Del">
|
<Tooltip title="Send Ctrl+Alt+Del">
|
||||||
<IconButton onClick={() => vncScreenRef.current?.sendCtrlAltDel()}>
|
<IconButton onClick={() => rfb?.sendCtrlAltDel()}>
|
||||||
<KeyboardAltIcon />
|
<KeyboardAltIcon />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
@ -139,15 +137,12 @@ function VNCInner(p: { vm: VMInfo }): React.ReactElement {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<VncScreen
|
<VncScreen
|
||||||
ref={vncScreenRef}
|
|
||||||
url={token.url}
|
url={token.url}
|
||||||
onDisconnect={() => {
|
onDisconnect={() => {
|
||||||
console.info("VNC disconnected " + token.url);
|
console.info("VNC disconnected " + token?.url);
|
||||||
disconnected();
|
disconnected();
|
||||||
}}
|
}}
|
||||||
onConnect={() => {
|
onConnect={(rfb) => setRFB(rfb)}
|
||||||
setConnected(true);
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import VisibilityIcon from '@mui/icons-material/Visibility';
|
import { Visibility, VisibilityOff } from "@mui/icons-material";
|
||||||
import VisibilityOffIcon from '@mui/icons-material/VisibilityOff';
|
|
||||||
import {
|
import {
|
||||||
Alert,
|
Alert,
|
||||||
CircularProgress,
|
CircularProgress,
|
||||||
@ -36,7 +35,7 @@ export function LoginRoute(): React.ReactElement {
|
|||||||
const canSubmit = username.length > 0 && password.length > 0;
|
const canSubmit = username.length > 0 && password.length > 0;
|
||||||
|
|
||||||
const [showPassword, setShowPassword] = React.useState(false);
|
const [showPassword, setShowPassword] = React.useState(false);
|
||||||
const handleClickShowPassword = () => { setShowPassword((show) => !show); };
|
const handleClickShowPassword = () => setShowPassword((show) => !show);
|
||||||
|
|
||||||
const handleMouseDownPassword = (
|
const handleMouseDownPassword = (
|
||||||
event: React.MouseEvent<HTMLButtonElement>
|
event: React.MouseEvent<HTMLButtonElement>
|
||||||
@ -105,7 +104,7 @@ export function LoginRoute(): React.ReactElement {
|
|||||||
label="Username"
|
label="Username"
|
||||||
name="username"
|
name="username"
|
||||||
value={username}
|
value={username}
|
||||||
onChange={(e) => { setUsername(e.target.value); }}
|
onChange={(e) => setUsername(e.target.value)}
|
||||||
autoComplete="username"
|
autoComplete="username"
|
||||||
autoFocus
|
autoFocus
|
||||||
/>
|
/>
|
||||||
@ -120,7 +119,7 @@ export function LoginRoute(): React.ReactElement {
|
|||||||
type={showPassword ? "text" : "password"}
|
type={showPassword ? "text" : "password"}
|
||||||
id="password"
|
id="password"
|
||||||
value={password}
|
value={password}
|
||||||
onChange={(e) => { setPassword(e.target.value); }}
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
autoComplete="current-password"
|
autoComplete="current-password"
|
||||||
endAdornment={
|
endAdornment={
|
||||||
<InputAdornment position="end">
|
<InputAdornment position="end">
|
||||||
@ -131,7 +130,7 @@ export function LoginRoute(): React.ReactElement {
|
|||||||
onMouseDown={handleMouseDownPassword}
|
onMouseDown={handleMouseDownPassword}
|
||||||
edge="end"
|
edge="end"
|
||||||
>
|
>
|
||||||
{showPassword ? <VisibilityOffIcon /> : <VisibilityIcon />}
|
{showPassword ? <VisibilityOff /> : <Visibility />}
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</InputAdornment>
|
</InputAdornment>
|
||||||
|
5
virtweb_frontend/src/setupTests.ts
Normal file
5
virtweb_frontend/src/setupTests.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
||||||
|
// allows you to do things like:
|
||||||
|
// expect(element).toHaveTextContent(/react/i)
|
||||||
|
// learn more: https://github.com/testing-library/jest-dom
|
||||||
|
import '@testing-library/jest-dom';
|
@ -1,4 +1,4 @@
|
|||||||
export function downloadBlob(blob: Blob, filename: string) {
|
export async function downloadBlob(blob: Blob, filename: string) {
|
||||||
const url = URL.createObjectURL(blob);
|
const url = URL.createObjectURL(blob);
|
||||||
|
|
||||||
const link = document.createElement("a");
|
const link = document.createElement("a");
|
||||||
|
@ -2,9 +2,8 @@
|
|||||||
* Generate a random MAC address
|
* Generate a random MAC address
|
||||||
*/
|
*/
|
||||||
export function randomMacAddress(prefix: string | undefined): string {
|
export function randomMacAddress(prefix: string | undefined): string {
|
||||||
prefix = prefix ?? "";
|
|
||||||
let mac = "XX:XX:XX:XX:XX:XX";
|
let mac = "XX:XX:XX:XX:XX:XX";
|
||||||
mac = prefix + mac.slice(prefix.length);
|
mac = prefix + mac.slice(prefix?.length);
|
||||||
|
|
||||||
return mac.replace(/X/g, () =>
|
return mac.replace(/X/g, () =>
|
||||||
"0123456789abcdef".charAt(Math.floor(Math.random() * 16))
|
"0123456789abcdef".charAt(Math.floor(Math.random() * 16))
|
||||||
|
@ -19,7 +19,7 @@ export function AsyncWidget(p: {
|
|||||||
}): React.ReactElement {
|
}): React.ReactElement {
|
||||||
const [state, setState] = useState(State.Loading);
|
const [state, setState] = useState(State.Loading);
|
||||||
|
|
||||||
const counter = useRef<any>(null);
|
const counter = useRef<any | null>(null);
|
||||||
|
|
||||||
const load = async () => {
|
const load = async () => {
|
||||||
try {
|
try {
|
||||||
@ -67,7 +67,7 @@ export function AsyncWidget(p: {
|
|||||||
|
|
||||||
<Button onClick={load}>Try again</Button>
|
<Button onClick={load}>Try again</Button>
|
||||||
|
|
||||||
{p.errAdditionalElement?.()}
|
{p.errAdditionalElement && p.errAdditionalElement()}
|
||||||
</Box>
|
</Box>
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -13,9 +13,11 @@ import {
|
|||||||
List,
|
List,
|
||||||
ListItemButton,
|
ListItemButton,
|
||||||
ListItemIcon,
|
ListItemIcon,
|
||||||
ListItemText
|
ListItemSecondaryAction,
|
||||||
|
ListItemText,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import { Outlet, useLocation } from "react-router-dom";
|
import { Outlet, useLocation } from "react-router-dom";
|
||||||
|
import { isDebug } from "../utils/DebugUtils";
|
||||||
import { RouterLink } from "./RouterLink";
|
import { RouterLink } from "./RouterLink";
|
||||||
import { VirtWebAppBar } from "./VirtWebAppBar";
|
import { VirtWebAppBar } from "./VirtWebAppBar";
|
||||||
|
|
||||||
@ -94,6 +96,7 @@ function NavLink(p: {
|
|||||||
icon: React.ReactElement;
|
icon: React.ReactElement;
|
||||||
uri: string;
|
uri: string;
|
||||||
label: string;
|
label: string;
|
||||||
|
secondaryAction?: React.ReactElement;
|
||||||
}): React.ReactElement {
|
}): React.ReactElement {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
return (
|
return (
|
||||||
@ -101,6 +104,9 @@ function NavLink(p: {
|
|||||||
<ListItemButton selected={p.uri === location.pathname}>
|
<ListItemButton selected={p.uri === location.pathname}>
|
||||||
<ListItemIcon>{p.icon}</ListItemIcon>
|
<ListItemIcon>{p.icon}</ListItemIcon>
|
||||||
<ListItemText primary={p.label} />
|
<ListItemText primary={p.label} />
|
||||||
|
{p.secondaryAction && (
|
||||||
|
<ListItemSecondaryAction>{p.secondaryAction}</ListItemSecondaryAction>
|
||||||
|
)}
|
||||||
</ListItemButton>
|
</ListItemButton>
|
||||||
</RouterLink>
|
</RouterLink>
|
||||||
);
|
);
|
||||||
|
@ -38,7 +38,10 @@ export function BaseLoginPage() {
|
|||||||
<Grid container component="main" sx={{ height: "100vh" }}>
|
<Grid container component="main" sx={{ height: "100vh" }}>
|
||||||
<CssBaseline />
|
<CssBaseline />
|
||||||
<Grid
|
<Grid
|
||||||
size={{ xs: false, sm: 4, md: 7 }}
|
item
|
||||||
|
xs={false}
|
||||||
|
sm={4}
|
||||||
|
md={7}
|
||||||
sx={{
|
sx={{
|
||||||
backgroundImage: "url(/login_splash.jpg)",
|
backgroundImage: "url(/login_splash.jpg)",
|
||||||
backgroundRepeat: "no-repeat",
|
backgroundRepeat: "no-repeat",
|
||||||
@ -50,12 +53,7 @@ export function BaseLoginPage() {
|
|||||||
backgroundPosition: "center",
|
backgroundPosition: "center",
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Grid
|
<Grid item xs={12} sm={8} md={5} component={Paper} elevation={6} square>
|
||||||
size={{ xs: 12, sm: 8, md: 5 }}
|
|
||||||
component={Paper}
|
|
||||||
elevation={6}
|
|
||||||
square
|
|
||||||
>
|
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
my: 8,
|
my: 8,
|
||||||
|
@ -31,16 +31,14 @@ export function ConfigImportExportButtons(p: {
|
|||||||
fileEl.click();
|
fileEl.click();
|
||||||
|
|
||||||
// Wait for a file to be chosen
|
// Wait for a file to be chosen
|
||||||
await new Promise((res) => {
|
await new Promise((res, _rej) =>
|
||||||
fileEl.addEventListener("change", () => {
|
fileEl.addEventListener("change", () => res(null))
|
||||||
res(null);
|
);
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
if ((fileEl.files?.length ?? 0) === 0) return null;
|
if ((fileEl.files?.length ?? 0) === 0) return null;
|
||||||
|
|
||||||
// Import conf
|
// Import conf
|
||||||
const file = fileEl.files![0];
|
let file = fileEl.files![0];
|
||||||
const content = await file.text();
|
const content = await file.text();
|
||||||
p.importConf?.(JSON.parse(content));
|
p.importConf?.(JSON.parse(content));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
@ -23,7 +23,7 @@ export function StateActionButton<S>(p: {
|
|||||||
p.onExecuted();
|
p.onExecuted();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
alert(`Failed to perform action! ${e}`);
|
alert("Failed to perform action! " + e);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable react-x/no-array-index-key */
|
|
||||||
import { Box, Tab, Tabs } from "@mui/material";
|
import { Box, Tab, Tabs } from "@mui/material";
|
||||||
|
|
||||||
export interface TabWidgetOption<E> {
|
export interface TabWidgetOption<E> {
|
||||||
@ -25,9 +24,7 @@ export function TabsWidget<E>(p: {
|
|||||||
<Box sx={{ borderBottom: 1, borderColor: "divider" }}>
|
<Box sx={{ borderBottom: 1, borderColor: "divider" }}>
|
||||||
<Tabs
|
<Tabs
|
||||||
value={currTabIndex}
|
value={currTabIndex}
|
||||||
onChange={(_ev, newVal) => {
|
onChange={(_ev, newVal) => updateActiveTab(newVal)}
|
||||||
updateActiveTab(newVal);
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
{activeOptions.map((o, index) => (
|
{activeOptions.map((o, index) => (
|
||||||
<Tab key={index} label={o.label} style={{ color: o.color }} />
|
<Tab key={index} label={o.label} style={{ color: o.color }} />
|
||||||
|
@ -17,7 +17,7 @@ export function CheckboxInput(p: {
|
|||||||
<Checkbox
|
<Checkbox
|
||||||
disabled={!p.editable}
|
disabled={!p.editable}
|
||||||
checked={p.checked}
|
checked={p.checked}
|
||||||
onChange={(e) => { p.onValueChange(e.target.checked); }}
|
onChange={(e) => p.onValueChange(e.target.checked)}
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
label={p.label}
|
label={p.label}
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
/* eslint-disable @typescript-eslint/prefer-nullish-coalescing */
|
import { Grid, Paper, Typography } from "@mui/material";
|
||||||
import { Paper, Typography } from "@mui/material";
|
|
||||||
import React, { PropsWithChildren } from "react";
|
import React, { PropsWithChildren } from "react";
|
||||||
import Grid from "@mui/material/Grid";
|
|
||||||
|
|
||||||
export function EditSection(
|
export function EditSection(
|
||||||
p: {
|
p: {
|
||||||
@ -11,7 +9,7 @@ export function EditSection(
|
|||||||
} & PropsWithChildren
|
} & PropsWithChildren
|
||||||
): React.ReactElement {
|
): React.ReactElement {
|
||||||
return (
|
return (
|
||||||
<Grid size={{ sm: 12, md: p.fullWidth ? 12 : 6 }}>
|
<Grid item sm={12} md={p.fullWidth ? 12 : 6}>
|
||||||
<Paper style={{ margin: "10px", padding: "10px" }}>
|
<Paper style={{ margin: "10px", padding: "10px" }}>
|
||||||
{(p.title || p.actions) && (
|
{(p.title || p.actions) && (
|
||||||
<span
|
<span
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { TextInput } from "./TextInput";
|
import { TextInput } from "./TextInput";
|
||||||
|
|
||||||
@ -33,7 +32,7 @@ export function IPInputWithMask(p: {
|
|||||||
|
|
||||||
const currValue =
|
const currValue =
|
||||||
p.ipAndMask ??
|
p.ipAndMask ??
|
||||||
`${p.ip ?? ""}${p.mask || showSlash.current ? "/" : ""}${p.mask ?? ""}`;
|
(p.ip ?? "") + (p.mask || showSlash.current ? "/" : "") + (p.mask ?? "");
|
||||||
|
|
||||||
const { onValueChange, ...props } = p;
|
const { onValueChange, ...props } = p;
|
||||||
return (
|
return (
|
||||||
@ -45,7 +44,7 @@ export function IPInputWithMask(p: {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const split = v.split("/");
|
const split = v?.split("/");
|
||||||
const ip =
|
const ip =
|
||||||
p.version === 4 ? sanitizeIpV4(split[0]) : sanitizeIpV6(split[0]);
|
p.version === 4 ? sanitizeIpV4(split[0]) : sanitizeIpV6(split[0]);
|
||||||
let mask = undefined;
|
let mask = undefined;
|
||||||
@ -70,7 +69,7 @@ export function IPInputWithMask(p: {
|
|||||||
function sanitizeIpV4(s: string | undefined): string | undefined {
|
function sanitizeIpV4(s: string | undefined): string | undefined {
|
||||||
if (s === "" || s === undefined) return s;
|
if (s === "" || s === undefined) return s;
|
||||||
|
|
||||||
const split = s.split(".");
|
let split = s.split(".");
|
||||||
if (split.length > 4) split.splice(4);
|
if (split.length > 4) split.splice(4);
|
||||||
|
|
||||||
let needAnotherIteration = false;
|
let needAnotherIteration = false;
|
||||||
@ -107,7 +106,7 @@ function sanitizeIpV6(s: string | undefined): string | undefined {
|
|||||||
const num = parseInt(e, 16);
|
const num = parseInt(e, 16);
|
||||||
if (isNaN(num)) return "0";
|
if (isNaN(num)) return "0";
|
||||||
|
|
||||||
const s = num.toString(16);
|
let s = num.toString(16);
|
||||||
if (num > 0xffff) {
|
if (num > 0xffff) {
|
||||||
needAnotherIteration = true;
|
needAnotherIteration = true;
|
||||||
return s.slice(0, 4) + ":" + s.slice(4);
|
return s.slice(0, 4) + ":" + s.slice(4);
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
|
||||||
import { TextInput } from "./TextInput";
|
import { TextInput } from "./TextInput";
|
||||||
|
|
||||||
export function MACInput(p: {
|
export function MACInput(p: {
|
||||||
@ -33,7 +32,7 @@ function sanitizeMacAddress(s: string | undefined): string | undefined {
|
|||||||
const num = parseInt(e, 16);
|
const num = parseInt(e, 16);
|
||||||
if (isNaN(num)) return "0";
|
if (isNaN(num)) return "0";
|
||||||
|
|
||||||
const s = num.toString(16).padStart(2, "0");
|
let s = num.toString(16).padStart(2, "0");
|
||||||
if (num > 0xff) {
|
if (num > 0xff) {
|
||||||
needAnotherIteration = true;
|
needAnotherIteration = true;
|
||||||
return s.slice(0, 2) + ":" + s.slice(2);
|
return s.slice(0, 2) + ":" + s.slice(2);
|
||||||
|
@ -12,7 +12,7 @@ export function NWFConnStateInput(p: {
|
|||||||
label="Connection state"
|
label="Connection state"
|
||||||
value={p.value}
|
value={p.value}
|
||||||
onValueChange={(s) => {
|
onValueChange={(s) => {
|
||||||
p.onChange(s as any);
|
p.onChange?.(s as any);
|
||||||
}}
|
}}
|
||||||
options={[
|
options={[
|
||||||
{ label: "None", value: undefined },
|
{ label: "None", value: undefined },
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/* eslint-disable react-x/no-array-index-key */
|
|
||||||
/* eslint-disable react-hooks/exhaustive-deps */
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { NWFilter, NWFilterURL } from "../../api/NWFilterApi";
|
import { NWFilter, NWFilterURL } from "../../api/NWFilterApi";
|
||||||
|
@ -13,7 +13,7 @@ export function NWFilterPriorityInput(p: {
|
|||||||
value={p.value?.toString()}
|
value={p.value?.toString()}
|
||||||
type="number"
|
type="number"
|
||||||
onValueChange={(v) => {
|
onValueChange={(v) => {
|
||||||
p.onChange(v && v !== "" ? Number(v) : undefined);
|
p.onChange?.(v && v !== "" ? Number(v) : undefined);
|
||||||
}}
|
}}
|
||||||
size={ServerApi.Config.constraints.nwfilter_priority}
|
size={ServerApi.Config.constraints.nwfilter_priority}
|
||||||
helperText="A lower priority value is accessed before one with a higher value"
|
helperText="A lower priority value is accessed before one with a higher value"
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable react-x/no-array-index-key */
|
|
||||||
import ArrowDownwardIcon from "@mui/icons-material/ArrowDownward";
|
import ArrowDownwardIcon from "@mui/icons-material/ArrowDownward";
|
||||||
import ArrowUpwardIcon from "@mui/icons-material/ArrowUpward";
|
import ArrowUpwardIcon from "@mui/icons-material/ArrowUpward";
|
||||||
import DeleteIcon from "@mui/icons-material/Delete";
|
import DeleteIcon from "@mui/icons-material/Delete";
|
||||||
@ -67,19 +66,9 @@ export function NWFilterRules(p: {
|
|||||||
deleteRule(n);
|
deleteRule(n);
|
||||||
}}
|
}}
|
||||||
onGoDown={
|
onGoDown={
|
||||||
n < p.rules.length - 1
|
n < p.rules.length - 1 ? () => swapRules(n, n + 1) : undefined
|
||||||
? () => {
|
|
||||||
swapRules(n, n + 1);
|
|
||||||
}
|
|
||||||
: undefined
|
|
||||||
}
|
|
||||||
onGoUp={
|
|
||||||
n > 0
|
|
||||||
? () => {
|
|
||||||
swapRules(n, n - 1);
|
|
||||||
}
|
|
||||||
: undefined
|
|
||||||
}
|
}
|
||||||
|
onGoUp={n > 0 ? () => swapRules(n, n - 1) : undefined}
|
||||||
{...p}
|
{...p}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
@ -164,9 +153,7 @@ function NWRuleEdit(p: {
|
|||||||
editable={p.editable}
|
editable={p.editable}
|
||||||
onChange={p.onChange}
|
onChange={p.onChange}
|
||||||
selector={s}
|
selector={s}
|
||||||
onDelete={() => {
|
onDelete={() => deleteSelector(n)}
|
||||||
deleteSelector(n);
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</CardContent>
|
</CardContent>
|
||||||
|
@ -25,7 +25,9 @@ export function NWFilterSelectInput(p: {
|
|||||||
value={selectedValue}
|
value={selectedValue}
|
||||||
onDelete={p.editable ? () => p.onChange?.(undefined) : undefined}
|
onDelete={p.editable ? () => p.onChange?.(undefined) : undefined}
|
||||||
onClick={
|
onClick={
|
||||||
!p.editable ? () => navigate(NWFilterURL(selectedValue)) : undefined
|
!p.editable && selectedValue
|
||||||
|
? () => navigate(NWFilterURL(selectedValue))
|
||||||
|
: undefined
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
@ -46,7 +48,7 @@ export function NWFilterSelectInput(p: {
|
|||||||
renderInput={(params) => (
|
renderInput={(params) => (
|
||||||
<TextField {...params} variant="standard" label={p.label} />
|
<TextField {...params} variant="standard" label={p.label} />
|
||||||
)}
|
)}
|
||||||
renderOption={(_props, option) => (
|
renderOption={(_props, option, _state) => (
|
||||||
<NWFilterItem
|
<NWFilterItem
|
||||||
dense
|
dense
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
/* eslint-disable react-x/no-array-index-key */
|
|
||||||
import { mdiIp } from "@mdi/js";
|
import { mdiIp } from "@mdi/js";
|
||||||
import Icon from "@mdi/react";
|
import Icon from "@mdi/react";
|
||||||
import DeleteIcon from "@mui/icons-material/Delete";
|
import DeleteIcon from "@mui/icons-material/Delete";
|
||||||
import {
|
import {
|
||||||
Avatar,
|
Avatar,
|
||||||
Button,
|
Button,
|
||||||
|
Grid,
|
||||||
IconButton,
|
IconButton,
|
||||||
ListItem,
|
ListItem,
|
||||||
ListItemAvatar,
|
ListItemAvatar,
|
||||||
@ -19,7 +19,6 @@ import { useConfirm } from "../../hooks/providers/ConfirmDialogProvider";
|
|||||||
import { IPInput } from "./IPInput";
|
import { IPInput } from "./IPInput";
|
||||||
import { MACInput } from "./MACInput";
|
import { MACInput } from "./MACInput";
|
||||||
import { TextInput } from "./TextInput";
|
import { TextInput } from "./TextInput";
|
||||||
import Grid from "@mui/material/Grid";
|
|
||||||
|
|
||||||
export function NetDHCPHostReservations(p: {
|
export function NetDHCPHostReservations(p: {
|
||||||
editable: boolean;
|
editable: boolean;
|
||||||
@ -40,7 +39,7 @@ export function NetDHCPHostReservations(p: {
|
|||||||
<>
|
<>
|
||||||
<Grid container>
|
<Grid container>
|
||||||
{p.dhcp.hosts.map((h, num) => (
|
{p.dhcp.hosts.map((h, num) => (
|
||||||
<Grid key={num} size={{ sm: 12, md: 6 }} style={{ padding: "10px" }}>
|
<Grid key={num} sm={12} md={6} item style={{ padding: "10px" }}>
|
||||||
<HostReservationWidget
|
<HostReservationWidget
|
||||||
key={num}
|
key={num}
|
||||||
{...p}
|
{...p}
|
||||||
@ -131,7 +130,7 @@ function HostReservationWidget(p: {
|
|||||||
value={p.host.mac}
|
value={p.host.mac}
|
||||||
onValueChange={(v) => {
|
onValueChange={(v) => {
|
||||||
p.host.mac = v!;
|
p.host.mac = v!;
|
||||||
p.onChange();
|
p.onChange?.();
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
@ -143,7 +142,7 @@ function HostReservationWidget(p: {
|
|||||||
value={p.host.ip}
|
value={p.host.ip}
|
||||||
onValueChange={(v) => {
|
onValueChange={(v) => {
|
||||||
p.host.ip = v!;
|
p.host.ip = v!;
|
||||||
p.onChange();
|
p.onChange?.();
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -5,11 +5,11 @@ import {
|
|||||||
Card,
|
Card,
|
||||||
CardActions,
|
CardActions,
|
||||||
CardContent,
|
CardContent,
|
||||||
|
Grid,
|
||||||
IconButton,
|
IconButton,
|
||||||
Tooltip,
|
Tooltip,
|
||||||
Typography,
|
Typography,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import Grid from "@mui/material/Grid";
|
|
||||||
import React, { PropsWithChildren } from "react";
|
import React, { PropsWithChildren } from "react";
|
||||||
import { NatEntry } from "../../api/NetworksApi";
|
import { NatEntry } from "../../api/NetworksApi";
|
||||||
import { ServerApi } from "../../api/ServerApi";
|
import { ServerApi } from "../../api/ServerApi";
|
||||||
@ -54,7 +54,6 @@ export function NetNatConfiguration(p: {
|
|||||||
<>
|
<>
|
||||||
{p.nat.map((e, num) => (
|
{p.nat.map((e, num) => (
|
||||||
<NatEntryForm
|
<NatEntryForm
|
||||||
// eslint-disable-next-line react-x/no-array-index-key
|
|
||||||
key={num}
|
key={num}
|
||||||
{...p}
|
{...p}
|
||||||
entry={e}
|
entry={e}
|
||||||
@ -296,7 +295,7 @@ function NATEntryProp(
|
|||||||
p: PropsWithChildren<{ label?: string }>
|
p: PropsWithChildren<{ label?: string }>
|
||||||
): React.ReactElement {
|
): React.ReactElement {
|
||||||
return (
|
return (
|
||||||
<Grid size={{ sm: 12, md: 6 }} style={{ padding: "20px" }}>
|
<Grid item sm={12} md={6} style={{ padding: "20px" }}>
|
||||||
{p.label && (
|
{p.label && (
|
||||||
<Typography variant="h6" style={{ marginBottom: "10px" }}>
|
<Typography variant="h6" style={{ marginBottom: "10px" }}>
|
||||||
{p.label}
|
{p.label}
|
||||||
|
@ -12,7 +12,7 @@ export function PortInput(p: {
|
|||||||
value={p.value?.toString() ?? ""}
|
value={p.value?.toString() ?? ""}
|
||||||
type="number"
|
type="number"
|
||||||
onValueChange={(v) => {
|
onValueChange={(v) => {
|
||||||
p.onChange(sanitizePort(v));
|
p.onChange?.(sanitizePort(v));
|
||||||
}}
|
}}
|
||||||
checkValue={(v) => Number(v) <= 65535}
|
checkValue={(v) => Number(v) <= 65535}
|
||||||
/>
|
/>
|
||||||
|
@ -24,13 +24,10 @@ export function RadioGroupInput(p: {
|
|||||||
<RadioGroup
|
<RadioGroup
|
||||||
row
|
row
|
||||||
value={p.value}
|
value={p.value}
|
||||||
onChange={(_ev, v) => {
|
onChange={(_ev, v) => p.onValueChange?.(v)}
|
||||||
p.onValueChange(v);
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
{p.options.map((o) => (
|
{p.options.map((o) => (
|
||||||
<FormControlLabel
|
<FormControlLabel
|
||||||
key={o.value}
|
|
||||||
disabled={!p.editable}
|
disabled={!p.editable}
|
||||||
value={o.value}
|
value={o.value}
|
||||||
control={<Radio />}
|
control={<Radio />}
|
||||||
|
@ -33,7 +33,7 @@ export function SelectInput(p: {
|
|||||||
<Select
|
<Select
|
||||||
value={p.value ?? ""}
|
value={p.value ?? ""}
|
||||||
label={p.label}
|
label={p.label}
|
||||||
onChange={(e) => { p.onValueChange(e.target.value); }}
|
onChange={(e) => p.onValueChange(e.target.value)}
|
||||||
>
|
>
|
||||||
{p.options.map((e) => (
|
{p.options.map((e) => (
|
||||||
<MenuItem
|
<MenuItem
|
||||||
|
@ -2,7 +2,7 @@ import { TextField } from "@mui/material";
|
|||||||
import { LenConstraint } from "../../api/ServerApi";
|
import { LenConstraint } from "../../api/ServerApi";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Text input property edition
|
* Couple / Member property edition
|
||||||
*/
|
*/
|
||||||
export function TextInput(p: {
|
export function TextInput(p: {
|
||||||
label?: string;
|
label?: string;
|
||||||
@ -42,14 +42,12 @@ export function TextInput(p: {
|
|||||||
e.target.value.length === 0 ? undefined : e.target.value
|
e.target.value.length === 0 ? undefined : e.target.value
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
slotProps={{
|
inputProps={{
|
||||||
htmlInput: {
|
|
||||||
maxLength: p.size?.max,
|
maxLength: p.size?.max,
|
||||||
},
|
}}
|
||||||
input: {
|
InputProps={{
|
||||||
readOnly: !p.editable,
|
readOnly: !p.editable,
|
||||||
type: p.type,
|
type: p.type,
|
||||||
},
|
|
||||||
}}
|
}}
|
||||||
variant={"standard"}
|
variant={"standard"}
|
||||||
style={p.style ?? { width: "100%", marginBottom: "15px" }}
|
style={p.style ?? { width: "100%", marginBottom: "15px" }}
|
||||||
|
@ -40,7 +40,6 @@ export function VMDisksList(p: {
|
|||||||
{/* disks list */}
|
{/* disks list */}
|
||||||
{p.vm.disks.map((d, num) => (
|
{p.vm.disks.map((d, num) => (
|
||||||
<DiskInfo
|
<DiskInfo
|
||||||
// eslint-disable-next-line react-x/no-array-index-key
|
|
||||||
key={num}
|
key={num}
|
||||||
editable={p.editable}
|
editable={p.editable}
|
||||||
disk={d}
|
disk={d}
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable react-x/no-array-index-key */
|
|
||||||
import DeleteIcon from "@mui/icons-material/Delete";
|
import DeleteIcon from "@mui/icons-material/Delete";
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
|
@ -1,17 +1,16 @@
|
|||||||
/* eslint-disable react-x/no-array-index-key */
|
|
||||||
import { mdiNetworkOutline } from "@mdi/js";
|
import { mdiNetworkOutline } from "@mdi/js";
|
||||||
import Icon from "@mdi/react";
|
import Icon from "@mdi/react";
|
||||||
import DeleteIcon from "@mui/icons-material/Delete";
|
import DeleteIcon from "@mui/icons-material/Delete";
|
||||||
import {
|
import {
|
||||||
Avatar,
|
Avatar,
|
||||||
Button,
|
Button,
|
||||||
|
Grid,
|
||||||
IconButton,
|
IconButton,
|
||||||
ListItem,
|
ListItem,
|
||||||
ListItemAvatar,
|
ListItemAvatar,
|
||||||
ListItemText,
|
ListItemText,
|
||||||
Tooltip,
|
Tooltip,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import Grid from "@mui/material/Grid";
|
|
||||||
import { NWFilter } from "../../api/NWFilterApi";
|
import { NWFilter } from "../../api/NWFilterApi";
|
||||||
import { NetworkInfo } from "../../api/NetworksApi";
|
import { NetworkInfo } from "../../api/NetworksApi";
|
||||||
import { ServerApi } from "../../api/ServerApi";
|
import { ServerApi } from "../../api/ServerApi";
|
||||||
@ -52,6 +51,7 @@ export function VMNetworksList(p: {
|
|||||||
{p.vm.networks.map((n, num) => (
|
{p.vm.networks.map((n, num) => (
|
||||||
<EditSection key={num}>
|
<EditSection key={num}>
|
||||||
<NetworkInfoWidget
|
<NetworkInfoWidget
|
||||||
|
key={num}
|
||||||
network={n}
|
network={n}
|
||||||
removeFromList={() => {
|
removeFromList={() => {
|
||||||
p.vm.networks.splice(num, 1);
|
p.vm.networks.splice(num, 1);
|
||||||
|
@ -19,7 +19,7 @@ export function VMSelectIsoInput(p: {
|
|||||||
attachedISOs: string[];
|
attachedISOs: string[];
|
||||||
onChange: (newVal: string[]) => void;
|
onChange: (newVal: string[]) => void;
|
||||||
}): React.ReactElement {
|
}): React.ReactElement {
|
||||||
if (p.attachedISOs.length === 0 && !p.editable) return <></>;
|
if (!p.attachedISOs && !p.editable) return <></>;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@ -27,7 +27,7 @@ export function VMSelectIsoInput(p: {
|
|||||||
const iso = p.isoList.find((d) => d.filename === isoName);
|
const iso = p.isoList.find((d) => d.filename === isoName);
|
||||||
return (
|
return (
|
||||||
<ListItem
|
<ListItem
|
||||||
key={isoName}
|
key={num}
|
||||||
secondaryAction={
|
secondaryAction={
|
||||||
p.editable && (
|
p.editable && (
|
||||||
<IconButton
|
<IconButton
|
||||||
@ -73,7 +73,8 @@ export function VMSelectIsoInput(p: {
|
|||||||
label: `${i.filename} ${filesize(i.size)}`,
|
label: `${i.filename} ${filesize(i.size)}`,
|
||||||
value: i.filename,
|
value: i.filename,
|
||||||
};
|
};
|
||||||
})}
|
})
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { Button, Checkbox } from "@mui/material";
|
import { Button, Checkbox, Grid } from "@mui/material";
|
||||||
import Grid from "@mui/material/Grid";
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { IpConfig, NetworkApi, NetworkInfo } from "../../api/NetworksApi";
|
import { IpConfig, NetworkApi, NetworkInfo } from "../../api/NetworksApi";
|
||||||
@ -25,7 +24,7 @@ interface DetailsProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function NetworkDetails(p: DetailsProps): React.ReactElement {
|
export function NetworkDetails(p: DetailsProps): React.ReactElement {
|
||||||
const [nicsList, setNicsList] = React.useState<string[] | undefined>();
|
const [nicsList, setNicsList] = React.useState<string[] | any>();
|
||||||
|
|
||||||
const load = async () => {
|
const load = async () => {
|
||||||
setNicsList(await ServerApi.GetNetworksList());
|
setNicsList(await ServerApi.GetNetworksList());
|
||||||
@ -36,7 +35,7 @@ export function NetworkDetails(p: DetailsProps): React.ReactElement {
|
|||||||
loadKey={"1"}
|
loadKey={"1"}
|
||||||
load={load}
|
load={load}
|
||||||
errMsg="Failed to load the list of host network cards!"
|
errMsg="Failed to load the list of host network cards!"
|
||||||
build={() => <NetworkDetailsInner nicsList={nicsList!} {...p} />}
|
build={() => <NetworkDetailsInner nicsList={nicsList} {...p} />}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -260,7 +259,7 @@ function IPSection(p: {
|
|||||||
const confirm = useConfirm();
|
const confirm = useConfirm();
|
||||||
|
|
||||||
const toggleNetwork = async () => {
|
const toggleNetwork = async () => {
|
||||||
if (p.config) {
|
if (!!p.config) {
|
||||||
if (
|
if (
|
||||||
!(await confirm(
|
!(await confirm(
|
||||||
`Do you really want to disable IPv${p.version} on this network? Specific configuration will be deleted!`
|
`Do you really want to disable IPv${p.version} on this network? Specific configuration will be deleted!`
|
||||||
@ -268,11 +267,11 @@ function IPSection(p: {
|
|||||||
)
|
)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
p.onChange(undefined);
|
p.onChange?.(undefined);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
p.onChange({
|
p.onChange?.({
|
||||||
bridge_address: p.version === 4 ? "192.168.1.1" : "fd00::1",
|
bridge_address: p.version === 4 ? "192.168.1.1" : "fd00::1",
|
||||||
prefix: p.version === 4 ? 24 : 8,
|
prefix: p.version === 4 ? 24 : 8,
|
||||||
});
|
});
|
||||||
@ -298,7 +297,7 @@ function IPSection(p: {
|
|||||||
p.config!.dhcp = undefined;
|
p.config!.dhcp = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
p.onChange(p.config);
|
p.onChange?.(p.config);
|
||||||
};
|
};
|
||||||
|
|
||||||
const toggleNAT = async (v: boolean) => {
|
const toggleNAT = async (v: boolean) => {
|
||||||
@ -306,7 +305,7 @@ function IPSection(p: {
|
|||||||
p.config!.nat = [];
|
p.config!.nat = [];
|
||||||
} else {
|
} else {
|
||||||
if (
|
if (
|
||||||
(p.config?.nat?.length ?? 0) > 0 &&
|
(p.config?.nat?.length ?? 0 > 0) &&
|
||||||
!(await confirm(
|
!(await confirm(
|
||||||
`Do you really want to disable IPv${p.version} NAT port forwarding on this network? Specific configuration will be deleted!`
|
`Do you really want to disable IPv${p.version} NAT port forwarding on this network? Specific configuration will be deleted!`
|
||||||
))
|
))
|
||||||
@ -315,7 +314,7 @@ function IPSection(p: {
|
|||||||
p.config!.nat = undefined;
|
p.config!.nat = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
p.onChange(p.config);
|
p.onChange?.(p.config);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!p.config && !p.editable) return <></>;
|
if (!p.config && !p.editable) return <></>;
|
||||||
@ -338,10 +337,10 @@ function IPSection(p: {
|
|||||||
editable={p.editable}
|
editable={p.editable}
|
||||||
label="Bridge address"
|
label="Bridge address"
|
||||||
version={p.version}
|
version={p.version}
|
||||||
value={p.config.bridge_address}
|
value={p.config?.bridge_address}
|
||||||
onValueChange={(v) => {
|
onValueChange={(v) => {
|
||||||
p.config!.bridge_address = v ?? "";
|
p.config!.bridge_address = v ?? "";
|
||||||
p.onChange(p.config);
|
p.onChange?.(p.config);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@ -352,7 +351,7 @@ function IPSection(p: {
|
|||||||
type="number"
|
type="number"
|
||||||
onValueChange={(v) => {
|
onValueChange={(v) => {
|
||||||
p.config!.prefix = Number(v);
|
p.config!.prefix = Number(v);
|
||||||
p.onChange(p.config);
|
p.onChange?.(p.config);
|
||||||
}}
|
}}
|
||||||
size={
|
size={
|
||||||
p.version === 4 ? { min: 0, max: 32 } : { min: 0, max: 128 }
|
p.version === 4 ? { min: 0, max: 32 } : { min: 0, max: 128 }
|
||||||
@ -407,7 +406,7 @@ function IPSection(p: {
|
|||||||
dhcp={p.config.dhcp}
|
dhcp={p.config.dhcp}
|
||||||
onChange={(d) => {
|
onChange={(d) => {
|
||||||
p.config!.dhcp = d;
|
p.config!.dhcp = d;
|
||||||
p.onChange(p.config);
|
p.onChange?.(p.config);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</EditSection>
|
</EditSection>
|
||||||
@ -431,7 +430,7 @@ function IPSection(p: {
|
|||||||
nat={p.config.nat}
|
nat={p.config.nat}
|
||||||
onChange={(n) => {
|
onChange={(n) => {
|
||||||
p.config!.nat = n;
|
p.config!.nat = n;
|
||||||
p.onChange(p.config);
|
p.onChange?.(p.config);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
@ -29,13 +29,13 @@ export function NetworkStatusWidget(p: {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const changedAction = () => { setState(undefined); };
|
const changedAction = () => setState(undefined);
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
refresh();
|
refresh();
|
||||||
const i = setInterval(() => refresh(), 3000);
|
const i = setInterval(() => refresh(), 3000);
|
||||||
|
|
||||||
return () => { clearInterval(i); };
|
return () => clearInterval(i);
|
||||||
});
|
});
|
||||||
|
|
||||||
if (state === undefined)
|
if (state === undefined)
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { Button } from "@mui/material";
|
import { Button, Grid } from "@mui/material";
|
||||||
import Grid from "@mui/material/Grid";
|
|
||||||
import React, { ReactElement } from "react";
|
import React, { ReactElement } from "react";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import {
|
import {
|
||||||
@ -7,7 +6,6 @@ import {
|
|||||||
NWFilterApi,
|
NWFilterApi,
|
||||||
NWFilterIsBuiltin,
|
NWFilterIsBuiltin,
|
||||||
} from "../../api/NWFilterApi";
|
} from "../../api/NWFilterApi";
|
||||||
import { ServerApi } from "../../api/ServerApi";
|
|
||||||
import { useAlert } from "../../hooks/providers/AlertDialogProvider";
|
import { useAlert } from "../../hooks/providers/AlertDialogProvider";
|
||||||
import { useConfirm } from "../../hooks/providers/ConfirmDialogProvider";
|
import { useConfirm } from "../../hooks/providers/ConfirmDialogProvider";
|
||||||
import { useSnackbar } from "../../hooks/providers/SnackbarProvider";
|
import { useSnackbar } from "../../hooks/providers/SnackbarProvider";
|
||||||
@ -15,11 +13,12 @@ import { AsyncWidget } from "../AsyncWidget";
|
|||||||
import { TabsWidget } from "../TabsWidget";
|
import { TabsWidget } from "../TabsWidget";
|
||||||
import { XMLAsyncWidget } from "../XMLWidget";
|
import { XMLAsyncWidget } from "../XMLWidget";
|
||||||
import { EditSection } from "../forms/EditSection";
|
import { EditSection } from "../forms/EditSection";
|
||||||
import { NWFSelectReferencedFilters } from "../forms/NWFSelectReferencedFilters";
|
|
||||||
import { NWFilterPriorityInput } from "../forms/NWFilterPriorityInput";
|
|
||||||
import { NWFilterRules } from "../forms/NWFilterRules";
|
|
||||||
import { SelectInput } from "../forms/SelectInput";
|
|
||||||
import { TextInput } from "../forms/TextInput";
|
import { TextInput } from "../forms/TextInput";
|
||||||
|
import { ServerApi } from "../../api/ServerApi";
|
||||||
|
import { SelectInput } from "../forms/SelectInput";
|
||||||
|
import { NWFSelectReferencedFilters } from "../forms/NWFSelectReferencedFilters";
|
||||||
|
import { NWFilterRules } from "../forms/NWFilterRules";
|
||||||
|
import { NWFilterPriorityInput } from "../forms/NWFilterPriorityInput";
|
||||||
|
|
||||||
interface DetailsProps {
|
interface DetailsProps {
|
||||||
nwfilter: NWFilter;
|
nwfilter: NWFilter;
|
||||||
@ -28,9 +27,7 @@ interface DetailsProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function NWFilterDetails(p: DetailsProps): ReactElement {
|
export function NWFilterDetails(p: DetailsProps): ReactElement {
|
||||||
const [nwFiltersList, setNwFiltersList] = React.useState<
|
const [nwFiltersList, setNwFiltersList] = React.useState<NWFilter[] | any>();
|
||||||
NWFilter[] | undefined
|
|
||||||
>();
|
|
||||||
|
|
||||||
const load = async () => {
|
const load = async () => {
|
||||||
setNwFiltersList(await NWFilterApi.GetList());
|
setNwFiltersList(await NWFilterApi.GetList());
|
||||||
@ -42,7 +39,7 @@ export function NWFilterDetails(p: DetailsProps): ReactElement {
|
|||||||
load={load}
|
load={load}
|
||||||
errMsg="Failed to load the list of network filters!"
|
errMsg="Failed to load the list of network filters!"
|
||||||
build={() => (
|
build={() => (
|
||||||
<NetworkFilterDetailsInner nwFiltersList={nwFiltersList!} {...p} />
|
<NetworkFilterDetailsInner nwFiltersList={nwFiltersList} {...p} />
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
@ -118,7 +115,7 @@ function NetworkFilterDetailsTabGeneral(
|
|||||||
p.nwfilter.name = v ?? "";
|
p.nwfilter.name = v ?? "";
|
||||||
p.onChange?.();
|
p.onChange?.();
|
||||||
}}
|
}}
|
||||||
checkValue={(v) => /^[a-zA-Z0-9_-]+$/.test(v)}
|
checkValue={(v) => /^[a-zA-Z0-9\_\-]+$/.test(v)}
|
||||||
size={ServerApi.Config.constraints.nwfilter_name_size}
|
size={ServerApi.Config.constraints.nwfilter_name_size}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import { Button } from "@mui/material";
|
import { Button, Grid } from "@mui/material";
|
||||||
import Grid from "@mui/material/Grid";
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { GroupApi } from "../../api/GroupApi";
|
|
||||||
import { NWFilter, NWFilterApi } from "../../api/NWFilterApi";
|
import { NWFilter, NWFilterApi } from "../../api/NWFilterApi";
|
||||||
import { NetworkApi, NetworkInfo } from "../../api/NetworksApi";
|
import { NetworkApi, NetworkInfo } from "../../api/NetworksApi";
|
||||||
import { ServerApi } from "../../api/ServerApi";
|
import { ServerApi } from "../../api/ServerApi";
|
||||||
@ -36,14 +34,12 @@ interface DetailsProps {
|
|||||||
|
|
||||||
export function APITokenDetails(p: DetailsProps): React.ReactElement {
|
export function APITokenDetails(p: DetailsProps): React.ReactElement {
|
||||||
const [vms, setVMs] = React.useState<VMInfo[]>();
|
const [vms, setVMs] = React.useState<VMInfo[]>();
|
||||||
const [groups, setGroups] = React.useState<string[]>();
|
|
||||||
const [networks, setNetworks] = React.useState<NetworkInfo[]>();
|
const [networks, setNetworks] = React.useState<NetworkInfo[]>();
|
||||||
const [nwFilters, setNetworkFilters] = React.useState<NWFilter[]>();
|
const [nwFilters, setNetworkFilters] = React.useState<NWFilter[]>();
|
||||||
const [tokens, setTokens] = React.useState<APIToken[]>();
|
const [tokens, setTokens] = React.useState<APIToken[]>();
|
||||||
|
|
||||||
const load = async () => {
|
const load = async () => {
|
||||||
setVMs(await VMApi.GetList());
|
setVMs(await VMApi.GetList());
|
||||||
setGroups(await GroupApi.GetList());
|
|
||||||
setNetworks(await NetworkApi.GetList());
|
setNetworks(await NetworkApi.GetList());
|
||||||
setNetworkFilters(await NWFilterApi.GetList());
|
setNetworkFilters(await NWFilterApi.GetList());
|
||||||
setTokens(await TokensApi.GetList());
|
setTokens(await TokensApi.GetList());
|
||||||
@ -57,7 +53,6 @@ export function APITokenDetails(p: DetailsProps): React.ReactElement {
|
|||||||
build={() => (
|
build={() => (
|
||||||
<APITokenDetailsInner
|
<APITokenDetailsInner
|
||||||
vms={vms!}
|
vms={vms!}
|
||||||
groups={groups!}
|
|
||||||
networks={networks!}
|
networks={networks!}
|
||||||
nwFilters={nwFilters!}
|
nwFilters={nwFilters!}
|
||||||
tokens={tokens!}
|
tokens={tokens!}
|
||||||
@ -77,7 +72,6 @@ enum TokenTab {
|
|||||||
|
|
||||||
type DetailsInnerProps = DetailsProps & {
|
type DetailsInnerProps = DetailsProps & {
|
||||||
vms: VMInfo[];
|
vms: VMInfo[];
|
||||||
groups: string[];
|
|
||||||
networks: NetworkInfo[];
|
networks: NetworkInfo[];
|
||||||
nwFilters: NWFilter[];
|
nwFilters: NWFilter[];
|
||||||
tokens: APIToken[];
|
tokens: APIToken[];
|
||||||
@ -161,14 +155,14 @@ function APITokenTabGeneral(p: DetailsInnerProps): React.ReactElement {
|
|||||||
{p.status === TokenWidgetStatus.Create && (
|
{p.status === TokenWidgetStatus.Create && (
|
||||||
<RadioGroupInput
|
<RadioGroupInput
|
||||||
{...p}
|
{...p}
|
||||||
editable={true}
|
editable={p.status === TokenWidgetStatus.Create}
|
||||||
options={[
|
options={[
|
||||||
{ label: "IPv4", value: "4" },
|
{ label: "IPv4", value: "4" },
|
||||||
{ label: "IPv6", value: "6" },
|
{ label: "IPv6", value: "6" },
|
||||||
]}
|
]}
|
||||||
value={ipVersion.toString()}
|
value={ipVersion.toString()}
|
||||||
onValueChange={(v) => {
|
onValueChange={(v) => {
|
||||||
setIpVersion(Number(v) as 4 | 6);
|
setIpVersion(Number(v) as any);
|
||||||
}}
|
}}
|
||||||
label="Token IP restriction version"
|
label="Token IP restriction version"
|
||||||
/>
|
/>
|
||||||
|
@ -63,7 +63,6 @@ export function TokenRawRightsEditor(p: {
|
|||||||
</TableHead>
|
</TableHead>
|
||||||
<TableBody>
|
<TableBody>
|
||||||
{p.token.rights.map((r, num) => (
|
{p.token.rights.map((r, num) => (
|
||||||
// eslint-disable-next-line react-x/no-array-index-key
|
|
||||||
<TableRow key={num} hover>
|
<TableRow key={num} hover>
|
||||||
<TableCell style={{ width: "100px" }}>
|
<TableCell style={{ width: "100px" }}>
|
||||||
<SelectInput
|
<SelectInput
|
||||||
@ -96,11 +95,7 @@ export function TokenRawRightsEditor(p: {
|
|||||||
</TableCell>
|
</TableCell>
|
||||||
{p.editable && (
|
{p.editable && (
|
||||||
<TableCell style={{ width: "100px" }}>
|
<TableCell style={{ width: "100px" }}>
|
||||||
<IconButton
|
<IconButton onClick={() => deleteRule(num)}>
|
||||||
onClick={() => {
|
|
||||||
deleteRule(num);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Tooltip title="Remove the rule">
|
<Tooltip title="Remove the rule">
|
||||||
<DeleteIcon />
|
<DeleteIcon />
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user