-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
388 lines (344 loc) · 11.1 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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
const IPFS=require('ipfs-core');
const got=require('got');
const FormData = require('form-data');
const {CID} = require('multiformats');
const sleep=require("sleep-promise");
class IPFS_Simple {
/**
* Creates the IPFS object. Path can be changed with path setter
*/
constructor() {
this._base="http://127.0.0.1:5001/api/v0/";
this._coreMode=false;
this._creating=false;
}
/**
* Creates an IPFS objects instead of using path
* @returns {Promise<void>}
*/
async create() {
this._creating=true;
this._base=await IPFS.create();
this._creating=false;
this._coreMode=true;
}
/**
* returns the objects core
* @returns {string|IPFS}
*/
get core() {
return this._base;
}
/**
* Sets up ipfs object to use a specific core
* @param {string|IPFS} core
* @returns {Promise<void>}
*/
init(core) {
this._base=core;
this._coreMode=(typeof core!=="string");
}
/**
* Sets the path to IPFS interface
* @deprecated
* @param {string} path
*/
set path(path) {
this._base=path;
this._coreMode=false;
}
/**
* converts a cid in to a hash
* @param {string} cidString
* @return {string}
*/
cidToHash(cidString) {
const cid = CID.parse(cidString);
//get hash
let hash = "";
for (let i = 4; i < 36; i++) hash += cid.bytes[i].toString(16).padStart(2, '0');
return hash;
}
/**
* converts a hash in to a cid
* @param {string} hash
* @return {string}
*/
hashToCid(hash) {
const hashPrefix = "1220";
const cid = CID.create(1, 0x55, {
bytes: Uint8Array.from(Buffer.from(hashPrefix + hash, 'hex'))
});
return cid.toString();
}
/**
* Pins a file returns if successful
* @param {string} cid
* @param {int} timeout
* @return {Promise<boolean>}
*/
async pinAdd(cid, timeout = 600000) {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
let response=await this._base.pin.add(CID.parse(cid),{timeout});
return (response.toString()===cid);
}
//Use IPFS Desktop
return new Promise(async (resolve, reject) => {
//handle timeouts
let timer = setTimeout(() => {
reject("get size of " + cid + " timed out");
}, timeout);
//get desired stats
let url = this._base + 'pin/add/' + cid;
let response=await got.post(url);
let {Pins}=JSON.parse(response.body);
//clear timeout and return
clearInterval(timer);
resolve(Pins[0]===cid);
});
}
/**
* Removes the pin on a file
* @param cid
* @return {Promise<void>}
*/
async pinRemove(cid) {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
await this._base.pin.rm(CID.parse(cid));
return;
}
//Use IPFS Desktop
let url = this._base + 'pin/rm/' + cid;
await got.post(url);
}
/**
* Returns the data in an object
* @param {string} cid
* @param {int} timeout
* @return {Promise<Buffer>}
*/
async catBuffer(cid, timeout = 600000) {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
let chunks=[];
for await (const chunk of this._base.cat(cid,{timeout})) {
chunks.push(chunk);
}
return Buffer.concat(chunks);
}
//Use IPFS Desktop
return new Promise(async (resolve, reject) => {
//handle timeouts
let timer = setTimeout(() => {
reject("cat " + cid + " timed out");
}, timeout);
//get desired stats
try {
let url = this._base + 'cat/' + cid;
let response = (await got.post(url,{
responseType:"buffer"
})).body;
resolve(response);
} catch (e) {
reject(e);
}
//clear timeout and return
clearInterval(timer);
});
}
/**
* Returns the data in an object
* @param {string} cid
* @param {int} timeout
* @return {Promise<string>}
*/
async cat(cid, timeout = 600000) {
return (await this.catBuffer(cid,timeout)).toString();
}
/**
* Returns the json data in an object
* @param {string} cid
* @param {int} timeout
* @return {Promise<{}>}
*/
async catJSON(cid, timeout = 600000) {
return JSON.parse(await this.cat(cid,timeout));
}
/**
* Adds a json file and returns its cid
* @param {{}} json
* @return {Promise<string>}
*/
async addRawJSON(json) {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
let response=await this._base.add(Buffer.from(JSON.stringify(json), 'utf8'),{
pin: true,
rawLeaves: true,
hashAlg: 'sha2-256'
});
return response.cid.toString();
}
//Use IPFS Desktop
let form = new FormData();
form.append('path', Buffer.from(JSON.stringify(json), 'utf8'));
let url = this._base + 'add?pin=true&raw-leaves=true&hash=sha2-256';
let response = (await got.post(url, {
headers: form.getHeaders(),
body: form
})).body;
return JSON.parse(response).Hash;
}
/**
* Adds a json file and returns its cid
* @param {Buffer} data
* @return {Promise<string>}
*/
async addBuffer(data) {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
let response=await this._base.add(data,{
pin: true,
hashAlg: 'sha2-256'
});
return response.cid.toString();
}
//Use IPFS Desktop
let form = new FormData();
form.append('path', data);
let url = this._base + 'add?pin=true&hash=sha2-256';
let response = (await got.post(url, {
headers: form.getHeaders(),
body: form
})).body;
return JSON.parse(response).Hash;
}
/**
* Returns if a cid is pinned or not
* @param {string} cid
* @return {Promise<boolean>}
*/
async checkPinned(cid) {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
for await (const response of this._base.pin.ls({
paths: CID.parse(cid)
})) {
if (response.cid.toString()===cid) return true;
}
return false;
}
//Use IPFS Desktop
let url = this._base + 'pin/ls/' + cid;
let response = JSON.parse((await got.post(url)).body);
return (response.Type === undefined); //Type will equal "error" if not pinned and be not present if pinned
}
/**
* returns a list of all pinned cids
* @return {Promise<string[]>}
*/
async listPinned() {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
let responses=[];
for await (const { cid, type } of this._base.pin.ls()) {
responses.push(cid.toString());
}
return responses;
}
//Use IPFS Desktop
let url= this._base + 'pin/ls';
let response = JSON.parse((await got.post(url)).body);
// noinspection JSUnresolvedVariable
return response.Keys;
}
/**
* Gets the size of an object
* @param {string} cid
* @param {int} timeout
* @return {Promise<int>}
*/
async getSize(cid, timeout = 600000) {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
try {
let response = await this._base.object.stat(CID.parse(cid), {timeout});
return response.CumulativeSize;
} catch (e) {
return (await this.catBuffer(cid)).length;
}
}
//Use IPFS Desktop
return new Promise(async (resolve, reject) => {
//handle timeouts
let timer = setTimeout(() => {
reject("get size of " + cid + " timed out");
}, timeout);
//get desired stats
let url = this._base + 'object/stat/' + cid;
/** @type {{NumLinks:int,BlockSize:int,LinksSize:int,DataSize:int,CumulativeSize:int}}*/
let response = JSON.parse((await got.post(url)).body);
//clear timeout and return
clearInterval(timer);
resolve(response.CumulativeSize);
});
}
/**
* Trys to connect to a peer
* @param {string} location
* @param {int} timeout
* @returns {Promise<void>}
*/
async addPeer(location, timeout = 600000) {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
await this._base.swarm.connect(location,{timeout});
return;
}
//Use IPFS Desktop
return new Promise(async (resolve, reject) => {
//handle timeouts
let timer = setTimeout(() => {
reject("connecting to peer " + location + " timed out");
}, timeout);
//get desired stats
let url = this._base + 'swarm/connect?arg=' + location;
let response = JSON.parse((await got.post(url)).body);
//clear timeout and return
clearInterval(timer);
// noinspection JSUnresolvedVariable
resolve(response.Strings[0].endsWith("success"));
});
}
/**
* Gets the id
* Warning the core and desktop return in different formats
* @returns {Promise<unknown>}
*/
async getId() {
//use IPFS core if initialized
while (this._creating) await sleep(100);
if (this._coreMode) {
return this._base.id();
}
//Use IPFS Desktop
return new Promise(async (resolve, reject) => {
let url = this._base + 'id';
let response = JSON.parse((await got.post(url)).body);
resolve(response);
});
}
}
const singularity=new IPFS_Simple();
module.exports=singularity;