-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
231 lines (201 loc) · 6.05 KB
/
Copy pathserver.js
File metadata and controls
231 lines (201 loc) · 6.05 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
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
'use strict';
require('dotenv').config();
const express = require('express');
const mongoose = require('mongoose');
const morgan = require('morgan');
const passport = require('passport');
const request = require('request');
mongoose.Promise = global.Promise;
const { PORT, DATABASE_URL } = require('./config');
const { BlockHeight } = require("./models");
// const { NextBlock } = require('./next-block.js')
const app = express();
var bodyParser = require('body-parser');
app.use(bodyParser.json());
// // Logging
app.use(morgan('common'));
// app.use(express.json());
app.use(express.static("public"));
// // CORS
app.use(function (req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Headers', 'Content-Type,Authorization');
res.header('Access-Control-Allow-Methods', 'GET,POST,PUT,PATCH,DELETE');
if (req.method === 'OPTIONS') {
return res.send(204);
}
next();
});
const rp = require('request-promise');
class Options {
constructor(uri, method, form, headers) {
this.uri = uri;
this.method = method;
this.form = form;
this.headers = headers;
}
}
app.get('/current-height-db', function (req, res, next) {
BlockHeight
.findOne()
.then(block => {
res.status(200).json({
height: block.height
})
})
.catch(err => {
console.error(err)
res.status(500).json({message: 'Something went wrong in current-height-db'})}
);
});
app.get('/latest-block-height', (req, res) => {
let blockHeightUrl = `https://blockchain.info/q/getblockcount`;
const blockHeightOptions = new Options(blockHeightUrl);
rp(blockHeightOptions)
.then(function (height) {
res.send(height);
})
.catch(function (err) {
res.status(500).json({ message: "Internal server error; failed in outside call" });
});
});
app.delete('/delete-and-instantiate/:height', function(req, res, next){
//Takes a height and then makes sure there's one DB entry using it
let height = req.params.height;
//check if not an integer
if ( height && !isNaN(parseFloat(height)) && !isFinite(height)){
const message = `Missing integer as a request parameter`;
console.error(message);
return res.status(400).send(message);
} else {
res.status(204).json({ message: 'success' });
}
BlockHeight.findOne({}, (err, obj) => {
if(obj == null){
BlockHeight.create({
height : req.body.height
})
.then(block => res.status(200).send("New block entry instantiated"))
.catch(function (err) {
res.status(500).json({ message: "Couldn't create block entry from scratch" });
});
}
else {
BlockHeight.deleteMany({}, function(err, obj) {
if(err) {
throw err;
}
BlockHeight.create({
height : req.body.height
})
.then(block => res.status(204).send("New block entry instantiated"))
.catch(function (err) {
res.status(500).json({ message: "Couldn't create block entry from scratch" });
});
})
.catch(function (err) {
res.status(500).json({ message: "Couldn't delete and create block entry" });
});
}
})
});
app.put('/update-height', function (req, res, next) {
const requiredFields = ['height'];
for (let i = 0; i < requiredFields.length; i++) {
const field = requiredFields[i];
if (!(field in req.body)) {
const message = `Missing \`${field}\` in request body`;
console.error(message);
return res.status(400).send(message);
}
};
BlockHeight.
findOneAndUpdate({}, {$set:{ height : req.body.height }}, {new: true}, (err, block) => {
if (err) {
console.log("Something wrong when updating data!");
}
res.send(block);
});
});
app.get('/block-info/:height', (req, res, next) => {
let difficulty = req.body.difficulty;
let blockInfoOptions = new Options(`https://blockchain.info/block-height/${req.params.height}?format=json`)
//get the other info
rp(blockInfoOptions)
.then(function (body) {
let obj = JSON.parse(body);
obj = obj.blocks[0];
delete obj['tx'];
res.json({
"header" : {
"version" : obj.ver,
"previous_hash" : obj.prev_block,
"merkle_root" : obj.mrkl_root,
"time" : obj.time,
"bits" : obj.bits,
"nonce" : obj.nonce
},
"info" : {
"hash" : obj.hash,
"prev_block" : obj.prev_block,
"next_block" : obj['next_block'][0],
"difficulty" : difficulty,
"height" : obj.height
}
})
})
.catch(function (err) {
res.status(500).json({ message: "Internal server error" });
});
});
app.get('/get-current-difficulty', (req, res) => {
let difficultyUrl = `https://blockchain.info/q/getdifficulty`;
let difficultySettings = new Options(difficultyUrl);
rp(difficultySettings)
.then(function(body){
res.send(body);
})
.catch(function(err){
res.status(500).json({message: "unable to get difficulty"})
});
});
app.use('*', (req, res) => {
return res.status(404).json({ message: 'Not Found' });
});
// Referenced by both runServer and closeServer. closeServer
// assumes runServer has run and set `server` to a server object
let server;
function runServer(databaseUrl, port = PORT) {
return new Promise((resolve, reject) => {
mongoose.connect(databaseUrl, { useNewUrlParser: true }, err => {
if (err) {
return reject(err);
}
server = app.listen(port, () => {
console.log(`Your app is listening on port ${port}`);
resolve();
})
.on('error', err => {
mongoose.disconnect();
reject(err);
});
});
});
}
function closeServer() {
return mongoose.disconnect().then(() => {
return new Promise((resolve, reject) => {
console.log('Closing server');
server.close(err => {
if (err) {
return reject(err);
}
resolve();
});
});
});
}
if (require.main === module) {
runServer(DATABASE_URL).catch(err => console.error(err));
}
module.exports = { app, runServer, closeServer };