Armin Friedl
d45d2fa982
All checks were successful
continuous-integration/drone/push Build is passing
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
from flask import render_template, request, flash, redirect, url_for, session
|
|
|
|
from . import app
|
|
from . import forms
|
|
from .countdown import Cache
|
|
|
|
@app.route('/', methods=['GET', 'POST'])
|
|
def create():
|
|
session.permanent = True
|
|
if not session.get('created_countdowns'):
|
|
session['created_countdowns'] = []
|
|
|
|
form = forms.CountdownAdminForm(request.form)
|
|
if request.method == 'POST' and form.validate():
|
|
cache = Cache.getInstance()
|
|
total = form.seconds.data or 0
|
|
total += (form.minutes.data or 0) * 60
|
|
total += (form.hours.data or 0) * 60 * 60
|
|
|
|
countdown_id = cache.add_countdown(total)
|
|
# user = User(form.username.data, form.email.data,
|
|
# form.password.data)
|
|
# db_session.add(user)
|
|
session['created_countdowns'].append(str(countdown_id))
|
|
session.modified = True
|
|
return redirect(url_for('countdown.created'))
|
|
|
|
return render_template('countdown/create.html', form=form, clock=None)
|
|
|
|
@app.route('/mine', methods=['GET'])
|
|
def created():
|
|
return render_template('countdown/created.html', clocks=session['created_countdowns'])
|
|
|
|
@app.route('/<uuid:countdown_id>', methods=['GET'])
|
|
def view(countdown_id):
|
|
return render_template('countdown/countdown.html', countdown_id=countdown_id)
|
|
|