Commit Graph

473 Commits (c1d08df31d5135fe43c26ea32b5998ad30645162)
 

Author SHA1 Message Date
Javier Sánchez Parra df25ec62a8 Add "Delete client" action
Adds a new button in the scopes view.

This action handles clients deletion on one or multiple scopes. Users
must select clients using the scopes tree.
2021-07-29 16:44:14 +02:00
Javier Sánchez Parra 05bab71162 Add IPs validation to Poweroff and Setup form
Otherwise, users see an error page, instead of a float message asking to
select at least one computer.
2021-07-29 16:41:17 +02:00
Javier Sánchez Parra e64a33a3dd Fix submit command redirection
Current submit command behaviour redirects the user to scopes views.
This commit changes the behaviour when submitting a command forms to
redirect users to the general command view.
2021-07-29 16:40:22 +02:00
Javier Sánchez Parra 5dd2b5c6dc Add full scheme partitioning support
The initial "Partition & Format" (aka setup) form only allows to modify
one partition at a time. This commit updates it to allow to modify the
whole disk partition schema in one go, without pop-ups and transitions.

This is a remake of the previous form using FieldList de WTForms and
javascript to duplicate / remove FieldList adapted to the attributes
available in WTForms.
2021-07-28 17:19:51 +02:00
Javier Sánchez Parra 4b4edf4aee Add and restyle clients states
This patch adds new states: OPG for clients in ogLive, BSY for busy
clients, VDI for clients in OpenGnsys VDI and WOL_SENT for booting
clients.

It also removes state ON because do not exists.

ogCP currently uses the following colors:

* OPG -> Solid yellow
* BSY -> Solid red
* VDI -> Solid green
* WOL_SENT -> Solid brown
* OFF -> Hollow grey
2021-07-20 11:22:41 +02:00
Daniel García Moreno 4e519590af Update scopes tree dynamically
This patch adds a javascript function to update the scope tree (on/off)
state.

This javacript function is called every second, does a call to the
new backend endpoint `/scopes/status` and updates the tree classes
depending on the current data.

The new `/scopes/status` endpoint just returns the scopes tree as json.

This patch also adds an icon in the tree leafs, a filled green circle
when the state is `on`, and a empty red circle when the state is `off`.

There's also a new javascript function to unfold all collapses in the
scope tree.
2021-07-07 11:27:28 +02:00
Javier Sánchez Parra af938c3280 Fix configuration file template
ogcp fails to parse configuration file template because it misses a
comma.
2021-06-30 17:20:34 +02:00
Javier Sánchez Parra 1e7fce971a Create "Add Center" form and view
Creates "add center" form with "name" as required input and "comment" as
optional input.

In the future, the CenterForm can be used to display center information
once such functionality lands in the ogserver.
2021-06-30 17:20:17 +02:00
Daniel García Moreno 42dc44323e Add new partition button in setup action
This patch adds a way to add a new partition to the setup.html template.
This button opens a modal dialog with a new form and calls a new
endpoint to create the new partition (this endpoint does nothing, it's
needed to be implemented in the future).

I've followed the initial design for this template, with one form per
each partition, so every button will call a function and reload the
page.

It's possible to do all actions at once, but that will require a rework
of this, to do that we can just define an unique form in the whole html,
remove all the "Modify" buttons and add just one "Apply" button at the
end. But maybe that option is a lot complex in the backend because will
require to validate all the changes at once.

This patch also improves the setup.html form without using
flask-bootstrap and rendering the form in the template directly with the
bootstrap4 classes.
2021-06-30 17:19:55 +02:00
Jose M. Guisado Gomez 288654722d Add scopes_tree_collapse macro
Being able to collapse the scopes tree allows to fit a bigger scopes
tree.

A new macro is introduced to generate the HTML code for the scope tree
in such a way that each non-leaf level (center, room) are collapsible.

	macros.scopes_tree_collapse(scopes)

