-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
66 lines (58 loc) · 1.58 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
var http = require('http')
var path = require('path')
var crypto = require('crypto')
var fs = require('fs')
var getPrice = require('3d-print-price-calculator')
var tmpdir = require('os').tmpdir()
function uuid() {
return 'xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8)
return v.toString(16)
})
}
module.exports = function server(db, admesh) {
// function getPrice(hash,admeshObject, cb) {
// db.get()
// }
function saveAdmeshDataToDatabase(hash, stlFilePath, cb) {
admesh(stlFilePath, function(err, admeshObject) {
if (err) {
cb(err, admeshObject)
} else {
db.insert(hash, admeshObject, function(err) {
cb(err, admeshObject)
})
}
})
}
return http.createServer(function(req, res) {
function sendResponseBack(hash, price) {
res.setHeader("Content-Type", "application/json");
res.end(JSON.stringify({
hash: hash,
price: price
}))
}
var md5 = crypto.createHash('md5')
var filePath = path.join(tmpdir, uuid())
console.log("writing to", filePath)
var file = fs.createWriteStream(filePath)
req.on('data', function(data) {
md5.update(data)
file.write(data)
}).on('end', function() {
file.end(function(err) {
var hash = md5.digest('hex')
db.get(hash, function(err, result) {
if (typeof result === 'object') {
sendResponseBack(hash, getPrice({}, result))
} else {
saveAdmeshDataToDatabase(hash, filePath, function(err, obj) {
sendResponseBack(hash, getPrice({}, obj))
})
}
})
})
})
})
}