Compare commits
135 Commits
20230104
...
b351954e10
Author | SHA1 | Date | |
---|---|---|---|
b351954e10 | |||
75b8c1d9e9 | |||
557fb7d97b | |||
bb85e58008 | |||
b8c1375f4f | |||
a96f6f33df | |||
a55061a2cd | |||
e6d3dd926c | |||
95dc089943 | |||
dafef923f0 | |||
5095a701eb | |||
a157484105 | |||
0e4bf4414c | |||
0a2a9d66e1 | |||
c4ff5d0621 | |||
ff1391694d | |||
368ae4e89d | |||
a539c092f5 | |||
dbf44e6204 | |||
448b029c17 | |||
f06082ce82 | |||
272763bdc3 | |||
1dd2dfc684 | |||
b5cb76cd7d | |||
4f7161ae9e | |||
f3d184e06d | |||
12404cc9a0 | |||
0eabdec559 | |||
8646837035 | |||
a164c6adb5 | |||
7de2c01418 | |||
7f11076f45 | |||
3f32aab8bd | |||
275e706ee5 | |||
7608a7cb18 | |||
e6293e3015 | |||
a44bc0a4fc | |||
a2221b0903 | |||
6ab4111182 | |||
8fb044b61d | |||
06ec35e1e7 | |||
e94b08827c | |||
5d1ab3be67 | |||
383b29ce21 | |||
85c9e0f4c6 | |||
7e3c105d78 | |||
6a3f1f40f9 | |||
b33c660c3e | |||
cd04e04d34 | |||
7dfbed0186 | |||
3dbefc8d84 | |||
077b385c0f | |||
3f203966d4 | |||
0ab8b23de4 | |||
a18787efcb | |||
68465270bf | |||
b88eb08ec2 | |||
8995b5e874 | |||
9fe4c67aa0 | |||
d6e2a10e59 | |||
03c7dbc357 | |||
27f33038a9 | |||
57b0957d3e | |||
2174ececd1 | |||
a61b38b4d3 | |||
ea84ebdda7 | |||
a972ea51aa | |||
f89a4f4481 | |||
0e07ca6bd3 | |||
aaba9f2f80 | |||
0ba70330db | |||
bb55ec4cfe | |||
90f8b46c84 | |||
51b34131d2 | |||
06374dc5ea | |||
151c1fc157 | |||
696b09f508 | |||
270fe60c1d | |||
50a224c9f6 | |||
2efe5877a4 | |||
c1de6d9621 | |||
2ae2717a5b | |||
0a25dc5730 | |||
1d6d6e6796 | |||
4e8b79deca | |||
0ddc4362a0 | |||
9d423e3443 | |||
1c3d3d57a4 | |||
edbfe53d1a | |||
81c1044bae | |||
3777d73c50 | |||
9365e9afdf | |||
9d738285ab | |||
c7de64cc02 | |||
149e3f4d72 | |||
f1ba3bc5ab | |||
cea123f5b0 | |||
927414dbaf | |||
2ac16fd1cb | |||
59c64e4633 | |||
74924cff88 | |||
f0328a8912 | |||
afc1b5cca6 | |||
b0ca64b2ff | |||
d8e5aa17f3 | |||
9002b0c4b1 | |||
33eaaf2e6b | |||
bdb15e16af | |||
0ec491bf3e | |||
389d03e699 | |||
e2210d247a | |||
586a60ab96 | |||
104b369fdd | |||
c96b8cbad1 | |||
f16176e927 | |||
0c5a8d56c9 | |||
7428512222 | |||
759a9b2dbf | |||
1ed23317cb | |||
9b55f1f29c | |||
5d26426074 | |||
39ff53f2ba | |||
96d264d15f | |||
6c23951d74 | |||
6ea8a927a3 | |||
4d0b4929c5 | |||
d6c8964380 | |||
ed25eed31e | |||
6fdcc8c07c | |||
f82925dbcb | |||
71e22bc328 | |||
e86b29c03a | |||
672e866897 | |||
80ecb3c5d2 | |||
134e27feb6 |
52
.drone.yml
Normal file
52
.drone.yml
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: web_build
|
||||||
|
image: node:22
|
||||||
|
volumes:
|
||||||
|
- name: web_app
|
||||||
|
path: /tmp/web_build
|
||||||
|
commands:
|
||||||
|
- cd virtweb_frontend
|
||||||
|
- npm install
|
||||||
|
- npm run build
|
||||||
|
- mv dist /tmp/web_build
|
||||||
|
|
||||||
|
- name: backend_check
|
||||||
|
image: rust
|
||||||
|
volumes:
|
||||||
|
- name: rust_registry
|
||||||
|
path: /usr/local/cargo/registry
|
||||||
|
commands:
|
||||||
|
- apt update && apt install -y libvirt-dev
|
||||||
|
- rustup component add clippy
|
||||||
|
- cd virtweb_backend
|
||||||
|
- cargo clippy -- -D warnings
|
||||||
|
- cargo test
|
||||||
|
|
||||||
|
- name: backend_compile
|
||||||
|
image: rust
|
||||||
|
volumes:
|
||||||
|
- name: rust_registry
|
||||||
|
path: /usr/local/cargo/registry
|
||||||
|
- name: web_app
|
||||||
|
path: /tmp/web_build
|
||||||
|
depends_on:
|
||||||
|
- backend_check
|
||||||
|
- web_build
|
||||||
|
commands:
|
||||||
|
- apt update && apt install -y libvirt-dev
|
||||||
|
- cd virtweb_backend
|
||||||
|
- mv /tmp/web_build/dist static
|
||||||
|
- cargo build --release
|
||||||
|
- ls -lah target/release/virtweb_backend
|
||||||
|
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: rust_registry
|
||||||
|
temp: {}
|
||||||
|
- name: web_app
|
||||||
|
temp: {}
|
674
LICENSE
Normal file
674
LICENSE
Normal file
@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
19
README.md
19
README.md
@ -1,8 +1,23 @@
|
|||||||
# VirtWEB
|
# VirtWEB
|
||||||
WIP project
|
Open Source Web interface for LibVirt. Simplify the management of VM.
|
||||||
|
|
||||||
## Setup for dev
|
## Setup for dev
|
||||||
Please refer to this guide: [virtweb_docs/SETUP_DEV.md](virtweb_docs/SETUP_DEV.md)
|
Please refer to this guide: [virtweb_docs/SETUP_DEV.md](virtweb_docs/SETUP_DEV.md)
|
||||||
|
|
||||||
## Production requirements
|
## Production requirements
|
||||||
Please refer to this guide: [virtweb_docs/SETUP_PROD.md](virtweb_docs/SETUP_PROD.md)
|
Please refer to this guide: [virtweb_docs/SETUP_PROD.md](virtweb_docs/SETUP_PROD.md)
|
||||||
|
|
||||||
|
## Features
|
||||||
|
* Only Qemu / KVM is supported!
|
||||||
|
* Basic auth / OpenID auth
|
||||||
|
* Create, update & delete VM
|
||||||
|
* noVNC control of VMs
|
||||||
|
* Start, stop, suspend, resume, reset & kill VMs
|
||||||
|
* Create, update & delete networks
|
||||||
|
* Start & stop networks
|
||||||
|
* Create, update & delete network filters
|
||||||
|
* Upload ISO for easy VM installation
|
||||||
|
* API tokens for system interconnection
|
||||||
|
|
||||||
|
## Screenshot
|
||||||
|