As of now, the state of the scope tree is not saved when changing nav
sections.
2021-06-30 17:19:17 +02:00
Daniel García Moreno f121d591e5 Keep the selection in the sidebar for mode & setup 2021-06-17 16:42:50 +02:00
Jose M. Guisado f8e27fb149 Don't show sidebar in login view
Commit 22dcea19 introduced sidebar, which is not shown in
index view. Disable sidebar in the login view too.
2021-06-17 09:58:42 +02:00
Jose M. Guisado 3667db8662 Add commands view and macros.html
Commands view has a scope sidebar with the content block filled with
command buttons (poweroff, wol, etc.)

This commit leaves scope create/delete/update buttons in the /scopes
view, which serves that purpose.

To avoid duplicating scope tree creation macro, an external macros.html
is created, this template can be imported. Future macros needed can be
written in there.
2021-06-17 09:58:11 +02:00
Daniel García Moreno 514fb84a56 Add chart to dashboard
This patch adds an example chart using chartjs to the dashboard to show
the disk usage.

https://www.chartjs.org/docs/latest/getting-started/
2021-06-08 12:36:55 +02:00
Daniel García Moreno 22dcea19ff Add sidebar and command bar to base template
Modify the base template to add the sidebar and command bar, implemented
just in the scopes view.

This patch also modifies the "actions/mode.html" template to be shown in
the scopes page. Any other action that should be inside the scopes
should do the same, add the scopes and clients to the template context
and use the "scopes.html" as base in those actions.

The notification has been also changed to use a toast notification
instead of the usual alert to avoid changing the layout on error.
2021-06-08 11:46:40 +02:00
Daniel García Moreno db29b306aa Restyle login.html template
Update the login template based on the AdminLTE extra page:
https://adminlte.io/themes/v3/pages/examples/login.html

This patch also adds a font-awesome icon to the login page, we've
font-awesome from the AdminLTE plugins so we can use this icons in the
interface.
2021-06-01 18:25:56 +02:00
Daniel García Moreno d4150080e3 Use AdminLTE in base.html
This patch adds the css and js sources from the AdminLTE template to the
base template so it can be used in all templates.

There's also some flexbox bootstrap classes [1] to place the footer at
the bootom always, even when there's no content to fill the page.

[1] https://getbootstrap.com/docs/4.6/utilities/flex/
2021-06-01 18:25:49 +02:00
Daniel García Moreno 3cfdfa3b12 Redirect to login page by default
This patch redirects to the login page instead of showing an empty page
when the user is not logged in.
2021-06-01 18:25:41 +02:00
Daniel García Moreno b2a0e96fbd Add initial AdminLTE template files
Add the open source AdminLTE bootstrap dashboard template to the static
folder, and some plugins that we'll use in the following changes to the
templates.

Plugins:

 * jquery
 * bootstrap
 * font-awesome

https://adminlte.io/
2021-06-01 18:25:29 +02:00
Javier Sánchez Parra 99f4b51236 Add README.md and COPYING files 2021-05-21 11:18:08 +02:00
OpenGnSys Support Team d84933f88e ogcp is AGPLv3+
Update license header in files.
2021-05-20 18:45:38 +02:00
Javier Sánchez Parra 29480012e4 Add "Delete Room" form and view
Creates "delete room" form with a select to choose a room to delete.

Adds a new button inside the button group in the scopes view. Because
scopes checkboxes values maps to ips the only way to specify the room to
delete is in the delete room form itself, using a select input.
2021-05-20 18:45:34 +02:00
Jose M. Guisado f303240c55 Create "Add Room" form and view
Creates "add room" form with required inputs only: center, name and
netmask.

Adds a new button inside the button group in the scopes view. Because
scopes checkboxes values maps to ips the only way to specify the center
in which to add the room is in the add room form itself, using a select
input.

In the future, the RoomForm can be used to display room information once
such functionality lands in the ogserver.
2021-05-20 18:44:40 +02:00
Javier Sánchez Parra 5e46157060 Add ogLive list to the dashboard
Add list with ogLives installed in the server and highlight the default
ogLive.
2021-05-20 18:44:37 +02:00
Javier Sánchez Parra 8441d844d1 Add disk stats to the dashboard
Add the following disk stats to the dashboard:

