-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
116 lines (90 loc) · 2.7 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
const fs = require('fs')
const IPFSFactory = require('ipfsd-ctl')
const Dat = require('dat')
const pull = require('pull-stream')
const pullWriteFile = require('pull-write-file')
exports.host = dir => new Promise((res, rej) => {
const f = IPFSFactory.create({ type: 'js' })
f.spawn((err, ipfsd) => {
if (err) return rej(err)
const ipfs = ipfsd.api
Dat('./.host-storage/', async (err, dat) => {
if (err) return rej(err)
function update () {
return new Promise(async (res, rej) => {
const dirInfo = await ipfs.addFromFs(dir, { recursive: true, hidden: true })
const dirHash = dirInfo[dirInfo.length - 1].hash
fs.writeFile('./.host-storage/ipfs-hash.txt', dirHash, err => {
if (err) return rej(err)
dat.importFiles({ watch: true })
dat.joinNetwork()
res()
})
})
}
await update()
res({ link: 'dat://' + dat.key.toString('hex'), update: update })
})
})
})
exports.seed = (dir, link) => new Promise((res, rej) => {
let lastVersion = -1
const f = IPFSFactory.create({ type: 'js' })
f.spawn((err, ipfsd) => {
if (err) return rej(err)
const ipfs = ipfsd.api
Dat('./.seed-storage/', { key: link }, async (err, dat) => {
if (err) return rej(err)
dat.joinNetwork()
const stats = dat.trackStats()
dat.archive.on('sync', () => {
console.log("it's synced, yo")
dat.archive.readFile('/ipfs-hash.txt', 'utf8', (err, hash) => {
if (err) {
console.error("Can't find the file", err)
return
}
ipfsToDisk(ipfs, hash, dir)
})
})
res()
})
})
})
function ipfsToDisk (ipfs, hash, topDir) {
const dirs = []
const files = []
pull(
ipfs.getPullStream(hash),
pull.drain(obj => {
if ('content' in obj) {
files.push(obj)
} else {
dirs.push(obj)
}
}, () => {
let madeDirs = 0
dirs.forEach(dirObj => {
const dirPath = dirObj.path.indexOf('/') === -1 ?
'/' :
dirObj.path.substring(dirObj.path.indexOf('/'))
fs.mkdir(topDir + dirPath, { recursive: true }, err => {
if (err) throw err
madeDirs++
if (madeDirs === dirs.length) {
files.forEach(fileObj => {
const filePath = fileObj.path.substring(fileObj.path.indexOf('/'))
pull(
fileObj.content,
pullWriteFile(topDir + filePath, err => {
if (err) throw err
console.log('wrote', filePath)
})
)
})
}
})
})
})
)
}