|
||||||
|
9
renovate.json
Normal file
9
renovate.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"matchUpdateTypes": ["major", "minor", "patch"],
|
||||||
|
"automerge": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
1749
virtweb_backend/Cargo.lock
generated
1749
virtweb_backend/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -6,41 +6,43 @@ 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.19"
|
log = "0.4.21"
|
||||||
env_logger = "0.10.1"
|
env_logger = "0.11.3"
|
||||||
clap = { version = "4.4.11", features = ["derive", "env"] }
|
clap = { version = "4.5.4", features = ["derive", "env"] }
|
||||||
light-openid = { version = "1.0.1", features = ["crypto-wrapper"] }
|
light-openid = { version = "1.0.2", features = ["crypto-wrapper"] }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
actix = "0.13.1"
|
actix = "0.13.3"
|
||||||
actix-web = "4"
|
actix-web = "4.5.1"
|
||||||
actix-remote-ip = "0.1.0"
|
actix-remote-ip = "0.1.0"
|
||||||
actix-session = { version = "0.8.0", features = ["cookie-session"] }
|
actix-session = { version = "0.9.0", features = ["cookie-session"] }
|
||||||
actix-identity = "0.6.0"
|
actix-identity = "0.7.1"
|
||||||
actix-cors = "0.6.5"
|
actix-cors = "0.7.0"
|
||||||
actix-files = "0.6.2"
|
actix-files = "0.6.5"
|
||||||
actix-web-actors = "4.2.0"
|
actix-web-actors = "4.3.0"
|
||||||
actix-http = "3.4.0"
|
actix-http = "3.6.0"
|
||||||
serde = { version = "1.0.193", features = ["derive"] }
|
serde = { version = "1.0.199", features = ["derive"] }
|
||||||
serde_json = "1.0.108"
|
serde_json = "1.0.116"
|
||||||
quick-xml = { version = "0.31.0", features = ["serialize", "overlapped-lists"] }
|
quick-xml = { version = "0.34.0", features = ["serialize", "overlapped-lists"] }
|
||||||
futures-util = "0.3.28"
|
futures-util = "0.3.30"
|
||||||
anyhow = "1.0.75"
|
anyhow = "1.0.82"
|
||||||
actix-multipart = "0.6.1"
|
actix-multipart = "0.6.1"
|
||||||
tempfile = "3.8.1"
|
tempfile = "3.10.1"
|
||||||
reqwest = { version = "0.11.23", features = ["stream"] }
|
reqwest = { version = "0.12.4", features = ["stream"] }
|
||||||
url = "2.5.0"
|
url = "2.5.0"
|
||||||
virt = "0.3.1"
|
virt = "0.3.1"
|
||||||
sysinfo = { version = "0.29.11", features = ["serde"] }
|
sysinfo = { version = "0.30.11", features = ["serde"] }
|
||||||
uuid = { version = "1.6.1", features = ["v4", "serde"] }
|
uuid = { version = "1.8.0", features = ["v4", "serde"] }
|
||||||
lazy-regex = "3.1.0"
|
lazy-regex = "3.1.0"
|
||||||
thiserror = "1.0.51"
|
thiserror = "1.0.59"
|
||||||
image = "0.24.7"
|
image = "0.25.1"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
bytes = "1.5.0"
|
bytes = "1.6.0"
|
||||||
tokio = "1.35.0"
|
tokio = "1.37.0"
|
||||||
futures = "0.3.29"
|
futures = "0.3.30"
|
||||||
ipnetwork = "0.20.0"
|
ipnetwork = "0.20.0"
|
||||||
num = "0.4.1"
|
num = "0.4.2"
|
||||||
rust-embed = { version = "8.1.0" }
|
rust-embed = { version = "8.3.0" }
|
||||||
mime_guess = "2.0.4"
|
mime_guess = "2.0.4"
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
|
nix = { version = "0.28.0", features = ["net"] }
|
||||||
|
basic-jwt = "0.2.0"
|
@ -2,7 +2,7 @@ services:
|
|||||||
oidc:
|
oidc:
|
||||||
image: qlik/simple-oidc-provider
|
image: qlik/simple-oidc-provider
|
||||||
environment:
|
environment:
|
||||||
- REDIRECTS=http://localhost:3000/oidc_cb
|
- REDIRECTS=http://localhost:3000/oidc_cb,http://localhost:5173/oidc_cb
|
||||||
- PORT=9001
|
- PORT=9001
|
||||||
ports:
|
ports:
|
||||||
- 9001:9001
|
- 9001:9001
|
||||||
|
66
virtweb_backend/examples/api_curl.rs
Normal file
66
virtweb_backend/examples/api_curl.rs
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
use basic_jwt::JWTPrivateKey;
|
||||||
|
use clap::Parser;
|
||||||
|
use std::os::unix::prelude::CommandExt;
|
||||||
|
use std::process::Command;
|
||||||
|
use std::str::FromStr;
|
||||||
|
use virtweb_backend::api_tokens::TokenVerb;
|
||||||
|
use virtweb_backend::extractors::api_auth_extractor::TokenClaims;
|
||||||
|
use virtweb_backend::utils::time_utils::time;
|
||||||
|
|
||||||
|
/// cURL wrapper to query Virtweb backend API
|
||||||
|
#[derive(Parser, Debug)]
|
||||||
|
#[command(version, about, long_about = None)]
|
||||||
|
struct Args {
|
||||||
|
/// URL of VirtWeb
|
||||||
|
#[arg(short('u'), long, env, default_value = "http://localhost:8000")]
|
||||||
|
virtweb_url: String,
|
||||||
|
|
||||||
|
/// Token ID
|
||||||
|
#[arg(short('i'), long, env)]
|
||||||
|
token_id: String,
|
||||||
|
|
||||||
|
/// Token private key
|
||||||
|
#[arg(short('t'), long, env)]
|
||||||
|
token_key: String,
|
||||||
|
|
||||||
|
/// Request verb
|
||||||
|
#[arg(short('X'), long, default_value = "GET")]
|
||||||
|
verb: String,
|
||||||
|
|
||||||
|
/// Request URI
|
||||||
|
uri: String,
|
||||||
|
|
||||||
|
/// Command line arguments to pass to cURL
|
||||||
|
#[clap(trailing_var_arg = true, allow_hyphen_values = true)]
|
||||||
|
run: Vec<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let args = Args::parse();
|
||||||
|
|
||||||
|
let full_url = format!("{}{}", args.virtweb_url, args.uri);
|
||||||
|
log::debug!("Full URL: {full_url}");
|
||||||
|
|
||||||
|
let key = JWTPrivateKey::ES384 {
|
||||||
|
r#priv: args.token_key,
|
||||||
|
};
|
||||||
|
let claims = TokenClaims {
|
||||||
|
sub: args.token_id.to_string(),
|
||||||
|
iat: time() as usize,
|
||||||
|
exp: time() as usize + 50,
|
||||||
|
verb: TokenVerb::from_str(&args.verb).expect("Invalid request verb!"),
|
||||||
|
path: args.uri,
|
||||||
|
nonce: uuid::Uuid::new_v4().to_string(),
|
||||||
|
};
|
||||||
|
|
||||||
|
let jwt = key.sign_jwt(&claims).expect("Failed to sign JWT!");
|
||||||
|
|
||||||
|
Command::new("curl")
|
||||||
|
.args(["-X", &args.verb])
|
||||||
|
.args(["-H", &format!("x-token-id: {}", args.token_id)])
|
||||||
|
.args(["-H", &format!("x-token-content: {jwt}")])
|
||||||
|
.args(args.run)
|
||||||
|
.arg(full_url)
|
||||||
|
.exec();
|
||||||
|
panic!("Failed to run curl!")
|
||||||
|
}
|
@ -7,8 +7,9 @@ use crate::libvirt_rest_structures::hypervisor::*;
|
|||||||
use crate::libvirt_rest_structures::net::*;
|
use crate::libvirt_rest_structures::net::*;
|
||||||
use crate::libvirt_rest_structures::nw_filter::{NetworkFilter, NetworkFilterName};
|
use crate::libvirt_rest_structures::nw_filter::{NetworkFilter, NetworkFilterName};
|
||||||
use crate::libvirt_rest_structures::vm::*;
|
use crate::libvirt_rest_structures::vm::*;
|
||||||
|
use crate::nat::nat_lib;
|
||||||
use actix::{Actor, Context, Handler, Message};
|
use actix::{Actor, Context, Handler, Message};
|
||||||
use image::ImageOutputFormat;
|
use image::ImageFormat;
|
||||||
use std::io::Cursor;
|
use std::io::Cursor;
|
||||||
use virt::connect::Connect;
|
use virt::connect::Connect;
|
||||||
use virt::domain::Domain;
|
use virt::domain::Domain;
|
||||||
@ -336,7 +337,7 @@ impl Handler<ScreenshotDomainReq> for LibVirtActor {
|
|||||||
|
|
||||||
let image = image::load_from_memory(&screen_out)?;
|
let image = image::load_from_memory(&screen_out)?;
|
||||||
let mut png_out = Cursor::new(Vec::new());
|
let mut png_out = Cursor::new(Vec::new());
|
||||||
image.write_to(&mut png_out, ImageOutputFormat::Png)?;
|
image.write_to(&mut png_out, ImageFormat::Png)?;
|
||||||
|
|
||||||
Ok(png_out.into_inner())
|
Ok(png_out.into_inner())
|
||||||
}
|
}
|
||||||
@ -395,6 +396,9 @@ impl Handler<DefineNetwork> for LibVirtActor {
|
|||||||
let network = Network::define_xml(&self.m, &network_xml)?;
|
let network = Network::define_xml(&self.m, &network_xml)?;
|
||||||
let uuid = XMLUuid::parse_from_str(&network.get_uuid_string()?)?;
|
let uuid = XMLUuid::parse_from_str(&network.get_uuid_string()?)?;
|
||||||
|
|
||||||
|
// Save NAT definition
|
||||||
|
nat_lib::save_nat_def(&msg.0)?;
|
||||||
|
|
||||||
// Save a copy of the source definition
|
// Save a copy of the source definition
|
||||||
msg.0.uuid = Some(uuid);
|
msg.0.uuid = Some(uuid);
|
||||||
let json = serde_json::to_string(&msg.0)?;
|
let json = serde_json::to_string(&msg.0)?;
|
||||||
@ -464,9 +468,12 @@ impl Handler<DeleteNetwork> for LibVirtActor {
|
|||||||
fn handle(&mut self, msg: DeleteNetwork, _ctx: &mut Self::Context) -> Self::Result {
|
fn handle(&mut self, msg: DeleteNetwork, _ctx: &mut Self::Context) -> Self::Result {
|
||||||
log::debug!("Delete network: {}\n", msg.0.as_string());
|
log::debug!("Delete network: {}\n", msg.0.as_string());
|
||||||
let network = Network::lookup_by_uuid_string(&self.m, &msg.0.as_string())?;
|
let network = Network::lookup_by_uuid_string(&self.m, &msg.0.as_string())?;
|
||||||
let network_name = network.get_name()?;
|
let network_name = NetworkName(network.get_name()?);
|
||||||
network.undefine()?;
|
network.undefine()?;
|
||||||
|
|
||||||
|
// Remove NAT definition, if any
|
||||||
|
nat_lib::remove_nat_def(&network_name)?;
|
||||||
|
|
||||||
// Remove backup definition
|
// Remove backup definition
|
||||||
let backup_definition = AppConfig::get().net_definition_path(&network_name);
|
let backup_definition = AppConfig::get().net_definition_path(&network_name);
|
||||||
if backup_definition.exists() {
|
if backup_definition.exists() {
|
||||||
|
299
virtweb_backend/src/api_tokens.rs
Normal file
299
virtweb_backend/src/api_tokens.rs
Normal file
@ -0,0 +1,299 @@
|
|||||||
|
//! # API tokens management
|
||||||
|
|
||||||
|
use crate::app_config::AppConfig;
|
||||||
|
use crate::constants;
|
||||||
|
use crate::utils::time_utils::time;
|
||||||
|
use actix_http::Method;
|
||||||
|
use basic_jwt::{JWTPrivateKey, JWTPublicKey};
|
||||||
|
use std::path::Path;
|
||||||
|
use std::str::FromStr;
|
||||||
|
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize, Clone, Copy, Debug)]
|
||||||
|
pub struct TokenID(pub uuid::Uuid);
|
||||||
|
|
||||||
|
impl TokenID {
|
||||||
|
/// Parse a string as a token id
|
||||||
|
pub fn parse(t: &str) -> anyhow::Result<Self> {
|
||||||
|
Ok(Self(uuid::Uuid::parse_str(t)?))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, Eq, PartialEq)]
|
||||||
|
pub struct TokenRight {
|
||||||
|
verb: TokenVerb,
|
||||||
|
path: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
|
||||||
|
pub struct TokenRights(Vec<TokenRight>);
|
||||||
|
|
||||||
|
impl TokenRights {
|
||||||
|
pub fn check_error(&self) -> Option<&'static str> {
|
||||||
|
for r in &self.0 {
|
||||||
|
if !r.path.starts_with("/api/") {
|
||||||
|
return Some("All API rights shall start with /api/");
|
||||||
|
}
|
||||||
|
|
||||||
|
if r.path.len() > constants::API_TOKEN_RIGHT_PATH_MAX_LENGTH {
|
||||||
|
return Some("An API path shall not exceed maximum URL size!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
None
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn contains(&self, verb: TokenVerb, path: &str) -> bool {
|
||||||
|
let req_path_split = path.split('/').collect::<Vec<_>>();
|
||||||
|
|
||||||
|
'root: for r in &self.0 {
|
||||||
|
if r.verb != verb {
|
||||||
|
continue 'root;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut last_idx = 0;
|
||||||
|
for (idx, part) in r.path.split('/').enumerate() {
|
||||||
|
if idx >= req_path_split.len() {
|
||||||
|
continue 'root;
|
||||||
|
}
|
||||||
|
|
||||||
|
if part != "*" && part != req_path_split[idx] {
|
||||||
|
continue 'root;
|
||||||
|
}
|
||||||
|
|
||||||
|
last_idx = idx;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check we visited the whole path
|
||||||
|
if last_idx + 1 == req_path_split.len() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
|
||||||
|
pub struct Token {
|
||||||
|
pub id: TokenID,
|
||||||
|
pub name: String,
|
||||||
|
pub description: String,
|
||||||
|
created: u64,
|
||||||
|
updated: u64,
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub pub_key: Option<JWTPublicKey>,
|
||||||
|
pub rights: TokenRights,
|
||||||
|
pub last_used: u64,
|
||||||
|
pub ip_restriction: Option<ipnetwork::IpNetwork>,
|
||||||
|
pub max_inactivity: Option<u64>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Token {
|
||||||
|
/// Turn the token into a JSON string
|
||||||
|
fn save(&self) -> anyhow::Result<()> {
|
||||||
|
let json = serde_json::to_string(self)?;
|
||||||
|
|
||||||
|
std::fs::write(AppConfig::get().api_token_definition_path(self.id), json)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Load token information from a file
|
||||||
|
fn load_from_file(path: &Path) -> anyhow::Result<Self> {
|
||||||
|
Ok(serde_json::from_str(&std::fs::read_to_string(path)?)?)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Check whether a token is expired or not
|
||||||
|
pub fn is_expired(&self) -> bool {
|
||||||
|
if let Some(max_inactivity) = self.max_inactivity {
|
||||||
|
if max_inactivity + self.last_used < time() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Check whether last_used shall be updated or not
|
||||||
|
pub fn should_update_last_activity(&self) -> bool {
|
||||||
|
self.last_used + 3600 < time()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, Copy, Eq, PartialEq)]
|
||||||
|
pub enum TokenVerb {
|
||||||
|
GET,
|
||||||
|
POST,
|
||||||
|
PUT,
|
||||||
|
PATCH,
|
||||||
|
DELETE,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl TokenVerb {
|
||||||
|
pub fn as_method(&self) -> Method {
|
||||||
|
match self {
|
||||||
|
TokenVerb::GET => Method::GET,
|
||||||
|
TokenVerb::POST => Method::POST,
|
||||||
|
TokenVerb::PUT => Method::PUT,
|
||||||
|
TokenVerb::PATCH => Method::PATCH,
|
||||||
|
TokenVerb::DELETE => Method::DELETE,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl FromStr for TokenVerb {
|
||||||
|
type Err = ();
|
||||||
|
|
||||||
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
||||||
|
match s {
|
||||||
|
"GET" => Ok(TokenVerb::GET),
|
||||||
|
"POST" => Ok(TokenVerb::POST),
|
||||||
|
"PUT" => Ok(TokenVerb::PUT),
|
||||||
|
"PATCH" => Ok(TokenVerb::PATCH),
|
||||||
|
"DELETE" => Ok(TokenVerb::DELETE),
|
||||||
|
_ => Err(()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Structure used to create a token
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
|
||||||
|
pub struct NewToken {
|
||||||
|
pub name: String,
|
||||||
|
pub description: String,
|
||||||
|
pub rights: TokenRights,
|
||||||
|
pub ip_restriction: Option<ipnetwork::IpNetwork>,
|
||||||
|
pub max_inactivity: Option<u64>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl NewToken {
|
||||||
|
/// Check for error in token
|
||||||
|
pub fn check_error(&self) -> Option<&'static str> {
|
||||||
|
if self.name.len() < constants::API_TOKEN_NAME_MIN_LENGTH {
|
||||||
|
return Some("Name is too short!");
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.name.len() > constants::API_TOKEN_NAME_MAX_LENGTH {
|
||||||
|
return Some("Name is too long!");
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.description.len() < constants::API_TOKEN_DESCRIPTION_MIN_LENGTH {
|
||||||
|
return Some("Description is too short!");
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.description.len() > constants::API_TOKEN_DESCRIPTION_MAX_LENGTH {
|
||||||
|
return Some("Description is too long!");
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(err) = self.rights.check_error() {
|
||||||
|
return Some(err);
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(t) = self.max_inactivity {
|
||||||
|
if t < 3600 {
|
||||||
|
return Some("API tokens shall be valid for at least 1 hour!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a new Token
|
||||||
|
pub async fn create(t: &NewToken) -> anyhow::Result<(Token, JWTPrivateKey)> {
|
||||||
|
let priv_key = JWTPrivateKey::generate_ec384_signing_key()?;
|
||||||
|
let pub_key = priv_key.to_public_key()?;
|
||||||
|
|
||||||
|
let token = Token {
|
||||||
|
name: t.name.to_string(),
|
||||||
|
description: t.description.to_string(),
|
||||||
|
id: TokenID(uuid::Uuid::new_v4()),
|
||||||
|
created: time(),
|
||||||
|
updated: time(),
|
||||||
|
pub_key: Some(pub_key),
|
||||||
|
rights: t.rights.clone(),
|
||||||
|
last_used: time(),
|
||||||
|
ip_restriction: t.ip_restriction,
|
||||||
|
max_inactivity: t.max_inactivity,
|
||||||
|
};
|
||||||
|
|
||||||
|
token.save()?;
|
||||||
|
|
||||||
|
Ok((token, priv_key))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get the entire list of api tokens
|
||||||
|
pub async fn full_list() -> anyhow::Result<Vec<Token>> {
|
||||||
|
let mut list = Vec::new();
|
||||||
|
for f in std::fs::read_dir(AppConfig::get().api_tokens_path())? {
|
||||||
|
list.push(Token::load_from_file(&f?.path())?);
|
||||||
|
}
|
||||||
|
Ok(list)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get the information about a single token
|
||||||
|
pub async fn get_single(id: TokenID) -> anyhow::Result<Token> {
|
||||||
|
Token::load_from_file(&AppConfig::get().api_token_definition_path(id))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Update API tokens rights
|
||||||
|
pub async fn update_rights(id: TokenID, rights: TokenRights) -> anyhow::Result<()> {
|
||||||
|
let mut token = get_single(id).await?;
|
||||||
|
token.rights = rights;
|
||||||
|
token.updated = time();
|
||||||
|
token.save()?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Set last_used value of token
|
||||||
|
pub async fn refresh_last_used(id: TokenID) -> anyhow::Result<()> {
|
||||||
|
let mut token = get_single(id).await?;
|
||||||
|
token.last_used = time();
|
||||||
|
token.save()?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Delete an API token
|
||||||
|
pub async fn delete(id: TokenID) -> anyhow::Result<()> {
|
||||||
|
let path = AppConfig::get().api_token_definition_path(id);
|
||||||
|
if path.exists() {
|
||||||
|
std::fs::remove_file(path)?;
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
use crate::api_tokens::{TokenRight, TokenRights, TokenVerb};
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_rights_patch() {
|
||||||
|
let rights = TokenRights(vec![
|
||||||
|
TokenRight {
|
||||||
|
path: "/api/vm/*".to_string(),
|
||||||
|
verb: TokenVerb::GET,
|
||||||
|
},
|
||||||
|
TokenRight {
|
||||||
|
path: "/api/vm/a".to_string(),
|
||||||
|
verb: TokenVerb::PUT,
|
||||||
|
},
|
||||||
|
TokenRight {
|
||||||
|
path: "/api/vm/a/other".to_string(),
|
||||||
|
verb: TokenVerb::DELETE,
|
||||||
|
},
|
||||||
|
TokenRight {
|
||||||
|
path: "/api/net/create".to_string(),
|
||||||
|
verb: TokenVerb::POST,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
assert!(rights.contains(TokenVerb::GET, "/api/vm/ab"));
|
||||||
|
assert!(!rights.contains(TokenVerb::GET, "/api/vm"));
|
||||||
|
assert!(!rights.contains(TokenVerb::GET, "/api/vm/ab/c"));
|
||||||
|
assert!(rights.contains(TokenVerb::PUT, "/api/vm/a"));
|
||||||
|
assert!(!rights.contains(TokenVerb::PUT, "/api/vm/other"));
|
||||||
|
assert!(rights.contains(TokenVerb::POST, "/api/net/create"));
|
||||||
|
assert!(!rights.contains(TokenVerb::GET, "/api/net/create"));
|
||||||
|
assert!(!rights.contains(TokenVerb::POST, "/api/net/b"));
|
||||||
|
assert!(!rights.contains(TokenVerb::POST, "/api/net/create/b"));
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,7 @@
|
|||||||
|
use crate::api_tokens::TokenID;
|
||||||
|
use crate::constants;
|
||||||
use crate::libvirt_lib_structures::XMLUuid;
|
use crate::libvirt_lib_structures::XMLUuid;
|
||||||
|
use crate::libvirt_rest_structures::net::NetworkName;
|
||||||
use crate::libvirt_rest_structures::nw_filter::NetworkFilterName;
|
use crate::libvirt_rest_structures::nw_filter::NetworkFilterName;
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
use std::net::IpAddr;
|
use std::net::IpAddr;
|
||||||
@ -100,10 +103,15 @@ pub struct AppConfig {
|
|||||||
#[arg(short = 'H', long, env)]
|
#[arg(short = 'H', long, env)]
|
||||||
pub hypervisor_uri: Option<String>,
|
pub hypervisor_uri: Option<String>,
|
||||||
|
|
||||||
/// Trusted network. If set, a client from a different will not be able to perform request other
|
/// Trusted network. If set, a client (user) from a different network will not be able to perform
|
||||||
/// than those with GET verb (aside for login)
|
/// request other than those with GET verb (aside for login)
|
||||||
#[arg(short = 'T', long, env)]
|
#[arg(short = 'T', long, env)]
|
||||||
pub trusted_network: Vec<String>,
|
pub trusted_network: Vec<String>,
|
||||||
|
|
||||||
|
/// Comma-separated list of allowed networks. If set, a client (user or API token) from a
|
||||||
|
/// different network will not be able to access VirtWeb
|
||||||
|
#[arg(short = 'A', long, env)]
|
||||||
|
pub allowed_networks: Vec<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
lazy_static::lazy_static! {
|
lazy_static::lazy_static! {
|
||||||
@ -187,6 +195,25 @@ impl AppConfig {
|
|||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Check if an IP belongs to an allowed network or not
|
||||||
|
pub fn is_allowed_ip(&self, ip: IpAddr) -> bool {
|
||||||
|
if self.allowed_networks.is_empty() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
for i in &self.allowed_networks {
|
||||||
|
for sub_i in i.split(',') {
|
||||||
|
let net =
|
||||||
|
ipnetwork::IpNetwork::from_str(sub_i).expect("Allowed network is invalid!");
|
||||||
|
if net.contains(ip) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
/// Get OpenID providers configuration
|
/// Get OpenID providers configuration
|
||||||
pub fn openid_provider(&self) -> Option<OIDCProvider<'_>> {
|
pub fn openid_provider(&self) -> Option<OIDCProvider<'_>> {
|
||||||
if self.disable_oidc {
|
if self.disable_oidc {
|
||||||
@ -250,14 +277,30 @@ impl AppConfig {
|
|||||||
self.definitions_path().join(format!("vm-{name}.json"))
|
self.definitions_path().join(format!("vm-{name}.json"))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn net_definition_path(&self, name: &str) -> PathBuf {
|
pub fn net_definition_path(&self, name: &NetworkName) -> PathBuf {
|
||||||
self.definitions_path().join(format!("net-{name}.json"))
|
self.definitions_path().join(format!("net-{}.json", name.0))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn nat_path(&self) -> PathBuf {
|
||||||
|
self.storage_path().join(constants::STORAGE_NAT_DIR)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn net_nat_path(&self, name: &NetworkName) -> PathBuf {
|
||||||
|
self.nat_path().join(name.nat_file_name())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn net_filter_definition_path(&self, name: &NetworkFilterName) -> PathBuf {
|
pub fn net_filter_definition_path(&self, name: &NetworkFilterName) -> PathBuf {
|
||||||
self.definitions_path()
|
self.definitions_path()
|
||||||
.join(format!("nwfilter-{}.json", name.0))
|
.join(format!("nwfilter-{}.json", name.0))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn api_tokens_path(&self) -> PathBuf {
|
||||||
|
self.storage_path().join(constants::STORAGE_TOKENS_DIR)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn api_token_definition_path(&self, id: TokenID) -> PathBuf {
|
||||||
|
self.api_tokens_path().join(format!("{}.json", id.0))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize)]
|
#[derive(Debug, Clone, serde::Serialize)]
|
||||||
|
@ -44,6 +44,9 @@ pub const DISK_SIZE_MIN: usize = 100;
|
|||||||
/// Disk size max (MB)
|
/// Disk size max (MB)
|
||||||
pub const DISK_SIZE_MAX: usize = 1000 * 1000 * 2;
|
pub const DISK_SIZE_MAX: usize = 1000 * 1000 * 2;
|
||||||
|
|
||||||
|
/// Net nat entry comment max size
|
||||||
|
pub const NET_NAT_COMMENT_MAX_SIZE: usize = 250;
|
||||||
|
|
||||||
/// Network mac address default prefix
|
/// Network mac address default prefix
|
||||||
pub const NET_MAC_ADDR_PREFIX: &str = "52:54:00";
|
pub const NET_MAC_ADDR_PREFIX: &str = "52:54:00";
|
||||||
|
|
||||||
@ -77,3 +80,30 @@ pub const BUILTIN_NETWORK_FILTER_RULES: [&str; 24] = [
|
|||||||
|
|
||||||
/// List of valid network chains
|
/// List of valid network chains
|
||||||
pub const NETWORK_CHAINS: [&str; 8] = ["root", "mac", "stp", "vlan", "arp", "rarp", "ipv4", "ipv6"];
|
pub const NETWORK_CHAINS: [&str; 8] = ["root", "mac", "stp", "vlan", "arp", "rarp", "ipv4", "ipv6"];
|
||||||
|
|
||||||
|
/// Directory where nat rules are stored, inside storage directory
|
||||||
|
pub const STORAGE_NAT_DIR: &str = "nat";
|
||||||
|
|
||||||
|
/// Environment variable that is set to run VirtWeb in NAT configuration mode
|
||||||
|
pub const NAT_MODE_ENV_VAR_NAME: &str = "NAT_MODE";
|
||||||
|
|
||||||
|
/// Nat hook file path
|
||||||
|
pub const NAT_HOOK_PATH: &str = "/etc/libvirt/hooks/network";
|
||||||
|
|
||||||
|
/// Directory where API tokens are stored, inside storage directory
|
||||||
|
pub const STORAGE_TOKENS_DIR: &str = "tokens";
|
||||||
|
|
||||||
|
/// API token name min length
|
||||||
|
pub const API_TOKEN_NAME_MIN_LENGTH: usize = 3;
|
||||||
|
|
||||||
|
/// API token name max length
|
||||||
|
pub const API_TOKEN_NAME_MAX_LENGTH: usize = 30;
|
||||||
|
|
||||||
|
/// API token description min length
|
||||||
|
pub const API_TOKEN_DESCRIPTION_MIN_LENGTH: usize = 5;
|
||||||
|
|
||||||
|
/// API token description max length
|
||||||
|
pub const API_TOKEN_DESCRIPTION_MAX_LENGTH: usize = 30;
|
||||||
|
|
||||||
|
/// API token right path max length
|
||||||
|
pub const API_TOKEN_RIGHT_PATH_MAX_LENGTH: usize = 255;
|
||||||
|
100
virtweb_backend/src/controllers/api_tokens_controller.rs
Normal file
100
virtweb_backend/src/controllers/api_tokens_controller.rs
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
//! # API tokens management
|
||||||
|
|
||||||
|
use crate::api_tokens;
|
||||||
|
use crate::api_tokens::{NewToken, TokenID, TokenRights};
|
||||||
|
use crate::controllers::api_tokens_controller::rest_token::RestToken;
|
||||||
|
use crate::controllers::HttpResult;
|
||||||
|
use actix_web::{web, HttpResponse};
|
||||||
|
use basic_jwt::JWTPrivateKey;
|
||||||
|
|
||||||
|
/// Create a special module for REST token to enforce usage of constructor function
|
||||||
|
mod rest_token {
|
||||||
|
use crate::api_tokens::Token;
|
||||||
|
|
||||||
|
#[derive(serde::Serialize)]
|
||||||
|
pub struct RestToken {
|
||||||
|
#[serde(flatten)]
|
||||||
|
token: Token,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl RestToken {
|
||||||
|
pub fn new(mut token: Token) -> Self {
|
||||||
|
token.pub_key = None;
|
||||||
|
Self { token }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Serialize)]
|
||||||
|
struct CreateTokenResult {
|
||||||
|
token: RestToken,
|
||||||
|
priv_key: JWTPrivateKey,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create a new API token
|
||||||
|
pub async fn create(new_token: web::Json<NewToken>) -> HttpResult {
|
||||||
|
if let Some(err) = new_token.check_error() {
|
||||||
|
log::error!("Failed to validate new API token information! {err}");
|
||||||
|
return Ok(HttpResponse::BadRequest().json(format!(
|
||||||
|
"Failed to validate new API token information! {err}"
|
||||||
|
)));
|
||||||
|
}
|
||||||
|
|
||||||
|
let (token, priv_key) = api_tokens::create(&new_token).await?;
|
||||||
|
|
||||||
|
Ok(HttpResponse::Ok().json(CreateTokenResult {
|
||||||
|
token: RestToken::new(token),
|
||||||
|
priv_key,
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get the list of API tokens
|
||||||
|
pub async fn list() -> HttpResult {
|
||||||
|
let list = api_tokens::full_list()
|
||||||
|
.await?
|
||||||
|
.into_iter()
|
||||||
|
.map(RestToken::new)
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
Ok(HttpResponse::Ok().json(list))
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Deserialize)]
|
||||||
|
pub struct TokenIDInPath {
|
||||||
|
uid: TokenID,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get the information about a single token
|
||||||
|
pub async fn get_single(path: web::Path<TokenIDInPath>) -> HttpResult {
|
||||||
|
let token = api_tokens::get_single(path.uid).await?;
|
||||||
|
|
||||||
|
Ok(HttpResponse::Ok().json(RestToken::new(token)))
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Deserialize)]
|
||||||
|
pub struct UpdateTokenBody {
|
||||||
|
rights: TokenRights,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Update a token
|
||||||
|
pub async fn update(
|
||||||
|
path: web::Path<TokenIDInPath>,
|
||||||
|
body: web::Json<UpdateTokenBody>,
|
||||||
|
) -> HttpResult {
|
||||||
|
if let Some(err) = body.rights.check_error() {
|
||||||
|
log::error!("Failed to validate updated API token information! {err}");
|
||||||
|
return Ok(HttpResponse::BadRequest()
|
||||||
|
.json(format!("Failed to validate API token information! {err}")));
|
||||||
|
}
|
||||||
|
|
||||||
|
api_tokens::update_rights(path.uid, body.0.rights).await?;
|
||||||
|
|
||||||
|
Ok(HttpResponse::Accepted().finish())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Delete a token
|
||||||
|
pub async fn delete(path: web::Path<TokenIDInPath>) -> HttpResult {
|
||||||
|
api_tokens::delete(path.uid).await?;
|
||||||
|
|
||||||
|
Ok(HttpResponse::Accepted().finish())
|
||||||
|
}
|
@ -6,6 +6,7 @@ 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 auth_controller;
|
pub mod auth_controller;
|
||||||
pub mod iso_controller;
|
pub mod iso_controller;
|
||||||
pub mod network_controller;
|
pub mod network_controller;
|
||||||
|
@ -5,8 +5,10 @@ use crate::constants::{DISK_NAME_MAX_LEN, DISK_NAME_MIN_LEN, DISK_SIZE_MAX, DISK
|
|||||||
use crate::controllers::{HttpResult, LibVirtReq};
|
use crate::controllers::{HttpResult, LibVirtReq};
|
||||||
use crate::extractors::local_auth_extractor::LocalAuthEnabled;
|
use crate::extractors::local_auth_extractor::LocalAuthEnabled;
|
||||||
use crate::libvirt_rest_structures::hypervisor::HypervisorInfo;
|
use crate::libvirt_rest_structures::hypervisor::HypervisorInfo;
|
||||||
|
use crate::nat::nat_hook;
|
||||||
|
use crate::utils::net_utils;
|
||||||
use actix_web::{HttpResponse, Responder};
|
use actix_web::{HttpResponse, Responder};
|
||||||
use sysinfo::{NetworksExt, System, SystemExt};
|
use sysinfo::{Components, Disks, Networks, System};
|
||||||
|
|
||||||
#[derive(serde::Serialize)]
|
#[derive(serde::Serialize)]
|
||||||
struct StaticConfig {
|
struct StaticConfig {
|
||||||
@ -43,11 +45,15 @@ struct ServerConstraints {
|
|||||||
disk_size: LenConstraints,
|
disk_size: LenConstraints,
|
||||||
net_name_size: LenConstraints,
|
net_name_size: LenConstraints,
|
||||||
net_title_size: LenConstraints,
|
net_title_size: LenConstraints,
|
||||||
|
net_nat_comment_size: LenConstraints,
|
||||||
dhcp_reservation_host_name: LenConstraints,
|
dhcp_reservation_host_name: LenConstraints,
|
||||||
nwfilter_name_size: LenConstraints,
|
nwfilter_name_size: LenConstraints,
|
||||||
nwfilter_comment_size: LenConstraints,
|
nwfilter_comment_size: LenConstraints,
|
||||||
nwfilter_priority: SLenConstraints,
|
nwfilter_priority: SLenConstraints,
|
||||||
nwfilter_selectors_count: LenConstraints,
|
nwfilter_selectors_count: LenConstraints,
|
||||||
|
api_token_name_size: LenConstraints,
|
||||||
|
api_token_description_size: LenConstraints,
|
||||||
|
api_token_right_path_size: LenConstraints,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn static_config(local_auth: LocalAuthEnabled) -> impl Responder {
|
pub async fn static_config(local_auth: LocalAuthEnabled) -> impl Responder {
|
||||||
@ -81,6 +87,10 @@ pub async fn static_config(local_auth: LocalAuthEnabled) -> impl Responder {
|
|||||||
|
|
||||||
net_name_size: LenConstraints { min: 2, max: 50 },
|
net_name_size: LenConstraints { min: 2, max: 50 },
|
||||||
net_title_size: LenConstraints { min: 0, max: 50 },
|
net_title_size: LenConstraints { min: 0, max: 50 },
|
||||||
|
net_nat_comment_size: LenConstraints {
|
||||||
|
min: 0,
|
||||||
|
max: constants::NET_NAT_COMMENT_MAX_SIZE,
|
||||||
|
},
|
||||||
|
|
||||||
dhcp_reservation_host_name: LenConstraints { min: 2, max: 250 },
|
dhcp_reservation_host_name: LenConstraints { min: 2, max: 250 },
|
||||||
|
|
||||||
@ -91,6 +101,21 @@ pub async fn static_config(local_auth: LocalAuthEnabled) -> impl Responder {
|
|||||||
max: 1000,
|
max: 1000,
|
||||||
},
|
},
|
||||||
nwfilter_selectors_count: LenConstraints { min: 0, max: 1 },
|
nwfilter_selectors_count: LenConstraints { min: 0, max: 1 },
|
||||||
|
|
||||||
|
api_token_name_size: LenConstraints {
|
||||||
|
min: constants::API_TOKEN_NAME_MIN_LENGTH,
|
||||||
|
max: constants::API_TOKEN_NAME_MAX_LENGTH,
|
||||||
|
},
|
||||||
|
|
||||||
|
api_token_description_size: LenConstraints {
|
||||||
|
min: constants::API_TOKEN_DESCRIPTION_MIN_LENGTH,
|
||||||
|
max: constants::API_TOKEN_DESCRIPTION_MAX_LENGTH,
|
||||||
|
},
|
||||||
|
|
||||||
|
api_token_right_path_size: LenConstraints {
|
||||||
|
min: 0,
|
||||||
|
max: constants::API_TOKEN_RIGHT_PATH_MAX_LENGTH,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -99,18 +124,48 @@ pub async fn static_config(local_auth: LocalAuthEnabled) -> impl Responder {
|
|||||||
struct ServerInfo {
|
struct ServerInfo {
|
||||||
hypervisor: HypervisorInfo,
|
hypervisor: HypervisorInfo,
|
||||||
system: System,
|
system: System,
|
||||||
|
components: Components,
|
||||||
|
disks: Disks,
|
||||||
|
networks: Networks,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn server_info(client: LibVirtReq) -> HttpResult {
|
pub async fn server_info(client: LibVirtReq) -> HttpResult {
|
||||||
let mut system = System::new();
|
let mut system = System::new();
|
||||||
system.refresh_disks_list();
|
|
||||||
system.refresh_components_list();
|
|
||||||
system.refresh_networks_list();
|
|
||||||
system.refresh_all();
|
system.refresh_all();
|
||||||
|
|
||||||
|
let mut components = Components::new();
|
||||||
|
components.refresh_list();
|
||||||
|
components.refresh();
|
||||||
|
|
||||||
|
let mut disks = Disks::new();
|
||||||
|
disks.refresh_list();
|
||||||
|
disks.refresh();
|
||||||
|
|
||||||
|
let mut networks = Networks::new();
|
||||||
|
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?,
|
||||||
system,
|
system,
|
||||||
|
components,
|
||||||
|
disks,
|
||||||
|
networks,
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Serialize)]
|
||||||
|
struct NetworkHookStatus {
|
||||||
|
installed: bool,
|
||||||
|
content: String,
|
||||||
|
path: &'static str,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn network_hook_status() -> HttpResult {
|
||||||
|
Ok(HttpResponse::Ok().json(NetworkHookStatus {
|
||||||
|
installed: nat_hook::is_installed()?,
|
||||||
|
content: nat_hook::hook_content()?,
|
||||||
|
path: constants::NAT_HOOK_PATH,
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -132,14 +187,5 @@ pub async fn number_vcpus() -> HttpResult {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub async fn networks_list() -> HttpResult {
|
pub async fn networks_list() -> HttpResult {
|
||||||
let mut system = System::new();
|
Ok(HttpResponse::Ok().json(net_utils::net_list()))
|
||||||
system.refresh_networks_list();
|
|
||||||
|
|
||||||
Ok(HttpResponse::Ok().json(
|
|
||||||
system
|
|
||||||
.networks()
|
|
||||||
.iter()
|
|
||||||
.map(|n| n.0.to_string())
|
|
||||||
.collect::<Vec<_>>(),
|
|
||||||
))
|
|
||||||
}
|
}
|
||||||
|
151
virtweb_backend/src/extractors/api_auth_extractor.rs
Normal file
151
virtweb_backend/src/extractors/api_auth_extractor.rs
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
use crate::api_tokens::{Token, TokenID, TokenVerb};
|
||||||
|
|
||||||
|
use crate::api_tokens;
|
||||||
|
use crate::utils::time_utils::time;
|
||||||
|
use actix_remote_ip::RemoteIP;
|
||||||
|
use actix_web::dev::Payload;
|
||||||
|
use actix_web::error::{ErrorBadRequest, ErrorUnauthorized};
|
||||||
|
use actix_web::{Error, FromRequest, HttpRequest};
|
||||||
|
use std::future::Future;
|
||||||
|
use std::pin::Pin;
|
||||||
|
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize, Debug)]
|
||||||
|
pub struct TokenClaims {
|
||||||
|
pub sub: String,
|
||||||
|
pub iat: usize,
|
||||||
|
pub exp: usize,
|
||||||
|
pub verb: TokenVerb,
|
||||||
|
pub path: String,
|
||||||
|
pub nonce: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct ApiAuthExtractor {
|
||||||
|
pub token: Token,
|
||||||
|
pub claims: TokenClaims,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl FromRequest for ApiAuthExtractor {
|
||||||
|
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();
|
||||||
|
|
||||||
|
let remote_ip = match RemoteIP::from_request(&req, payload).into_inner() {
|
||||||
|
Ok(ip) => ip,
|
||||||
|
Err(e) => return Box::pin(async { Err(e) }),
|
||||||
|
};
|
||||||
|
|
||||||
|
Box::pin(async move {
|
||||||
|
let (token_id, token_jwt) = match (
|
||||||
|
req.headers().get("x-token-id"),
|
||||||
|
req.headers().get("x-token-content"),
|
||||||
|
) {
|
||||||
|
(Some(id), Some(jwt)) => (
|
||||||
|
id.to_str().unwrap_or("").to_string(),
|
||||||
|
jwt.to_str().unwrap_or("").to_string(),
|
||||||
|
),
|
||||||
|
(_, _) => {
|
||||||
|
return Err(ErrorBadRequest("API auth headers were not all specified!"));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let token_id = match TokenID::parse(&token_id) {
|
||||||
|
Ok(t) => t,
|
||||||
|
Err(e) => {
|
||||||
|
log::error!("Failed to parse token id! {e}");
|
||||||
|
return Err(ErrorBadRequest("Unable to validate token ID!"));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let token = match api_tokens::get_single(token_id).await {
|
||||||
|
Ok(t) => t,
|
||||||
|
Err(e) => {
|
||||||
|
log::error!("Failed to retrieve token: {e}");
|
||||||
|
return Err(ErrorBadRequest("Unable to validate token!"));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if token.is_expired() {
|
||||||
|
log::error!("Token has expired (not been used for too long)!");
|
||||||
|
return Err(ErrorBadRequest("Unable to validate token!"));
|
||||||
|
}
|
||||||
|
|
||||||
|
let claims = match token
|
||||||
|
.pub_key
|
||||||
|
.as_ref()
|
||||||
|
.expect("All tokens shall have public key!")
|
||||||
|
.validate_jwt::<TokenClaims>(&token_jwt)
|
||||||
|
{
|
||||||
|
Ok(c) => c,
|
||||||
|
Err(e) => {
|
||||||
|
log::error!("Failed to validate JWT: {e}");
|
||||||
|
return Err(ErrorBadRequest("Unable to validate token!"));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if claims.sub != token.id.0.to_string() {
|
||||||
|
log::error!("JWT sub mismatch (should equal to token id)!");
|
||||||
|
return Err(ErrorBadRequest(
|
||||||
|
"JWT sub mismatch (should equal to token id)!",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
if time() + 60 * 15 < claims.iat as u64 {
|
||||||
|
log::error!("iat is in the future!");
|
||||||
|
return Err(ErrorBadRequest("iat is in the future!"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if claims.exp < claims.iat {
|
||||||
|
log::error!("exp shall not be smaller than iat!");
|
||||||
|
return Err(ErrorBadRequest("exp shall not be smaller than iat!"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if claims.exp - claims.iat > 1800 {
|
||||||
|
log::error!("JWT shall not be valid more than 30 minutes!");
|
||||||
|
return Err(ErrorBadRequest(
|
||||||
|
"JWT shall not be valid more than 30 minutes!",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
if claims.path != req.path() {
|
||||||
|
log::error!("JWT path mismatch!");
|
||||||
|
return Err(ErrorBadRequest("JWT path mismatch!"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if claims.verb.as_method() != req.method() {
|
||||||
|
log::error!("JWT method mismatch!");
|
||||||
|
return Err(ErrorBadRequest("JWT method mismatch!"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if !token.rights.contains(claims.verb, req.path()) {
|
||||||
|
log::error!(
|
||||||
|
"Attempt to use a token for an unauthorized route! (token_id={})",
|
||||||
|
token.id.0
|
||||||
|
);
|
||||||
|
return Err(ErrorUnauthorized(
|
||||||
|
"Token cannot be used to query this route!",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(ip) = token.ip_restriction {
|
||||||
|
if !ip.contains(remote_ip.0) {
|
||||||
|
log::error!(
|
||||||
|
"Attempt to use a token for an unauthorized IP! {remote_ip:?} token_id={}",
|
||||||
|
token.id.0
|
||||||
|
);
|
||||||
|
return Err(ErrorUnauthorized("Token cannot be used from this IP!"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if token.should_update_last_activity() {
|
||||||
|
if let Err(e) = api_tokens::refresh_last_used(token.id).await {
|
||||||
|
log::error!("Could not update token last activity! {e}");
|
||||||
|
return Err(ErrorBadRequest("Couldn't refresh token last activity!"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(ApiAuthExtractor { token, claims })
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
@ -1,2 +1,3 @@
|
|||||||
|
pub mod api_auth_extractor;
|
||||||
pub mod auth_extractor;
|
pub mod auth_extractor;
|
||||||
pub mod local_auth_extractor;
|
pub mod local_auth_extractor;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
pub mod actors;
|
pub mod actors;
|
||||||
|
pub mod api_tokens;
|
||||||
pub mod app_config;
|
pub mod app_config;
|
||||||
pub mod constants;
|
pub mod constants;
|
||||||
pub mod controllers;
|
pub mod controllers;
|
||||||
@ -7,4 +8,5 @@ pub mod libvirt_client;
|
|||||||
pub mod libvirt_lib_structures;
|
pub mod libvirt_lib_structures;
|
||||||
pub mod libvirt_rest_structures;
|
pub mod libvirt_rest_structures;
|
||||||
pub mod middlewares;
|
pub mod middlewares;
|
||||||
|
pub mod nat;
|
||||||
pub mod utils;
|
pub mod utils;
|
||||||
|
@ -43,14 +43,6 @@ pub struct NetworkDomainXML {
|
|||||||
pub name: String,
|
pub name: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn invalid_prefix() -> u32 {
|
|
||||||
u32::MAX
|
|
||||||
}
|
|
||||||
|
|
||||||
fn invalid_ip() -> IpAddr {
|
|
||||||
IpAddr::V4(Ipv4Addr::BROADCAST)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Network ip information
|
/// Network ip information
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Debug)]
|
#[derive(serde::Serialize, serde::Deserialize, Debug)]
|
||||||
#[serde(rename = "ip")]
|
#[serde(rename = "ip")]
|
||||||
@ -60,12 +52,13 @@ pub struct NetworkIPXML {
|
|||||||
#[serde(rename = "@address")]
|
#[serde(rename = "@address")]
|
||||||
pub address: IpAddr,
|
pub address: IpAddr,
|
||||||
/// Network Prefix
|
/// Network Prefix
|
||||||
#[serde(rename = "@prefix", default = "invalid_prefix")]
|
#[serde(rename = "@prefix")]
|
||||||
pub prefix: u32,
|
pub prefix: Option<u8>,
|
||||||
/// Network Netmask. This field is never serialized, but because we can't know if LibVirt will
|
/// Network Netmask. This field is never serialized, but because we can't know if LibVirt will
|
||||||
/// provide us netmask or prefix, we need to handle both of these fields
|
/// provide us netmask or prefix, we need to handle both of these fields
|
||||||
#[serde(rename = "@netmask", default = "invalid_ip", skip_serializing)]
|
#[serde(rename = "@netmask", skip_serializing)]
|
||||||
pub netmask: IpAddr,
|
pub netmask: Option<IpAddr>,
|
||||||
|
|
||||||
pub dhcp: Option<NetworkDHCPXML>,
|
pub dhcp: Option<NetworkDHCPXML>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
use crate::libvirt_lib_structures::network::*;
|
use crate::libvirt_lib_structures::network::*;
|
||||||
use crate::libvirt_lib_structures::XMLUuid;
|
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_lib;
|
||||||
|
use crate::utils::net_utils;
|
||||||
use crate::utils::net_utils::{extract_ipv4, extract_ipv6};
|
use crate::utils::net_utils::{extract_ipv4, extract_ipv6};
|
||||||
use ipnetwork::{Ipv4Network, Ipv6Network};
|
use ipnetwork::{Ipv4Network, Ipv6Network};
|
||||||
use lazy_regex::regex;
|
use lazy_regex::regex;
|
||||||
@ -21,57 +24,75 @@ pub struct DHCPv4HostReservation {
|
|||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
||||||
pub struct IPv4DHCPConfig {
|
pub struct IPv4DHCPConfig {
|
||||||
start: Ipv4Addr,
|
pub start: Ipv4Addr,
|
||||||
end: Ipv4Addr,
|
pub end: Ipv4Addr,
|
||||||
hosts: Vec<DHCPv4HostReservation>,
|
pub hosts: Vec<DHCPv4HostReservation>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
||||||
pub struct IPV4Config {
|
pub struct IPV4Config {
|
||||||
bridge_address: Ipv4Addr,
|
pub bridge_address: Ipv4Addr,
|
||||||
prefix: u32,
|
pub prefix: u8,
|
||||||
dhcp: Option<IPv4DHCPConfig>,
|
pub dhcp: Option<IPv4DHCPConfig>,
|
||||||
|
pub nat: Option<Vec<Nat<Ipv4Addr>>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
||||||
pub struct DHCPv6HostReservation {
|
pub struct DHCPv6HostReservation {
|
||||||
name: String,
|
pub name: String,
|
||||||
ip: Ipv6Addr,
|
pub ip: Ipv6Addr,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
||||||
pub struct IPv6DHCPConfig {
|
pub struct IPv6DHCPConfig {
|
||||||
start: Ipv6Addr,
|
pub start: Ipv6Addr,
|
||||||
end: Ipv6Addr,
|
pub end: Ipv6Addr,
|
||||||
hosts: Vec<DHCPv6HostReservation>,
|
pub hosts: Vec<DHCPv6HostReservation>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
||||||
pub struct IPV6Config {
|
pub struct IPV6Config {
|
||||||
bridge_address: Ipv6Addr,
|
pub bridge_address: Ipv6Addr,
|
||||||
prefix: u32,
|
pub prefix: u8,
|
||||||
dhcp: Option<IPv6DHCPConfig>,
|
pub dhcp: Option<IPv6DHCPConfig>,
|
||||||
|
pub nat: Option<Vec<Nat<Ipv6Addr>>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
|
||||||
|
pub struct NetworkName(pub String);
|
||||||
|
|
||||||
|
impl NetworkName {
|
||||||
|
/// Get the name of the file that will store the NAT configuration of this network
|
||||||
|
pub fn nat_file_name(&self) -> String {
|
||||||
|
format!("nat-{}.json", self.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl NetworkName {
|
||||||
|
pub fn is_valid(&self) -> bool {
|
||||||
|
regex!("^[a-zA-Z0-9]+$").is_match(&self.0)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Network configuration
|
/// Network configuration
|
||||||
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug)]
|
||||||
pub struct NetworkInfo {
|
pub struct NetworkInfo {
|
||||||
pub name: String,
|
pub name: NetworkName,
|
||||||
pub uuid: Option<XMLUuid>,
|
pub uuid: Option<XMLUuid>,
|
||||||
title: Option<String>,
|
pub title: Option<String>,
|
||||||
description: Option<String>,
|
pub description: Option<String>,
|
||||||
forward_mode: NetworkForwardMode,
|
pub forward_mode: NetworkForwardMode,
|
||||||
device: Option<String>,
|
pub device: Option<String>,
|
||||||
bridge_name: Option<String>,
|
pub bridge_name: Option<String>,
|
||||||
dns_server: Option<Ipv4Addr>,
|
pub dns_server: Option<Ipv4Addr>,
|
||||||
domain: Option<String>,
|
pub domain: Option<String>,
|
||||||
ip_v4: Option<IPV4Config>,
|
pub ip_v4: Option<IPV4Config>,
|
||||||
ip_v6: Option<IPV6Config>,
|
pub ip_v6: Option<IPV6Config>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl NetworkInfo {
|
impl NetworkInfo {
|
||||||
pub fn as_virt_network(&self) -> anyhow::Result<NetworkXML> {
|
pub fn as_virt_network(&self) -> anyhow::Result<NetworkXML> {
|
||||||
if !regex!("^[a-zA-Z0-9]+$").is_match(&self.name) {
|
if !self.name.is_valid() {
|
||||||
return Err(StructureExtraction("network name is invalid!").into());
|
return Err(StructureExtraction("network name is invalid!").into());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -102,18 +123,26 @@ impl NetworkInfo {
|
|||||||
let mut ips = Vec::with_capacity(2);
|
let mut ips = Vec::with_capacity(2);
|
||||||
|
|
||||||
if let Some(ipv4) = &self.ip_v4 {
|
if let Some(ipv4) = &self.ip_v4 {
|
||||||
if ipv4.prefix > 32 {
|
if !net_utils::is_ipv4_mask_valid(ipv4.prefix) {
|
||||||
return Err(StructureExtraction("IPv4 prefix is invalid!").into());
|
return Err(StructureExtraction("IPv4 prefix is invalid!").into());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let Some(nat) = &ipv4.nat {
|
||||||
|
for n in nat {
|
||||||
|
n.check()?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ips.push(NetworkIPXML {
|
ips.push(NetworkIPXML {
|
||||||
family: "ipv4".to_string(),
|
family: "ipv4".to_string(),
|
||||||
address: IpAddr::V4(ipv4.bridge_address),
|
address: IpAddr::V4(ipv4.bridge_address),
|
||||||
prefix: ipv4.prefix,
|
prefix: Some(ipv4.prefix),
|
||||||
netmask: Ipv4Network::new(ipv4.bridge_address, ipv4.prefix as u8)
|
netmask: Some(
|
||||||
.unwrap()
|
Ipv4Network::new(ipv4.bridge_address, ipv4.prefix)
|
||||||
.mask()
|
.unwrap()
|
||||||
.into(),
|
.mask()
|
||||||
|
.into(),
|
||||||
|
),
|
||||||
dhcp: ipv4.dhcp.as_ref().map(|dhcp| NetworkDHCPXML {
|
dhcp: ipv4.dhcp.as_ref().map(|dhcp| NetworkDHCPXML {
|
||||||
range: NetworkDHCPRangeXML {
|
range: NetworkDHCPRangeXML {
|
||||||
start: IpAddr::V4(dhcp.start),
|
start: IpAddr::V4(dhcp.start),
|
||||||
@ -133,14 +162,26 @@ impl NetworkInfo {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if let Some(ipv6) = &self.ip_v6 {
|
if let Some(ipv6) = &self.ip_v6 {
|
||||||
|
if !net_utils::is_ipv6_mask_valid(ipv6.prefix) {
|
||||||
|
return Err(StructureExtraction("IPv6 prefix is invalid!").into());
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(nat) = &ipv6.nat {
|
||||||
|
for n in nat {
|
||||||
|
n.check()?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ips.push(NetworkIPXML {
|
ips.push(NetworkIPXML {
|
||||||
family: "ipv6".to_string(),
|
family: "ipv6".to_string(),
|
||||||
address: IpAddr::V6(ipv6.bridge_address),
|
address: IpAddr::V6(ipv6.bridge_address),
|
||||||
prefix: ipv6.prefix,
|
prefix: Some(ipv6.prefix),
|
||||||
netmask: Ipv6Network::new(ipv6.bridge_address, ipv6.prefix as u8)
|
netmask: Some(
|
||||||
.unwrap()
|
Ipv6Network::new(ipv6.bridge_address, ipv6.prefix)
|
||||||
.mask()
|
.unwrap()
|
||||||
.into(),
|
.mask()
|
||||||
|
.into(),
|
||||||
|
),
|
||||||
dhcp: ipv6.dhcp.as_ref().map(|dhcp| NetworkDHCPXML {
|
dhcp: ipv6.dhcp.as_ref().map(|dhcp| NetworkDHCPXML {
|
||||||
range: NetworkDHCPRangeXML {
|
range: NetworkDHCPRangeXML {
|
||||||
start: IpAddr::V6(dhcp.start),
|
start: IpAddr::V6(dhcp.start),
|
||||||
@ -160,7 +201,7 @@ impl NetworkInfo {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Ok(NetworkXML {
|
Ok(NetworkXML {
|
||||||
name: self.name.to_string(),
|
name: self.name.0.to_string(),
|
||||||
uuid: self.uuid,
|
uuid: self.uuid,
|
||||||
title: self.title.clone(),
|
title: self.title.clone(),
|
||||||
description: self.description.clone(),
|
description: self.description.clone(),
|
||||||
@ -183,8 +224,12 @@ impl NetworkInfo {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn from_xml(xml: NetworkXML) -> anyhow::Result<Self> {
|
pub fn from_xml(xml: NetworkXML) -> anyhow::Result<Self> {
|
||||||
|
let name = NetworkName(xml.name);
|
||||||
|
|
||||||
|
let nat = nat_lib::load_nat_def(&name)?;
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
name: xml.name,
|
name,
|
||||||
uuid: xml.uuid,
|
uuid: xml.uuid,
|
||||||
title: xml.title,
|
title: xml.title,
|
||||||
description: xml.description,
|
description: xml.description,
|
||||||
@ -209,10 +254,9 @@ impl NetworkInfo {
|
|||||||
.map(|i| IPV4Config {
|
.map(|i| IPV4Config {
|
||||||
bridge_address: extract_ipv4(i.address),
|
bridge_address: extract_ipv4(i.address),
|
||||||
prefix: match i.prefix {
|
prefix: match i.prefix {
|
||||||
u32::MAX => ipnetwork::ipv4_mask_to_prefix(extract_ipv4(i.netmask))
|
None => ipnetwork::ipv4_mask_to_prefix(extract_ipv4(i.netmask.unwrap()))
|
||||||
.expect("Failed to convert IPv4 netmask to network")
|
.expect("Failed to convert IPv4 netmask to network"),
|
||||||
as u32,
|
Some(p) => p,
|
||||||
p => p,
|
|
||||||
},
|
},
|
||||||
dhcp: i.dhcp.as_ref().map(|d| IPv4DHCPConfig {
|
dhcp: i.dhcp.as_ref().map(|d| IPv4DHCPConfig {
|
||||||
start: extract_ipv4(d.range.start),
|
start: extract_ipv4(d.range.start),
|
||||||
@ -227,6 +271,7 @@ impl NetworkInfo {
|
|||||||
})
|
})
|
||||||
.collect(),
|
.collect(),
|
||||||
}),
|
}),
|
||||||
|
nat: nat.ipv4,
|
||||||
}),
|
}),
|
||||||
ip_v6: xml
|
ip_v6: xml
|
||||||
.ips
|
.ips
|
||||||
@ -235,10 +280,9 @@ impl NetworkInfo {
|
|||||||
.map(|i| IPV6Config {
|
.map(|i| IPV6Config {
|
||||||
bridge_address: extract_ipv6(i.address),
|
bridge_address: extract_ipv6(i.address),
|
||||||
prefix: match i.prefix {
|
prefix: match i.prefix {
|
||||||
u32::MAX => ipnetwork::ipv6_mask_to_prefix(extract_ipv6(i.netmask))
|
None => ipnetwork::ipv6_mask_to_prefix(extract_ipv6(i.netmask.unwrap()))
|
||||||
.expect("Failed to convert IPv6 netmask to network")
|
.expect("Failed to convert IPv6 netmask to network"),
|
||||||
as u32,
|
Some(p) => p,
|
||||||
p => p,
|
|
||||||
},
|
},
|
||||||
dhcp: i.dhcp.as_ref().map(|d| IPv6DHCPConfig {
|
dhcp: i.dhcp.as_ref().map(|d| IPv6DHCPConfig {
|
||||||
start: extract_ipv6(d.range.start),
|
start: extract_ipv6(d.range.start),
|
||||||
@ -252,7 +296,25 @@ impl NetworkInfo {
|
|||||||
})
|
})
|
||||||
.collect(),
|
.collect(),
|
||||||
}),
|
}),
|
||||||
|
nat: nat.ipv6,
|
||||||
}),
|
}),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Check if at least one NAT definition was specified on this interface
|
||||||
|
pub fn has_nat_def(&self) -> bool {
|
||||||
|
if let Some(ipv4) = &self.ip_v4 {
|
||||||
|
if ipv4.nat.is_some() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(ipv6) = &self.ip_v6 {
|
||||||
|
if ipv6.nat.is_some() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -22,17 +22,24 @@ 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::{
|
||||||
auth_controller, iso_controller, network_controller, nwfilter_controller, server_controller,
|
api_tokens_controller, auth_controller, iso_controller, network_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;
|
||||||
use virtweb_backend::middlewares::auth_middleware::AuthChecker;
|
use virtweb_backend::middlewares::auth_middleware::AuthChecker;
|
||||||
|
use virtweb_backend::nat::nat_conf_mode;
|
||||||
use virtweb_backend::utils::files_utils;
|
use virtweb_backend::utils::files_utils;
|
||||||
|
|
||||||
#[actix_web::main]
|
#[actix_web::main]
|
||||||
async fn main() -> std::io::Result<()> {
|
async fn main() -> std::io::Result<()> {
|
||||||
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
||||||
|
|
||||||
|
// Run in NAT configuration mode, if requested
|
||||||
|
if std::env::var(constants::NAT_MODE_ENV_VAR_NAME).is_ok() {
|
||||||
|
nat_conf_mode::sub_main().await.unwrap();
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
// Load additional config from file, if requested
|
// Load additional config from file, if requested
|
||||||
AppConfig::parse_env_file().unwrap();
|
AppConfig::parse_env_file().unwrap();
|
||||||
|
|
||||||
@ -41,7 +48,9 @@ async fn main() -> std::io::Result<()> {
|
|||||||
files_utils::create_directory_if_missing(AppConfig::get().vnc_sockets_path()).unwrap();
|
files_utils::create_directory_if_missing(AppConfig::get().vnc_sockets_path()).unwrap();
|
||||||
files_utils::set_file_permission(AppConfig::get().vnc_sockets_path(), 0o777).unwrap();
|
files_utils::set_file_permission(AppConfig::get().vnc_sockets_path(), 0o777).unwrap();
|
||||||
files_utils::create_directory_if_missing(AppConfig::get().disks_storage_path()).unwrap();
|
files_utils::create_directory_if_missing(AppConfig::get().disks_storage_path()).unwrap();
|
||||||
|
files_utils::create_directory_if_missing(AppConfig::get().nat_path()).unwrap();
|
||||||
files_utils::create_directory_if_missing(AppConfig::get().definitions_path()).unwrap();
|
files_utils::create_directory_if_missing(AppConfig::get().definitions_path()).unwrap();
|
||||||
|
files_utils::create_directory_if_missing(AppConfig::get().api_tokens_path()).unwrap();
|
||||||
|
|
||||||
let conn = Data::new(LibVirtClient(
|
let conn = Data::new(LibVirtClient(
|
||||||
LibVirtActor::connect()
|
LibVirtActor::connect()
|
||||||
@ -76,7 +85,7 @@ async fn main() -> std::io::Result<()> {
|
|||||||
|
|
||||||
let mut cors = Cors::default()
|
let mut cors = Cors::default()
|
||||||
.allowed_origin(&AppConfig::get().website_origin)
|
.allowed_origin(&AppConfig::get().website_origin)
|
||||||
.allowed_methods(vec!["GET", "POST", "DELETE", "PUT"])
|
.allowed_methods(vec!["GET", "POST", "DELETE", "PUT", "PATCH"])
|
||||||
.allowed_headers(vec![header::AUTHORIZATION, header::ACCEPT])
|
.allowed_headers(vec![header::AUTHORIZATION, header::ACCEPT])
|
||||||
.allowed_header(header::CONTENT_TYPE)
|
.allowed_header(header::CONTENT_TYPE)
|
||||||
.supports_credentials()
|
.supports_credentials()
|
||||||
@ -110,6 +119,10 @@ async fn main() -> std::io::Result<()> {
|
|||||||
"/api/server/info",
|
"/api/server/info",
|
||||||
web::get().to(server_controller::server_info),
|
web::get().to(server_controller::server_info),
|
||||||
)
|
)
|
||||||
|
.route(
|
||||||
|
"/api/server/network_hook_status",
|
||||||
|
web::get().to(server_controller::network_hook_status),
|
||||||
|
)
|
||||||
.route(
|
.route(
|
||||||
"/api/server/number_vcpus",
|
"/api/server/number_vcpus",
|
||||||
web::get().to(server_controller::number_vcpus),
|
web::get().to(server_controller::number_vcpus),
|
||||||
@ -264,6 +277,27 @@ async fn main() -> std::io::Result<()> {
|
|||||||
"/api/nwfilter/{uid}",
|
"/api/nwfilter/{uid}",
|
||||||
web::delete().to(nwfilter_controller::delete),
|
web::delete().to(nwfilter_controller::delete),
|
||||||
)
|
)
|
||||||
|
// API tokens controller
|
||||||
|
.route(
|
||||||
|
"/api/token/create",
|
||||||
|
web::post().to(api_tokens_controller::create),
|
||||||
|
)
|
||||||
|
.route(
|
||||||
|
"/api/token/list",
|
||||||
|
web::get().to(api_tokens_controller::list),
|
||||||
|
)
|
||||||
|
.route(
|
||||||
|
"/api/token/{uid}",
|
||||||
|
web::get().to(api_tokens_controller::get_single),
|
||||||
|
)
|
||||||
|
.route(
|
||||||
|
"/api/token/{uid}",
|
||||||
|
web::patch().to(api_tokens_controller::update),
|
||||||
|
)
|
||||||
|
.route(
|
||||||
|
"/api/token/{uid}",
|
||||||
|
web::delete().to(api_tokens_controller::delete),
|
||||||
|
)
|
||||||
// Static assets
|
// Static assets
|
||||||
.route("/", web::get().to(static_controller::root_index))
|
.route("/", web::get().to(static_controller::root_index))
|
||||||
.route(
|
.route(
|
||||||
|
@ -3,6 +3,7 @@ use std::rc::Rc;
|
|||||||
|
|
||||||
use crate::app_config::AppConfig;
|
use crate::app_config::AppConfig;
|
||||||
use crate::constants;
|
use crate::constants;
|
||||||
|
use crate::extractors::api_auth_extractor::ApiAuthExtractor;
|
||||||
use crate::extractors::auth_extractor::AuthExtractor;
|
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;
|
||||||
@ -66,10 +67,40 @@ where
|
|||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
|
if !AppConfig::get().is_allowed_ip(remote_ip.0) {
|
||||||
|
log::error!("An attempt to access VirtWeb from an unauthorized network has been intercepted! {:?}", remote_ip);
|
||||||
|
return Ok(req
|
||||||
|
.into_response(
|
||||||
|
HttpResponse::MethodNotAllowed()
|
||||||
|
.json("I am sorry, but your IP is not allowed to access this service!"),
|
||||||
|
)
|
||||||
|
.map_into_right_body());
|
||||||
|
}
|
||||||
|
|
||||||
let auth_disabled = AppConfig::get().unsecure_disable_auth;
|
let auth_disabled = AppConfig::get().unsecure_disable_auth;
|
||||||
|
|
||||||
// Check authentication, if required
|
// Check API authentication
|
||||||
if !auth_disabled
|
if req.headers().get("x-token-id").is_some() {
|
||||||
|
let auth =
|
||||||
|
match ApiAuthExtractor::from_request(req.request(), &mut Payload::None).await {
|
||||||
|
Ok(auth) => auth,
|
||||||
|
Err(e) => {
|
||||||
|
log::error!(
|
||||||
|
"Failed to extract API authentication information from request! {e}"
|
||||||
|
);
|
||||||
|
return Ok(req
|
||||||
|
.into_response(HttpResponse::PreconditionFailed().finish())
|
||||||
|
.map_into_right_body());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
log::info!(
|
||||||
|
"Using API token '{}' to perform the request",
|
||||||
|
auth.token.name
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// Check user authentication, if required
|
||||||
|
else if !auth_disabled
|
||||||
&& !constants::ROUTES_WITHOUT_AUTH.contains(&req.path())
|
&& !constants::ROUTES_WITHOUT_AUTH.contains(&req.path())
|
||||||
&& req.path().starts_with("/api/")
|
&& req.path().starts_with("/api/")
|
||||||
{
|
{
|
||||||
|
4
virtweb_backend/src/nat/mod.rs
Normal file
4
virtweb_backend/src/nat/mod.rs
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
pub mod nat_conf_mode;
|
||||||
|
pub mod nat_definition;
|
||||||
|
pub mod nat_hook;
|
||||||
|
pub mod nat_lib;
|
232
virtweb_backend/src/nat/nat_conf_mode.rs
Normal file
232
virtweb_backend/src/nat/nat_conf_mode.rs
Normal file
@ -0,0 +1,232 @@
|
|||||||
|
use crate::constants;
|
||||||
|
use crate::libvirt_rest_structures::net::NetworkName;
|
||||||
|
use crate::nat::nat_definition::{Nat, NatSourceIP, NetNat};
|
||||||
|
use crate::utils::net_utils;
|
||||||
|
use clap::Parser;
|
||||||
|
use std::collections::HashMap;
|
||||||
|
use std::net::IpAddr;
|
||||||
|
use std::path::{Path, PathBuf};
|
||||||
|
use std::process::{Command, ExitStatus};
|
||||||
|
|
||||||
|
#[derive(thiserror::Error, Debug)]
|
||||||
|
enum NatConfModeError {
|
||||||
|
#[error("UpdateFirewall failed!")]
|
||||||
|
UpdateFirewall,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// VirtWeb NAT configuration mode. This executable should never be executed manually
|
||||||
|
#[derive(Parser, Debug, Clone)]
|
||||||
|
#[clap(author, version, about, long_about = None)]
|
||||||
|
struct NatArgs {
|
||||||
|
/// Storage directory
|
||||||
|
#[clap(short, long)]
|
||||||
|
storage: String,
|
||||||
|
|
||||||
|
/// Network name
|
||||||
|
#[clap(short, long)]
|
||||||
|
network_name: String,
|
||||||
|
|
||||||
|
/// Operation
|
||||||
|
#[clap(short, long)]
|
||||||
|
operation: String,
|
||||||
|
|
||||||
|
/// Sub operation
|
||||||
|
#[clap(long)]
|
||||||
|
sub_operation: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl NatArgs {
|
||||||
|
pub fn network_file(&self) -> PathBuf {
|
||||||
|
let network_name = NetworkName(self.network_name.to_string());
|
||||||
|
Path::new(&self.storage)
|
||||||
|
.join(constants::STORAGE_NAT_DIR)
|
||||||
|
.join(network_name.nat_file_name())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// NAT sub main function
|
||||||
|
pub async fn sub_main() -> anyhow::Result<()> {
|
||||||
|
let args = NatArgs::parse();
|
||||||
|
|
||||||
|
if !args.network_file().exists() {
|
||||||
|
log::warn!("Cannot do anything for the network, because the NAT configuration file does not exixsts!");
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
let conf_json = std::fs::read_to_string(args.network_file())?;
|
||||||
|
let conf: NetNat = serde_json::from_str(&conf_json)?;
|
||||||
|
|
||||||
|
let nic_ips = net_utils::net_list_and_ips()?;
|
||||||
|
|
||||||
|
match (args.operation.as_str(), args.sub_operation.as_str()) {
|
||||||
|
("started", "begin") => {
|
||||||
|
log::info!("Enable port forwarding for network");
|
||||||
|
trigger_nat_forwarding(true, &conf, &nic_ips).await?
|
||||||
|
}
|
||||||
|
("stopped", "end") => {
|
||||||
|
log::info!("Disable port forwarding for network");
|
||||||
|
trigger_nat_forwarding(false, &conf, &nic_ips).await?
|
||||||
|
}
|
||||||
|
_ => log::debug!(
|
||||||
|
"Operation {} - {} not supported",
|
||||||
|
args.operation,
|
||||||
|
args.sub_operation
|
||||||
|
),
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn trigger_nat_forwarding(
|
||||||
|
enable: bool,
|
||||||
|
conf: &NetNat,
|
||||||
|
nic_ips: &HashMap<String, Vec<IpAddr>>,
|
||||||
|
) -> anyhow::Result<()> {
|
||||||
|
if let Some(ipv4) = &conf.ipv4 {
|
||||||
|
trigger_nat_forwarding_nat_ipv(
|
||||||
|
enable,
|
||||||
|
&conf.interface,
|
||||||
|
&ipv4.iter().map(|i| i.generalize()).collect::<Vec<_>>(),
|
||||||
|
nic_ips,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(ipv6) = &conf.ipv6 {
|
||||||
|
trigger_nat_forwarding_nat_ipv(
|
||||||
|
enable,
|
||||||
|
&conf.interface,
|
||||||
|
&ipv6.iter().map(|i| i.generalize()).collect::<Vec<_>>(),
|
||||||
|
nic_ips,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn trigger_nat_forwarding_nat_ipv(
|
||||||
|
enable: bool,
|
||||||
|
net_interface: &str,
|
||||||
|
rules: &[Nat<IpAddr>],
|
||||||
|
nic_ips: &HashMap<String, Vec<IpAddr>>,
|
||||||
|
) -> anyhow::Result<()> {
|
||||||
|
for r in rules {
|
||||||
|
let host_ips = match &r.host_ip {
|
||||||
|
NatSourceIP::Interface { name } => nic_ips.get(name).cloned().unwrap_or_default(),
|
||||||
|
NatSourceIP::Ip { ip } => vec![*ip],
|
||||||
|
};
|
||||||
|
|
||||||
|
for host_ip in host_ips {
|
||||||
|
let mut guest_port = r.guest_port;
|
||||||
|
for host_port in r.host_port.as_seq() {
|
||||||
|
if r.protocol.has_tcp() {
|
||||||
|
toggle_port_forwarding(
|
||||||
|
enable,
|
||||||
|
false,
|
||||||
|
host_ip,
|
||||||
|
host_port,
|
||||||
|
net_interface,
|
||||||
|
r.guest_ip,
|
||||||
|
guest_port,
|
||||||
|
)?
|
||||||
|
}
|
||||||
|
|
||||||
|
if r.protocol.has_udp() {
|
||||||
|
toggle_port_forwarding(
|
||||||
|
enable,
|
||||||
|
true,
|
||||||
|
host_ip,
|
||||||
|
host_port,
|
||||||
|
net_interface,
|
||||||
|
r.guest_ip,
|
||||||
|
guest_port,
|
||||||
|
)?
|
||||||
|
}
|
||||||
|
|
||||||
|
guest_port += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn check_cmd(s: ExitStatus) -> anyhow::Result<()> {
|
||||||
|
if !s.success() {
|
||||||
|
log::error!("Failed to update firewall rules!");
|
||||||
|
return Err(NatConfModeError::UpdateFirewall.into());
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn toggle_port_forwarding(
|
||||||
|
enable: bool,
|
||||||
|
is_udp: bool,
|
||||||
|
host_ip: IpAddr,
|
||||||
|
host_port: u16,
|
||||||
|
net_interface: &str,
|
||||||
|
guest_ip: IpAddr,
|
||||||
|
guest_port: u16,
|
||||||
|
) -> anyhow::Result<()> {
|
||||||
|
if host_ip.is_ipv4() != guest_ip.is_ipv4() {
|
||||||
|
log::trace!("Skipping invalid combination {host_ip} -> {guest_ip}");
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
let program = match host_ip.is_ipv4() {
|
||||||
|
true => "/sbin/iptables",
|
||||||
|
false => "/sbin/ip6tables",
|
||||||
|
};
|
||||||
|
|
||||||
|
let protocol = match is_udp {
|
||||||
|
true => "udp",
|
||||||
|
false => "tcp",
|
||||||
|
};
|
||||||
|
|
||||||
|
log::info!("Forward (add={enable}) incoming {protocol} connections for {host_ip}:{host_port} to {guest_ip}:{guest_port} int {net_interface}");
|
||||||
|
|
||||||
|
// Rule 1
|
||||||
|
let cmd = Command::new(program)
|
||||||
|
.arg(match enable {
|
||||||
|
true => "-I",
|
||||||
|
false => "-D",
|
||||||
|
})
|
||||||
|
.arg("FORWARD")
|
||||||
|
.arg("-o")
|
||||||
|
.arg(net_interface)
|
||||||
|
.arg("-p")
|
||||||
|
.arg(protocol)
|
||||||
|
.arg("-d")
|
||||||
|
.arg(guest_ip.to_string())
|
||||||
|
.arg("--dport")
|
||||||
|
.arg(guest_port.to_string())
|
||||||
|
.arg("-j")
|
||||||
|
.arg("ACCEPT")
|
||||||
|
.status()?;
|
||||||
|
check_cmd(cmd)?;
|
||||||
|
|
||||||
|
// Rule 2
|
||||||
|
let cmd = Command::new(program)
|
||||||
|
.arg("-t")
|
||||||
|
.arg("nat")
|
||||||
|
.arg(match enable {
|
||||||
|
true => "-I",
|
||||||
|
false => "-D",
|
||||||
|
})
|
||||||
|
.arg("PREROUTING")
|
||||||
|
.arg("-p")
|
||||||
|
.arg(protocol)
|
||||||
|
.arg("-d")
|
||||||
|
.arg(host_ip.to_string())
|
||||||
|
.arg("--dport")
|
||||||
|
.arg(host_port.to_string())
|
||||||
|
.arg("-j")
|
||||||
|
.arg("DNAT")
|
||||||
|
.arg("--to")
|
||||||
|
.arg(format!("{guest_ip}:{guest_port}"))
|
||||||
|
.status()?;
|
||||||
|
check_cmd(cmd)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
142
virtweb_backend/src/nat/nat_definition.rs
Normal file
142
virtweb_backend/src/nat/nat_definition.rs
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
use crate::constants;
|
||||||
|
use crate::utils::net_utils;
|
||||||
|
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
||||||
|
|
||||||
|
#[derive(thiserror::Error, Debug)]
|
||||||
|
enum NatDefError {
|
||||||
|
#[error("Invalid nat definition: {0}")]
|
||||||
|
InvalidNatDef(&'static str),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
||||||
|
#[serde(tag = "type", rename_all = "lowercase")]
|
||||||
|
pub enum NatSourceIP<IPv> {
|
||||||
|
Interface { name: String },
|
||||||
|
Ip { ip: IPv },
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Copy, Clone, serde::Serialize, serde::Deserialize)]
|
||||||
|
pub enum NatProtocol {
|
||||||
|
TCP,
|
||||||
|
UDP,
|
||||||
|
Both,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl NatProtocol {
|
||||||
|
pub fn has_tcp(&self) -> bool {
|
||||||
|
!matches!(&self, NatProtocol::UDP)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn has_udp(&self) -> bool {
|
||||||
|
!matches!(&self, NatProtocol::TCP)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
||||||
|
#[serde(tag = "type", rename_all = "lowercase")]
|
||||||
|
pub enum NatHostPort {
|
||||||
|
Single { port: u16 },
|
||||||
|
Range { start: u16, end: u16 },
|
||||||
|
}
|
||||||
|
|
||||||
|
impl NatHostPort {
|
||||||
|
pub fn as_seq(&self) -> Vec<u16> {
|
||||||
|
match self {
|
||||||
|
NatHostPort::Single { port } => vec![*port],
|
||||||
|
NatHostPort::Range { start, end } => (*start..(*end + 1)).collect(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
||||||
|
pub struct Nat<IPv> {
|
||||||
|
pub protocol: NatProtocol,
|
||||||
|
pub host_ip: NatSourceIP<IPv>,
|
||||||
|
pub host_port: NatHostPort,
|
||||||
|
pub guest_ip: IPv,
|
||||||
|
pub guest_port: u16,
|
||||||
|
pub comment: Option<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<IPv> Nat<IPv> {
|
||||||
|
pub fn check(&self) -> anyhow::Result<()> {
|
||||||
|
if let NatSourceIP::Interface { name } = &self.host_ip {
|
||||||
|
if !net_utils::is_net_interface_name_valid(name) {
|
||||||
|
return Err(NatDefError::InvalidNatDef("Invalid nat interface name!").into());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if let NatHostPort::Range { start, end } = &self.host_port {
|
||||||
|
if *start == 0 {
|
||||||
|
return Err(NatDefError::InvalidNatDef("Invalid start range!").into());
|
||||||
|
}
|
||||||
|
|
||||||
|
if start > end {
|
||||||
|
return Err(NatDefError::InvalidNatDef("Invalid port range!").into());
|
||||||
|
}
|
||||||
|
|
||||||
|
if u16::MAX - (end - start) < self.guest_port {
|
||||||
|
return Err(NatDefError::InvalidNatDef("Guest port is too high!").into());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.guest_port == 0 {
|
||||||
|
return Err(NatDefError::InvalidNatDef("Invalid guest port!").into());
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(comment) = &self.comment {
|
||||||
|
if comment.len() > constants::NET_NAT_COMMENT_MAX_SIZE {
|
||||||
|
return Err(NatDefError::InvalidNatDef("Comment is too large!").into());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Nat<Ipv4Addr> {
|
||||||
|
pub fn generalize(&self) -> Nat<IpAddr> {
|
||||||
|
Nat {
|
||||||
|
protocol: self.protocol,
|
||||||
|
host_ip: match &self.host_ip {
|
||||||
|
NatSourceIP::Ip { ip } => NatSourceIP::Ip {
|
||||||
|
ip: IpAddr::V4(*ip),
|
||||||
|
},
|
||||||
|
NatSourceIP::Interface { name } => NatSourceIP::Interface {
|
||||||
|
name: name.to_string(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
host_port: self.host_port.clone(),
|
||||||
|
guest_ip: IpAddr::V4(self.guest_ip),
|
||||||
|
guest_port: self.guest_port,
|
||||||
|
comment: self.comment.clone(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Nat<Ipv6Addr> {
|
||||||
|
pub fn generalize(&self) -> Nat<IpAddr> {
|
||||||
|
Nat {
|
||||||
|
protocol: self.protocol,
|
||||||
|
host_ip: match &self.host_ip {
|
||||||
|
NatSourceIP::Ip { ip } => NatSourceIP::Ip {
|
||||||
|
ip: IpAddr::V6(*ip),
|
||||||
|
},
|
||||||
|
NatSourceIP::Interface { name } => NatSourceIP::Interface {
|
||||||
|
name: name.to_string(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
host_port: self.host_port.clone(),
|
||||||
|
guest_ip: IpAddr::V6(self.guest_ip),
|
||||||
|
guest_port: self.guest_port,
|
||||||
|
comment: self.comment.clone(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, Default)]
|
||||||
|
pub struct NetNat {
|
||||||
|
pub interface: String,
|
||||||
|
pub ipv4: Option<Vec<Nat<Ipv4Addr>>>,
|
||||||
|
pub ipv6: Option<Vec<Nat<Ipv6Addr>>>,
|
||||||
|
}
|
29
virtweb_backend/src/nat/nat_hook.rs
Normal file
29
virtweb_backend/src/nat/nat_hook.rs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
use crate::app_config::AppConfig;
|
||||||
|
use crate::constants;
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
/// Check out whether NAT hook has been installed or not
|
||||||
|
pub fn is_installed() -> anyhow::Result<bool> {
|
||||||
|
let hook_file = Path::new(constants::NAT_HOOK_PATH);
|
||||||
|
|
||||||
|
if !hook_file.exists() {
|
||||||
|
return Ok(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
let exe = std::env::current_exe()?;
|
||||||
|
let hook_content = std::fs::read_to_string(hook_file)?;
|
||||||
|
|
||||||
|
Ok(hook_content.contains(exe.to_string_lossy().as_ref()))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get nat hook expected content
|
||||||
|
pub fn hook_content() -> anyhow::Result<String> {
|
||||||
|
let exe = std::env::current_exe()?;
|
||||||
|
|
||||||
|
Ok(format!(
|
||||||
|
"#!/bin/bash\n\
|
||||||
|
NAT_MODE=1 {} --storage {} --network-name \"$1\" --operation \"$2\" --sub-operation \"$3\"",
|
||||||
|
exe.to_string_lossy(),
|
||||||
|
AppConfig::get().storage
|
||||||
|
))
|
||||||
|
}
|
61
virtweb_backend/src/nat/nat_lib.rs
Normal file
61
virtweb_backend/src/nat/nat_lib.rs
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
use crate::app_config::AppConfig;
|
||||||
|
use crate::libvirt_rest_structures::net::{NetworkInfo, NetworkName};
|
||||||
|
use crate::nat::nat_definition::NetNat;
|
||||||
|
|
||||||
|
#[derive(thiserror::Error, Debug)]
|
||||||
|
enum NatLibError {
|
||||||
|
#[error("Could not save nat definition, because network bridge name was not specified!")]
|
||||||
|
MissingNetworkBridgeName,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Save nat definition
|
||||||
|
pub fn save_nat_def(net: &NetworkInfo) -> anyhow::Result<()> {
|
||||||
|
let nat = match net.has_nat_def() {
|
||||||
|
true => NetNat {
|
||||||
|
interface: net
|
||||||
|
.bridge_name
|
||||||
|
.as_ref()
|
||||||
|
.ok_or(NatLibError::MissingNetworkBridgeName)?
|
||||||
|
.to_string(),
|
||||||
|
ipv4: net
|
||||||
|
.ip_v4
|
||||||
|
.as_ref()
|
||||||
|
.map(|i| i.nat.clone())
|
||||||
|
.unwrap_or_default(),
|
||||||
|
ipv6: net
|
||||||
|
.ip_v6
|
||||||
|
.as_ref()
|
||||||
|
.map(|i| i.nat.clone())
|
||||||
|
.unwrap_or_default(),
|
||||||
|
},
|
||||||
|
false => NetNat::default(),
|
||||||
|
};
|
||||||
|
|
||||||
|
let json = serde_json::to_string(&nat)?;
|
||||||
|
|
||||||
|
std::fs::write(AppConfig::get().net_nat_path(&net.name), json)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Remove nat definition, if existing
|
||||||
|
pub fn remove_nat_def(name: &NetworkName) -> anyhow::Result<()> {
|
||||||
|
let nat_file = AppConfig::get().net_nat_path(name);
|
||||||
|
if nat_file.exists() {
|
||||||
|
std::fs::remove_file(nat_file)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Load nat definition, if available
|
||||||
|
pub fn load_nat_def(name: &NetworkName) -> anyhow::Result<NetNat> {
|
||||||
|
let nat_file = AppConfig::get().net_nat_path(name);
|
||||||
|
if !nat_file.exists() {
|
||||||
|
return Ok(NetNat::default());
|
||||||
|
}
|
||||||
|
|
||||||
|
let file = std::fs::read_to_string(nat_file)?;
|
||||||
|
|
||||||
|
Ok(serde_json::from_str(&file)?)
|
||||||
|
}
|
@ -1,5 +1,8 @@
|
|||||||
|
use nix::sys::socket::{AddressFamily, SockaddrLike};
|
||||||
|
use std::collections::HashMap;
|
||||||
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
|
use sysinfo::Networks;
|
||||||
|
|
||||||
pub fn extract_ipv4(ip: IpAddr) -> Ipv4Addr {
|
pub fn extract_ipv4(ip: IpAddr) -> Ipv4Addr {
|
||||||
match ip {
|
match ip {
|
||||||
@ -32,7 +35,7 @@ pub fn is_ipv4_mask_valid(mask: u8) -> bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn is_ipv6_mask_valid(mask: u8) -> bool {
|
pub fn is_ipv6_mask_valid(mask: u8) -> bool {
|
||||||
mask <= 64
|
mask <= 128
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn is_mask_valid(ipv: usize, mask: u8) -> bool {
|
pub fn is_mask_valid(ipv: usize, mask: u8) -> bool {
|
||||||
@ -47,10 +50,97 @@ pub fn is_mac_address_valid<D: AsRef<str>>(mac: D) -> bool {
|
|||||||
lazy_regex::regex!("^([a-fA-F0-9]{2}[:-]){5}[a-fA-F0-9]{2}$").is_match(mac.as_ref())
|
lazy_regex::regex!("^([a-fA-F0-9]{2}[:-]){5}[a-fA-F0-9]{2}$").is_match(mac.as_ref())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn is_net_interface_name_valid<D: AsRef<str>>(int: D) -> bool {
|
||||||
|
lazy_regex::regex!("^[a-zA-Z0-9]+$").is_match(int.as_ref())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get the list of available network interfaces
|
||||||
|
pub fn net_list() -> Vec<String> {
|
||||||
|
let mut networks = Networks::new();
|
||||||
|
networks.refresh_list();
|
||||||
|
|
||||||
|
networks
|
||||||
|
.list()
|
||||||
|
.iter()
|
||||||
|
.map(|n| n.0.to_string())
|
||||||
|
.collect::<Vec<_>>()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get the list of available network interfaces associated with their IP address
|
||||||
|
pub fn net_list_and_ips() -> anyhow::Result<HashMap<String, Vec<IpAddr>>> {
|
||||||
|
let addrs = nix::ifaddrs::getifaddrs().unwrap();
|
||||||
|
|
||||||
|
let mut res = HashMap::new();
|
||||||
|
|
||||||
|
for ifaddr in addrs {
|
||||||
|
let address = match ifaddr.address {
|
||||||
|
Some(address) => address,
|
||||||
|
None => {
|
||||||
|
log::debug!(
|
||||||
|
"Interface {} has an unsupported address family",
|
||||||
|
ifaddr.interface_name
|
||||||
|
);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let addr_str = match address.family() {
|
||||||
|
Some(AddressFamily::Inet) => {
|
||||||
|
let address = address.to_string();
|
||||||
|
address
|
||||||
|
.split_once(':')
|
||||||
|
.map(|a| a.0)
|
||||||
|
.unwrap_or(&address)
|
||||||
|
.to_string()
|
||||||
|
}
|
||||||
|
Some(AddressFamily::Inet6) => {
|
||||||
|
let address = address.to_string();
|
||||||
|
let address = address
|
||||||
|
.split_once(']')
|
||||||
|
.map(|a| a.0)
|
||||||
|
.unwrap_or(&address)
|
||||||
|
.to_string();
|
||||||
|
|
||||||
|
let address = address
|
||||||
|
.split_once('%')
|
||||||
|
.map(|a| a.0)
|
||||||
|
.unwrap_or(&address)
|
||||||
|
.to_string();
|
||||||
|
|
||||||
|
address.strip_prefix('[').unwrap_or(&address).to_string()
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
log::debug!(
|
||||||
|
"Interface {} has an unsupported address family {:?}",
|
||||||
|
ifaddr.interface_name,
|
||||||
|
address.family()
|
||||||
|
);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
log::debug!(
|
||||||
|
"Process ip {addr_str} for interface {}",
|
||||||
|
ifaddr.interface_name
|
||||||
|
);
|
||||||
|
|
||||||
|
let ip = IpAddr::from_str(&addr_str)?;
|
||||||
|
|
||||||
|
if !res.contains_key(&ifaddr.interface_name) {
|
||||||
|
res.insert(ifaddr.interface_name.to_string(), Vec::with_capacity(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
res.get_mut(&ifaddr.interface_name).unwrap().push(ip);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(res)
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use crate::utils::net_utils::{
|
use crate::utils::net_utils::{
|
||||||
is_ipv4_address_valid, is_ipv6_address_valid, is_mac_address_valid, is_mask_valid,
|
is_ipv4_address_valid, is_ipv6_address_valid, is_mac_address_valid, is_mask_valid,
|
||||||
|
is_net_interface_name_valid,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
@ -79,6 +169,7 @@ mod tests {
|
|||||||
assert!(is_ipv6_address_valid("fe80::"));
|
assert!(is_ipv6_address_valid("fe80::"));
|
||||||
assert!(is_ipv6_address_valid("fe80:dd::"));
|
assert!(is_ipv6_address_valid("fe80:dd::"));
|
||||||
assert!(is_ipv6_address_valid("00:00:00:00:00::"));
|
assert!(is_ipv6_address_valid("00:00:00:00:00::"));
|
||||||
|
assert!(is_ipv6_address_valid("0:0:0:0:0:0:0:0"));
|
||||||
|
|
||||||
assert!(!is_ipv6_address_valid("tata"));
|
assert!(!is_ipv6_address_valid("tata"));
|
||||||
assert!(!is_ipv6_address_valid("2.56.58.156"));
|
assert!(!is_ipv6_address_valid("2.56.58.156"));
|
||||||
@ -93,6 +184,17 @@ mod tests {
|
|||||||
assert!(is_mask_valid(6, 34));
|
assert!(is_mask_valid(6, 34));
|
||||||
|
|
||||||
assert!(!is_mask_valid(4, 34));
|
assert!(!is_mask_valid(4, 34));
|
||||||
assert!(!is_mask_valid(6, 69));
|
assert!(is_mask_valid(6, 69));
|
||||||
|
assert!(is_mask_valid(6, 128));
|
||||||
|
assert!(!is_mask_valid(6, 129));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_is_net_interface_name_valid() {
|
||||||
|
assert!(is_net_interface_name_valid("eth0"));
|
||||||
|
assert!(is_net_interface_name_valid("enp0s25"));
|
||||||
|
|
||||||
|
assert!(!is_net_interface_name_valid("enp0s25 "));
|
||||||
|
assert!(!is_net_interface_name_valid("@enp0s25 "));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ sudo apt install qemu-kvm libvirt-daemon-system
|
|||||||
```
|
```
|
||||||
|
|
||||||
3. Allow the current user to manage VMs:
|
3. Allow the current user to manage VMs:
|
||||||
```
|
```bash
|
||||||
sudo adduser $USER libvirt
|
sudo adduser $USER libvirt
|
||||||
sudo adduser $USER kvm
|
sudo adduser $USER kvm
|
||||||
```
|
```
|
||||||
@ -20,4 +20,27 @@ sudo adduser $USER kvm
|
|||||||
|
|
||||||
4. Install required developpment tools:
|
4. Install required developpment tools:
|
||||||
* Rust: https://www.rust-lang.org/learn/get-started
|
* Rust: https://www.rust-lang.org/learn/get-started
|
||||||
* NodeJS: https://nodejs.org/en/download/current
|
* NodeJS: https://nodejs.org/en/download/current
|
||||||
|
|
||||||
|
|
||||||
|
5. Run sample OpenID service
|
||||||
|
```bash
|
||||||
|
cd virtweb_backend
|
||||||
|
docker compose up
|
||||||
|
```
|
||||||
|
|
||||||
|
6. Run the backend:
|
||||||
|
```bash
|
||||||
|
sudo mkdir /var/virtweb
|
||||||
|
sudo chown $USER:$USER /var/virtweb
|
||||||
|
cd virtweb_backend
|
||||||
|
cargo fmt && cargo clippy && cargo run -- -s /var/virtweb --hypervisor-uri "qemu:///system"
|
||||||
|
```
|
||||||
|
|
||||||
|
7. Run the frontend
|
||||||
|
```bash
|
||||||
|
cd virtweb_frontend
|
||||||
|
npm run start
|
||||||
|
```
|
||||||
|
|
||||||
|
Have fun with your development!
|
@ -102,7 +102,8 @@ sudo systemctl start virtweb
|
|||||||
|
|
||||||
You should now be able to create VMs!
|
You should now be able to create VMs!
|
||||||
|
|
||||||
### Manual port forwarding without a LibVirt HOOK
|
|
||||||
|
## Configure port forwarding
|
||||||
* Allow ip forwarding in the kernel: edit `/etc/sysctl.conf` and uncomment the following line:
|
* Allow ip forwarding in the kernel: edit `/etc/sysctl.conf` and uncomment the following line:
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -115,85 +116,34 @@ net.ipv4.ip_forward=1
|
|||||||
sudo sysctl -p /etc/sysctl.conf
|
sudo sysctl -p /etc/sysctl.conf
|
||||||
```
|
```
|
||||||
|
|
||||||
* Create the following IPTables rules:
|
* Configure apparmore service. Create or update a file named `/etc/apparmor.d/local/usr.sbin.libvirtd` with the following content:
|
||||||
|
|
||||||
```
|
```
|
||||||
UP_DEV=$(ip a | grep "192.168.1." -B 2 | head -n 1 | cut -d ':' -f 2 |
|
/usr/local/bin/virtweb_backend ux,
|
||||||
tr -d ' ')
|
|
||||||
LOCAL_DEV=$(ip a | grep "192.168.25." -B 2 | head -n 1 | cut -d ':' -f 2 | tr -d ' ')
|
|
||||||
echo "$UP_DEV -> $LOCAL_DEV"
|
|
||||||
|
|
||||||
GUEST_IP=192.168.25.189
|
|
||||||
HOST_PORT=8085
|
|
||||||
GUEST_PORT=8085
|
|
||||||
|
|
||||||
# connections from outside
|
|
||||||
sudo iptables -I FORWARD -o $LOCAL_DEV -d $GUEST_IP -j ACCEPT
|
|
||||||
sudo iptables -t nat -I PREROUTING -p tcp --dport $HOST_PORT -j DNAT --to $GUEST_IP:$GUEST_PORT
|
|
||||||
```
|
```
|
||||||
|
|
||||||
* Theses rules can be persisted using `iptables-save` then, or using a libvirt hook.
|
* Update Apparmor configuration:
|
||||||
|
|
||||||
|
```bash
|
||||||
### Manual port forwarding with a LibVirt HOOK
|
sudo apparmor_parser -r /etc/apparmor.d/usr.sbin.libvirtd
|
||||||
* Allow ip forwarding in the kernel: edit `/etc/sysctl.conf` and uncomment the following line:
|
|
||||||
|
|
||||||
```
|
|
||||||
net.ipv4.ip_forward=1
|
|
||||||
```
|
```
|
||||||
|
|
||||||
* To reload `sysctl` without reboot:
|
* Create VirtWeb hook. Set the following content inside `/etc/libvirt/hooks/network`:
|
||||||
|
|
||||||
```
|
|
||||||
sudo sysctl -p /etc/sysctl.conf
|
|
||||||
```
|
|
||||||
|
|
||||||
* Get the following information, using the web ui or `virsh`:
|
|
||||||
* The name of the target guest
|
|
||||||
* The IP and port of the guest who will receive the connection
|
|
||||||
* The port of the host that will be forwarded to the guest
|
|
||||||
|
|
||||||
* Stop the guest if its running, either using `virsh` or from the web ui
|
|
||||||
|
|
||||||
* Create or append the following content to the file `/etc/libvirt/hooks/qemu`:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
NAT_MODE=1 /usr/local/bin/virtweb_backend --storage /home/virtweb/storage --network-name "$1" --operation "$2" --sub-operation "$3"
|
||||||
# IMPORTANT: Change the "VM NAME" string to match your actual VM Name.
|
|
||||||
# In order to create rules to other VMs, just duplicate the below block and configure
|
|
||||||
# it accordingly.
|
|
||||||
if [ "${1}" = "VM NAME" ]; then
|
|
||||||
|
|
||||||
# Update the following variables to fit your setup
|
|
||||||
GUEST_IP=
|
|
||||||
GUEST_PORT=
|
|
||||||
HOST_PORT=
|
|
||||||
|
|
||||||
if [ "${2}" = "stopped" ] || [ "${2}" = "reconnect" ]; then
|
|
||||||
/sbin/iptables -D FORWARD -o virbr0 -p tcp -d $GUEST_IP --dport $GUEST_PORT -j ACCEPT
|
|
||||||
/sbin/iptables -t nat -D PREROUTING -p tcp --dport $HOST_PORT -j DNAT --to $GUEST_IP:$GUEST_PORT
|
|
||||||
fi
|
|
||||||
if [ "${2}" = "start" ] || [ "${2}" = "reconnect" ]; then
|
|
||||||
/sbin/iptables -I FORWARD -o virbr0 -p tcp -d $GUEST_IP --dport $GUEST_PORT -j ACCEPT
|
|
||||||
/sbin/iptables -t nat -I PREROUTING -p tcp --dport $HOST_PORT -j DNAT --to $GUEST_IP:$GUEST_PORT
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
```
|
```
|
||||||
|
|
||||||
* Make the hook executable:
|
* Make the script executable:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo chmod +x /etc/libvirt/hooks/qemu
|
sudo chmod +x /etc/libvirt/hooks/network
|
||||||
```
|
```
|
||||||
|
|
||||||
* Restart the `libvirtd` service:
|
* Restart `libvirtd` and `VirtWeb`:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo systemctl restart libvirtd.service
|
sudo systemctl restart libvirtd
|
||||||
```
|
sudo systemctl restart virtweb
|
||||||
|
```
|
||||||
* Start the guest
|
|
||||||
|
|
||||||
|
|
||||||
> Note: this guide is based on https://wiki.libvirt.org/Networking.html
|
|
2
virtweb_frontend/.gitignore
vendored
2
virtweb_frontend/.gitignore
vendored
@ -1,5 +1,7 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
dist/
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
/node_modules
|
/node_modules
|
||||||
/.pnp
|
/.pnp
|
||||||
|
10634
virtweb_frontend/package-lock.json
generated
10634
virtweb_frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -6,36 +6,37 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/react": "^11.11.1",
|
"@emotion/react": "^11.11.1",
|
||||||
"@emotion/styled": "^11.11.0",
|
"@emotion/styled": "^11.11.0",
|
||||||
"@fontsource/roboto": "^5.0.8",
|
"@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": "^5.14.7",
|
"@mui/icons-material": "^5.14.7",
|
||||||
"@mui/material": "^5.14.7",
|
"@mui/material": "^5.14.7",
|
||||||
"@mui/x-charts": "^6.0.0-alpha.9",
|
"@mui/x-charts": "^7.3.0",
|
||||||
"@mui/x-data-grid": "^6.12.1",
|
"@mui/x-data-grid": "^7.3.0",
|
||||||
"@testing-library/jest-dom": "^5.17.0",
|
"@testing-library/jest-dom": "^6.4.2",
|
||||||
"@testing-library/react": "^13.4.0",
|
"@testing-library/react": "^16.0.0",
|
||||||
"@testing-library/user-event": "^13.5.0",
|
"@testing-library/user-event": "^14.5.2",
|
||||||
"@types/humanize-duration": "^3.27.1",
|
"@types/humanize-duration": "^3.27.1",
|
||||||
"@types/jest": "^27.5.2",
|
"@types/jest": "^29.5.12",
|
||||||
"@types/react": "^18.2.21",
|
"@types/react": "^18.2.79",
|
||||||
"@types/react-dom": "^18.2.7",
|
"@types/react-dom": "^18.2.25",
|
||||||
"@types/react-syntax-highlighter": "^15.5.11",
|
"@types/react-syntax-highlighter": "^15.5.11",
|
||||||
"@types/uuid": "^9.0.5",
|
"@types/uuid": "^10.0.0",
|
||||||
"@vitejs/plugin-react": "^4.2.1",
|
"@vitejs/plugin-react": "^4.2.1",
|
||||||
|
"date-and-time": "^3.1.1",
|
||||||
"filesize": "^10.0.12",
|
"filesize": "^10.0.12",
|
||||||
"humanize-duration": "^3.29.0",
|
"humanize-duration": "^3.29.0",
|
||||||
"mui-file-input": "^3.0.1",
|
"mui-file-input": "^4.0.4",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
"react-router-dom": "^6.15.0",
|
"react-router-dom": "^6.23.0",
|
||||||
"react-syntax-highlighter": "^15.5.0",
|
"react-syntax-highlighter": "^15.5.0",
|
||||||
"react-vnc": "^1.0.0",
|
"react-vnc": "^1.0.0",
|
||||||
"typescript": "^4.9.5",
|
"typescript": "^4.0.0",
|
||||||
"uuid": "^9.0.1",
|
"uuid": "^10.0.0",
|
||||||
"vite": "^5.0.8",
|
"vite": "^5.2.10",
|
||||||
"vite-tsconfig-paths": "^4.2.2",
|
"vite-tsconfig-paths": "^4.2.2",
|
||||||
"web-vitals": "^2.1.4",
|
"web-vitals": "^3.5.2",
|
||||||
"xml-formatter": "^3.6.0"
|
"xml-formatter": "^3.6.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -9,29 +9,35 @@ import "./App.css";
|
|||||||
import { AuthApi } from "./api/AuthApi";
|
import { AuthApi } from "./api/AuthApi";
|
||||||
import { ServerApi } from "./api/ServerApi";
|
import { ServerApi } from "./api/ServerApi";
|
||||||
import {
|
import {
|
||||||
CreateNetworkRoute,
|
CreateApiTokenRoute,
|
||||||
EditNetworkRoute,
|
EditApiTokenRoute,
|
||||||
} from "./routes/EditNetworkRoute";
|
} from "./routes/EditAPITokenRoute";
|
||||||
import { CreateVMRoute, EditVMRoute } from "./routes/EditVMRoute";
|
|
||||||
import { IsoFilesRoute } from "./routes/IsoFilesRoute";
|
|
||||||
import { NetworksListRoute } from "./routes/NetworksListRoute";
|
|
||||||
import { NotFoundRoute } from "./routes/NotFound";
|
|
||||||
import { SysInfoRoute } from "./routes/SysInfoRoute";
|
|
||||||
import { VMListRoute } from "./routes/VMListRoute";
|
|
||||||
import { VMRoute } from "./routes/VMRoute";
|
|
||||||
import { VNCRoute } from "./routes/VNCRoute";
|
|
||||||
import { LoginRoute } from "./routes/auth/LoginRoute";
|
|
||||||
import { OIDCCbRoute } from "./routes/auth/OIDCCbRoute";
|
|
||||||
import { BaseAuthenticatedPage } from "./widgets/BaseAuthenticatedPage";
|
|
||||||
import { BaseLoginPage } from "./widgets/BaseLoginPage";
|
|
||||||
import { ViewNetworkRoute } from "./routes/ViewNetworkRoute";
|
|
||||||
import { HomeRoute } from "./routes/HomeRoute";
|
|
||||||
import { NetworkFiltersListRoute } from "./routes/NetworkFiltersListRoute";
|
|
||||||
import { ViewNWFilterRoute } from "./routes/ViewNWFilterRoute";
|
|
||||||
import {
|
import {
|
||||||
CreateNWFilterRoute,
|
CreateNWFilterRoute,
|
||||||
EditNWFilterRoute,
|
EditNWFilterRoute,
|
||||||
} from "./routes/EditNWFilterRoute";
|
} from "./routes/EditNWFilterRoute";
|
||||||
|
import {
|
||||||
|
CreateNetworkRoute,
|
||||||
|
EditNetworkRoute,
|
||||||
|
} from "./routes/EditNetworkRoute";
|
||||||
|
import { CreateVMRoute, EditVMRoute } from "./routes/EditVMRoute";
|
||||||
|
import { HomeRoute } from "./routes/HomeRoute";
|
||||||
|
import { IsoFilesRoute } from "./routes/IsoFilesRoute";
|
||||||
|
import { NetworkFiltersListRoute } from "./routes/NetworkFiltersListRoute";
|
||||||
|
import { NetworksListRoute } from "./routes/NetworksListRoute";
|
||||||
|
import { NotFoundRoute } from "./routes/NotFound";
|
||||||
|
import { SysInfoRoute } from "./routes/SysInfoRoute";
|
||||||
|
import { TokensListRoute } from "./routes/TokensListRoute";
|
||||||
|
import { VMListRoute } from "./routes/VMListRoute";
|
||||||
|
import { VMRoute } from "./routes/VMRoute";
|
||||||
|
import { VNCRoute } from "./routes/VNCRoute";
|
||||||
|
import { ViewApiTokenRoute } from "./routes/ViewApiTokenRoute";
|
||||||
|
import { ViewNWFilterRoute } from "./routes/ViewNWFilterRoute";
|
||||||
|
import { ViewNetworkRoute } from "./routes/ViewNetworkRoute";
|
||||||
|
import { LoginRoute } from "./routes/auth/LoginRoute";
|
||||||
|
import { OIDCCbRoute } from "./routes/auth/OIDCCbRoute";
|
||||||
|
import { BaseAuthenticatedPage } from "./widgets/BaseAuthenticatedPage";
|
||||||
|
import { BaseLoginPage } from "./widgets/BaseLoginPage";
|
||||||
|
|
||||||
interface AuthContext {
|
interface AuthContext {
|
||||||
signedIn: boolean;
|
signedIn: boolean;
|
||||||
@ -72,6 +78,11 @@ export function App() {
|
|||||||
<Route path="nwfilter/:uuid" element={<ViewNWFilterRoute />} />
|
<Route path="nwfilter/:uuid" element={<ViewNWFilterRoute />} />
|
||||||
<Route path="nwfilter/:uuid/edit" element={<EditNWFilterRoute />} />
|
<Route path="nwfilter/:uuid/edit" element={<EditNWFilterRoute />} />
|
||||||
|
|
||||||
|
<Route path="tokens" element={<TokensListRoute />} />
|
||||||
|
<Route path="token/new" element={<CreateApiTokenRoute />} />
|
||||||
|
<Route path="token/:id" element={<ViewApiTokenRoute />} />
|
||||||
|
<Route path="token/:id/edit" element={<EditApiTokenRoute />} />
|
||||||
|
|
||||||
<Route path="sysinfo" element={<SysInfoRoute />} />
|
<Route path="sysinfo" element={<SysInfoRoute />} />
|
||||||
<Route path="*" element={<NotFoundRoute />} />
|
<Route path="*" element={<NotFoundRoute />} />
|
||||||
</Route>
|
</Route>
|
||||||
|
@ -13,10 +13,28 @@ export interface DHCPConfig {
|
|||||||
hosts: DHCPHost[];
|
hosts: DHCPHost[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type NatSource =
|
||||||
|
| { type: "interface"; name: string }
|
||||||
|
| { type: "ip"; ip: string };
|
||||||
|
|
||||||
|
export type NatHostPort =
|
||||||
|
| { type: "single"; port: number }
|
||||||
|
| { type: "range"; start: number; end: number };
|
||||||
|
|
||||||
|
export interface NatEntry {
|
||||||
|
protocol: "TCP" | "UDP" | "Both";
|
||||||
|
host_ip: NatSource;
|
||||||
|
host_port: NatHostPort;
|
||||||
|
guest_ip: string;
|
||||||
|
guest_port: number;
|
||||||
|
comment?: string;
|
||||||
|
}
|
||||||
|
|
||||||
export interface IpConfig {
|
export interface IpConfig {
|
||||||
bridge_address: string;
|
bridge_address: string;
|
||||||
prefix: number;
|
prefix: number;
|
||||||
dhcp?: DHCPConfig;
|
dhcp?: DHCPConfig;
|
||||||
|
nat?: NatEntry[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface NetworkInfo {
|
export interface NetworkInfo {
|
||||||
|
@ -21,11 +21,15 @@ export interface ServerConstraints {
|
|||||||
disk_size: LenConstraint;
|
disk_size: LenConstraint;
|
||||||
net_name_size: LenConstraint;
|
net_name_size: LenConstraint;
|
||||||
net_title_size: LenConstraint;
|
net_title_size: LenConstraint;
|
||||||
|
net_nat_comment_size: LenConstraint;
|
||||||
dhcp_reservation_host_name: LenConstraint;
|
dhcp_reservation_host_name: LenConstraint;
|
||||||
nwfilter_name_size: LenConstraint;
|
nwfilter_name_size: LenConstraint;
|
||||||
nwfilter_comment_size: LenConstraint;
|
nwfilter_comment_size: LenConstraint;
|
||||||
nwfilter_priority: LenConstraint;
|
nwfilter_priority: LenConstraint;
|
||||||
nwfilter_selectors_count: LenConstraint;
|
nwfilter_selectors_count: LenConstraint;
|
||||||
|
api_token_name_size: LenConstraint;
|
||||||
|
api_token_description_size: LenConstraint;
|
||||||
|
api_token_right_path_size: LenConstraint;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface LenConstraint {
|
export interface LenConstraint {
|
||||||
@ -38,6 +42,9 @@ let config: ServerConfig | null = null;
|
|||||||
export interface ServerSystemInfo {
|
export interface ServerSystemInfo {
|
||||||
hypervisor: HypervisorInfo;
|
hypervisor: HypervisorInfo;
|
||||||
system: SystemInfo;
|
system: SystemInfo;
|
||||||
|
components: SysComponent;
|
||||||
|
disks: DiskInfo[];
|
||||||
|
networks: NetworkInfo[];
|
||||||
}
|
}
|
||||||
|
|
||||||
interface HypervisorInfo {
|
interface HypervisorInfo {
|
||||||
@ -76,10 +83,6 @@ interface SystemInfo {
|
|||||||
total_swap: number;
|
total_swap: number;
|
||||||
free_swap: number;
|
free_swap: number;
|
||||||
used_swap: number;
|
used_swap: number;
|
||||||
components: SysComponent;
|
|
||||||
users: [];
|
|
||||||
disks: DiskInfo[];
|
|
||||||
networks: NetworkInfo[];
|
|
||||||
uptime: number;
|
uptime: number;
|
||||||
boot_time: number;
|
boot_time: number;
|
||||||
load_average: SysLoadAverage;
|
load_average: SysLoadAverage;
|
||||||
@ -147,6 +150,12 @@ interface SysLoadAverage {
|
|||||||
fifteen: number;
|
fifteen: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface NetworkHookStatus {
|
||||||
|
installed: boolean;
|
||||||
|
content: string;
|
||||||
|
path: string;
|
||||||
|
}
|
||||||
|
|
||||||
export class ServerApi {
|
export class ServerApi {
|
||||||
/**
|
/**
|
||||||
* Get server configuration
|
* Get server configuration
|
||||||
@ -180,6 +189,18 @@ export class ServerApi {
|
|||||||
).data;
|
).data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get network hook status
|
||||||
|
*/
|
||||||
|
static async NetworkHookStatus(): Promise<NetworkHookStatus> {
|
||||||
|
return (
|
||||||
|
await APIClient.exec({
|
||||||
|
method: "GET",
|
||||||
|
uri: "/server/network_hook_status",
|
||||||
|
})
|
||||||
|
).data;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get host supported vCPUs configurations
|
* Get host supported vCPUs configurations
|
||||||
*/
|
*/
|
||||||
|
102
virtweb_frontend/src/api/TokensApi.ts
Normal file
102
virtweb_frontend/src/api/TokensApi.ts
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
import { time } from "../utils/DateUtils";
|
||||||
|
import { APIClient } from "./ApiClient";
|
||||||
|
|
||||||
|
export type RightVerb = "POST" | "GET" | "PUT" | "DELETE" | "PATCH";
|
||||||
|
|
||||||
|
export interface TokenRight {
|
||||||
|
verb: RightVerb;
|
||||||
|
path: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface APIToken {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
created: number;
|
||||||
|
updated: number;
|
||||||
|
rights: TokenRight[];
|
||||||
|
last_used: number;
|
||||||
|
ip_restriction?: string;
|
||||||
|
max_inactivity?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function APITokenURL(t: APIToken, edit: boolean = false): string {
|
||||||
|
return `/token/${t.id}${edit ? "/edit" : ""}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ExpiredAPIToken(t: APIToken): boolean {
|
||||||
|
if (!t.max_inactivity) return false;
|
||||||
|
return t.last_used + t.max_inactivity < time();
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface APITokenPrivateKey {
|
||||||
|
alg: string;
|
||||||
|
priv: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CreatedAPIToken {
|
||||||
|
token: APIToken;
|
||||||
|
priv_key: APITokenPrivateKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class TokensApi {
|
||||||
|
/**
|
||||||
|
* Create a new API token
|
||||||
|
*/
|
||||||
|
static async Create(n: APIToken): Promise<CreatedAPIToken> {
|
||||||
|
return (
|
||||||
|
await APIClient.exec({
|
||||||
|
method: "POST",
|
||||||
|
uri: "/token/create",
|
||||||
|
jsonData: n,
|
||||||
|
})
|
||||||
|
).data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the full list of tokens
|
||||||
|
*/
|
||||||
|
static async GetList(): Promise<APIToken[]> {
|
||||||
|
return (
|
||||||
|
await APIClient.exec({
|
||||||
|
method: "GET",
|
||||||
|
uri: "/token/list",
|
||||||
|
})
|
||||||
|
).data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the information about a single token
|
||||||
|
*/
|
||||||
|
static async GetSingle(uuid: string): Promise<APIToken> {
|
||||||
|
return (
|
||||||
|
await APIClient.exec({
|
||||||
|
method: "GET",
|
||||||
|
uri: `/token/${uuid}`,
|
||||||
|
})
|
||||||
|
).data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update an existing API token information
|
||||||
|
*/
|
||||||
|
static async Update(n: APIToken): Promise<void> {
|
||||||
|
return (
|
||||||
|
await APIClient.exec({
|
||||||
|
method: "PATCH",
|
||||||
|
uri: `/token/${n.id}`,
|
||||||
|
jsonData: n,
|
||||||
|
})
|
||||||
|
).data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete an API token
|
||||||
|
*/
|
||||||
|
static async Delete(n: APIToken): Promise<void> {
|
||||||
|
await APIClient.exec({
|
||||||
|
method: "DELETE",
|
||||||
|
uri: `/token/${n.id}`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
58
virtweb_frontend/src/dialogs/CreatedTokenDialog.tsx
Normal file
58
virtweb_frontend/src/dialogs/CreatedTokenDialog.tsx
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
import {
|
||||||
|
Button,
|
||||||
|
Dialog,
|
||||||
|
DialogActions,
|
||||||
|
DialogContent,
|
||||||
|
DialogTitle,
|
||||||
|
Typography,
|
||||||
|
} from "@mui/material";
|
||||||
|
import { useNavigate } from "react-router-dom";
|
||||||
|
import { APITokenURL, CreatedAPIToken } from "../api/TokensApi";
|
||||||
|
import { CopyToClipboard } from "../widgets/CopyToClipboard";
|
||||||
|
import { InlineCode } from "../widgets/InlineCode";
|
||||||
|
|
||||||
|
export function CreatedTokenDialog(p: {
|
||||||
|
createdToken: CreatedAPIToken;
|
||||||
|
}): React.ReactElement {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
const close = () => {
|
||||||
|
navigate(APITokenURL(p.createdToken.token));
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
<Dialog open>
|
||||||
|
<DialogTitle>Token successfully created</DialogTitle>
|
||||||
|
<DialogContent>
|
||||||
|
<Typography>
|
||||||
|
Your token was successfully created. You need now to copy the private
|
||||||
|
key, as it will be technically impossible to recover it after closing
|
||||||
|
this dialog.
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<InfoBlock label="Token ID" value={p.createdToken.token.id} />
|
||||||
|
<InfoBlock label="Key algorithm" value={p.createdToken.priv_key.alg} />
|
||||||
|
<InfoBlock label="Private key" value={p.createdToken.priv_key.priv} />
|
||||||
|
</DialogContent>
|
||||||
|
<DialogActions>
|
||||||
|
<Button onClick={close} color="error">
|
||||||
|
I copied the key, close this dialog
|
||||||
|
</Button>
|
||||||
|
</DialogActions>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function InfoBlock(
|
||||||
|
p: React.PropsWithChildren<{ label: string; value: string }>
|
||||||
|
): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
style={{ display: "flex", flexDirection: "column", margin: "20px 10px" }}
|
||||||
|
>
|
||||||
|
<Typography variant="overline">{p.label}</Typography>
|
||||||
|
<CopyToClipboard content={p.value}>
|
||||||
|
<InlineCode>{p.value}</InlineCode>
|
||||||
|
</CopyToClipboard>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
161
virtweb_frontend/src/routes/EditAPITokenRoute.tsx
Normal file
161
virtweb_frontend/src/routes/EditAPITokenRoute.tsx
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
import { Button } from "@mui/material";
|
||||||
|
import React from "react";
|
||||||
|
import { useNavigate, useParams } from "react-router-dom";
|
||||||
|
import {
|
||||||
|
APIToken,
|
||||||
|
APITokenURL,
|
||||||
|
CreatedAPIToken,
|
||||||
|
TokensApi,
|
||||||
|
} from "../api/TokensApi";
|
||||||
|
import { CreatedTokenDialog } from "../dialogs/CreatedTokenDialog";
|
||||||
|
import { useAlert } from "../hooks/providers/AlertDialogProvider";
|
||||||
|
import { useLoadingMessage } from "../hooks/providers/LoadingMessageProvider";
|
||||||
|
import { useSnackbar } from "../hooks/providers/SnackbarProvider";
|
||||||
|
import { time } from "../utils/DateUtils";
|
||||||
|
import { AsyncWidget } from "../widgets/AsyncWidget";
|
||||||
|
import { VirtWebRouteContainer } from "../widgets/VirtWebRouteContainer";
|
||||||
|
import {
|
||||||
|
APITokenDetails,
|
||||||
|
TokenWidgetStatus,
|
||||||
|
} from "../widgets/tokens/APITokenDetails";
|
||||||
|
|
||||||
|
export function CreateApiTokenRoute(): React.ReactElement {
|
||||||
|
const alert = useAlert();
|
||||||
|
const snackbar = useSnackbar();
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
const [createdToken, setCreatedToken] = React.useState<
|
||||||
|
CreatedAPIToken | undefined
|
||||||
|
>();
|
||||||
|
|
||||||
|
const [token] = React.useState<APIToken>({
|
||||||
|
id: "",
|
||||||
|
name: "",
|
||||||
|
description: "",
|
||||||
|
created: time(),
|
||||||
|
updated: time(),
|
||||||
|
last_used: time(),
|
||||||
|
rights: [],
|
||||||
|
});
|
||||||
|
|
||||||
|
const createApiToken = async (n: APIToken) => {
|
||||||
|
try {
|
||||||
|
const res = await TokensApi.Create(n);
|
||||||
|
snackbar("The api token was successfully created!");
|
||||||
|
setCreatedToken(res);
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
alert(`Failed to create API token!\n${e}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{createdToken && <CreatedTokenDialog createdToken={createdToken} />}
|
||||||
|
|
||||||
|
<EditApiTokenRouteInner
|
||||||
|
token={token}
|
||||||
|
creating={true}
|
||||||
|
onCancel={() => navigate("/tokens")}
|
||||||
|
onSave={createApiToken}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function EditApiTokenRoute(): React.ReactElement {
|
||||||
|
const alert = useAlert();
|
||||||
|
const snackbar = useSnackbar();
|
||||||
|
|
||||||
|
const { id } = useParams();
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
const [token, setToken] = React.useState<APIToken | undefined>();
|
||||||
|
|
||||||
|
const load = async () => {
|
||||||
|
setToken(await TokensApi.GetSingle(id!));
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateApiToken = async (n: APIToken) => {
|
||||||
|
try {
|
||||||
|
await TokensApi.Update(n);
|
||||||
|
snackbar("The token was successfully updated!");
|
||||||
|
navigate(APITokenURL(token!));
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
alert(`Failed to update token!\n${e}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AsyncWidget
|
||||||
|
loadKey={id}
|
||||||
|
ready={token !== undefined}
|
||||||
|
errMsg="Failed to fetch API token informations!"
|
||||||
|
load={load}
|
||||||
|
build={() => (
|
||||||
|
<EditApiTokenRouteInner
|
||||||
|
token={token!}
|
||||||
|
creating={false}
|
||||||
|
onCancel={() => navigate(`/token/${id}`)}
|
||||||
|
onSave={updateApiToken}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function EditApiTokenRouteInner(p: {
|
||||||
|
token: APIToken;
|
||||||
|
creating: boolean;
|
||||||
|
onCancel: () => void;
|
||||||
|
onSave: (token: APIToken) => Promise<void>;
|
||||||
|
}): React.ReactElement {
|
||||||
|
const loadingMessage = useLoadingMessage();
|
||||||
|
|
||||||
|
const [changed, setChanged] = React.useState(false);
|
||||||
|
|
||||||
|
const [, updateState] = React.useState<any>();
|
||||||
|
const forceUpdate = React.useCallback(() => updateState({}), []);
|
||||||
|
|
||||||
|
const valueChanged = () => {
|
||||||
|
setChanged(true);
|
||||||
|
forceUpdate();
|
||||||
|
};
|
||||||
|
|
||||||
|
const save = async () => {
|
||||||
|
loadingMessage.show("Saving API token configuration...");
|
||||||
|
await p.onSave(p.token);
|
||||||
|
loadingMessage.hide();
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<VirtWebRouteContainer
|
||||||
|
label={p.creating ? "Create an API Token" : "Edit API Token"}
|
||||||
|
actions={
|
||||||
|
<span>
|
||||||
|
{changed && (
|
||||||
|
<Button
|
||||||
|
variant="contained"
|
||||||
|
onClick={save}
|
||||||
|
style={{ marginRight: "10px" }}
|
||||||
|
>
|
||||||
|
{p.creating ? "Create" : "Save"}
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
<Button onClick={p.onCancel} variant="outlined">
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
</span>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<APITokenDetails
|
||||||
|
token={p.token}
|
||||||
|
status={
|
||||||
|
p.creating ? TokenWidgetStatus.Create : TokenWidgetStatus.Update
|
||||||
|
}
|
||||||
|
onChange={valueChanged}
|
||||||
|
/>
|
||||||
|
</VirtWebRouteContainer>
|
||||||
|
);
|
||||||
|
}
|
@ -1,4 +1,3 @@
|
|||||||
import DeleteIcon from "@mui/icons-material/Delete";
|
|
||||||
import VisibilityIcon from "@mui/icons-material/Visibility";
|
import VisibilityIcon from "@mui/icons-material/Visibility";
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
@ -13,12 +12,13 @@ import {
|
|||||||
Typography,
|
Typography,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { useNavigate } from "react-router-dom";
|
||||||
import { NetworkApi, NetworkInfo, NetworkURL } from "../api/NetworksApi";
|
import { NetworkApi, NetworkInfo, NetworkURL } from "../api/NetworksApi";
|
||||||
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 { NetworkHookStatusWidget } from "../widgets/net/NetworkHookStatusWidget";
|
||||||
import { NetworkStatusWidget } from "../widgets/net/NetworkStatusWidget";
|
import { NetworkStatusWidget } from "../widgets/net/NetworkStatusWidget";
|
||||||
import { useNavigate } from "react-router-dom";
|
|
||||||
|
|
||||||
export function NetworksListRoute(): React.ReactElement {
|
export function NetworksListRoute(): React.ReactElement {
|
||||||
const [list, setList] = React.useState<NetworkInfo[] | undefined>();
|
const [list, setList] = React.useState<NetworkInfo[] | undefined>();
|
||||||
@ -54,6 +54,8 @@ function NetworksListRouteInner(p: {
|
|||||||
</RouterLink>
|
</RouterLink>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
|
<NetworkHookStatusWidget hiddenIfInstalled />
|
||||||
|
|
||||||
<TableContainer component={Paper}>
|
<TableContainer component={Paper}>
|
||||||
<Table>
|
<Table>
|
||||||
<TableHead>
|
<TableHead>
|
||||||
|
@ -51,7 +51,7 @@ export function SysInfoRoute(): React.ReactElement {
|
|||||||
export function SysInfoRouteInner(p: {
|
export function SysInfoRouteInner(p: {
|
||||||
info: ServerSystemInfo;
|
info: ServerSystemInfo;
|
||||||
}): React.ReactElement {
|
}): React.ReactElement {
|
||||||
const sumDiskUsage = p.info.system.disks.reduce(
|
const sumDiskUsage = p.info.disks.reduce(
|
||||||
(prev, disk) => {
|
(prev, disk) => {
|
||||||
return {
|
return {
|
||||||
used: prev.used + disk.total_space - disk.available_space,
|
used: prev.used + disk.total_space - disk.available_space,
|
||||||
@ -227,8 +227,8 @@ export function SysInfoRouteInner(p: {
|
|||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<DiskDetailsTable disks={p.info.system.disks} />
|
<DiskDetailsTable disks={p.info.disks} />
|
||||||
<NetworksDetailsTable networks={p.info.system.networks} />
|
<NetworksDetailsTable networks={p.info.networks} />
|
||||||
</VirtWebRouteContainer>
|
</VirtWebRouteContainer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
126
virtweb_frontend/src/routes/TokensListRoute.tsx
Normal file
126
virtweb_frontend/src/routes/TokensListRoute.tsx
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
import VisibilityIcon from "@mui/icons-material/Visibility";
|
||||||
|
import {
|
||||||
|
Button,
|
||||||
|
IconButton,
|
||||||
|
Paper,
|
||||||
|
Table,
|
||||||
|
TableBody,
|
||||||
|
TableCell,
|
||||||
|
TableContainer,
|
||||||
|
TableHead,
|
||||||
|
TableRow,
|
||||||
|
} from "@mui/material";
|
||||||
|
import React from "react";
|
||||||
|
import { useNavigate } from "react-router-dom";
|
||||||
|
import {
|
||||||
|
APIToken,
|
||||||
|
APITokenURL,
|
||||||
|
ExpiredAPIToken,
|
||||||
|
TokensApi,
|
||||||
|
} from "../api/TokensApi";
|
||||||
|
import { AsyncWidget } from "../widgets/AsyncWidget";
|
||||||
|
import { RouterLink } from "../widgets/RouterLink";
|
||||||
|
import { TimeWidget, timeDiff } from "../widgets/TimeWidget";
|
||||||
|
import { VirtWebRouteContainer } from "../widgets/VirtWebRouteContainer";
|
||||||
|
|
||||||
|
export function TokensListRoute(): React.ReactElement {
|
||||||
|
const [list, setList] = React.useState<APIToken[] | undefined>();
|
||||||
|
|
||||||
|
const [count] = React.useState(1);
|
||||||
|
|
||||||
|
const load = async () => {
|
||||||
|
setList(await TokensApi.GetList());
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AsyncWidget
|
||||||
|
loadKey={count}
|
||||||
|
load={load}
|
||||||
|
ready={list !== undefined}
|
||||||
|
errMsg="Failed to load the list of tokens!"
|
||||||
|
build={() => <TokensListRouteInner list={list!} />}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function TokensListRouteInner(p: {
|
||||||
|
list: APIToken[];
|
||||||
|
}): React.ReactElement {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<VirtWebRouteContainer
|
||||||
|
label="API tokens"
|
||||||
|
actions={
|
||||||
|
<RouterLink to="/token/new">
|
||||||
|
<Button>New</Button>
|
||||||
|
</RouterLink>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<TableContainer component={Paper}>
|
||||||
|
<Table>
|
||||||
|
<TableHead>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>Name</TableCell>
|
||||||
|
<TableCell>Description</TableCell>
|
||||||
|
<TableCell>Created</TableCell>
|
||||||
|
<TableCell>Updated</TableCell>
|
||||||
|
<TableCell>Last used</TableCell>
|
||||||
|
<TableCell>IP restriction</TableCell>
|
||||||
|
<TableCell>Max inactivity</TableCell>
|
||||||
|
<TableCell>Rights</TableCell>
|
||||||
|
<TableCell>Actions</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableHead>
|
||||||
|
<TableBody>
|
||||||
|
{p.list.map((t) => {
|
||||||
|
return (
|
||||||
|
<TableRow
|
||||||
|
key={t.id}
|
||||||
|
hover
|
||||||
|
onDoubleClick={() => navigate(APITokenURL(t))}
|
||||||
|
style={{ backgroundColor: ExpiredAPIToken(t) ? "red" : "" }}
|
||||||
|
>
|
||||||
|
<TableCell>
|
||||||
|
{t.name} {ExpiredAPIToken(t) && <i>(Expired)</i>}
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>{t.description}</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
<TimeWidget time={t.created} />
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
<TimeWidget time={t.updated} />
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
<TimeWidget time={t.last_used} />
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>{t.ip_restriction}</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
{t.max_inactivity && timeDiff(0, t.max_inactivity)}
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
{t.rights.map((r) => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{r.verb} {r.path}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</TableCell>
|
||||||
|
|
||||||
|
<TableCell>
|
||||||
|
<RouterLink to={APITokenURL(t)}>
|
||||||
|
<IconButton>
|
||||||
|
<VisibilityIcon />
|
||||||
|
</IconButton>
|
||||||
|
</RouterLink>
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</TableContainer>
|
||||||
|
</VirtWebRouteContainer>
|
||||||
|
);
|
||||||
|
}
|
53
virtweb_frontend/src/routes/ViewApiTokenRoute.tsx
Normal file
53
virtweb_frontend/src/routes/ViewApiTokenRoute.tsx
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Button } from "@mui/material";
|
||||||
|
import React from "react";
|
||||||
|
import { useNavigate, useParams } from "react-router-dom";
|
||||||
|
import { APIToken, APITokenURL, TokensApi } from "../api/TokensApi";
|
||||||
|
import { AsyncWidget } from "../widgets/AsyncWidget";
|
||||||
|
import { VirtWebRouteContainer } from "../widgets/VirtWebRouteContainer";
|
||||||
|
import {
|
||||||
|
APITokenDetails,
|
||||||
|
TokenWidgetStatus,
|
||||||
|
} from "../widgets/tokens/APITokenDetails";
|
||||||
|
|
||||||
|
export function ViewApiTokenRoute() {
|
||||||
|
const { id } = useParams();
|
||||||
|
|
||||||
|
const [token, setToken] = React.useState<APIToken | undefined>();
|
||||||
|
|
||||||
|
const load = async () => {
|
||||||
|
setToken(await TokensApi.GetSingle(id!));
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AsyncWidget
|
||||||
|
loadKey={id}
|
||||||
|
ready={token !== undefined}
|
||||||
|
errMsg="Failed to fetch API token information!"
|
||||||
|
load={load}
|
||||||
|
build={() => <ViewAPITokenRouteInner token={token!} />}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ViewAPITokenRouteInner(p: { token: APIToken }): React.ReactElement {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<VirtWebRouteContainer
|
||||||
|
label={`API token ${p.token.name}`}
|
||||||
|
actions={
|
||||||
|
<span style={{ display: "flex", alignItems: "center" }}>
|
||||||
|
<Button
|
||||||
|
variant="contained"
|
||||||
|
style={{ marginLeft: "15px" }}
|
||||||
|
onClick={() => navigate(APITokenURL(p.token, true))}
|
||||||
|
>
|
||||||
|
Edit
|
||||||
|
</Button>
|
||||||
|
</span>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<APITokenDetails token={p.token} status={TokenWidgetStatus.Read} />
|
||||||
|
</VirtWebRouteContainer>
|
||||||
|
);
|
||||||
|
}
|
@ -1,4 +1,5 @@
|
|||||||
import {
|
import {
|
||||||
|
mdiApi,
|
||||||
mdiBoxShadow,
|
mdiBoxShadow,
|
||||||
mdiDisc,
|
mdiDisc,
|
||||||
mdiHome,
|
mdiHome,
|
||||||
@ -72,6 +73,11 @@ export function BaseAuthenticatedPage(): React.ReactElement {
|
|||||||
uri="/iso"
|
uri="/iso"
|
||||||
icon={<Icon path={mdiDisc} size={1} />}
|
icon={<Icon path={mdiDisc} size={1} />}
|
||||||
/>
|
/>
|
||||||
|
<NavLink
|
||||||
|
label="API tokens"
|
||||||
|
uri="/tokens"
|
||||||
|
icon={<Icon path={mdiApi} size={1} />}
|
||||||
|
/>
|
||||||
<NavLink
|
<NavLink
|
||||||
label="Sysinfo"
|
label="Sysinfo"
|
||||||
uri="/sysinfo"
|
uri="/sysinfo"
|
||||||
|
30
virtweb_frontend/src/widgets/CopyToClipboard.tsx
Normal file
30
virtweb_frontend/src/widgets/CopyToClipboard.tsx
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { ButtonBase } from "@mui/material";
|
||||||
|
import { PropsWithChildren } from "react";
|
||||||
|
import { useSnackbar } from "../hooks/providers/SnackbarProvider";
|
||||||
|
|
||||||
|
export function CopyToClipboard(
|
||||||
|
p: PropsWithChildren<{ content: string }>
|
||||||
|
): React.ReactElement {
|
||||||
|
const snackbar = useSnackbar();
|
||||||
|
|
||||||
|
const copy = () => {
|
||||||
|
navigator.clipboard.writeText(p.content);
|
||||||
|
snackbar(`${p.content} copied to clipboard.`);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ButtonBase
|
||||||
|
onClick={copy}
|
||||||
|
style={{
|
||||||
|
display: "inline-block",
|
||||||
|
alignItems: "unset",
|
||||||
|
textAlign: "unset",
|
||||||
|
position: "relative",
|
||||||
|
padding: "0px",
|
||||||
|
}}
|
||||||
|
disableRipple
|
||||||
|
>
|
||||||
|
{p.children}
|
||||||
|
</ButtonBase>
|
||||||
|
);
|
||||||
|
}
|
18
virtweb_frontend/src/widgets/InlineCode.tsx
Normal file
18
virtweb_frontend/src/widgets/InlineCode.tsx
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
export function InlineCode(p: React.PropsWithChildren): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<code
|
||||||
|
style={{
|
||||||
|
display: "inline-block",
|
||||||
|
backgroundColor: "black",
|
||||||
|
color: "white",
|
||||||
|
wordBreak: "break-all",
|
||||||
|
wordWrap: "break-word",
|
||||||
|
whiteSpace: "pre-wrap",
|
||||||
|
padding: "0px 7px",
|
||||||
|
borderRadius: "5px",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{p.children}
|
||||||
|
</code>
|
||||||
|
);
|
||||||
|
}
|
65
virtweb_frontend/src/widgets/TimeWidget.tsx
Normal file
65
virtweb_frontend/src/widgets/TimeWidget.tsx
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
import { Tooltip } from "@mui/material";
|
||||||
|
import date from "date-and-time";
|
||||||
|
import { time } from "../utils/DateUtils";
|
||||||
|
|
||||||
|
export function formatDate(time: number): string {
|
||||||
|
const t = new Date();
|
||||||
|
t.setTime(1000 * time);
|
||||||
|
return date.format(t, "DD/MM/YYYY HH:mm:ss");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function timeDiff(a: number, b: number): string {
|
||||||
|
let diff = b - a;
|
||||||
|
|
||||||
|
if (diff === 0) return "now";
|
||||||
|
if (diff === 1) return "1 second";
|
||||||
|
|
||||||
|
if (diff < 60) {
|
||||||
|
return `${diff} seconds`;
|
||||||
|
}
|
||||||
|
|
||||||
|
diff = Math.floor(diff / 60);
|
||||||
|
|
||||||
|
if (diff === 1) return "1 minute";
|
||||||
|
if (diff < 24) {
|
||||||
|
return `${diff} minutes`;
|
||||||
|
}
|
||||||
|
|
||||||
|
diff = Math.floor(diff / 60);
|
||||||
|
|
||||||
|
if (diff === 1) return "1 hour";
|
||||||
|
if (diff < 24) {
|
||||||
|
return `${diff} hours`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const diffDays = Math.floor(diff / 24);
|
||||||
|
|
||||||
|
if (diffDays === 1) return "1 day";
|
||||||
|
if (diffDays < 31) {
|
||||||
|
return `${diffDays} days`;
|
||||||
|
}
|
||||||
|
|
||||||
|
diff = Math.floor(diffDays / 31);
|
||||||
|
|
||||||
|
if (diff < 12) {
|
||||||
|
return `${diff} month`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const diffYears = Math.floor(diffDays / 365);
|
||||||
|
|
||||||
|
if (diffYears === 1) return "1 year";
|
||||||
|
return `${diffYears} years`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function timeDiffFromNow(t: number): string {
|
||||||
|
return timeDiff(t, time());
|
||||||
|
}
|
||||||
|
|
||||||
|
export function TimeWidget(p: { time?: number }): React.ReactElement {
|
||||||
|
if (!p.time) return <></>;
|
||||||
|
return (
|
||||||
|
<Tooltip title={formatDate(p.time)}>
|
||||||
|
<span>{timeDiffFromNow(p.time)}</span>
|
||||||
|
</Tooltip>
|
||||||
|
);
|
||||||
|
}
|
@ -2,10 +2,14 @@ import { Grid, Paper, Typography } from "@mui/material";
|
|||||||
import React, { PropsWithChildren } from "react";
|
import React, { PropsWithChildren } from "react";
|
||||||
|
|
||||||
export function EditSection(
|
export function EditSection(
|
||||||
p: { title?: string; actions?: React.ReactElement } & PropsWithChildren
|
p: {
|
||||||
|
title?: string;
|
||||||
|
actions?: React.ReactElement;
|
||||||
|
fullWidth?: boolean;
|
||||||
|
} & PropsWithChildren
|
||||||
): React.ReactElement {
|
): React.ReactElement {
|
||||||
return (
|
return (
|
||||||
<Grid item sm={12} md={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
|
||||||
|
@ -22,14 +22,16 @@ export function IPInput(p: {
|
|||||||
export function IPInputWithMask(p: {
|
export function IPInputWithMask(p: {
|
||||||
label: string;
|
label: string;
|
||||||
editable: boolean;
|
editable: boolean;
|
||||||
|
ipAndMask?: string;
|
||||||
ip?: string;
|
ip?: string;
|
||||||
mask?: number;
|
mask?: number;
|
||||||
onValueChange?: (ip?: string, mask?: number) => void;
|
onValueChange?: (ip?: string, mask?: number, ipAndMask?: string) => void;
|
||||||
version: 4 | 6;
|
version: 4 | 6;
|
||||||
}): React.ReactElement {
|
}): React.ReactElement {
|
||||||
const showSlash = React.useRef(!!p.mask);
|
const showSlash = React.useRef(!!p.mask);
|
||||||
|
|
||||||
const currValue =
|
const currValue =
|
||||||
|
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;
|
||||||
@ -38,7 +40,7 @@ export function IPInputWithMask(p: {
|
|||||||
onValueChange={(v) => {
|
onValueChange={(v) => {
|
||||||
showSlash.current = false;
|
showSlash.current = false;
|
||||||
if (!v) {
|
if (!v) {
|
||||||
onValueChange?.(undefined, undefined);
|
onValueChange?.(undefined, undefined, undefined);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -52,7 +54,11 @@ export function IPInputWithMask(p: {
|
|||||||
mask = sanitizeMask(p.version, split[1]);
|
mask = sanitizeMask(p.version, split[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
onValueChange?.(ip, mask);
|
onValueChange?.(
|
||||||
|
ip,
|
||||||
|
mask,
|
||||||
|
mask || showSlash.current ? `${ip}/${mask ?? ""}` : ip
|
||||||
|
);
|
||||||
}}
|
}}
|
||||||
value={currValue}
|
value={currValue}
|
||||||
{...props}
|
{...props}
|
||||||
@ -128,6 +134,6 @@ function sanitizeMask(version: 4 | 6, mask?: string): number | undefined {
|
|||||||
if (version === 4) {
|
if (version === 4) {
|
||||||
return value < 0 || value > 32 ? 32 : value;
|
return value < 0 || value > 32 ? 32 : value;
|
||||||
} else {
|
} else {
|
||||||
return value < 0 || value > 64 ? 64 : value;
|
return value < 0 || value > 128 ? 128 : value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,12 +4,14 @@ import DeleteIcon from "@mui/icons-material/Delete";
|
|||||||
import {
|
import {
|
||||||
Avatar,
|
Avatar,
|
||||||
Button,
|
Button,
|
||||||
|
Grid,
|
||||||
IconButton,
|
IconButton,
|
||||||
ListItem,
|
ListItem,
|
||||||
ListItemAvatar,
|
ListItemAvatar,
|
||||||
ListItemText,
|
ListItemText,
|
||||||
Paper,
|
Paper,
|
||||||
Tooltip,
|
Tooltip,
|
||||||
|
Typography,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import { DHCPConfig, DHCPHost } from "../../api/NetworksApi";
|
import { DHCPConfig, DHCPHost } from "../../api/NetworksApi";
|
||||||
import { ServerApi } from "../../api/ServerApi";
|
import { ServerApi } from "../../api/ServerApi";
|
||||||
@ -35,21 +37,29 @@ export function NetDHCPHostReservations(p: {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{p.dhcp.hosts.map((h, num) => (
|
<Grid container>
|
||||||
<HostReservationWidget
|
{p.dhcp.hosts.map((h, num) => (
|
||||||
key={num}
|
<Grid key={num} sm={12} md={6} item style={{ padding: "10px" }}>
|
||||||
{...p}
|
<HostReservationWidget
|
||||||
onChange={() => {
|
key={num}
|
||||||
p.onChange?.(p.dhcp);
|
{...p}
|
||||||
}}
|
onChange={() => {
|
||||||
host={h}
|
p.onChange?.(p.dhcp);
|
||||||
onRemove={() => {
|
}}
|
||||||
p.dhcp.hosts.splice(num, 1);
|
host={h}
|
||||||
p.onChange?.(p.dhcp);
|
onRemove={() => {
|
||||||
}}
|
p.dhcp.hosts.splice(num, 1);
|
||||||
/>
|
p.onChange?.(p.dhcp);
|
||||||
))}
|
}}
|
||||||
|
/>
|
||||||
|
</Grid>
|
||||||
|
))}
|
||||||
|
</Grid>
|
||||||
|
{p.dhcp.hosts.length === 0 && (
|
||||||
|
<Typography style={{ textAlign: "center" }}>
|
||||||
|
You have not set any DHCP host reservations.
|
||||||
|
</Typography>
|
||||||
|
)}
|
||||||
{p.editable && (
|
{p.editable && (
|
||||||
<Button onClick={addHost}>Add new host reservation</Button>
|
<Button onClick={addHost}>Add new host reservation</Button>
|
||||||
)}
|
)}
|
||||||
|
311
virtweb_frontend/src/widgets/forms/NetNatConfiguration.tsx
Normal file
311
virtweb_frontend/src/widgets/forms/NetNatConfiguration.tsx
Normal file
@ -0,0 +1,311 @@
|
|||||||
|
import DeleteIcon from "@mui/icons-material/Delete";
|
||||||
|
import {
|
||||||
|
Alert,
|
||||||
|
Button,
|
||||||
|
Card,
|
||||||
|
CardActions,
|
||||||
|
CardContent,
|
||||||
|
Grid,
|
||||||
|
IconButton,
|
||||||
|
Tooltip,
|
||||||
|
Typography,
|
||||||
|
} from "@mui/material";
|
||||||
|
import React, { PropsWithChildren } from "react";
|
||||||
|
import { NatEntry } from "../../api/NetworksApi";
|
||||||
|
import { ServerApi } from "../../api/ServerApi";
|
||||||
|
import { useConfirm } from "../../hooks/providers/ConfirmDialogProvider";
|
||||||
|
import { IPInput } from "./IPInput";
|
||||||
|
import { PortInput } from "./PortInput";
|
||||||
|
import { RadioGroupInput } from "./RadioGroupInput";
|
||||||
|
import { SelectInput } from "./SelectInput";
|
||||||
|
import { TextInput } from "./TextInput";
|
||||||
|
|
||||||
|
export function NetNatConfiguration(p: {
|
||||||
|
editable: boolean;
|
||||||
|
nat: NatEntry[];
|
||||||
|
nicsList: string[];
|
||||||
|
onChange?: (nat: NatEntry[]) => void;
|
||||||
|
version: 4 | 6;
|
||||||
|
}): React.ReactElement {
|
||||||
|
const confirm = useConfirm();
|
||||||
|
|
||||||
|
const addEntry = () => {
|
||||||
|
p.nat.push({
|
||||||
|
host_ip: {
|
||||||
|
type: "ip",
|
||||||
|
ip: p.version === 4 ? "10.0.0.1" : "fd00::",
|
||||||
|
},
|
||||||
|
host_port: { type: "single", port: 80 },
|
||||||
|
guest_ip: p.version === 4 ? "10.0.0.100" : "fd00::",
|
||||||
|
guest_port: 10,
|
||||||
|
protocol: "TCP",
|
||||||
|
});
|
||||||
|
p.onChange?.(p.nat);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onDelete = async (idx: number) => {
|
||||||
|
if (!(await confirm("Do you really want to delete this entry?"))) return;
|
||||||
|
|
||||||
|
p.nat.splice(idx, 1);
|
||||||
|
p.onChange?.(p.nat);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{p.nat.map((e, num) => (
|
||||||
|
<NatEntryForm
|
||||||
|
key={num}
|
||||||
|
{...p}
|
||||||
|
entry={e}
|
||||||
|
onChange={() => p.onChange?.(p.nat)}
|
||||||
|
onDelete={() => onDelete(num)}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
|
||||||
|
{p.nat.length === 0 && (
|
||||||
|
<Typography style={{ textAlign: "center" }}>
|
||||||
|
You have not set any NAT entry yet.
|
||||||
|
</Typography>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{p.editable && <Button onClick={addEntry}>Add a new entry</Button>}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function NatEntryForm(p: {
|
||||||
|
editable: boolean;
|
||||||
|
version: 4 | 6;
|
||||||
|
entry: NatEntry;
|
||||||
|
onChange?: () => void;
|
||||||
|
onDelete: () => void;
|
||||||
|
nicsList: string[];
|
||||||
|
}): React.ReactElement {
|
||||||
|
const guestPortEnd =
|
||||||
|
p.entry.host_port.type === "range"
|
||||||
|
? p.entry.host_port.end - p.entry.host_port.start + p.entry.guest_port
|
||||||
|
: undefined;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card style={{ margin: "30px" }} elevation={3}>
|
||||||
|
<CardContent>
|
||||||
|
<Grid container>
|
||||||
|
<NATEntryProp>
|
||||||
|
<SelectInput
|
||||||
|
{...p}
|
||||||
|
label="Protocol"
|
||||||
|
options={[
|
||||||
|
{ value: "TCP" },
|
||||||
|
{ value: "UDP" },
|
||||||
|
{ label: "TCP & UDP", value: "Both" },
|
||||||
|
]}
|
||||||
|
value={p.entry.protocol}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
p.entry.protocol = v as any;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</NATEntryProp>
|
||||||
|
<NATEntryProp>
|
||||||
|
<TextInput
|
||||||
|
{...p}
|
||||||
|
label="Comment"
|
||||||
|
value={p.entry.comment}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
p.entry.comment = v;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
size={ServerApi.Config.constraints.net_nat_comment_size}
|
||||||
|
/>
|
||||||
|
</NATEntryProp>
|
||||||
|
|
||||||
|
{/* Host conf */}
|
||||||
|
<NATEntryProp label="Host configuration">
|
||||||
|
<SelectInput
|
||||||
|
{...p}
|
||||||
|
label="Host IP address specification"
|
||||||
|
options={[
|
||||||
|
{
|
||||||
|
label: "Specific IP",
|
||||||
|
value: "ip",
|
||||||
|
description: "Use a pre-defined IP address",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Network interface",
|
||||||
|
value: "interface",
|
||||||
|
description:
|
||||||
|
"Use active IP addresses on the selected network interface during network startup to determine host adddress",
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
value={p.entry.host_ip.type}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
p.entry.host_ip.type = v as any;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{p.entry.host_ip.type === "ip" && (
|
||||||
|
<IPInput
|
||||||
|
{...p}
|
||||||
|
label="Host IP address"
|
||||||
|
value={p.entry.host_ip.ip}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
if (p.entry.host_ip.type === "ip") p.entry.host_ip.ip = v!;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{p.entry.host_ip.type === "interface" && (
|
||||||
|
<>
|
||||||
|
{p.editable && (
|
||||||
|
<Alert severity="warning" style={{ margin: "10px 0px" }}>
|
||||||
|
Warning! All IP addresses may not be inferred on reboot due
|
||||||
|
to the fact that the network hook might be executed before
|
||||||
|
the network interfaces are fully configured. This might lead
|
||||||
|
to incomplete ports exposition!
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
<SelectInput
|
||||||
|
{...p}
|
||||||
|
label="Network interface"
|
||||||
|
value={p.entry.host_ip.name}
|
||||||
|
options={p.nicsList.map((n) => {
|
||||||
|
return {
|
||||||
|
value: n,
|
||||||
|
};
|
||||||
|
})}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
if (p.entry.host_ip.type === "interface")
|
||||||
|
p.entry.host_ip.name = v!;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</NATEntryProp>
|
||||||
|
|
||||||
|
<NATEntryProp label="Target guest configuration">
|
||||||
|
<IPInput
|
||||||
|
{...p}
|
||||||
|
label="Guest IP"
|
||||||
|
value={p.entry.guest_ip}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
p.entry.guest_ip = v!;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</NATEntryProp>
|
||||||
|
|
||||||
|
<NATEntryProp>
|
||||||
|
<RadioGroupInput
|
||||||
|
{...p}
|
||||||
|
options={[
|
||||||
|
{ label: "Single port", value: "single" },
|
||||||
|
{ label: "Range of ports", value: "range" },
|
||||||
|
]}
|
||||||
|
value={p.entry.host_port.type}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
p.entry.host_port.type = v as any;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{p.entry.host_port.type === "single" && (
|
||||||
|
<PortInput
|
||||||
|
{...p}
|
||||||
|
label="Host port"
|
||||||
|
value={p.entry.host_port.port}
|
||||||
|
onChange={(v) => {
|
||||||
|
if (p.entry.host_port.type === "single")
|
||||||
|
p.entry.host_port.port = v!;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{p.entry.host_port.type === "range" && (
|
||||||
|
<div style={{ display: "flex" }}>
|
||||||
|
<PortInput
|
||||||
|
{...p}
|
||||||
|
label="Host port start"
|
||||||
|
value={p.entry.host_port.start}
|
||||||
|
onChange={(v) => {
|
||||||
|
if (p.entry.host_port.type === "range")
|
||||||
|
p.entry.host_port.start = v!;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<PortSpacer />
|
||||||
|
<PortInput
|
||||||
|
{...p}
|
||||||
|
label="Host port end"
|
||||||
|
value={p.entry.host_port.end}
|
||||||
|
onChange={(v) => {
|
||||||
|
if (p.entry.host_port.type === "range")
|
||||||
|
p.entry.host_port.end = v!;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</NATEntryProp>
|
||||||
|
|
||||||
|
<NATEntryProp>
|
||||||
|
<div style={{ display: "flex", height: "100%", alignItems: "end" }}>
|
||||||
|
<PortInput
|
||||||
|
{...p}
|
||||||
|
label={`Guest port ${guestPortEnd ? "start" : ""}`}
|
||||||
|
value={p.entry.guest_port}
|
||||||
|
onChange={(v) => {
|
||||||
|
p.entry.guest_port = v!;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
{guestPortEnd && <PortSpacer />}
|
||||||
|
{guestPortEnd && (
|
||||||
|
<PortInput
|
||||||
|
editable={false}
|
||||||
|
label={`Guest port end`}
|
||||||
|
value={guestPortEnd}
|
||||||
|
onChange={(v) => {
|
||||||
|
p.entry.guest_port = v!;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</NATEntryProp>
|
||||||
|
</Grid>
|
||||||
|
</CardContent>
|
||||||
|
<CardActions>
|
||||||
|
{p.editable && (
|
||||||
|
<Tooltip title="Remove the entry">
|
||||||
|
<IconButton color="error" onClick={p.onDelete}>
|
||||||
|
<DeleteIcon />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
|
)}
|
||||||
|
</CardActions>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function NATEntryProp(
|
||||||
|
p: PropsWithChildren<{ label?: string }>
|
||||||
|
): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<Grid item sm={12} md={6} style={{ padding: "20px" }}>
|
||||||
|
{p.label && (
|
||||||
|
<Typography variant="h6" style={{ marginBottom: "10px" }}>
|
||||||
|
{p.label}
|
||||||
|
</Typography>
|
||||||
|
)}
|
||||||
|
{p.children}
|
||||||
|
</Grid>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function PortSpacer(): React.ReactElement {
|
||||||
|
return <span style={{ width: "20px" }}></span>;
|
||||||
|
}
|
@ -14,6 +14,7 @@ export function PortInput(p: {
|
|||||||
onValueChange={(v) => {
|
onValueChange={(v) => {
|
||||||
p.onChange?.(sanitizePort(v));
|
p.onChange?.(sanitizePort(v));
|
||||||
}}
|
}}
|
||||||
|
checkValue={(v) => Number(v) <= 65535}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
40
virtweb_frontend/src/widgets/forms/RadioGroupInput.tsx
Normal file
40
virtweb_frontend/src/widgets/forms/RadioGroupInput.tsx
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
import {
|
||||||
|
RadioGroup,
|
||||||
|
FormControlLabel,
|
||||||
|
Radio,
|
||||||
|
FormControl,
|
||||||
|
FormLabel,
|
||||||
|
} from "@mui/material";
|
||||||
|
|
||||||
|
interface RadioGroupOption {
|
||||||
|
label: string;
|
||||||
|
value: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function RadioGroupInput(p: {
|
||||||
|
editable: boolean;
|
||||||
|
label?: string;
|
||||||
|
options: RadioGroupOption[];
|
||||||
|
value: string;
|
||||||
|
onValueChange: (v: string) => void;
|
||||||
|
}): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<FormControl>
|
||||||
|
{p.label && <FormLabel>{p.label}</FormLabel>}
|
||||||
|
<RadioGroup
|
||||||
|
row
|
||||||
|
value={p.value}
|
||||||
|
onChange={(_ev, v) => p.onValueChange?.(v)}
|
||||||
|
>
|
||||||
|
{p.options.map((o) => (
|
||||||
|
<FormControlLabel
|
||||||
|
disabled={!p.editable}
|
||||||
|
value={o.value}
|
||||||
|
control={<Radio />}
|
||||||
|
label={o.label}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</RadioGroup>
|
||||||
|
</FormControl>
|
||||||
|
);
|
||||||
|
}
|
@ -9,26 +9,27 @@ import { TextInput } from "./TextInput";
|
|||||||
|
|
||||||
export interface SelectOption {
|
export interface SelectOption {
|
||||||
value?: string;
|
value?: string;
|
||||||
label: string;
|
label?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function SelectInput(p: {
|
export function SelectInput(p: {
|
||||||
value?: string;
|
value?: string;
|
||||||
editable: boolean;
|
editable: boolean;
|
||||||
label: string;
|
label?: string;
|
||||||
options: SelectOption[];
|
options: SelectOption[];
|
||||||
onValueChange: (o?: string) => void;
|
onValueChange: (o?: string) => void;
|
||||||
}): React.ReactElement {
|
}): React.ReactElement {
|
||||||
if (!p.editable && !p.value) return <></>;
|
if (!p.editable && !p.value) return <></>;
|
||||||
|
|
||||||
if (!p.editable) {
|
if (!p.editable) {
|
||||||
const value = p.options.find((o) => o.value === p.value)?.label;
|
const value = p.options.find((o) => o.value === p.value)?.label ?? p.value;
|
||||||
return <TextInput label={p.label} editable={p.editable} value={value} />;
|
return <TextInput label={p.label} editable={p.editable} value={value} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FormControl fullWidth variant="standard" style={{ marginBottom: "15px" }}>
|
<FormControl fullWidth variant="standard" style={{ marginBottom: "15px" }}>
|
||||||
<InputLabel>{p.label}</InputLabel>
|
{p.label && <InputLabel>{p.label}</InputLabel>}
|
||||||
<Select
|
<Select
|
||||||
value={p.value ?? ""}
|
value={p.value ?? ""}
|
||||||
label={p.label}
|
label={p.label}
|
||||||
@ -41,7 +42,7 @@ export function SelectInput(p: {
|
|||||||
style={{ fontStyle: e.value === undefined ? "italic" : undefined }}
|
style={{ fontStyle: e.value === undefined ? "italic" : undefined }}
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
{e.label}
|
{e.label ?? e.value}
|
||||||
{e.description && (
|
{e.description && (
|
||||||
<Typography
|
<Typography
|
||||||
component={"div"}
|
component={"div"}
|
||||||
|
@ -68,15 +68,13 @@ export function VMSelectIsoInput(p: {
|
|||||||
p.onChange(p.attachedISOs);
|
p.onChange(p.attachedISOs);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
options={[
|
options={p.isoList.map((i) => {
|
||||||
{ label: "None", value: undefined },
|
|
||||||
...p.isoList.map((i) => {
|
|
||||||
return {
|
return {
|
||||||
label: `${i.filename} ${filesize(i.size)}`,
|
label: `${i.filename} ${filesize(i.size)}`,
|
||||||
value: i.filename,
|
value: i.filename,
|
||||||
};
|
};
|
||||||
}),
|
})
|
||||||
]}
|
}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
@ -8,13 +8,14 @@ import { useConfirm } from "../../hooks/providers/ConfirmDialogProvider";
|
|||||||
import { useSnackbar } from "../../hooks/providers/SnackbarProvider";
|
import { useSnackbar } from "../../hooks/providers/SnackbarProvider";
|
||||||
import { AsyncWidget } from "../AsyncWidget";
|
import { AsyncWidget } from "../AsyncWidget";
|
||||||
import { TabsWidget } from "../TabsWidget";
|
import { TabsWidget } from "../TabsWidget";
|
||||||
|
import { XMLAsyncWidget } from "../XMLWidget";
|
||||||
import { EditSection } from "../forms/EditSection";
|
import { EditSection } from "../forms/EditSection";
|
||||||
import { IPInput } from "../forms/IPInput";
|
import { IPInput } from "../forms/IPInput";
|
||||||
|
import { NetDHCPHostReservations } from "../forms/NetDHCPHostReservations";
|
||||||
|
import { NetNatConfiguration } from "../forms/NetNatConfiguration";
|
||||||
import { ResAutostartInput } from "../forms/ResAutostartInput";
|
import { ResAutostartInput } from "../forms/ResAutostartInput";
|
||||||
import { SelectInput } from "../forms/SelectInput";
|
import { SelectInput } from "../forms/SelectInput";
|
||||||
import { TextInput } from "../forms/TextInput";
|
import { TextInput } from "../forms/TextInput";
|
||||||
import { NetDHCPHostReservations } from "../forms/NetDHCPHostReservations";
|
|
||||||
import { XMLAsyncWidget } from "../XMLWidget";
|
|
||||||
|
|
||||||
interface DetailsProps {
|
interface DetailsProps {
|
||||||
net: NetworkInfo;
|
net: NetworkInfo;
|
||||||
@ -223,7 +224,7 @@ function NetworkDetailsTabGeneral(p: DetailsInnerProps): React.ReactElement {
|
|||||||
function NetworkDetailsTabIPv4(p: DetailsInnerProps): React.ReactElement {
|
function NetworkDetailsTabIPv4(p: DetailsInnerProps): React.ReactElement {
|
||||||
return (
|
return (
|
||||||
<IPSection
|
<IPSection
|
||||||
editable={p.editable}
|
{...p}
|
||||||
config={p.net.ip_v4}
|
config={p.net.ip_v4}
|
||||||
onChange={(c) => {
|
onChange={(c) => {
|
||||||
p.net.ip_v4 = c;
|
p.net.ip_v4 = c;
|
||||||
@ -237,7 +238,7 @@ function NetworkDetailsTabIPv4(p: DetailsInnerProps): React.ReactElement {
|
|||||||
function NetworkDetailsTabIPv6(p: DetailsInnerProps): React.ReactElement {
|
function NetworkDetailsTabIPv6(p: DetailsInnerProps): React.ReactElement {
|
||||||
return (
|
return (
|
||||||
<IPSection
|
<IPSection
|
||||||
editable={p.editable}
|
{...p}
|
||||||
config={p.net.ip_v6}
|
config={p.net.ip_v6}
|
||||||
onChange={(c) => {
|
onChange={(c) => {
|
||||||
p.net.ip_v6 = c;
|
p.net.ip_v6 = c;
|
||||||
@ -253,6 +254,7 @@ function IPSection(p: {
|
|||||||
config?: IpConfig;
|
config?: IpConfig;
|
||||||
onChange: (c: IpConfig | undefined) => void;
|
onChange: (c: IpConfig | undefined) => void;
|
||||||
version: 4 | 6;
|
version: 4 | 6;
|
||||||
|
nicsList: string[];
|
||||||
}): React.ReactElement {
|
}): React.ReactElement {
|
||||||
const confirm = useConfirm();
|
const confirm = useConfirm();
|
||||||
|
|
||||||
@ -260,7 +262,7 @@ function IPSection(p: {
|
|||||||
if (!!p.config) {
|
if (!!p.config) {
|
||||||
if (
|
if (
|
||||||
!(await confirm(
|
!(await confirm(
|
||||||
`Do you really want to disable IPv${p.version} on this network?`
|
`Do you really want to disable IPv${p.version} on this network? Specific configuration will be deleted!`
|
||||||
))
|
))
|
||||||
)
|
)
|
||||||
return;
|
return;
|
||||||
@ -275,8 +277,8 @@ function IPSection(p: {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const toggleDHCP = (v: boolean) => {
|
const toggleDHCP = async (v: boolean) => {
|
||||||
if (v)
|
if (v) {
|
||||||
p.config!.dhcp =
|
p.config!.dhcp =
|
||||||
p.version === 4
|
p.version === 4
|
||||||
? {
|
? {
|
||||||
@ -285,7 +287,32 @@ function IPSection(p: {
|
|||||||
hosts: [],
|
hosts: [],
|
||||||
}
|
}
|
||||||
: { start: "fd00::100", end: "fd00::f00", hosts: [] };
|
: { start: "fd00::100", end: "fd00::f00", hosts: [] };
|
||||||
else p.config!.dhcp = undefined;
|
} else {
|
||||||
|
if (
|
||||||
|
!(await confirm(
|
||||||
|
`Do you really want to disable DHCPv${p.version} on this network? Specific configuration will be deleted!`
|
||||||
|
))
|
||||||
|
)
|
||||||
|
return;
|
||||||
|
p.config!.dhcp = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.onChange?.(p.config);
|
||||||
|
};
|
||||||
|
|
||||||
|
const toggleNAT = async (v: boolean) => {
|
||||||
|
if (v) {
|
||||||
|
p.config!.nat = [];
|
||||||
|
} else {
|
||||||
|
if (
|
||||||
|
(p.config?.nat?.length ?? 0 > 0) &&
|
||||||
|
!(await confirm(
|
||||||
|
`Do you really want to disable IPv${p.version} NAT port forwarding on this network? Specific configuration will be deleted!`
|
||||||
|
))
|
||||||
|
)
|
||||||
|
return;
|
||||||
|
p.config!.nat = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
p.onChange?.(p.config);
|
p.onChange?.(p.config);
|
||||||
};
|
};
|
||||||
@ -373,7 +400,7 @@ function IPSection(p: {
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{p.config?.dhcp && (p.editable || p.config.dhcp.hosts.length > 0) && (
|
{p.config?.dhcp && (p.editable || p.config.dhcp.hosts.length > 0) && (
|
||||||
<EditSection title="DHCP hosts reservations">
|
<EditSection title="DHCP hosts reservations" fullWidth>
|
||||||
<NetDHCPHostReservations
|
<NetDHCPHostReservations
|
||||||
{...p}
|
{...p}
|
||||||
dhcp={p.config.dhcp}
|
dhcp={p.config.dhcp}
|
||||||
@ -384,6 +411,31 @@ function IPSection(p: {
|
|||||||
/>
|
/>
|
||||||
</EditSection>
|
</EditSection>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
{p.config && (p.editable || p.config.nat) && (
|
||||||
|
<EditSection
|
||||||
|
title={`NAT v${p.version} ports redirection`}
|
||||||
|
fullWidth
|
||||||
|
actions={
|
||||||
|
<Checkbox
|
||||||
|
disabled={!p.editable}
|
||||||
|
checked={!!p.config.nat}
|
||||||
|
onChange={(_ev, val) => toggleNAT(val)}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{p.config.nat && (
|
||||||
|
<NetNatConfiguration
|
||||||
|
{...p}
|
||||||
|
nat={p.config.nat}
|
||||||
|
onChange={(n) => {
|
||||||
|
p.config!.nat = n;
|
||||||
|
p.onChange?.(p.config);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</EditSection>
|
||||||
|
)}
|
||||||
</Grid>
|
</Grid>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
92
virtweb_frontend/src/widgets/net/NetworkHookStatusWidget.tsx
Normal file
92
virtweb_frontend/src/widgets/net/NetworkHookStatusWidget.tsx
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
import { Alert } from "@mui/material";
|
||||||
|
import React, { PropsWithChildren } from "react";
|
||||||
|
import { NetworkHookStatus, ServerApi } from "../../api/ServerApi";
|
||||||
|
import { AsyncWidget } from "../AsyncWidget";
|
||||||
|
import { CopyToClipboard } from "../CopyToClipboard";
|
||||||
|
import { InlineCode } from "../InlineCode";
|
||||||
|
|
||||||
|
export function NetworkHookStatusWidget(p: {
|
||||||
|
hiddenIfInstalled: boolean;
|
||||||
|
}): React.ReactElement {
|
||||||
|
const [status, setStatus] = React.useState<NetworkHookStatus | undefined>();
|
||||||
|
|
||||||
|
const load = async () => {
|
||||||
|
setStatus(await ServerApi.NetworkHookStatus());
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AsyncWidget
|
||||||
|
loadKey={1}
|
||||||
|
errMsg="Failed to get network status!"
|
||||||
|
ready={!!status}
|
||||||
|
load={load}
|
||||||
|
build={() => <NetworkHookStatusWidgetInner {...p} status={status!} />}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function NetworkHookStatusWidgetInner(p: {
|
||||||
|
status: NetworkHookStatus;
|
||||||
|
hiddenIfInstalled: boolean;
|
||||||
|
}): React.ReactElement {
|
||||||
|
if (p.status.installed && p.hiddenIfInstalled) return <></>;
|
||||||
|
if (p.status.installed)
|
||||||
|
return (
|
||||||
|
<Alert
|
||||||
|
variant="outlined"
|
||||||
|
severity="success"
|
||||||
|
style={{ margin: "20px 0px" }}
|
||||||
|
>
|
||||||
|
The network hook has been installed on this system.
|
||||||
|
</Alert>
|
||||||
|
);
|
||||||
|
|
||||||
|
const makeExecutable = `chmod +x ${p.status.path}`;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Alert variant="outlined" severity="warning" style={{ margin: "20px 0px" }}>
|
||||||
|
The network hook has not been detected on this system. It must be
|
||||||
|
installed in order to expose ports from virtual machines through NAT on
|
||||||
|
the network.
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
In order to install it, please create a file named
|
||||||
|
<CopyToClipboard content={p.status.path}>
|
||||||
|
<InlineCode>{p.status.path}</InlineCode> with the following
|
||||||
|
</CopyToClipboard>
|
||||||
|
content:
|
||||||
|
<br />
|
||||||
|
<CopyToClipboard content={p.status.content}>
|
||||||
|
<CodeBlock>{p.status.content}</CodeBlock>
|
||||||
|
</CopyToClipboard>
|
||||||
|
<br />
|
||||||
|
Make sure that the created file is executable :
|
||||||
|
<br />
|
||||||
|
<CopyToClipboard content={makeExecutable}>
|
||||||
|
<CodeBlock>{makeExecutable}</CodeBlock>
|
||||||
|
</CopyToClipboard>
|
||||||
|
<br />
|
||||||
|
You will need then to restart both <InlineCode>
|
||||||
|
libvirtd
|
||||||
|
</InlineCode> and <InlineCode>VirtWeb</InlineCode>.
|
||||||
|
</Alert>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function CodeBlock(p: PropsWithChildren): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<pre
|
||||||
|
style={{
|
||||||
|
backgroundColor: "black",
|
||||||
|
color: "white",
|
||||||
|
wordBreak: "break-all",
|
||||||
|
wordWrap: "break-word",
|
||||||
|
whiteSpace: "pre-wrap",
|
||||||
|
padding: "10px",
|
||||||
|
borderRadius: "5px",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{p.children}
|
||||||
|
</pre>
|
||||||
|
);
|
||||||
|
}
|
256
virtweb_frontend/src/widgets/tokens/APITokenDetails.tsx
Normal file
256
virtweb_frontend/src/widgets/tokens/APITokenDetails.tsx
Normal file
@ -0,0 +1,256 @@
|
|||||||
|
import { Button, Grid } from "@mui/material";
|
||||||
|
import React from "react";
|
||||||
|
import { useNavigate } from "react-router-dom";
|
||||||
|
import { NWFilter, NWFilterApi } from "../../api/NWFilterApi";
|
||||||
|
import { NetworkApi, NetworkInfo } from "../../api/NetworksApi";
|
||||||
|
import { ServerApi } from "../../api/ServerApi";
|
||||||
|
import { APIToken, TokensApi } from "../../api/TokensApi";
|
||||||
|
import { VMApi, VMInfo } from "../../api/VMApi";
|
||||||
|
import { useAlert } from "../../hooks/providers/AlertDialogProvider";
|
||||||
|
import { useConfirm } from "../../hooks/providers/ConfirmDialogProvider";
|
||||||
|
import { useSnackbar } from "../../hooks/providers/SnackbarProvider";
|
||||||
|
import { AsyncWidget } from "../AsyncWidget";
|
||||||
|
import { TabsWidget } from "../TabsWidget";
|
||||||
|
import { EditSection } from "../forms/EditSection";
|
||||||
|
import { IPInputWithMask } from "../forms/IPInput";
|
||||||
|
import { RadioGroupInput } from "../forms/RadioGroupInput";
|
||||||
|
import { TextInput } from "../forms/TextInput";
|
||||||
|
import { TokenRawRightsEditor } from "./TokenRawRightsEditor";
|
||||||
|
import { TokenRightsEditor } from "./TokenRightsEditor";
|
||||||
|
|
||||||
|
const SECS_PER_DAY = 3600 * 24;
|
||||||
|
|
||||||
|
export enum TokenWidgetStatus {
|
||||||
|
Create,
|
||||||
|
Read,
|
||||||
|
Update,
|
||||||
|
}
|
||||||
|
|
||||||
|
interface DetailsProps {
|
||||||
|
token: APIToken;
|
||||||
|
status: TokenWidgetStatus;
|
||||||
|
onChange?: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function APITokenDetails(p: DetailsProps): React.ReactElement {
|
||||||
|
const [vms, setVMs] = React.useState<VMInfo[]>();
|
||||||
|
const [networks, setNetworks] = React.useState<NetworkInfo[]>();
|
||||||
|
const [nwFilters, setNetworkFilters] = React.useState<NWFilter[]>();
|
||||||
|
const [tokens, setTokens] = React.useState<APIToken[]>();
|
||||||
|
|
||||||
|
const load = async () => {
|
||||||
|
setVMs(await VMApi.GetList());
|
||||||
|
setNetworks(await NetworkApi.GetList());
|
||||||
|
setNetworkFilters(await NWFilterApi.GetList());
|
||||||
|
setTokens(await TokensApi.GetList());
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AsyncWidget
|
||||||
|
loadKey={"1"}
|
||||||
|
load={load}
|
||||||
|
errMsg="Failed to load some system entities!"
|
||||||
|
build={() => (
|
||||||
|
<APITokenDetailsInner
|
||||||
|
vms={vms!}
|
||||||
|
networks={networks!}
|
||||||
|
nwFilters={nwFilters!}
|
||||||
|
tokens={tokens!}
|
||||||
|
{...p}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
enum TokenTab {
|
||||||
|
General = 0,
|
||||||
|
Rights,
|
||||||
|
RawRights,
|
||||||
|
Danger,
|
||||||
|
}
|
||||||
|
|
||||||
|
type DetailsInnerProps = DetailsProps & {
|
||||||
|
vms: VMInfo[];
|
||||||
|
networks: NetworkInfo[];
|
||||||
|
nwFilters: NWFilter[];
|
||||||
|
tokens: APIToken[];
|
||||||
|
};
|
||||||
|
|
||||||
|
function APITokenDetailsInner(p: DetailsInnerProps): React.ReactElement {
|
||||||
|
const [currTab, setCurrTab] = React.useState(TokenTab.General);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<TabsWidget
|
||||||
|
currTab={currTab}
|
||||||
|
onTabChange={setCurrTab}
|
||||||
|
options={[
|
||||||
|
{ label: "General", value: TokenTab.General, visible: true },
|
||||||
|
{
|
||||||
|
label: "Rights",
|
||||||
|
value: TokenTab.Rights,
|
||||||
|
visible: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Raw rights",
|
||||||
|
value: TokenTab.RawRights,
|
||||||
|
visible: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
label: "Danger zone",
|
||||||
|
value: TokenTab.Danger,
|
||||||
|
color: "red",
|
||||||
|
visible: p.status === TokenWidgetStatus.Read,
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
{currTab === TokenTab.General && <APITokenTabGeneral {...p} />}
|
||||||
|
{currTab === TokenTab.Rights && <APITokenRights {...p} />}
|
||||||
|
{currTab === TokenTab.RawRights && <APITokenRawRights {...p} />}
|
||||||
|
{currTab === TokenTab.Danger && <APITokenTabDanger {...p} />}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function APITokenTabGeneral(p: DetailsInnerProps): React.ReactElement {
|
||||||
|
const [ipVersion, setIpVersion] = React.useState<4 | 6>(
|
||||||
|
(p.token.ip_restriction ?? "").includes(":") ? 6 : 4
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Grid container spacing={2}>
|
||||||
|
{/* Metadata section */}
|
||||||
|
<EditSection title="Metadata">
|
||||||
|
{p.status !== TokenWidgetStatus.Create && (
|
||||||
|
<TextInput label="UUID" editable={false} value={p.token.id} />
|
||||||
|
)}
|
||||||
|
|
||||||
|
<TextInput
|
||||||
|
label="Name"
|
||||||
|
editable={p.status === TokenWidgetStatus.Create}
|
||||||
|
value={p.token.name}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
p.token.name = v ?? "";
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
size={ServerApi.Config.constraints.api_token_name_size}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<TextInput
|
||||||
|
label="Description"
|
||||||
|
editable={p.status === TokenWidgetStatus.Create}
|
||||||
|
value={p.token.description}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
p.token.description = v ?? "";
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
multiline={true}
|
||||||
|
size={ServerApi.Config.constraints.api_token_description_size}
|
||||||
|
/>
|
||||||
|
</EditSection>
|
||||||
|
|
||||||
|
<EditSection title="General settings">
|
||||||
|
{p.status === TokenWidgetStatus.Create && (
|
||||||
|
<RadioGroupInput
|
||||||
|
{...p}
|
||||||
|
editable={p.status === TokenWidgetStatus.Create}
|
||||||
|
options={[
|
||||||
|
{ label: "IPv4", value: "4" },
|
||||||
|
{ label: "IPv6", value: "6" },
|
||||||
|
]}
|
||||||
|
value={ipVersion.toString()}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
setIpVersion(Number(v) as any);
|
||||||
|
}}
|
||||||
|
label="Token IP restriction version"
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
<IPInputWithMask
|
||||||
|
{...p}
|
||||||
|
label="Token IP network restriction"
|
||||||
|
ipAndMask={p.token.ip_restriction}
|
||||||
|
editable={p.status === TokenWidgetStatus.Create}
|
||||||
|
version={ipVersion}
|
||||||
|
onValueChange={(_ip, _mask, ipAndMask) => {
|
||||||
|
p.token.ip_restriction = ipAndMask;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<TextInput
|
||||||
|
editable={p.status === TokenWidgetStatus.Create}
|
||||||
|
label="Max inactivity of tokens (days)"
|
||||||
|
type="number"
|
||||||
|
value={
|
||||||
|
p.token.max_inactivity
|
||||||
|
? Math.floor(p.token.max_inactivity / SECS_PER_DAY).toString()
|
||||||
|
: ""
|
||||||
|
}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
const secs = Number(v ?? "0") * SECS_PER_DAY;
|
||||||
|
p.token.max_inactivity = secs === 0 ? undefined : secs;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</EditSection>
|
||||||
|
</Grid>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function APITokenRights(p: DetailsInnerProps): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<div style={{ padding: "30px" }}>
|
||||||
|
<TokenRightsEditor
|
||||||
|
{...p}
|
||||||
|
editable={p.status !== TokenWidgetStatus.Read}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function APITokenRawRights(p: DetailsInnerProps): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<div style={{ padding: "30px" }}>
|
||||||
|
<TokenRawRightsEditor
|
||||||
|
{...p}
|
||||||
|
editable={p.status !== TokenWidgetStatus.Read}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function APITokenTabDanger(p: DetailsInnerProps): React.ReactElement {
|
||||||
|
const confirm = useConfirm();
|
||||||
|
const snackbar = useSnackbar();
|
||||||
|
const alert = useAlert();
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
const requestDelete = async () => {
|
||||||
|
try {
|
||||||
|
if (
|
||||||
|
!(await confirm(
|
||||||
|
"Do you really want to delete this API token?",
|
||||||
|
`Delete API token ${p.token.name}`,
|
||||||
|
"Delete"
|
||||||
|
))
|
||||||
|
)
|
||||||
|
return;
|
||||||
|
|
||||||
|
await TokensApi.Delete(p.token);
|
||||||
|
|
||||||
|
navigate("/tokens");
|
||||||
|
snackbar("The API token was successfully deleted!");
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
alert(`Failed to delete the API token!\n${e}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Button color="error" onClick={requestDelete}>
|
||||||
|
Delete this API token
|
||||||
|
</Button>
|
||||||
|
);
|
||||||
|
}
|
111
virtweb_frontend/src/widgets/tokens/TokenRawRightsEditor.tsx
Normal file
111
virtweb_frontend/src/widgets/tokens/TokenRawRightsEditor.tsx
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
import AddIcon from "@mui/icons-material/Add";
|
||||||
|
import DeleteIcon from "@mui/icons-material/Delete";
|
||||||
|
import {
|
||||||
|
IconButton,
|
||||||
|
Paper,
|
||||||
|
Table,
|
||||||
|
TableBody,
|
||||||
|
TableCell,
|
||||||
|
TableContainer,
|
||||||
|
TableHead,
|
||||||
|
TableRow,
|
||||||
|
Tooltip,
|
||||||
|
Typography,
|
||||||
|
} from "@mui/material";
|
||||||
|
import { ServerApi } from "../../api/ServerApi";
|
||||||
|
import { APIToken } from "../../api/TokensApi";
|
||||||
|
import { SelectInput } from "../forms/SelectInput";
|
||||||
|
import { TextInput } from "../forms/TextInput";
|
||||||
|
|
||||||
|
export function TokenRawRightsEditor(p: {
|
||||||
|
token: APIToken;
|
||||||
|
editable: boolean;
|
||||||
|
onChange?: () => void;
|
||||||
|
}): React.ReactElement {
|
||||||
|
const addRule = () => {
|
||||||
|
p.token.rights.push({ path: "/api/", verb: "GET" });
|
||||||
|
p.onChange?.();
|
||||||
|
};
|
||||||
|
|
||||||
|
const deleteRule = (id: number) => {
|
||||||
|
p.token.rights.splice(id, 1);
|
||||||
|
p.onChange?.();
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<TableContainer component={Paper}>
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
padding: "10px 10px 0px 10px",
|
||||||
|
display: "flex",
|
||||||
|
justifyContent: "space-between",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Typography variant="h5">Raw rights</Typography>
|
||||||
|
<div>
|
||||||
|
{p.editable && (
|
||||||
|
<Tooltip title="Add a new right rule">
|
||||||
|
<IconButton onClick={addRule}>
|
||||||
|
<AddIcon />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Table>
|
||||||
|
<TableHead>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>Verb</TableCell>
|
||||||
|
<TableCell>URI</TableCell>
|
||||||
|
{p.editable && <TableCell>Actions</TableCell>}
|
||||||
|
</TableRow>
|
||||||
|
</TableHead>
|
||||||
|
<TableBody>
|
||||||
|
{p.token.rights.map((r, num) => (
|
||||||
|
<TableRow key={num} hover>
|
||||||
|
<TableCell style={{ width: "100px" }}>
|
||||||
|
<SelectInput
|
||||||
|
{...p}
|
||||||
|
value={r.verb}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
r.verb = v as any;
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
options={[
|
||||||
|
{ value: "GET" },
|
||||||
|
{ value: "POST" },
|
||||||
|
{ value: "PATCH" },
|
||||||
|
{ value: "PUT" },
|
||||||
|
{ value: "DELETE" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
<TextInput
|
||||||
|
{...p}
|
||||||
|
value={r.path}
|
||||||
|
onValueChange={(v) => {
|
||||||
|
r.path = v ?? "";
|
||||||
|
p.onChange?.();
|
||||||
|
}}
|
||||||
|
checkValue={(v) => v.startsWith("/api/")}
|
||||||
|
size={ServerApi.Config.constraints.api_token_right_path_size}
|
||||||
|
/>
|
||||||
|
</TableCell>
|
||||||
|
{p.editable && (
|
||||||
|
<TableCell style={{ width: "100px" }}>
|
||||||
|
<IconButton onClick={() => deleteRule(num)}>
|
||||||
|
<Tooltip title="Remove the rule">
|
||||||
|
<DeleteIcon />
|
||||||
|
</Tooltip>
|
||||||
|
</IconButton>
|
||||||
|
</TableCell>
|
||||||
|
)}
|
||||||
|
</TableRow>
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</TableContainer>
|
||||||
|
);
|
||||||
|
}
|
690
virtweb_frontend/src/widgets/tokens/TokenRightsEditor.tsx
Normal file
690
virtweb_frontend/src/widgets/tokens/TokenRightsEditor.tsx
Normal file
@ -0,0 +1,690 @@
|
|||||||
|
import {
|
||||||
|
Checkbox,
|
||||||
|
FormControlLabel,
|
||||||
|
Paper,
|
||||||
|
Table,
|
||||||
|
TableBody,
|
||||||
|
TableCell,
|
||||||
|
TableHead,
|
||||||
|
TableRow,
|
||||||
|
Tooltip,
|
||||||
|
Typography,
|
||||||
|
} from "@mui/material";
|
||||||
|
import React from "react";
|
||||||
|
import { NWFilter } from "../../api/NWFilterApi";
|
||||||
|
import { NetworkInfo } from "../../api/NetworksApi";
|
||||||
|
import { ServerApi } from "../../api/ServerApi";
|
||||||
|
import { APIToken, TokenRight } from "../../api/TokensApi";
|
||||||
|
import { VMInfo } from "../../api/VMApi";
|
||||||
|
|
||||||
|
export function TokenRightsEditor(p: {
|
||||||
|
token: APIToken;
|
||||||
|
editable: boolean;
|
||||||
|
onChange?: () => void;
|
||||||
|
vms: VMInfo[];
|
||||||
|
networks: NetworkInfo[];
|
||||||
|
nwFilters: NWFilter[];
|
||||||
|
tokens: APIToken[];
|
||||||
|
}): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{/* Virtual machines */}
|
||||||
|
<RightsSection label="Virtual machines">
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "POST", path: "/api/vm/create" }}
|
||||||
|
label="Create a new virtual machine"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/list" }}
|
||||||
|
label="Get list of virtual machines"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vnc" }}
|
||||||
|
label="Establish VNC connection"
|
||||||
|
/>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
<RightsSection label="VM configuration management">
|
||||||
|
<Table size="small">
|
||||||
|
<TableHead>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>VM name</TableCell>
|
||||||
|
<TableCell align="center">Get definition</TableCell>
|
||||||
|
<TableCell align="center">Update</TableCell>
|
||||||
|
<TableCell align="center">Delete</TableCell>
|
||||||
|
<TableCell align="center">Get XML definition</TableCell>
|
||||||
|
<TableCell align="center">Get autostart</TableCell>
|
||||||
|
<TableCell align="center">Set autostart</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableHead>
|
||||||
|
<TableBody>
|
||||||
|
{/* All VM operations */}
|
||||||
|
<TableRow hover>
|
||||||
|
<TableCell>
|
||||||
|
<i>All</i>
|
||||||
|
</TableCell>
|
||||||
|
<CellRight {...p} right={{ verb: "GET", path: "/api/vm/*" }} />
|
||||||
|
<CellRight {...p} right={{ verb: "PUT", path: "/api/vm/*" }} />
|
||||||
|
<CellRight {...p} right={{ verb: "DELETE", path: "/api/vm/*" }} />
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/src" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/autostart" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "PUT", path: "/api/vm/*/autostart" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
|
||||||
|
{/* Per VM operations */}
|
||||||
|
{p.vms.map((v, n) => (
|
||||||
|
<TableRow hover key={n}>
|
||||||
|
<TableCell>{v.name}</TableCell>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "PUT", path: `/api/vm/${v.uuid}` }}
|
||||||
|
parent={{ verb: "PUT", path: "/api/vm/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "DELETE", path: `/api/vm/${v.uuid}` }}
|
||||||
|
parent={{ verb: "DELETE", path: "/api/vm/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/src` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/src" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/autostart` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/autostart" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "PUT", path: `/api/vm/${v.uuid}/autostart` }}
|
||||||
|
parent={{ verb: "PUT", path: "/api/vm/*/autostart" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
<RightsSection label="VM maintenance">
|
||||||
|
<Table size="small">
|
||||||
|
<TableHead>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>VM name</TableCell>
|
||||||
|
<TableCell align="center">Get state</TableCell>
|
||||||
|
<TableCell align="center">Start</TableCell>
|
||||||
|
<TableCell align="center">Shutdown</TableCell>
|
||||||
|
<TableCell align="center">Kill</TableCell>
|
||||||
|
<TableCell align="center">Reset</TableCell>
|
||||||
|
<TableCell align="center">Suspend</TableCell>
|
||||||
|
<TableCell align="center">Resume</TableCell>
|
||||||
|
<TableCell align="center">Screenshot</TableCell>
|
||||||
|
<TableCell align="center">VNC token</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableHead>
|
||||||
|
<TableBody>
|
||||||
|
{/* All VM operations */}
|
||||||
|
<TableRow hover>
|
||||||
|
<TableCell>
|
||||||
|
<i>All</i>
|
||||||
|
</TableCell>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/state" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/start" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/shutdown" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/kill" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/reset" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/suspend" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/resume" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/screenshot" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/vm/*/vnc" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
|
||||||
|
{/* Per VM operations */}
|
||||||
|
{p.vms.map((v, n) => (
|
||||||
|
<TableRow hover key={n}>
|
||||||
|
<TableCell>{v.name}</TableCell>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/state` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/state" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/start` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/start" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/shutdown` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/shutdown" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/kill` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/kill" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/reset` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/reset" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/suspend` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/suspend" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/resume` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/resume" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/screenshot` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/screenshot" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/vm/${v.uuid}/vnc` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/vm/*/vnc" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
{/* Networks */}
|
||||||
|
<RightsSection label="Networks">
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "POST", path: "/api/network/create" }}
|
||||||
|
label="Create a new network"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/network/list" }}
|
||||||
|
label="Get list of networks"
|
||||||
|
/>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
{/* Networks management */}
|
||||||
|
<RightsSection label="Networks management">
|
||||||
|
<Table size="small">
|
||||||
|
<TableHead>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>Network name</TableCell>
|
||||||
|
<TableCell align="center">Get definition</TableCell>
|
||||||
|
<TableCell align="center">Update</TableCell>
|
||||||
|
<TableCell align="center">Delete</TableCell>
|
||||||
|
<TableCell align="center">Get XML definition</TableCell>
|
||||||
|
<TableCell align="center">Get autostart</TableCell>
|
||||||
|
<TableCell align="center">Set autostart</TableCell>
|
||||||
|
<TableCell align="center">Get status</TableCell>
|
||||||
|
<TableCell align="center">Start</TableCell>
|
||||||
|
<TableCell align="center">Stop</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableHead>
|
||||||
|
<TableBody>
|
||||||
|
{/* All networks operations */}
|
||||||
|
<TableRow hover>
|
||||||
|
<TableCell>
|
||||||
|
<i>All</i>
|
||||||
|
</TableCell>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/network/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "PUT", path: "/api/network/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "DELETE", path: "/api/network/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/network/*/src" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/network/*/autostart" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "PUT", path: "/api/network/*/autostart" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/network/*/status" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/network/*/start" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/network/*/stop" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
|
||||||
|
{/* Per network operations */}
|
||||||
|
{p.networks.map((v, n) => (
|
||||||
|
<TableRow hover key={n}>
|
||||||
|
<TableCell>{v.name}</TableCell>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/network/${v.uuid}` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/network/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "PUT", path: `/api/network/${v.uuid}` }}
|
||||||
|
parent={{ verb: "PUT", path: "/api/network/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "DELETE", path: `/api/network/${v.uuid}` }}
|
||||||
|
parent={{ verb: "DELETE", path: "/api/network/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/network/${v.uuid}/src` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/network/*/src" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{
|
||||||
|
verb: "GET",
|
||||||
|
path: `/api/network/${v.uuid}/autostart`,
|
||||||
|
}}
|
||||||
|
parent={{ verb: "GET", path: "/api/network/*/autostart" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{
|
||||||
|
verb: "PUT",
|
||||||
|
path: `/api/network/${v.uuid}/autostart`,
|
||||||
|
}}
|
||||||
|
parent={{ verb: "PUT", path: "/api/network/*/autostart" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{
|
||||||
|
verb: "GET",
|
||||||
|
path: `/api/network/${v.uuid}/status`,
|
||||||
|
}}
|
||||||
|
parent={{ verb: "GET", path: "/api/network/*/status" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{
|
||||||
|
verb: "GET",
|
||||||
|
path: `/api/network/${v.uuid}/start`,
|
||||||
|
}}
|
||||||
|
parent={{ verb: "GET", path: "/api/network/*/start" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{
|
||||||
|
verb: "GET",
|
||||||
|
path: `/api/network/${v.uuid}/stop`,
|
||||||
|
}}
|
||||||
|
parent={{ verb: "GET", path: "/api/network/*/stop" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
{/* Network filters */}
|
||||||
|
<RightsSection label="Network filters">
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "POST", path: "/api/nwfilter/create" }}
|
||||||
|
label="Create a new network filter"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/nwfilter/list" }}
|
||||||
|
label="Get list of network filters"
|
||||||
|
/>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
{/* Networks filters management */}
|
||||||
|
<RightsSection label="Networks filters management">
|
||||||
|
<Table size="small">
|
||||||
|
<TableHead>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>Network filter name</TableCell>
|
||||||
|
<TableCell align="center">Get definition</TableCell>
|
||||||
|
<TableCell align="center">Update</TableCell>
|
||||||
|
<TableCell align="center">Delete</TableCell>
|
||||||
|
<TableCell align="center">Get XML definition</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableHead>
|
||||||
|
<TableBody>
|
||||||
|
{/* All networks filters operations */}
|
||||||
|
<TableRow hover>
|
||||||
|
<TableCell>
|
||||||
|
<i>All</i>
|
||||||
|
</TableCell>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/nwfilter/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "PUT", path: "/api/nwfilter/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "DELETE", path: "/api/nwfilter/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/nwfilter/*/src" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
|
||||||
|
{/* Per network filter operations */}
|
||||||
|
{p.nwFilters.map((v, n) => (
|
||||||
|
<TableRow hover key={n}>
|
||||||
|
<TableCell>{v.name}</TableCell>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/nwfilter/${v.uuid}` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/nwfilter/*" }}
|
||||||
|
/>
|
||||||
|
{ServerApi.Config.builtin_nwfilter_rules.includes(v.name!) ? (
|
||||||
|
<TableCell></TableCell>
|
||||||
|
) : (
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "PUT", path: `/api/nwfilter/${v.uuid}` }}
|
||||||
|
parent={{ verb: "PUT", path: "/api/nwfilter/*" }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{ServerApi.Config.builtin_nwfilter_rules.includes(v.name!) ? (
|
||||||
|
<TableCell></TableCell>
|
||||||
|
) : (
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "DELETE", path: `/api/nwfilter/${v.uuid}` }}
|
||||||
|
parent={{ verb: "DELETE", path: "/api/nwfilter/*" }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/nwfilter/${v.uuid}/src` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/nwfilter/*/src" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
{/* API tokens */}
|
||||||
|
<RightsSection label="API tokens">
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "POST", path: "/api/token/create" }}
|
||||||
|
label="Create a new API token"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/token/list" }}
|
||||||
|
label="Get list of API tokens"
|
||||||
|
/>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
{/* API tokens management */}
|
||||||
|
<RightsSection label="API tokens management">
|
||||||
|
<Table size="small">
|
||||||
|
<TableHead>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell>API token name</TableCell>
|
||||||
|
<TableCell align="center">Get</TableCell>
|
||||||
|
<TableCell align="center">Update</TableCell>
|
||||||
|
<TableCell align="center">Delete</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableHead>
|
||||||
|
<TableBody>
|
||||||
|
{/* All API tokens operations */}
|
||||||
|
<TableRow hover>
|
||||||
|
<TableCell>
|
||||||
|
<i>All</i>
|
||||||
|
</TableCell>
|
||||||
|
<CellRight {...p} right={{ verb: "GET", path: "/api/token/*" }} />
|
||||||
|
<CellRight {...p} right={{ verb: "PUT", path: "/api/token/*" }} />
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "DELETE", path: "/api/token/*" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
|
||||||
|
{/* Per API token operations */}
|
||||||
|
{p.tokens.map((v, n) => (
|
||||||
|
<TableRow hover key={n}>
|
||||||
|
<TableCell>{v.name}</TableCell>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: `/api/token/${v.id}` }}
|
||||||
|
parent={{ verb: "GET", path: "/api/token/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "PUT", path: `/api/token/${v.id}` }}
|
||||||
|
parent={{ verb: "PUT", path: "/api/token/*" }}
|
||||||
|
/>
|
||||||
|
<CellRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "DELETE", path: `/api/token/${v.id}` }}
|
||||||
|
parent={{ verb: "DELETE", path: "/api/token/*" }}
|
||||||
|
/>
|
||||||
|
</TableRow>
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
{/* ISO files */}
|
||||||
|
<RightsSection label="ISO files">
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "POST", path: "/api/iso/upload" }}
|
||||||
|
label="Upload a new ISO file"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "POST", path: "/api/iso/upload_from_url" }}
|
||||||
|
label="Upload a new ISO file from a given URL"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/iso/list" }}
|
||||||
|
label="Get the list of ISO files"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/iso/*" }}
|
||||||
|
label="Download ISO files"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "DELETE", path: "/api/iso/*" }}
|
||||||
|
label="Delete ISO files"
|
||||||
|
/>
|
||||||
|
</RightsSection>
|
||||||
|
|
||||||
|
{/* Server general information */}
|
||||||
|
<RightsSection label="Server">
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/server/static_config" }}
|
||||||
|
label="Get static server configuration"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/server/info" }}
|
||||||
|
label="Get server information"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/server/network_hook_status" }}
|
||||||
|
label="Get network hook status"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/server/number_vcpus" }}
|
||||||
|
label="Get number of vCPU"
|
||||||
|
/>
|
||||||
|
<RouteRight
|
||||||
|
{...p}
|
||||||
|
right={{ verb: "GET", path: "/api/server/networks" }}
|
||||||
|
label="Get list of network cards"
|
||||||
|
/>
|
||||||
|
</RightsSection>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function RightsSection(
|
||||||
|
p: React.PropsWithChildren<{ label: string }>
|
||||||
|
): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<Paper style={{ padding: "20px", margin: "10px" }}>
|
||||||
|
<Typography variant="h5">{p.label}</Typography>
|
||||||
|
{p.children}
|
||||||
|
</Paper>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface RightOpts {
|
||||||
|
right: TokenRight;
|
||||||
|
label?: string;
|
||||||
|
editable: boolean;
|
||||||
|
token: APIToken;
|
||||||
|
onChange?: () => void;
|
||||||
|
parent?: TokenRight;
|
||||||
|
}
|
||||||
|
|
||||||
|
function CellRight(p: RightOpts): React.ReactElement {
|
||||||
|
return (
|
||||||
|
<TableCell align="center">
|
||||||
|
<RouteRight {...p} />
|
||||||
|
</TableCell>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function RouteRight(p: RightOpts): React.ReactElement {
|
||||||
|
const rightIndex = p.token.rights.findIndex(
|
||||||
|
(r) => r.verb === p.right.verb && r.path === p.right.path
|
||||||
|
);
|
||||||
|
const activated = rightIndex !== -1;
|
||||||
|
|
||||||
|
const parentActivated =
|
||||||
|
!!p.parent &&
|
||||||
|
p.token.rights.findIndex(
|
||||||
|
(r) => r.verb === p.parent?.verb && r.path === p.parent?.path
|
||||||
|
) !== -1;
|
||||||
|
|
||||||
|
const toggle = (a: boolean) => {
|
||||||
|
if (a) {
|
||||||
|
p.token.rights.push(p.right);
|
||||||
|
} else {
|
||||||
|
p.token.rights.splice(rightIndex, 1);
|
||||||
|
}
|
||||||
|
p.onChange?.();
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Tooltip
|
||||||
|
title={`${p.right.verb} ${p.right.path}`}
|
||||||
|
arrow
|
||||||
|
placement="left"
|
||||||
|
slotProps={{
|
||||||
|
popper: {
|
||||||
|
modifiers: [
|
||||||
|
{
|
||||||
|
name: "offset",
|
||||||
|
options: {
|
||||||
|
offset: [0, -14],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{p.label ? (
|
||||||
|
<FormControlLabel
|
||||||
|
control={
|
||||||
|
<Checkbox
|
||||||
|
checked={activated || parentActivated}
|
||||||
|
disabled={!p.editable || parentActivated}
|
||||||
|
onChange={(_e, a) => toggle(a)}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
label={p.label}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<span>
|
||||||
|
<Checkbox
|
||||||
|
checked={activated || parentActivated}
|
||||||
|
disabled={!p.editable || parentActivated}
|
||||||
|
onChange={(_e, a) => toggle(a)}
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
Reference in New Issue
Block a user