* Disk size: shows the amount of total disk size in Gibibytes.

* used: shows the amount of used disk size in Gibibytes.

* available: shows the amount of free disk size in Gibibytes.

* use(%): shows the amount of used disk size in percentage.
2021-05-20 18:44:30 +02:00
Javier Sánchez Parra 7f0d1ab287 Add latest images to the dashboard
Users want to know latest created/modified images to manage new images
or changes made on existing images.

This commit adds a list with the 10 latest created or modified images.
2021-05-20 18:44:23 +02:00
Javier Sánchez Parra 411189e6ec Add number of images to the dashboard
Users want to easily know the number of images an ogServer has.
2021-05-20 18:44:15 +02:00
Javier Sánchez Parra 543b12aca8 Change login redirection to "Home"
When the user logs into ogcp, the web page redirects him to "Scopes".

In the future ogcp will have a dashboard showing multiple stats and
details. This dashboard will be in "Home" path and we want the user to
see it when he logs in.

Change login redirection from "Scopes" to "Home".
2021-05-20 18:44:07 +02:00
Jose M. Guisado 2ad382b5ed Add cosmetic improvements
* Adds label for each action page.
* Adds a colored state for opengnsys connected clients
* Fix nav active item
* Rename some actions
* Adds DISK to partition and format form
2021-03-24 14:32:16 +01:00
Jose M. Guisado 9ee0565ac4 Add login
Ogcp requires a simple login page in order to avoid exposure of the
ogServer API to anyone trying to access the web page.

Because the main authorization mechanism in ogServer is the api token
the login implemented for the ogcp does not include registration process
but a single user and password specified in the ogcp.json.

 	"USER": "user",
 	"PASS": "pass"

Adds two new views: /login and /logout. They are used to login the user so
that the rest of views regarding ogServer functionality can be accessed
in a "login required" fashion. Index view (/) is an exception, it can be
accessed logged in or not so different data can be displayed.

Templates can now access a variable "current_user" to get information
about login status. This is a Flask-Login feature.

- Templates regarding login can be found in templates/auth/
- Login form is defined in forms/auth.py to separate it from
  action_forms.py
- Adds Flask-Login module to requirements.txt
- Adds default user and pass in ogcp.json
2021-03-05 11:47:27 +01:00
Jose M. Guisado 149dfdcbfd Make partition forms inline in setup/
quick_form macro from Flask-Bootstrap creates vertical forms by
default, this rendered each partition spanning too much vertical space.

Use form_type='inline' from quick_form macro to compact the whole setup
form.
2021-03-05 11:43:05 +01:00
Jose M. Guisado 45af740c1f Cosmetic enhacements
* Use validate_ips and flashed messages for some more actions.
* Use extra_classes in quick_form macro to add bootstrap classes to
  rendered forms
2021-03-05 11:43:05 +01:00
Jose M. Guisado 2b76106475 Add multiple ip handling to image restore form
This patch enables a set of ips to be specified as a target of an image
restore action.

The set of selected computers must have the same partition setup in
order for the form to be rendered sucessfully, if different partition
setups are detected a redirection is made and an error flash message
is shown.
2021-02-22 14:25:29 +01:00
Jose M. Guisado 20f88065bb Add boot mode to actions
This action is related to /mode in ogServer API.  Allows changing
the netboot template for a set of given clients, previously selected
in the /scopes view.
2021-02-17 13:40:06 +00:00
Jose M. Guisado e68eb7a3da Add example image creation WTForms validator
Adds in a declarative way the validation of the image name form control
when creating a partition image.

This commit serves as an example of adding a predefined validator of the
WTForms module. Custom validator may be added by creating a given
function and appending it to the list of validators.

See https://wtforms.readthedocs.io/en/2.3.x/validators/#custom-validators
2021-02-16 13:30:28 +00:00
Jose M. Guisado 622f0bacbc Add ips field validation and better redirections
Add a function to validate that the ips received from the /scopes form
is valid (no more, no less).

