summaryrefslogtreecommitdiffstats
path: root/ogcp/views.py
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2021-04-20 10:56:25 +0000
committerOpenGnSys Support Team <soporte-og@soleta.eu>2021-05-20 18:44:40 +0200
commitf303240c554fde68ded5aff4a13f96d07508eb7d (patch)
tree79fedf5551f5ad7ca6be386cd5c0c0cfd3faec35 /ogcp/views.py
parent5e46157060463c86c42053ec20f789ed579eefce (diff)
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.
Diffstat (limited to 'ogcp/views.py')
-rw-r--r--ogcp/views.py23
1 files changed, 22 insertions, 1 deletions
diff --git a/ogcp/views.py b/ogcp/views.py
index c66ada8..73b1fcb 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -3,7 +3,7 @@ from flask import (
)
from ogcp.forms.action_forms import (
WOLForm, PartitionForm, ClientDetailsForm, HardwareForm, SessionForm,
- ImageRestoreForm, ImageCreateForm, SoftwareForm, BootModeForm
+ ImageRestoreForm, ImageCreateForm, SoftwareForm, BootModeForm, RoomForm
)
from flask_login import (
current_user, LoginManager,
@@ -653,3 +653,24 @@ def action_refresh():
else:
flash(_('Refresh request processed successfully'), category='info')
return redirect(url_for("scopes"))
+
+@app.route('/action/room/add', methods=['GET', 'POST'])
+@login_required
+def action_room_add():
+ form = RoomForm(request.form)
+ if request.method == 'POST':
+ payload = {"center": int(form.center.data),
+ "name": form.name.data,
+ "netmask": form.netmask.data}
+ r = g.server.post('/room/add', payload)
+ if r.status_code != requests.codes.ok:
+ flash(_('Server replied with error code when adding the room'), category='error')
+ else:
+ flash(_('Room added successfully'), category='info')
+ return redirect(url_for("scopes"))
+ else:
+ r = g.server.get('/scopes')
+ centers = parse_scopes_from_tree(r.json(), 'center')
+ centers = [(center['id'], center['name']) for center in centers]
+ form.center.choices = list(centers)
+ return render_template('actions/add_room.html', form=form)