-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.py
201 lines (179 loc) · 5.81 KB
/
node.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
from flask import Flask, jsonify, request, send_from_directory
from flask_cors import CORS
from wallet import Wallet
from blockchain import Blockchain
app = Flask(__name__)
CORS(app)
@app.route('/', methods=['GET'])
def get_node_ui():
return send_from_directory('ui', 'node.html')
@app.route('/network', methods=['GET'])
def get_network_ui():
return send_from_directory('ui', 'network.html')
@app.route('/wallet', methods=['POST'])
def create_keys():
wallet.create_keys()
if wallet.save_keys():
global blockchain
blockchain = Blockchain(wallet.public_key, port)
response = {
'public_key': wallet.public_key,
'private_key': wallet.private_key,
'funds': blockchain.get_balance()
}
return jsonify(response), 201
else:
response = {
'message': 'Saving the keys failed.'
}
return jsonify(response), 500
@app.route('/wallet', methods=['GET'])
def load_keys():
if wallet.load_keys():
global blockchain
blockchain = Blockchain(wallet.public_key, port)
response = {
'public_key': wallet.public_key,
'private_key': wallet.private_key,
'funds': blockchain.get_balance()
}
return jsonify(response), 201
else:
response = {
'message': 'Loading the keys failed.'
}
return jsonify(response), 500
@app.route('/balance', methods=['GET'])
def get_balance():
balance = blockchain.get_balance()
if balance != None:
response = {
'message': 'Fetched balance successfully.',
'funds': balance
}
return jsonify(response), 200
else:
response = {
'message': 'Loading balance failed.',
'wallet_set_up': wallet.public_key() != None
}
return jsonify(response), 500
@app.route('/transaction', methods=['POST'])
def add_transaction():
if wallet.public_key == None:
response = {
'message': 'No wallet set up.'
}
return jsonify(response), 400
values = request.get_json()
if not values:
response = {
'message': 'No data found.'
}
return jsonify(response), 400
required_fields = ['recipient', 'amount']
if not all(field in values for field in required_fields):
response = {
'message': 'Required data is missing.'
}
return jsonify(response), 400
recipient = values['recipient']
amount = values['amount']
signature = wallet.sign_transaction(wallet.public_key, recipient, amount)
success = blockchain.add_transaction(recipient, wallet.public_key, signature, amount)
if success:
response = {
'message': 'Successfully added transaction.',
'transaction': {
'sender': wallet.public_key,
'recipient': recipient,
'amount': amount,
'signature': signature
},
'funds': blockchain.get_balance()
}
return jsonify(response), 201
else:
response = {
'message': 'Creating a transaction failed.'
}
return jsonify(response), 400
@app.route('/mine', methods=['POST'])
def mine():
block = blockchain.mine_block()
if block != None:
dict_block = block.__dict__.copy()
dict_block['transactions'] = [tx.__dict__ for tx in dict_block['transactions']]
response = {
'message': 'Block added successfully',
'block': dict_block,
'funds': blockchain.get_balance()
}
return jsonify(response), 201
else:
response = {
'message': 'Adding a block failed.',
'wallet_set_up': wallet.public_key != None
}
return jsonify(response), 500
@app.route('/transactions', methods=['GET'])
def get_open_transaction():
transactions = blockchain.get_open_transactions()
dict_transactions = [tx.__dict__ for tx in transactions]
return jsonify(dict_transactions), 200
@app.route('/chain', methods=['GET'])
def get_chain():
chain_snapshot = blockchain.chain
dict_chain = [block.__dict__.copy() for block in chain_snapshot]
for dict_block in dict_chain:
dict_block['transactions'] = [tx.__dict__ for tx in dict_block['transactions']]
return jsonify(dict_chain), 200
@app.route('/node', methods=['POST'])
def add_node():
values = request.get_json()
if not values:
response = {
'message': 'No data attached.'
}
return jsonify(response), 400
if 'node' not in values:
response = {
'message': 'No node data found.'
}
return jsonify(response), 400
node = values['node']
blockchain.add_peer_node(node)
response = {
'message': 'Node added successfully.',
'all_nodes': blockchain.get_peer_nodes()
}
return jsonify(response), 201
@app.route('/node/<node_url>', methods=['DELETE'])
def remove_node(node_url):
if node_url == '' or node_url == None:
response = {
'message': 'No data found.'
}
return jsonify(response), 400
blockchain.remove_peer_node(node_url)
response = {
'message': 'Node removed',
'all_nodes': blockchain.get_peer_nodes()
}
return jsonify(response), 200
@app.route('/nodes', methods=['GET'])
def get_nodes():
nodes = blockchain.get_peer_nodes()
response = {
'all_nodes': nodes
}
return jsonify(response), 200
if __name__ == '__main__':
from argparse import ArgumentParser
parser = ArgumentParser()
parser.add_argument('-p', '--port', type=int, default=5000)
args = parser.parse_args()
port = args.port
wallet = Wallet(port)
blockchain = Blockchain(wallet.public_key, port)
app.run(host='0.0.0.0', port=port)