summaryrefslogtreecommitdiffstats
path: root/ogcp
Commit message (Collapse)AuthorAgeFilesLines
* Add status of all clients to the scopes treeJavier Sánchez Parra2022-09-271-2/+1
| | | | Fetch clients status using 'get_clients()'.
* Fetch clients from all ogServers in the dashboardJavier Sánchez Parra2022-09-271-2/+10
| | | | With this commit, ogcp fetch all clients lists an join them.
* Add helper function to send requests to all ogServersJavier Sánchez Parra2022-09-271-4/+24
| | | | | | | 'multi_request()' function make requests to ogServers defined in the configuration and aggregates it responses. This commit also makes 'get_scopes()' use it.
* Retreive scopes from several ogServersJavier Sánchez Parra2022-09-273-14/+47
| | | | | | | Update the configuration file format to support several ogServers and retrieve scopes from those ogServers. The old config file format is still supported.
* Update Catalan translationsJavier Sánchez Parra2022-07-061-142/+342
|
* Update Spanish translationsJavier Sánchez Parra2022-07-061-143/+320
|
* Add "Delete Repository"Javier Sánchez Parra2022-07-044-1/+64
| | | | | In "Repositories" view, users select a repository from the list on the left and press "Delete repository".
* Create "Add Repository" form and viewJavier Sánchez Parra2022-07-044-1/+56
| | | | Creates "Add repository" form with the required inputs: name and IP.
* Add Repositories sectionJavier Sánchez Parra2022-07-043-0/+44
| | | | | In Repositories section/view, users can manage task related to repositories. For example: list, add, delete and edit them.
* Use repository id on image creationJavier Sánchez Parra2022-06-301-2/+2
| | | | | | | On image creation use the id to identify repositories instead of the IP. ogServer related commit: * 52a38d3 ("#915 Use the repository id on image creation")
* Move password hashing to the backendJavier Sánchez Parra2022-06-305-77/+19
| | | | | | | | | | | This patch moves login password hashing from the frontend/javascript to the backend/flask. This patch moves password hashing of login and user management forms. Related commits: * c7b0024 ("Add password hashing") * 661254b ("Add 'Add user' to Users section")
* Increase textarea size from "Import clients"v0.9.3Javier Sánchez Parra2022-06-071-0/+4
| | | | | Improve usability increasing the textarea used to copy the DHCPd configuration.
* Rename field "OS" from "Create image"Javier Sánchez Parra2022-06-071-1/+1
| | | | | | Rename "OS" to "Partition" to improve clarity. This field represent which partition is used to create the image.
* Show link speed in Gb/sJavier Sánchez Parra2022-05-271-3/+9
| | | | | If link speed is greater than 1000 Mb/s, show it in Gb/s to improve readability.
* Use assigned repository on images transfersJavier Sánchez Parra2022-05-241-2/+11
| | | | | Otherwise, update/restore fails on images not saved in the same machine which runs ogServer.
* Add repository field to "Create image" formJavier Sánchez Parra2022-05-242-1/+15
| | | | Let users choose which repository want to use to save the image.
* Improve MAC formattingJavier Sánchez Parra2022-05-181-1/+2
| | | | | Add ":" separator between each byte in hexadecimal and transform chars to uppercase.
* Add color legend of the client statesJavier Sánchez Parra2022-05-171-0/+11
| | | | | Add an explanatory list of the colors used to represent the different client states.
* Show last command result for clients in ogLiveJavier Sánchez Parra2022-05-132-5/+12
| | | | | If the last command sent to a client/s finishes with errors, their icons in the scopes tree change to a yellow circle with an times sign inside.
* Add link speed to pillsJavier Sánchez Parra2022-05-112-2/+9
| | | | | If the clients API response include link speed information, show it in clients' pills.
* Add MAC to pillsJavier Sánchez Parra2022-05-062-1/+30
| | | | Retrieve and cache MACs one by one as users select clients.
* Add 'Delete user' to Users sectionv0.9.2Javier Sánchez Parra2022-04-274-1/+67
| | | | | Creates "Delete user" form. The user to be deleted is selected from the sidebar in Users section.
* Add 'Edit user' to Users sectionJavier Sánchez Parra2022-04-273-0/+88
| | | | | | Creates "Edit user" form with the following inputs: password, password confirmation, role (administrator or regular), allowed scopes. It does no allow to change/edit the username.
* Add 'Add user' to Users sectionJavier Sánchez Parra2022-04-275-2/+150
| | | | | Creates "Add user" form with the following inputs: username, password, password confirmation, role (administrator or regular), allowed scopes.
* Add Users sectionJavier Sánchez Parra2022-04-273-0/+46
| | | | | In Users section/view, administrator accounts can manage all task related to users. For example: add, delete and edit users.
* Add user role administratorJavier Sánchez Parra2022-04-273-3/+6
| | | | | | | ogCP now have to types of users, regular and administrator users. ogCP configuration file defines users roles with the boolean field "ADMIN".
* Add password hashingJavier Sánchez Parra2022-04-225-4/+38
| | | | | | | | | | | The front-end now hashes passwords before sending them to the back-end. It uses SHA-512. This commit adds a hidden input which sends the password hash to not interfere with browsers' save password functionality. Also change passwords of the template configuration file for their hashed/digested versions.
* Rename "submit" to "submit_btn"Javier Sánchez Parra2022-04-222-2/+2
| | | | | Otherwise, wtforms use "submit" as id of the <input> tag, shadowing javascript function ".submit()".
* Add import clients actionJavier Sánchez Parra2022-04-194-2/+89
| | | | | | | | | | | Add import clients form with required inputs: room and dhcpd.conf. This permits users to rapidly add large amounts of clients to a room using dhcpd.conf's syntax. Users can copy full dhcpd.conf files to the text area and the parser only matches lines with the following format as clients: host dummy {hardware ethernet 12:34:56:78:90:ab; fixed-address 192.168.1.55; }
* Increase toast auto hide delay to 30 secondsJavier Sánchez Parra2022-04-121-1/+1
|
* Handle ogServer connection error on loginJavier Sánchez Parra2022-04-111-1/+7
| | | | | On connection error show a (toast) message warning the user. Otherwise, users see Werkzeug debug page.
* Rearrange image dropdownJavier Sánchez Parra2022-04-081-4/+4
|
* Add Update image to commandsJavier Sánchez Parra2022-04-084-1/+100
| | | | | | | | Allows updating the image file for an existing image. This action is related to /image/create in ogServer API. If ogServer receives an POST /image/create without the parameter "description", it does not create a new image and only updates.
* Move search_image() outside action_image_restore()Javier Sánchez Parra2022-04-081-6/+6
|
* Add indeterminate checkboxes to scopes treeJavier Sánchez Parra2022-04-082-0/+21
| | | | | | | Each checkbox may have child checkboxes. If all those children are checked, it be checked. If none are checked, it is unchecked. If some of them are checked, then it’s in an indeterminate state (in this case symbolically meaning “partially” checked).
* Simplify scope identifiersJavier Sánchez Parra2022-04-081-5/+5
| | | | | | | | | | | Old id format example: id_1-1_2-4_3-2 New id format example: scope-1-4-2 It represents the node and its ancestors' position with respect to theirs siblings. The rightmost value is the current node position. Commit f70d90ba32a6 introduces the old format.
* Move toasts messages to the bottom rightJavier Sánchez Parra2022-04-081-2/+2
| | | | Also, increase its duration from 5 to 10 seconds.
* Submit disk form on change of dropdown listJavier Sánchez Parra2022-04-041-5/+1
| | | | Also remove send button as it not necessary anymore.
* Add form for disk selectionJavier Sánchez Parra2022-04-042-2/+9
| | | | | | | | | | Disk selection uses "scopesForm" to submit the change, but setup/show view receives new parameters not provided by this form. Commit 17757baa4727 adds those parameters. This commit gives disk selection its own form with all the required parameters.
* Move setup's disk selectorJavier Sánchez Parra2022-04-041-11/+13
| | | | | Move disk selector from the bottom of the page to the first table, nearby "Partition Table Type" and "Total Disk Size".
* Submit IPs when scopes tree is read onlyJavier Sánchez Parra2022-04-011-1/+2
| | | | | | | | | | Otherwise, users can not switch between actions without going back to the parent view. This makes "scopesForm" work again in all views and not only in scopes.html and commands.html. Commit feed135554543 introduces this regression.
* Fix typo in scopes templateJavier Sánchez Parra2022-04-011-1/+1
| | | | | | Otherwise, scopes' actions do not set the scopes tree read only. Commit feed135554543 introduces this typo.
* Ask for reference when partitioning several clientsJavier Sánchez Parra2022-04-014-8/+69
| | | | | Allow the user to choose a computer as reference to display the partition scheme form.
* Change get_client_setup to receive a stringJavier Sánchez Parra2022-03-311-3/+5
| | | | | | get_client_setup() takes an IP address that identify the client, instead of passing an iterator with one single IP address, pass directly such IP address.
* Remove unused variable db_partitionsJavier Sánchez Parra2022-03-291-1/+0
|
* Add ogServer uptime to the dashboardJavier Sánchez Parra2022-03-282-1/+10
| | | | | | | ogServer GET /stats returns ogServer uptime in seconds. Transform seconds to days, hours and minutes and print them in the dashboard.
* Check swap size is not zeroJavier Sánchez Parra2022-03-251-0/+6
| | | | If the server do not have swap, show a warning.
* Replace " " with "_" in HTML scopes IDsJavier Sánchez Parra2022-03-252-4/+4
| | | | | | | | | | | | | | | | | | | Otherwise, scopes with whitespaces in their names breaks the javascript code. From https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id: --- Note: Technically, in HTML5, the value for an id attribute may contain any character, except whitespace characters. However, to avoid inadvertent errors, only ASCII letters, digits, '_', and '-' should be used and the value for an id attribute should start with a letter. For example, . has a special meaning in CSS (it acts as a class selector). Unless you are careful to escape it in the CSS, it won't be recognized as part of the value of an id attribute. It is easy to forget to do this, resulting in bugs in your code that could be hard to detect. ---
* Add Catalan translationsv0.9.1Javier Sánchez Parra2022-03-221-0/+675
|
* Update Spanish translationsJavier Sánchez Parra2022-03-221-113/+217
|