-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_node.py
More file actions
142 lines (118 loc) · 3.88 KB
/
app_node.py
File metadata and controls
142 lines (118 loc) · 3.88 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
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
from blockchain import Blockchain
from block_data import Data
from flask import Flask, jsonify, request, render_template, redirect
from flask_cors import CORS
import json
import hashlib
from sys import argv
app = Flask(__name__)
CORS(app)
blockchain = Blockchain()
@app.route("/")
def index():
return render_template("admin.html", data=Data().required())
@app.route('/mine', methods= ['GET'])
def mine():
last_block = blockchain.last_block
last_proof = last_block['proof']
proof = blockchain.proof_of_work(last_proof)
previous_hash = blockchain.hash(last_block)
block = blockchain.new_block(proof, previous_hash)
with open("data/"+str(port)+"_chain.json", "w") as file:
json.dump(blockchain.chain, file)
response = {
'message' : "New Block Forged",
'index': block['index'] ,
'transactions': block['transactions'],
'proof': block['proof'],
'previous_hash': block['previous_hash'],
}
blockchain.triggered_flood_chain()
return jsonify(response) , 200
@app.route('/transactions', methods=['GET'])
def full_transactions():
return jsonify({
'transactions': blockchain.current_transactions
})
@app.route('/transactions/new', methods=['POST'])
def new_transaction():
values = request.get_json()
print(values)
required = Data().required()
print(required)
if not all(k in values for k in required):
return 'missing values' , 400
index = blockchain.new_transaction(**values)
response = {'message': f'Transaction will be added to Block {index} '}
return jsonify(response) , 201
@app.route('/chain', methods=['GET'])
def full_chain():
response={
'chain': blockchain.chain,
'length': len(blockchain.chain),
}
return jsonify(response), 200
@app.route('/block/<private_key>', methods=['GET'])
def get_block(private_key):
public_key = hashlib.sha256(private_key.encode()).hexdigest()
blocks = []
for block in blockchain.chain:
for transaction in block['transactions']:
if public_key == transaction['public_key']:
blocks.append(transaction)
response = {
'transactions': blocks,
'length': len(blocks),
}
return jsonify(response), 200
@app.route('/nodes', methods=['GET'])
def full_nodes():
return jsonify({
'nodes': list(blockchain.nodes)
})
@app.route('/nodes/register', methods= ['POST'])
def register_nodes():
values = request.get_json()
nodes = values.get('nodes')
flag = values.get('flag')
print(flag)
if nodes is None:
return 'Error: Please supply a valid list of nodes' , 400
for node in nodes:
blockchain.register_node(node, flag)
response = {
'message' : 'new nodes have been added',
'total_nodes': list(blockchain.nodes)
}
blockchain.resolve_conflicts()
with open("data/"+str(port)+"_chain.json", "w") as file:
json.dump(blockchain.chain, file)
return jsonify(response) , 201
@app.route('/nodes/resolve', methods=['GET'])
def consensus():
replaced = blockchain.resolve_conflicts()
if replaced:
with open("data/"+str(port)+"_chain.json", "w") as file:
json.dump(blockchain.chain, file)
response = {
'message': 'Our chain was replaced',
'new_chain': blockchain.chain,
}
else:
response = {
'message': 'Our chain is authoritative',
'chain': blockchain.chain,
}
return jsonify(response), 200
if __name__ == "__main__":
try:
port = argv[1]
except:
port = 5001
try:
with open("data/"+str(port)+"_chain.json", "r") as file:
blockchain.chain = json.loads(file.read())
except:
file = open("data/"+str(port)+"_chain.json", "w")
file.close()
app.run(host='0.0.0.0', port=port, debug=True)