-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.py
More file actions
93 lines (84 loc) · 3.6 KB
/
main.py
File metadata and controls
93 lines (84 loc) · 3.6 KB
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
from flask import Flask, jsonify, request, render_template, session, redirect, url_for
from flask_session import Session
from users import User
import json
import factom
import db as ac
app = Flask(__name__)
app.config['SESSION_TYPE'] = 'redis'
app.config.from_object(__name__)
app.secret_key = '12345'
Session(app)
@app.route('/')
def index():
session.secret_key = '67890'
user = None
if('user' in session):
user = session['user']
return render_template('index.html')
@app.route('/login', methods=['POST'])
def login():
username = request.form['username']
password = request.form['password']
rs = ac.login(username, password)
print(rs)
print(type(rs))
if(rs != None):
session['user'] = rs
else:
return "Login information invalid."
session['user']['logged_in'] = True
return redirect(url_for('index'))
@app.route("/logout")
def logout():
session['user'] = None
return redirect(url_for('index'))
@app.route('/createAccount', methods=['POST'])
def createAccount():
username = request.form['usernamesignup']
password = request.form['passwordsignup']
last = request.form['lastsignup']
first = request.form['firstsignup']
company = request.form['companysignup']
email = request.form['emailsignup']
acc_type = "0"
user = {'username':username,'password':password,'last':last,'first':first,'company':company, 'email':email,'type':acc_type}
print(ac.createaccount(user))
return redirect(url_for('index'))
# Add prescription to blockchain
@app.route('/createChain', methods=['POST'])
def createChain():
if(not 'user' in session or session['user']==None or not session['user']['logged_in']):
return "You must be logged in to perform this operation"
result = ac.readchain(request.form)
print(result)
if result == False:
data = (["{} :: {}".format((ac.gethighest() + 1), factom._unix_timestamp())], request.form['meds'])
output = factom.create_new_chain(*data)
data_entry = {"first" : request.form['firstx'], "last": request.form['lastx'], "chain": output['chain_id']}
ac.writechain(data_entry)
else:
data = (result['chain'], ["{} :: {}".format((ac.gethighest() + 1), factom._unix_timestamp())], request.form['meds'])
output = factom.add_to_chain(*data)
result = ac.readchain(request.form)
data_entry = {"prescription_id" : (ac.gethighest() + 1), "hash" : output["entry_hash"], "patient_id" : result['id']}
ac.writeprescription(data_entry)
return "Successful : Prescription ID = {}".format(data_entry["prescription_id"])
# Read and validate prescription in blockchain
@app.route('/getChain', methods=['POST'])
def getChain():
if(not 'user' in session or session['user']==None or not session['user']['logged_in']):
return "You must be logged in to perform this operation"
data_entry = {"firstx" : request.form['PatientsFirst'], "lastx": request.form['PatientsLast']}
result = ac.readchain(data_entry)
if result == False:
return "Patient not found in records"
chain_id = result['chain']
_hash = ac.readprescription({"prescription_id": request.form["Prescription"], "patient_id": str(result['id'])})
if _hash == False:
return "Prescription not found in records"
prescription = factom.get_entry(chain_id, _hash['hash'])
if prescription:
return "BLOCKCHAIN INFO FOR JUDGES :: <br>{}<br><br> Patient's Prescription is :: {}<br>ID :: Timestamp = {}<br>".format(prescription,prescription['content'], factom._b64decode(prescription['external_ids'][0]))
return "Prescription not found"
app.run(host='0.0.0.0')