forked from pcewebpython/flask-mailroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
58 lines (45 loc) · 1.83 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import base64
from flask import Flask, render_template, request, redirect, url_for, session
from passlib.hash import pbkdf2_sha256
from model import Donation, Donor
app = Flask(__name__)
app.secret_key = b'\x9d\xb1u\x08%\xe0\xd0p\x9bEL\xf8JC\xa3\xf4J(hAh\xa4\xcdw\x12S*,u\xec\xb8\xb8'
#app.secret_key = os.environ.get('SECRET_KEY').encode()
@app.route('/')
def home():
'''Redirects to all donations'''
return redirect(url_for('all'))
@app.route('/donations/')
def all():
'''Displays all donations'''
donations = Donation.select()
return render_template('donations.jinja2', donations=donations)
@app.route('/login', methods=['GET', 'POST'])
def login():
'''Manages donor login'''
if request.method == 'POST':
donor = Donor.select().where(Donor.name == request.form['name']).get()
if donor and pbkdf2_sha256.verify(request.form['password'], donor.password):
session['username'] = request.form['name']
return redirect(url_for('all'))
return render_template('login.jinja2', error="Incorrect username or password.")
else:
return render_template('login.jinja2')
@app.route('/donate', methods=['GET', 'POST'])
def donate():
'''Creates donations from a entered user'''
if 'username' not in session:
return redirect(url_for('login'))
if request.method == 'POST':
try:
donor = Donor.select().where(Donor.name == request.form['name']).get()
except:
return render_template('create.jinja2', error="Invalid Donor")
dontation = Donation(value= request.form['amount'], donor= donor.id)
dontation.save()
return redirect(url_for('all'))
return render_template('create.jinja2')
if __name__ == "__main__":
port = int(os.environ.get("PORT", 6738))
app.run(host='0.0.0.0', port=port)