-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarValidation.js
executable file
·156 lines (130 loc) · 4.38 KB
/
starValidation.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
const db = require('level')('./data/star')
const bitcoinMessage = require('bitcoinjs-message')
const moment = require('moment');
class StarValidation {
constructor (req) {
this.req = req
}
isValid() {
return db.get(this.req.body.address)
.then((value) => {
value = JSON.parse(value)
return value.messageSignature === 'valid'
})
.catch(() => {throw 'Not authorized'})
}
invalidate(address) {
db.del(address)
}
validateAddressParameter() {
if (!this.req.body.address) {
throw 'Fill the address'
}
return true
}
validateAddressAndSignatureParameters() {
if (!this.validateAddressParameter() || !this.req.body.signature) {
throw 'Fill the address and signature'
}
}
validateNewStarRequest() {
const MAX_STORY_BYTES = 500
const { star } = this.req.body
const { dec, ra, story } = star
if (!this.validateAddressParameter() || !this.req.body.star) {
throw 'Fill the address and star'
}
// Validate ra, dec, story
if (typeof dec !== 'string' || typeof ra !== 'string' || typeof story !== 'string' || !dec.length || !ra.length || !story.length) {
throw new Error("This should include non-empty string properties 'dec', 'ra' and 'story'")
}
// Story is limited to 250 words (500 bytes) ASCII text
if (new Buffer(story).length > MAX_STORY_BYTES) {
throw new Error('The story too is long. Size is up to 500 bytes')
}
const isASCII = ((str) => /^[\x00-\x7F]*$/.test(str))
if (!isASCII(story)) {
throw new Error('The story contains non-ASCII symbols')
}
}
async validateMessageSignature(address, signature) {
return new Promise((resolve, reject) => {
db.get(address, (error, value) => {
if (value === undefined) {
return reject(new Error('Not found'))
} else if (error) {
return reject(error)
}
value = JSON.parse(value)
if (value.messageSignature === 'valid') {
return resolve({
registerStar: true,
status: value
})
} else {
const nowSubFiveMinutes = Math.floor(Date.now()/1000) - (5 * 60)
const isExpired = value.requestTimeStamp < nowSubFiveMinutes
let isValid = false
if (isExpired) {
value.validationWindow = 0
value.messageSignature = 'Validation window was expired'
} else {
value.validationWindow = value.requestTimeStamp - nowSubFiveMinutes
try {
isValid = bitcoinMessage.verify(value.message, address, signature)
} catch (error) {
isValid = false
}
value.messageSignature = isValid ? 'valid' : 'invalid'
}
db.put(address, JSON.stringify(value))
return resolve({
registerStar: !isExpired && isValid,
status: value
})
}
})
})
}
saveNewRequestValidation(address) {
const timestamp = Math.floor(Date.now()/1000)
const message = `${address}:${timestamp}:starRegistry`
const validationWindow = global.nowSubFiveMinutes.humanize(true);
const data = {
address: address,
message: message,
requestTimeStamp: timestamp,
validationWindow: validationWindow
}
db.put(data.address, JSON.stringify(data))
global.nowSubFiveMinutes = null;
return data
}
async getPendingAddressRequest(address) {
global.nowSubFiveMinutes = moment.duration(300, 'seconds');
return new Promise((resolve, reject) => {
db.get(address, (error, value) => {
if (value === undefined) {
return reject(new Error('Not found'))
} else if (error) {
return reject(error)
}
value = JSON.parse(value)
const nowSubFiveMinutes = Math.floor(Date.now()/1000) - (5 * 60)
const isExpired = value.requestTimeStamp < nowSubFiveMinutes
if (isExpired) {
resolve(this.saveNewRequestValidation(address))
} else {
const data = {
address: address,
message: value.message,
requestTimeStamp: value.requestTimeStamp,
validationWindow: value.requestTimeStamp - nowSubFiveMinutes
}
resolve(data)
}
})
})
}
}
module.exports = StarValidation