123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- from flask import Flask, request, session, g, redirect, url_for, abort, \
- render_template, flash
- import sqlite3
- from datetime import date, timedelta
- import locale
- locale.setlocale(locale.LC_ALL, '')
- DATABASE = '/tmp/cavote.db'
- SECRET_KEY = '{J@uRKO,xO-PK7B,jF?>iHbxLasF9s#zjOoy=+:'
- DEBUG = True
- USERNAME = 'admin'
- PASSWORD = 'admin'
- app = Flask(__name__)
- app.config.from_object(__name__)
- def connect_db():
- return sqlite3.connect(app.config['DATABASE'])
- @app.before_request
- def before_request():
- g.db = connect_db()
- @app.teardown_request
- def teardown_request(exception):
- g.db.close()
- @app.route('/')
- def home():
- return render_template('index.html')
- #----------------
- # Login / Logout
- @app.route('/login', methods=['GET', 'POST'])
- def login():
- error = None
- if request.method == 'POST':
- if request.form['username'] != app.config['USERNAME']:
- error = 'Invalid username'
- elif request.form['password'] != app.config['PASSWORD']:
- error = 'Invalid password'
- else:
- session['logged_in'] = True
- session['nickname'] = request.form['username']
- if session['nickname'] == 'admin':
- session['is_admin'] = True
- flash('You were logged in')
- return redirect(url_for('home'))
- return render_template('login.html', error=error)
- @app.route('/logout')
- def logout():
- session.pop('logged_in', None)
- flash('You were logged out')
- return redirect(url_for('home'))
- #---------------
- # User settings
- #------------
- # User admin
- #------------
- # Votes list
- @app.route('/votes/<votes>')
- def show_votes(votes):
- today = date.today()
- if votes == 'all':
- cur = g.db.execute('select title, description, date_begin, date_end from votes order by id desc')
- elif votes == 'archives':
- cur = g.db.execute('select title, description, date_begin, date_end from votes where date_end < (?) order by id desc', [today])
- elif votes == 'currently':
- cur = g.db.execute('select title, description, date_begin, date_end from votes where date_end >= (?) order by id desc', [today])
- else:
- abort(404)
- votes = [dict(title=row[0], description=row[1], date_begin=row[2], date_end=row[3],
- pourcent=60) for row in cur.fetchall()]
- return render_template('show_votes.html', votes=votes)
- #-------------
- # Votes admin
- @app.route('/votes/admin/new')
- def new_vote():
- if not session.get('logged_in'):
- abort(401)
- return render_template('new_vote.html')
- @app.route('/votes/admin/add', methods=['POST'])
- def add_vote():
- if not session.get('logged_in'):
- abort(401)
- date_begin = date.today()
- date_end = date.today() + timedelta(days=int(request.form['days']))
- transparent = 0
- public = 0
- multiplechoice = 0
- if 'transparent' in request.form.keys():
- transparent = 1
- if 'public' in request.form.keys():
- public = 1
- if 'multiplechoice' in request.form.keys():
- multiplechoice = 1
- g.db.execute('insert into votes (title, description, date_begin, date_end, is_transparent, is_public, is_multiplechoice) values (?, ?, ?, ?, ?, ?, ?)',
- [request.form['title'], request.form['description'], date_begin, date_end, transparent, public, multiplechoice])
- g.db.commit()
- flash('New entry was successfully posted')
- return redirect(url_for('home'))
- #------
- # Main
- if __name__ == '__main__':
- app.run()
|