-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathipfs.js
233 lines (201 loc) · 5.32 KB
/
ipfs.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
import {
IPFS_DIRECTORY_MIMETYPE,
IPFS_DEFAULT_THUMBNAIL_URI,
} from '../constants'
//import { NFTStorage, File } from 'nft.storage'
const { create } = require('ipfs-http-client')
const Buffer = require('buffer').Buffer
const axios = require('axios')
const readJsonLines = require('read-json-lines-sync').default
const { getCoverImagePathFromBuffer } = require('../utils/html')
const infuraUrl = 'https://ipfs.infura.io:5001'
//const apiKey = process.env.REACT_APP_IPFS_KEY
//const storage = new NFTStorage({ token: apiKey })
export const prepareFile100MB = async ({
name,
description,
tags,
address,
buffer,
mimeType,
cover,
thumbnail,
generateDisplayUri,
file
}) => {
const ipfs = create(infuraUrl)
let formData = new FormData()
formData.append('file', file)
let info = await axios.post('https://hesychasm.herokuapp.com/post_file', formData, {
headers: { 'Content-Type': 'multipart/form-data' }
}).then(res => res.data)
const hash = info.path
const cid = `ipfs://${hash}`
// upload cover image
let displayUri = ''
if (generateDisplayUri) {
const coverInfo = await ipfs.add(cover.buffer)
const coverHash = coverInfo.path
displayUri = `ipfs://${coverHash}`
}
// upload thumbnail image
let thumbnailUri = IPFS_DEFAULT_THUMBNAIL_URI
// @crzypatch works wants the thumbnailUri to be the black circle
// if (generateDisplayUri) {
// const thumbnailInfo = await ipfs.add(thumbnail.buffer)
// const thumbnailHash = thumbnailInfo.path
// thumbnailUri = `ipfs://${thumbnailHash}`
// }
return await uploadMetadataFile({
name,
description,
tags,
cid,
address,
mimeType,
displayUri,
thumbnailUri,
})
}
export const prepareFile = async ({
name,
description,
tags,
address,
buffer,
mimeType,
cover,
thumbnail,
generateDisplayUri,
}) => {
const ipfs = create(infuraUrl)
// upload main file
// const ipfs = create(infuraUrl)
const hash = await ipfs.add(new Blob([buffer]))
console.log(hash)
const cid = `ipfs://${hash.path}`
// upload cover image
let displayUri = ''
if (generateDisplayUri) {
const coverHash = await ipfs.add(new Blob([cover.buffer]))
console.log(coverHash)
displayUri = `ipfs://${coverHash.path}`
}
// upload thumbnail image
let thumbnailUri = IPFS_DEFAULT_THUMBNAIL_URI
// @crzypatch works wants the thumbnailUri to be the black circle
// if (generateDisplayUri) {
// const thumbnailInfo = await ipfs.add(thumbnail.buffer)
// const thumbnailHash = thumbnailInfo.path
// thumbnailUri = `ipfs://${thumbnailHash}`
// }
return await uploadMetadataFile({
name,
description,
tags,
cid,
address,
mimeType,
displayUri,
thumbnailUri,
})
}
export const prepareDirectory = async ({
name,
description,
tags,
address,
files,
cover,
thumbnail,
generateDisplayUri,
}) => {
// upload directory of files
const hashes = await uploadFilesToDirectory(files)
const cid = `ipfs://${hashes.directory}`
// upload cover image
const ipfs = create(infuraUrl)
let displayUri = ''
if (generateDisplayUri) {
const coverInfo = await ipfs.add(cover.buffer)
const coverHash = coverInfo.path
displayUri = `ipfs://${coverHash}`
} else if (hashes.cover) {
// TODO: Remove this once generateDisplayUri option is gone
displayUri = `ipfs://${hashes.cover}`
}
// upload thumbnail image
let thumbnailUri = IPFS_DEFAULT_THUMBNAIL_URI
return await uploadMetadataFile({
name,
description,
tags,
cid,
address,
mimeType: IPFS_DIRECTORY_MIMETYPE,
displayUri,
thumbnailUri,
})
}
function not_directory(file) {
return file.blob.type !== IPFS_DIRECTORY_MIMETYPE
}
async function uploadFilesToDirectory(files) {
files = files.filter(not_directory)
const form = new FormData()
files.forEach((file) => {
form.append('file', file.blob, encodeURIComponent(file.path))
})
const endpoint = `${infuraUrl}/api/v0/add?pin=true&recursive=true&wrap-with-directory=true`
const res = await axios.post(endpoint, form, {
headers: { 'Content-Type': 'multipart/form-data' },
})
const data = readJsonLines(res.data)
// TODO: Remove this once generateDisplayUri option is gone
// get cover hash
let cover = null
const indexFile = files.find((f) => f.path === 'index.html')
if (indexFile) {
const indexBuffer = await indexFile.blob.arrayBuffer()
const coverImagePath = getCoverImagePathFromBuffer(indexBuffer)
if (coverImagePath) {
const coverEntry = data.find((f) => f.Name === coverImagePath)
if (coverEntry) {
cover = coverEntry.Hash
}
}
}
const rootDir = data.find((e) => e.Name === '')
const directory = rootDir.Hash
return { directory, cover }
}
async function uploadMetadataFile({
name,
description,
tags,
cid,
address,
mimeType,
displayUri = '',
thumbnailUri = IPFS_DEFAULT_THUMBNAIL_URI,
}) {
const ipfs = create(infuraUrl)
return await ipfs.add(
Buffer.from(
JSON.stringify({
name,
description,
tags: tags.replace(/\s/g, '').split(','),
symbol: 'OBJKT',
artifactUri: cid,
displayUri,
thumbnailUri,
creators: [address],
formats: [{ uri: cid, mimeType }],
decimals: 0,
isBooleanAmount: false,
shouldPreferSymbol: false,
})
)
)
}