Also redirects to the /scopes when any final request to the ogServer is
responded by a "200 OK"
2021-02-16 13:27:40 +00:00
Jose M. Guisado 2ec14a0061 Add FAT32 to FS_CODES dict
An error was produced when rendering the setup form of a computer
with any FAT32 partition. It was missing from the mapping of codes
received in a response to a given filesystem.
2021-02-16 13:25:10 +00:00
Jose M. Guisado 55d923431d Add some minor cosmetic changes
This commit may serve for future reference as to how some cosmetic
changes have been applied to the web.

Primarily using bootstrap classes in order to adjust margin or padding,
there are mechanisms that allow modifying the class of an
underlying html element in WTForms. Bootstrap classes are written
directly in html templates for Flask.

Also add a Soleta branded footer.
2021-02-16 13:21:24 +00:00
Jose M. Guisado 199854f1e9 Start using Flask flash messages
These are used to store a message string that can be later accessed. We
can use Flask flash messages to alert about any error or providing info
when processing a request.
2021-02-16 13:18:38 +00:00
Jose M. Guisado 989dc5bd36 Add image create template
Image creation action was lacking a template to render the form. This
patch adds said template.

Also redirects to /scopes when the request was processed by the ogserver
successfully.
2021-02-10 11:58:46 +00:00
Jose M. Guisado 3eda3fa684 Add UNICAST-DIRECT method to image restore
Previously the only method (in the form select) was "UNICAST". This
patch enables specifying a correct parameter for the underlying script
to fetch the image to be restored.

UNICAST-DIRECT makes the administrator transfer the image through the
network. UNICAST-CACHE indicates the taget pc to search for the image in
its cache partition.

Also redirects to the /scopes when ogserver responds with 200 OK.
2021-02-10 11:46:06 +00:00
Jose M. Guisado 95b28c9403 Add setup modif part scheme param and autofill partition_setup
A new parameter for the setup/ was added: type. Regarding the disk
partition scheme. It must be either "MSDOS" or "GPT".

ogServer expects a 4 partition setup in order to succesfully execute a
setup/ command. Ogcp is currently getting the partition to modify
one partition at a time. This patch enables ogcp to "autofill" with
empty partitions the partition_setup payload parameter.

TODO: In the future, the setup/ logic should not need to query the
database once again in order to create the 'partition_setup' payload
parameter with the form modifications.
2021-02-10 10:48:01 +00:00
Jose M. Guisado b8ac0b7963 config: rename config file to ogcp.json
Do not use the same name as ogserver config file.
2020-11-06 09:32:27 +00:00
Jose M. Guisado b708047d28 config: use from_json to read ogserver config
This patch introduces the usage of Flask.Config class so the config can
be read at startup (__init__) only once. Config keys must be uppercase
so that from_json method does take it into account.

 dormousehole.readthedocs.io/en/stable/api.html#flask.Config.from_json

Prior to this patch each request required opening and closing the
ogserver.json file via load_config in views.py.

In the future the decorated load_config function inside views.py
may be removed to avoid creating multiple instances of the OGServer
class.
2020-11-06 09:27:03 +00:00
Jose M. Guisado c08aca9219 Add software action
This action lists every piece of software installed in an OS from a
client.

This action can handle listing the software from the DB as well as
updating that DB with the latest client information.
2020-10-29 15:03:35 +01:00
Roberto Hueso Gómez a8d7494ab9 Add image create action
This action handles the creation of the image in the DB as well as the
'.img' file.
2020-10-29 14:43:23 +01:00
Roberto Hueso Gómez 282984d0ac Add templates for clients, hardware, restore, session and setup
These templates were not added in previous commits.
2020-10-27 11:15:19 +01:00
Roberto Hueso Gómez 8fa8ca3f42 Add run_test.sh script
This script is used to run a Flask testing environment.
2020-10-27 10:38:56 +01:00
Roberto Hueso Gómez 904989b175 Add image restore action
This action provides the image restoring functionality on a specific
client.
2020-10-23 15:10:29 +02:00
Roberto Hueso Gómez c5a4ccff55 Add session action
This action provides the functionality to run one of the installed OSs
in a client.
2020-10-22 11:04:57 +02:00