29 lines
812 B
Python
29 lines
812 B
Python
from flask import render_template, Flask, request, jsonify
|
|
|
|
app = Flask(__name__, static_url_path='/unsecure/static')
|
|
pending_command = None
|
|
|
|
@app.route('/unsecure')
|
|
def index():
|
|
return render_template('index.html') # Lädt templates/index.html
|
|
|
|
@app.route('/unsecure/send')
|
|
def send_command():
|
|
global pending_command
|
|
befehl = request.args.get('befehl')
|
|
if befehl:
|
|
pending_command = befehl
|
|
return f"Befehl '{befehl}' gespeichert."
|
|
return "Kein Befehl angegeben.", 400
|
|
|
|
@app.route('/unsecure/fetch')
|
|
def fetch_command():
|
|
global pending_command
|
|
if pending_command:
|
|
cmd = pending_command
|
|
pending_command = None
|
|
return jsonify({'befehl': cmd})
|
|
return jsonify({'befehl': None})
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0', port=3060)
|