-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·133 lines (116 loc) · 3.22 KB
/
index.js
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
const compression = require('compression')
const express = require('express')
const router = express()
const bodyParser = require('body-parser')
const Block = require('./block')
const Blockchain = require('./blockchain')
const blockchain = new Blockchain()
const StarValidation = require('./starValidation')
router.use(compression())
router.listen(8000, () => console.log('listening port: 8000'))
router.use(bodyParser.json())
router.get('/', (req, res) => res.status(404).json({
"status": 404,
"message": "Please check entered endpoints"
}))
router.post('/requestValidation', async (req, res) => {
const starValidation = new StarValidation(req)
const address = req.body.address
try {
data = await starValidation.getPendingAddressRequest(address)
} catch (error) {
data = await starValidation.saveNewRequestValidation(address)
}
res.json(data)
})
router.post('/message-signature/validate', async (req, res) => {
const starValidation = new StarValidation(req)
try {
starValidation.validateAddressAndSignatureParameters()
} catch (error) {
res.status(400).json({
status: 400,
message: error
})
return
}
try {
const { address, signature } = req.body
const response = await starValidation.validateMessageSignature(address, signature)
if (response.registerStar) {
res.json(response)
} else {
res.status(401).json(response)
}
} catch (error) {
res.status(404).json({
status: 404,
message: error
})
}
})
router.get('/block/:height', async (req, res) => {
try {
const response = await blockchain.getBlock(req.params.height)
res.send(response)
} catch (error) {
res.status(404).json({
"status": 404,
"message": 'This block is not found'
})
}
})
router.get('/stars/address:address', async (req, res) => {
try {
const address = req.params.address.slice(1)
const response = await blockchain.getBlocksByAddress(address)
res.send(response)
} catch (error) {
res.status(404).json({
status: 404,
message: 'Block not found'
})
}
})
router.get('/stars/hash:hash', async (req, res) => {
try {
const hash = req.params.hash.slice(1)
const response = await blockchain.getBlockByHash(hash)
res.send(response)
} catch (error) {
res.status(404).json({
status: 404,
message: 'Block not found'
})
}
})
router.post('/block', async (req, res) => {
const starValidation = new StarValidation(req)
try {
const isValid = await starValidation.isValid()
if (!isValid) {
throw 'Signature is not valid'
}
starValidation.validateNewStarRequest();
} catch (error) {
res.status(401).json({
status: 401,
message: error
})
return
}
const body = { address, star } = req.body
const story = star.story
body.star = {
dec: star.dec,
ra: star.ra,
story: new Buffer(story).toString('hex'),
mag: star.mag,
con: star.con
}
await blockchain.addBlock(new Block(body))
const height = await blockchain.getBlockHeight()
const response = await blockchain.getBlock(height)
starValidation.invalidate(address)
res.status(201).send(response)
})