forked from aquiladev/ipfs-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfura.js
46 lines (41 loc) · 1.16 KB
/
infura.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
const { create, globSource } = require("ipfs-http-client");
const last = require("it-last");
const fsPath = require("path");
module.exports = {
name: "Infura",
builder: async (options) => {
const { infuraProjectId, infuraProjectSecret, headers, timeout } = options;
if (!infuraProjectId) {
throw new Error("[infura] ProjectId is empty. (input `infuraProjectId`)");
}
if (!infuraProjectSecret) {
throw new Error(
"[infura] ProjectSecret is empty. (input `infuraProjectSecret`)"
);
}
const token = Buffer.from(
`${infuraProjectId}:${infuraProjectSecret}`
).toString("base64");
return create({
host: "ipfs.infura.io",
port: "5001",
protocol: "https",
headers: {
...headers,
authorization: `Basic ${token}`,
},
timeout,
});
},
upload: async (api, options) => {
const { path, pattern, pin } = options;
const { cid } = await last(
api.addAll(globSource(fsPath.dirname(path), pattern), { pin })
);
if (!cid) throw new Error("Content hash is not found.");
return {
cid: cid.toString(),
ipfs: cid.toString(),
};
},
};