summaryrefslogtreecommitdiffstats
path: root/ogcp/views.py
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2021-02-17 10:06:10 +0000
committerJose M. Guisado <jguisado@soleta.eu>2021-02-17 13:40:06 +0000
commit20f88065bb79d4c19611873c7b22d57387a32727 (patch)
tree2639488ef11cfdec95b69e2a51db87e365166523 /ogcp/views.py
parente68eb7a3da8b60b6af1bff0cce74b22fdae26095 (diff)
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.
Diffstat (limited to 'ogcp/views.py')
-rw-r--r--ogcp/views.py30
1 files changed, 29 insertions, 1 deletions
diff --git a/ogcp/views.py b/ogcp/views.py
index 2635195..37c59db 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
+ ImageRestoreForm, ImageCreateForm, SoftwareForm, BootModeForm
)
from ogcp.og_server import OGServer
from flask_babel import _
@@ -439,6 +439,34 @@ def action_client_add():
form.create.render_kw = {"formaction": url_for('action_client_add')}
return render_template('actions/client_details.html', form=form)
+@app.route('/action/mode', methods=['GET', 'POST'])
+def action_mode():
+ form = BootModeForm(request.form)
+ if request.method == 'POST':
+ ips = form.ips.data.split(' ')
+ payload = { 'clients': ips, 'mode': form.boot.data }
+ print(payload)
+ r = g.server.post('/mode', payload)
+ if r.status_code == requests.codes.ok:
+ flash(_('Client set boot mode request sent successfully'), category='info')
+ else:
+ flash(_('Ogserver replied with status code not ok'), category='error')
+ return redirect(url_for("scopes"))
+
+ else:
+ r = g.server.get('/mode')
+ available_modes = [(mode, mode) for mode in r.json()['modes']]
+ form.boot.choices = list(available_modes)
+
+ ips = parse_ips(request.args.to_dict())
+ form.ips.data = " ".join(ips)
+ if not validate_ips(ips):
+ return redirect(url_for("scopes"))
+
+ form.ok.render_kw = { 'formaction': url_for('action_mode') }
+ return render_template('actions/mode.html', form=form)
+
+
@app.route('/action/image/create', methods=['GET', 'POST'])
def action_image_create():
form = ImageCreateForm(request.form)