-
Notifications
You must be signed in to change notification settings - Fork 0
/
bin.js
executable file
·244 lines (197 loc) · 6.43 KB
/
bin.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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
#!/usr/bin/env node
'use strict';
const HyperspaceClient = require('@hyperspace/client')
const hyperdrive = require('hyperdrive')
const Corestore = require('corestore')
const Networker = require('@corestore/networker')
const version = require('./package.json').version
const fs = require('fs')
const path = require('path')
const express = require('express')
const glob = require("glob")
const cli = require('cac')()
const serveStatic = require('./lib/serve-static')
cli.command('').action((options) => {
console.log('cli tool to create and manage hyperdrive')
console.log(cli.outputHelp())
})
cli.command('init', 'init current dir as hyperdrive').action(async (files, options) => {
if (fs.existsSync('dat.json')) {
console.log('`dat.json` exists, dir already initialized')
process.exit()
}
const client = new HyperspaceClient()
const store = client.corestore()
await store.ready()
const drive = hyperdrive(store)
drive.on('ready', async function () {
console.log('key: ', drive.key.toString('hex'))
console.log('discoverykey: ', drive.discoveryKey.toString('hex'))
let data = {
key: drive.key.toString('hex'),
type: 'hyperdrive'
}
fs.writeFileSync('dat.json', JSON.stringify(data, null, 2))
console.log('The current directory is initialized as a hyperdrive!')
drive.close(() => {
process.exit()
})
})
})
cli.command('add', 'add dir files to hyperdrive').action(async (files, options) => {
if (!fs.existsSync('dat.json')) {
console.log('`dat.json` not exists, please init dir with `hyperbeat init`')
process.exit()
}
let datjson = fs.readFileSync('dat.json')
let json = JSON.parse(datjson)
let key = json.key
const client = new HyperspaceClient()
const store = client.corestore()
await store.ready()
const drive = hyperdrive(store, key)
drive.on('ready', async function () {
console.log('key: ', drive.key.toString('hex'))
console.log('discoverykey: ', drive.discoveryKey.toString('hex'))
glob("**/*", options, function (er, files) {
console.log(files)
let promises = files.map(file => {
return new Promise( (resolve,reject) => {
let dst = drive.createWriteStream(file)
dst.on('finish', () => {
resolve(null)
})
fs.createReadStream(file).pipe(dst)
})
})
Promise.all(promises).then(() => {
drive.close(() => {
process.exit()
})
})
})
})
})
// cli.command('clone', 'init dir as hyperdrive').action(async (files, options) => {
// console.log(files, options)
// })
// cli.command('info', 'init dir as hyperdrive').action(async (files, options) => {
// console.log(files, options)
// })
cli.command('ls', 'init dir as hyperdrive')
.option('--path <path>', 'path within the drive')
.action(async (options) => {
if (!fs.existsSync('dat.json')) {
console.log('`dat.json` not exists, please init dir with `hyperbeat init`')
process.exit()
}
if (!options.path) {
console.log('--path <path> is required')
process.exit()
}
let datjson = fs.readFileSync('dat.json')
let json = JSON.parse(datjson)
let key = json.key
let path = options.path
const client = new HyperspaceClient()
const store = client.corestore()
await store.ready()
const drive = hyperdrive(store, key)
drive.on('ready', async function () {
console.log('key: ', drive.key.toString('hex'))
console.log('discoverykey: ', drive.discoveryKey.toString('hex'))
drive.readdir(path, 'utf-8', (err, data) => {
console.log(data)
drive.close(() => {
process.exit()
})
})
})
})
cli.command('cat', 'cat file content from hyperdrive')
.option('--path <path>', 'file path within the drive')
.action(async (options) => {
if (!fs.existsSync('dat.json')) {
console.log('`dat.json` not exists, please init dir with `hyperbeat init`')
process.exit()
}
if (!options.path) {
console.log('--path <path> is required')
process.exit()
}
let datjson = fs.readFileSync('dat.json')
let json = JSON.parse(datjson)
let key = json.key
let path = options.path
const client = new HyperspaceClient()
const store = client.corestore()
await store.ready()
const drive = hyperdrive(store, key)
drive.on('ready', async function () {
drive.readFile(path, 'utf-8', (err, data) => {
console.log(data)
drive.close(() => {
process.exit()
})
})
})
})
cli.command('pin', 'pin hyperdrive to local hyperspace')
.option('--key <key>', 'hyperdrive key')
.action(async (options) => {
let key = options.key
if (!options.key) {
console.log('--key <key> is required')
process.exit()
}
const client = new HyperspaceClient()
const store = client.corestore()
await store.ready()
const networker = new Networker(store)
const drive = hyperdrive(store, key)
drive.on('ready', async function () {
console.log('key: ', drive.key.toString('hex'))
console.log('discoverykey: ', drive.discoveryKey.toString('hex'))
await networker.configure(drive.discoveryKey, { announce: true, lookup: true })
await drive.download('/')
drive.close(() => {
process.exit()
})
})
})
cli.command('share', 'share hyperdrive and serve as http')
.option('--port <port>', 'http port, default to 3030')
.option('--key <key>', 'hyperdrive key for the drive to share, use local dat.json if <key> is not provided')
.action(async (options) => {
let key = options.key
let port = options.port || 3030
if (!key) {
try {
let datjson = fs.readFileSync('dat.json')
let json = JSON.parse(datjson)
key = json.key
} catch(err) {
console.log('cannot read dat.json or retrive --key <key>')
process.exit()
}
}
const client = new HyperspaceClient()
const store = client.corestore()
await store.ready()
const networker = new Networker(store)
const drive = hyperdrive(store, key)
drive.on('ready', async function () {
console.log('key: ', drive.key.toString('hex'))
console.log('discoverykey: ', drive.discoveryKey.toString('hex'))
const app = express()
app.use(serveStatic(path.join(__dirname, 'public')))
app.use(serveStatic('/', {fs: drive}))
app.listen(port, () => {
console.log(`listening... please open http://localhost:${port} in the browser`)
})
await networker.configure(drive.discoveryKey, { announce: true, lookup: true })
})
})
cli.version(version)
cli.help()
cli.parse()