-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathmain.py
239 lines (166 loc) · 7.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
from os import chdir, listdir, remove, getcwd
from flask import Flask, render_template, request, flash, session, redirect
from flask_session import Session
import re
from tempfile import mkdtemp
from werkzeug.exceptions import default_exceptions, HTTPException, InternalServerError
from werkzeug.security import check_password_hash, generate_password_hash
from block import *
from helpers import *
app = Flask(__name__)
# A nice Secret Key for flash messages
app.config['SECRET_KEY'] = '69'
# Ensure templates are auto-reloaded
app.config["TEMPLATES_AUTO_RELOAD"] = True
# Ensure responses aren't cached
@app.after_request
def after_request(response):
response.headers["Cache-Control"] = "no-cache, no-store, must-revalidate"
response.headers["Expires"] = 0
response.headers["Pragma"] = "no-cache"
return response
# Configure session to use filesystem (instead of signed cookies)
app.config["SESSION_FILE_DIR"] = mkdtemp()
app.config["SESSION_PERMANENT"] = False
app.config["SESSION_TYPE"] = "filesystem"
Session(app)
# A function for resetting blockchain (Deleting all blocks in folder except the genesis)
def delete_from(directory: str, keep: list) -> None:
cwd = getcwd()
try:
chdir(directory)
for file in listdir():
if not file in keep:
remove(file)
finally:
chdir(cwd)
# Evoid redondemcy by using is_provided function
def is_provided(field):
if not request.form.get(field):
return error(f"MUST PROVIDE {field}", 400)
# Main index - Blockchain Validity Status
@app.route('/')
@login_required
def check():
username0 = db.execute("""
SELECT username FROM users
WHERE id=:user_id""", user_id=session["user_id"])
username = (str(username0)).strip().replace("username","").replace(":","").replace("[{","").replace("'}]","").replace("''","").replace("'","") # Yea, I know... (-_-)
results = check_integrity()
return render_template('index.html', checking_results=results, username=username)
# Make a Transaction
@app.route('/send', methods=['GET', 'POST'])
@login_required
def send():
if request.method == 'POST':
reciever = request.form.get('reciever')
sender = request.form.get('sender')
amount = request.form.get('amount')
# Check if all fields are correct and filled.
result_check = is_provided("reciever") or is_provided("sender") or is_provided("amount")
if result_check != None:
return result_check
write_block(reciever=reciever, sender=sender, amount=amount)
flash(f"Transaction Created: {sender} sent {'$'+ amount} to {reciever}")
return render_template('send.html')
# Shows all transactions history table
@app.route('/history', methods=['GET', 'POST'])
@login_required
def history():
transactions = db.execute("""
SELECT id, reciever, sender, amount, timestamp, tx_id
FROM transactions WHERE user_id=:user_id
""", user_id=session["user_id"])
return render_template("history.html", transactions=transactions)
#Reset the Blockchian - Delete All blocks except genesis block and clear the Database.
@app.route('/delete', methods=['GET', 'POST'])
@login_required
def delete():
# Delete the transactions & sequence in database file
db.execute("DELETE FROM transactions")
db.execute("DELETE FROM sqlite_sequence WHERE name = 'transactions'")
# Delete all files in blockchain directory except first one (Genesis Block)
delete_from('blockchain', ['1'])
flash('Blockchain Resetted.')
return render_template("history.html")
#Log user in
@app.route("/login", methods=["GET", "POST"])
def login():
# Forget any user_id
session.clear()
# User reached route via POST (as by submitting a form via POST)
if request.method == "POST":
# Ensure username and password was submitted
result_check = is_provided("username") or is_provided("password")
if result_check is not None:
return result_check
# Query database for username
rows = db.execute("SELECT * FROM users WHERE username = :username",
username=request.form.get("username").lower())
# Ensure username exists and password is correct
if len(rows) != 1 or not check_password_hash(rows[0]["hash"], request.form.get("password")):
return error("INVALID USERNAME AND/OR PASSWORD", 403)
# Remember which user has logged in
session["user_id"] = rows[0]["id"]
# Redirect user to home page
return redirect("/")
# User reached route via GET (as by clicking a link or via redirect)
else:
return render_template("login.html")
# Log user out
@app.route("/logout")
def logout():
# Forget any user_id
session.clear()
# Redirect user to login form
return redirect("/")
# Password Validation Function
def validate(password):
if len(password) < 8:
return error("Password should be at least 8 characters.")
# elif not re.search("[0-9]", password):
# return error("PASSWORD MUST CONTAIN AT LEAST ONE DIGIT.")
# elif not re.search("[A-Z]", password):
# return error("PASSWORD MUST CONTAIN AT LEAST ONE UPPERCASE LETTER.")
# elif not re.search("[@_!#$%&^*()<>?~+-/\{}:]", password):
# return error("PASSWORD MUST CONTAIN AT LEAST ONE SPECIAL CHARACTER.")
# Register a new user
@app.route("/register", methods=["GET", "POST"])
def register():
if request.method == "POST":
# Ensure username password and confirmation was provided
result_check = is_provided("username") or is_provided("password") or is_provided("confirmation")
if result_check != None:
return result_check
# Validate the user password
validation_errors = validate(request.form.get("password"))
if validation_errors:
return validation_errors
# Ensure password and confirmation match
if request.form.get("password") != request.form.get("confirmation"):
return error("PASSWORDS DOES NOT MATCH.")
# Query database for username
try:
prim_key = db.execute("INSERT INTO users (username, hash) VALUES (:username, :hash)",
username=request.form.get("username").lower(),
hash=generate_password_hash(request.form.get("password")))
except:
return error("USERNAME ALREADY EXISTS.", 400)
if prim_key is None:
return error("REGISTRATION ERROR.", 403)
# Remember which user has logged in
session["user_id"] = prim_key
flash("Registered!")
return redirect("/")
else:
return render_template("register.html")
# Handle Error
def errorhandler(e):
if not isinstance(e, HTTPException):
e = InternalServerError()
return error(e.name, e.code)
# Listen for errors
for code in default_exceptions:
app.errorhandler(code)(errorhandler)
if __name__ == "__main__":
app.run(debug=True, host='0.0.0.0', port=os.getenv("PORT", default=5000))