mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-10-31 22:47:05 +01:00
WebApp: reformat whitespace according to PEP8
This commit is contained in:
parent
1f27ebafdb
commit
aa5999203c
@ -42,16 +42,18 @@ def emit_doorstate(response=None):
|
|||||||
message = str(logic.state)
|
message = str(logic.state)
|
||||||
|
|
||||||
json_push_state = json.dumps({
|
json_push_state = json.dumps({
|
||||||
'message' : message,
|
'message': message,
|
||||||
'img' : logic.state.to_img()})
|
'img': logic.state.to_img()})
|
||||||
|
|
||||||
#Notify push clients
|
# Notify push clients
|
||||||
evt.set()
|
evt.set()
|
||||||
evt.clear()
|
evt.clear()
|
||||||
|
|
||||||
|
|
||||||
def event_str():
|
def event_str():
|
||||||
return "data: {}\n\n".format(json_push_state)
|
return "data: {}\n\n".format(json_push_state)
|
||||||
|
|
||||||
|
|
||||||
def push_state():
|
def push_state():
|
||||||
def event_str():
|
def event_str():
|
||||||
return "data: {}\n\n".format(json_push_state)
|
return "data: {}\n\n".format(json_push_state)
|
||||||
@ -64,6 +66,7 @@ def push_state():
|
|||||||
except GeneratorExit:
|
except GeneratorExit:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
class AuthenticationForm(FlaskForm):
|
class AuthenticationForm(FlaskForm):
|
||||||
username = StringField('Username', [Length(min=3, max=25)])
|
username = StringField('Username', [Length(min=3, max=25)])
|
||||||
password = PasswordField('Password', [DataRequired()])
|
password = PasswordField('Password', [DataRequired()])
|
||||||
@ -86,6 +89,7 @@ class AuthenticationForm(FlaskForm):
|
|||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
@webapp.route('/display')
|
@webapp.route('/display')
|
||||||
def display():
|
def display():
|
||||||
return render_template('display.html',
|
return render_template('display.html',
|
||||||
@ -93,10 +97,11 @@ def display():
|
|||||||
title=title,
|
title=title,
|
||||||
welcome=welcome)
|
welcome=welcome)
|
||||||
|
|
||||||
|
|
||||||
@webapp.route('/push')
|
@webapp.route('/push')
|
||||||
def push():
|
def push():
|
||||||
emit_doorstate()
|
emit_doorstate()
|
||||||
resp = Response(push_state(),mimetype="text/event-stream")
|
resp = Response(push_state(), mimetype="text/event-stream")
|
||||||
resp.headers['X-Accel-Buffering'] = 'no'
|
resp.headers['X-Accel-Buffering'] = 'no'
|
||||||
resp.headers['Cache-Control'] = 'no-cache'
|
resp.headers['Cache-Control'] = 'no-cache'
|
||||||
return resp
|
return resp
|
||||||
@ -201,4 +206,4 @@ def webapp_run(cfg, my_logic, status, version, template_folder, static_folder):
|
|||||||
webapp.template_folder = template_folder
|
webapp.template_folder = template_folder
|
||||||
webapp.static_folder = static_folder
|
webapp.static_folder = static_folder
|
||||||
webapp.debug = debug
|
webapp.debug = debug
|
||||||
webapp.run(host = host, port = 8080)
|
webapp.run(host=host, port=8080)
|
||||||
|
Loading…
Reference in New Issue
Block a user