-
Notifications
You must be signed in to change notification settings - Fork 6
/
ipfs.go
425 lines (386 loc) · 12.9 KB
/
ipfs.go
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
package blox
import (
"encoding/base64"
"encoding/json"
"errors"
"net/http"
"github.com/functionland/go-fula/common"
wifi "github.com/functionland/go-fula/wap/pkg/wifi"
"github.com/ipfs/go-cid"
"github.com/ipfs/go-datastore"
"github.com/ipfs/go-datastore/query"
cidlink "github.com/ipld/go-ipld-prime/linking/cid"
)
type (
pinListResp struct {
Keys map[string]pinListKeysType `json:"Keys,omitempty"`
}
pinListKeysType struct {
Type string
}
)
type SizeStat struct {
RepoSize uint64 `json:"RepoSize"`
StorageMax uint64 `json:"StorageMax"`
}
type RepoInfo struct {
NumObjects uint64 `json:"NumObjects"`
RepoPath string `json:"RepoPath"`
SizeStat SizeStat `json:"SizeStat"`
Version string `json:"Version"`
RepoSize uint64 `json:"RepoSize"`
}
type FilesStat struct {
Blocks int `json:"Blocks"`
CumulativeSize uint64 `json:"CumulativeSize"`
Hash string `json:"Hash"`
Local bool `json:"Local,omitempty"` // Optional field. 'omitempty' keyword is used to exclude the field from the output if it's default/zero value
Size uint64 `json:"Size"`
SizeLocal uint64 `json:"SizeLocal,omitempty"` // Optional field.
Type string `json:"Type"`
WithLocality bool `json:"WithLocality,omitempty"` // Optional field.
}
type CidStruct struct {
Root string `json:"/"`
}
type StatsBitswap struct {
BlocksReceived uint64 `json:"BlocksReceived"`
BlocksSent uint64 `json:"BlocksSent"`
DataReceived uint64 `json:"DataReceived"`
DataSent uint64 `json:"DataSent"`
DupBlksReceived uint64 `json:"DupBlksReceived"`
DupDataReceived uint64 `json:"DupDataReceived"`
MessagesReceived uint64 `json:"MessagesReceived"`
Peers []string `json:"Peers"`
ProvideBufLen int `json:"ProvideBufLen"`
Wantlist []CidStruct `json:"Wantlist"`
}
type StatsBw struct {
RateIn float64 `json:"RateIn"`
RateOut float64 `json:"RateOut"`
TotalIn int64 `json:"TotalIn"`
TotalOut int64 `json:"TotalOut"`
}
type PeerStats struct {
Exchanged uint64 `json:"Exchanged"`
Peer string `json:"Peer"`
Recv uint64 `json:"Recv"`
Sent uint64 `json:"Sent"`
Value float64 `json:"Value"`
}
func notFoundHandler(w http.ResponseWriter, r *http.Request) {
params := r.URL.Query()
log.Errorw("404 Not Found",
"method", r.Method,
"url", r.URL.String(),
"params", params,
)
http.NotFound(w, r)
}
func (p *Blox) ServeIpfsRpc() http.Handler {
mux := http.NewServeMux()
// https://docs.ipfs.tech/reference/kubo/rpc/#api-v0-pin-ls
mux.HandleFunc("/api/v0/pin/ls", func(w http.ResponseWriter, r *http.Request) {
log.Debug("pin/ls request received")
queryOptions := query.Query{
KeysOnly: true,
Filters: []query.Filter{},
}
// Extract the 'arg' query parameter
cidStr := r.URL.Query().Get("arg")
log.Debugw("pin/ls request received with arg", "arg", cidStr)
// If cidStr is not empty, construct the prefix and create a filter
if cidStr != "" {
c, err := cid.Decode(cidStr)
if err != nil {
log.Errorw("failed to decode cidStr", "cidStr", cidStr, "err", err)
http.Error(w, "invalid cid: "+err.Error(), http.StatusBadRequest)
return
}
// Construct the prefix with byte 47 and the CID bytes
prefix := string(append([]byte{47}, c.Bytes()...))
// Use FilterKeyPrefix
queryOptions.Filters = append(queryOptions.Filters, query.FilterKeyPrefix{Prefix: prefix})
queryOptions.Limit = 1 // Set limit to 1 if arg is provided
}
var resp pinListResp
resp.Keys = make(map[string]pinListKeysType)
results, err := p.ds.Query(r.Context(), queryOptions)
if err != nil {
log.Errorw("failed to query datastore", "err", err)
http.Error(w, "internal error while querying datastore: "+err.Error(), http.StatusInternalServerError)
return
}
for result := range results.Next() {
if result.Error != nil {
log.Errorw("failed to traverse results", "err", err)
http.Error(w, "internal error while traversing datastore results: "+err.Error(), http.StatusInternalServerError)
return
}
keyBytes := []byte(result.Key) // Convert the key to a byte slice
if len(keyBytes) > 1 {
// Slice the keyBytes to remove the first byte
slicedKeyBytes := keyBytes[1:]
c, err := cid.Cast(slicedKeyBytes)
if err != nil {
log.Debugw("failed to cast sliced key to cid", "slicedKeyBytes", slicedKeyBytes, "err", err)
continue
}
resp.Keys[c.String()] = pinListKeysType{Type: "recursive"}
} else {
log.Debugw("key too short to be a valid CID", "keyBytes", keyBytes)
}
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
log.Errorw("failed to encode response to pin ls", "err", err)
}
})
// https://docs.ipfs.tech/reference/kubo/rpc/#api-v0-block-stat
mux.HandleFunc("/api/v0/block/stat", func(w http.ResponseWriter, r *http.Request) {
c := r.URL.Query().Get("arg")
if c == "" {
http.Error(w, "no cid specified", http.StatusBadRequest)
return
}
cd, err := cid.Decode(c)
if err != nil {
http.Error(w, "invalid cid: "+err.Error(), http.StatusBadRequest)
return
}
key := toDatastoreKey(cidlink.Link{Cid: cd})
switch value, err := p.ds.Get(r.Context(), key); {
case errors.Is(err, datastore.ErrNotFound):
http.NotFound(w, r)
return
case err != nil:
http.Error(w, "internal error: "+err.Error(), http.StatusInternalServerError)
return
default:
resp := struct {
Key string `json:"Key"`
Size int `json:"Size"`
}{
Key: cd.String(),
Size: len(value),
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
log.Errorw("failed to encode response to block stat", "err", err)
}
}
})
// https://docs.ipfs.tech/reference/kubo/rpc/#api-v0-id
mux.HandleFunc("/api/v0/id", func(w http.ResponseWriter, r *http.Request) {
//Get string value of addresses
addresses := p.h.Addrs()
addressStrings := make([]string, len(addresses))
for i, addr := range addresses {
addressStrings[i] = addr.String()
}
//Get Public Key
pubKey, err := p.h.ID().ExtractPublicKey()
if err != nil {
log.Errorw("Public key is not available", err)
return
}
pubKeyBytes, err := pubKey.Raw()
if err != nil {
log.Errorw("Error getting raw public key:", err)
return
}
pubKeyBase64 := base64.StdEncoding.EncodeToString(pubKeyBytes)
resp := struct {
Addresses []string `json:"Addresses"`
AgentVersion string `json:"AgentVersion"`
ID string `json:"ID"`
ProtocolVersion string `json:"ProtocolVersion"`
Protocols []string `json:"Protocols"`
PublicKey string `json:"PublicKey"`
}{
Addresses: addressStrings,
AgentVersion: common.Version0,
ID: p.h.ID().String(),
ProtocolVersion: "fx_exchange/" + common.Version0,
Protocols: []string{"fx_exchange"},
PublicKey: pubKeyBase64,
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
log.Errorw("failed to encode response to id", "err", err)
}
})
// https://docs.ipfs.tech/reference/kubo/rpc/#api-log-level
mux.HandleFunc("/api/v0/log/level", func(w http.ResponseWriter, r *http.Request) {
resp := struct {
Message string `json:"Message"`
}{
Message: "ignored",
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
log.Errorw("failed to encode response to log level", "err", err)
}
})
// https://docs.ipfs.tech/reference/kubo/rpc/#api-v0-stats-repo Modified for Sugarfunge by adding RepoSize in the root of response
mux.HandleFunc("/api/v0/stats/repo", func(w http.ResponseWriter, r *http.Request) {
//get StorageMax
storage, err := wifi.GetBloxFreeSpace()
if err != nil {
log.Errorw("failed to get storage stats", "err", err)
http.Error(w, "internal error while getting storage stats: "+err.Error(), http.StatusInternalServerError)
return
}
//Get RepoSize and NumObjects
repoSize := 0
numObjects := 0
results, err := p.ds.Query(r.Context(), query.Query{
KeysOnly: true,
})
if err != nil {
log.Errorw("failed to query datastore", "err", err)
http.Error(w, "internal error while querying datastore: "+err.Error(), http.StatusInternalServerError)
return
}
for result := range results.Next() {
if result.Error != nil {
log.Errorw("failed to traverse results", "err", err)
http.Error(w, "internal error while traversing datastore results: "+err.Error(), http.StatusInternalServerError)
return
}
repoSize = repoSize + result.Size
numObjects = numObjects + 1
}
resp := RepoInfo{
NumObjects: uint64(numObjects),
RepoPath: p.storeDir,
RepoSize: uint64(repoSize),
SizeStat: SizeStat{
RepoSize: uint64(repoSize),
StorageMax: uint64(storage.Size),
},
Version: "fx-repo@" + common.Version0,
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
log.Errorw("failed to encode response to stats repo", "err", err)
}
})
// https://docs.ipfs.tech/reference/kubo/rpc/#api-v0-files-stat
mux.HandleFunc("/api/v0/files/stat", func(w http.ResponseWriter, r *http.Request) {
//Get RepoSize and NumObjects
repoSize := 0
numObjects := 0
results, err := p.ds.Query(r.Context(), query.Query{
KeysOnly: true,
})
if err != nil {
log.Errorw("failed to query datastore", "err", err)
http.Error(w, "internal error while querying datastore: "+err.Error(), http.StatusInternalServerError)
return
}
for result := range results.Next() {
if result.Error != nil {
log.Errorw("failed to traverse results", "err", err)
http.Error(w, "internal error while traversing datastore results: "+err.Error(), http.StatusInternalServerError)
return
}
repoSize = repoSize + result.Size
numObjects = numObjects + 1
}
resp := FilesStat{
Hash: "", //TODO: Get hash of root directory
Size: uint64(repoSize),
CumulativeSize: uint64(repoSize),
Blocks: numObjects,
Type: "directory",
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
log.Errorw("failed to encode response to files stat", "err", err)
}
})
// https://docs.ipfs.tech/reference/kubo/rpc/#api-v0-stats-bitswap
mux.HandleFunc("/api/v0/stats/bitswap", func(w http.ResponseWriter, r *http.Request) {
//Get RepoSize and NumObjects
repoSize := 0
numObjects := 0
results, err := p.ds.Query(r.Context(), query.Query{
KeysOnly: true,
})
if err != nil {
log.Errorw("failed to query datastore", "err", err)
http.Error(w, "internal error while querying datastore: "+err.Error(), http.StatusInternalServerError)
return
}
for result := range results.Next() {
if result.Error != nil {
log.Errorw("failed to traverse results", "err", err)
http.Error(w, "internal error while traversing datastore results: "+err.Error(), http.StatusInternalServerError)
return
}
repoSize = repoSize + result.Size
numObjects = numObjects + 1
}
// First, create a slice to store the string representations
peerStrings := make([]string, len(p.authorizedPeers))
// Then convert each peer.ID to a string
for i, peerID := range p.authorizedPeers {
peerStrings[i] = peerID.String()
}
resp := StatsBitswap{
Wantlist: []CidStruct{}, // empty slice
Peers: peerStrings,
BlocksReceived: uint64(numObjects),
DataReceived: 0,
DupBlksReceived: 0,
DupDataReceived: 0,
MessagesReceived: uint64(numObjects),
BlocksSent: 0,
DataSent: 0,
ProvideBufLen: 0,
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
log.Errorw("failed to encode response to stats bitswap", "err", err)
}
})
// https://docs.ipfs.tech/reference/kubo/rpc/#api-v0-stats-bw
mux.HandleFunc("/api/v0/stats/bw", func(w http.ResponseWriter, r *http.Request) {
//Get NumObjects
numObjects := 0
results, err := p.ds.Query(r.Context(), query.Query{
KeysOnly: true,
})
if err != nil {
log.Errorw("failed to query datastore", "err", err)
http.Error(w, "internal error while querying datastore: "+err.Error(), http.StatusInternalServerError)
return
}
for result := range results.Next() {
if result.Error != nil {
log.Errorw("failed to traverse results", "err", err)
http.Error(w, "internal error while traversing datastore results: "+err.Error(), http.StatusInternalServerError)
return
}
numObjects = numObjects + 1
}
resp := StatsBw{
TotalIn: int64(numObjects),
TotalOut: 0,
RateIn: 0,
RateOut: 0,
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
log.Errorw("failed to encode response to stats bw", "err", err)
}
})
// https://docs.ipfs.tech/reference/kubo/rpc/#api-v0-bitswap-ledger
mux.HandleFunc("/api/v0/bitswap/ledger", func(w http.ResponseWriter, r *http.Request) {
resp := PeerStats{
Exchanged: 0,
Peer: p.h.ID().String(),
Recv: 0,
Sent: 0,
Value: 0,
}
if err := json.NewEncoder(w).Encode(resp); err != nil {
log.Errorw("failed to encode response to bitswap ledger", "err", err)
}
})
mux.HandleFunc("/", notFoundHandler)
return mux
}