forked from ipfs/go-ipfs-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.go
More file actions
850 lines (721 loc) · 18.8 KB
/
shell.go
File metadata and controls
850 lines (721 loc) · 18.8 KB
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
// package shell implements a remote API interface for a running ipfs daemon
package shell
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"net"
gohttp "net/http"
"os"
"path"
"strings"
"sync"
"time"
"github.com/blang/semver/v4"
files "github.com/ipfs/boxo/files"
tar "github.com/ipfs/boxo/tar"
homedir "github.com/mitchellh/go-homedir"
ma "github.com/multiformats/go-multiaddr"
manet "github.com/multiformats/go-multiaddr/net"
mbase "github.com/multiformats/go-multibase"
p2pmetrics "github.com/libp2p/go-libp2p/core/metrics"
)
const (
DefaultPathName = ".ipfs"
DefaultPathRoot = "~/" + DefaultPathName
DefaultApiFile = "api"
EnvDir = "IPFS_PATH"
)
type Shell struct {
url string
httpcli gohttp.Client
versionMu sync.Mutex
version *semver.Version
}
func NewLocalShell() *Shell {
baseDir := os.Getenv(EnvDir)
if baseDir == "" {
baseDir = DefaultPathRoot
}
baseDir, err := homedir.Expand(baseDir)
if err != nil {
return nil
}
apiFile := path.Join(baseDir, DefaultApiFile)
if _, err := os.Stat(apiFile); err != nil {
return nil
}
api, err := os.ReadFile(apiFile)
if err != nil {
return nil
}
return NewShell(strings.TrimSpace(string(api)))
}
func NewShell(url string) *Shell {
c := &gohttp.Client{
Transport: &gohttp.Transport{
Proxy: gohttp.ProxyFromEnvironment,
DisableKeepAlives: true,
},
}
return NewShellWithClient(url, c)
}
func NewShellWithClient(url string, client *gohttp.Client) *Shell {
var sh Shell
sh.url = url
sh.httpcli = *client
// We don't support redirects.
sh.httpcli.CheckRedirect = func(_ *gohttp.Request, _ []*gohttp.Request) error {
return fmt.Errorf("unexpected redirect")
}
maddr, err := ma.NewMultiaddr(url)
if err != nil {
return &sh
}
network, host, err := manet.DialArgs(maddr)
if err != nil {
return &sh
}
if network == "unix" {
sh.url = network
var tptCopy *gohttp.Transport
if tpt, ok := sh.httpcli.Transport.(*gohttp.Transport); ok && tpt.DialContext == nil {
tptCopy = tpt.Clone()
} else if sh.httpcli.Transport == nil {
tptCopy = &gohttp.Transport{
Proxy: gohttp.ProxyFromEnvironment,
DisableKeepAlives: true,
}
} else {
// custom Transport or custom Dialer, we are done here
return &sh
}
tptCopy.DialContext = func(_ context.Context, _, _ string) (net.Conn, error) {
return net.Dial("unix", host)
}
sh.httpcli.Transport = tptCopy
} else {
sh.url = host
}
return &sh
}
// encodedAbsolutePathVersion is the version from which the absolute path header in
// multipart requests is %-encoded. Before this version, its sent raw.
var encodedAbsolutePathVersion = semver.MustParse("0.23.0-dev")
func (s *Shell) loadRemoteVersion() (*semver.Version, error) {
s.versionMu.Lock()
defer s.versionMu.Unlock()
if s.version == nil {
version, _, err := s.Version()
if err != nil {
return nil, err
}
remoteVersion, err := semver.New(version)
if err != nil {
return nil, err
}
s.version = remoteVersion
}
return s.version, nil
}
func (s *Shell) newMultiFileReader(dir files.Directory) (*files.MultiFileReader, error) {
version, err := s.loadRemoteVersion()
if err != nil {
return nil, err
}
return files.NewMultiFileReader(dir, true, version.LT(encodedAbsolutePathVersion)), nil
}
func (s *Shell) SetTimeout(d time.Duration) {
s.httpcli.Timeout = d
}
func (s *Shell) Request(command string, args ...string) *RequestBuilder {
return &RequestBuilder{
command: command,
args: args,
shell: s,
}
}
type IdOutput struct {
ID string
PublicKey string
Addresses []string
AgentVersion string
ProtocolVersion string
}
// ID gets information about a given peer. Arguments:
//
// peer: peer.ID of the node to look up. If no peer is specified,
//
// return information about the local peer.
func (s *Shell) ID(peer ...string) (*IdOutput, error) {
if len(peer) > 1 {
return nil, fmt.Errorf("too many peer arguments")
}
var out IdOutput
if err := s.Request("id", peer...).Exec(context.Background(), &out); err != nil {
return nil, err
}
return &out, nil
}
// Cat the content at the given path. Callers need to drain and close the returned reader after usage.
func (s *Shell) Cat(path string) (io.ReadCloser, error) {
resp, err := s.Request("cat", path).Send(context.Background())
if err != nil {
return nil, err
}
if resp.Error != nil {
return nil, resp.Error
}
return resp.Output, nil
}
const (
TRaw = iota
TDirectory
TFile
TMetadata
TSymlink
)
// List entries at the given path
func (s *Shell) List(path string) ([]*LsLink, error) {
var out struct{ Objects []LsObject }
err := s.Request("ls", path).Exec(context.Background(), &out)
if err != nil {
return nil, err
}
if len(out.Objects) != 1 {
return nil, errors.New("bad response from server")
}
return out.Objects[0].Links, nil
}
type LsLink struct {
Hash string
Name string
Size uint64
Type int
}
type LsObject struct {
Links []*LsLink
LsLink
}
// Pin the given path
func (s *Shell) Pin(path string) error {
return s.Request("pin/add", path).
Option("recursive", true).
Exec(context.Background(), nil)
}
// Unpin the given path
func (s *Shell) Unpin(path string) error {
return s.Request("pin/rm", path).
Option("recursive", true).
Exec(context.Background(), nil)
}
type PinType string
const (
DirectPin PinType = "direct"
RecursivePin PinType = "recursive"
IndirectPin PinType = "indirect"
)
type PinInfo struct {
Type string
}
// Pins returns a map of the pin hashes to their info (currently just the
// pin type, one of DirectPin, RecursivePin, or IndirectPin). A map is returned
// instead of a slice because it is easier to do existence lookup by map key
// than unordered array searching. The map is likely to be more useful to a
// client than a flat list.
func (s *Shell) Pins() (map[string]PinInfo, error) {
var raw struct{ Keys map[string]PinInfo }
return raw.Keys, s.Request("pin/ls").Exec(context.Background(), &raw)
}
// Pins returns a map of the pins of specified type (DirectPin, RecursivePin, or IndirectPin)
func (s *Shell) PinsOfType(ctx context.Context, pinType PinType) (map[string]PinInfo, error) {
var raw struct{ Keys map[string]PinInfo }
return raw.Keys, s.Request("pin/ls").Option("type", pinType).Exec(ctx, &raw)
}
// PinStreamInfo is the output type for PinsStream
type PinStreamInfo struct {
Cid string
Type string
}
// PinsStream is a streamed version of Pins. It returns a channel of the pins
// with their type, one of DirectPin, RecursivePin, or IndirectPin.
func (s *Shell) PinsStream(ctx context.Context) (<-chan PinStreamInfo, error) {
resp, err := s.Request("pin/ls").
Option("stream", true).
Send(ctx)
if err != nil {
return nil, err
}
if resp.Error != nil {
resp.Close()
return nil, resp.Error
}
out := make(chan PinStreamInfo)
go func() {
defer resp.Close()
var pin PinStreamInfo
defer close(out)
dec := json.NewDecoder(resp.Output)
for {
err := dec.Decode(&pin)
if err != nil {
return
}
select {
case out <- pin:
case <-ctx.Done():
return
}
}
}()
return out, nil
}
type PeerInfo struct {
Addrs []string
ID string
}
func (s *Shell) FindPeer(peer string) (*PeerInfo, error) {
var peers struct{ Responses []PeerInfo }
err := s.Request("dht/findpeer", peer).Exec(context.Background(), &peers)
if err != nil {
return nil, err
}
if len(peers.Responses) == 0 {
return nil, errors.New("peer not found")
}
return &peers.Responses[0], nil
}
func (s *Shell) Refs(hash string, recursive bool) (<-chan string, error) {
resp, err := s.Request("refs", hash).
Option("recursive", recursive).
Send(context.Background())
if err != nil {
return nil, err
}
if resp.Error != nil {
resp.Close()
return nil, resp.Error
}
out := make(chan string)
go func() {
defer resp.Close()
var ref struct {
Ref string
}
defer close(out)
dec := json.NewDecoder(resp.Output)
for {
err := dec.Decode(&ref)
if err != nil {
return
}
if len(ref.Ref) > 0 {
out <- ref.Ref
}
}
}()
return out, nil
}
func (s *Shell) Patch(root, action string, args ...string) (string, error) {
var out object
return out.Hash, s.Request("object/patch/"+action, root).
Arguments(args...).
Exec(context.Background(), &out)
}
func (s *Shell) PatchData(root string, set bool, data interface{}) (string, error) {
var read io.Reader
switch d := data.(type) {
case io.Reader:
read = d
case []byte:
read = bytes.NewReader(d)
case string:
read = strings.NewReader(d)
default:
return "", fmt.Errorf("unrecognized type: %#v", data)
}
cmd := "append-data"
if set {
cmd = "set-data"
}
fr := files.NewReaderFile(read)
slf := files.NewSliceDirectory([]files.DirEntry{files.FileEntry("", fr)})
fileReader, err := s.newMultiFileReader(slf)
if err != nil {
return "", err
}
var out object
return out.Hash, s.Request("object/patch/"+cmd, root).
Body(fileReader).
Exec(context.Background(), &out)
}
func (s *Shell) PatchLink(root, path, childhash string, create bool) (string, error) {
var out object
return out.Hash, s.Request("object/patch/add-link", root, path, childhash).
Option("create", create).
Exec(context.Background(), &out)
}
func (s *Shell) Get(hash, outdir string) error {
resp, err := s.Request("get", hash).Option("create", true).Send(context.Background())
if err != nil {
return err
}
defer resp.Close()
if resp.Error != nil {
return resp.Error
}
extractor := &tar.Extractor{Path: outdir}
return extractor.Extract(resp.Output)
}
func (s *Shell) NewObject(template string) (string, error) {
var out object
req := s.Request("object/new")
if template != "" {
req.Arguments(template)
}
return out.Hash, req.Exec(context.Background(), &out)
}
func (s *Shell) ResolvePath(path string) (string, error) {
var out struct {
Path string
}
err := s.Request("resolve", path).Exec(context.Background(), &out)
if err != nil {
return "", err
}
return strings.TrimPrefix(out.Path, "/ipfs/"), nil
}
// returns ipfs version and commit sha
func (s *Shell) Version() (string, string, error) {
ver := struct {
Version string
Commit string
}{}
if err := s.Request("version").Exec(context.Background(), &ver); err != nil {
return "", "", err
}
return ver.Version, ver.Commit, nil
}
func (s *Shell) IsUp() bool {
_, _, err := s.Version()
return err == nil
}
func (s *Shell) BlockStat(path string) (string, int, error) {
var inf struct {
Key string
Size int
}
if err := s.Request("block/stat", path).Exec(context.Background(), &inf); err != nil {
return "", 0, err
}
return inf.Key, inf.Size, nil
}
func (s *Shell) BlockGet(path string) ([]byte, error) {
resp, err := s.Request("block/get", path).Send(context.Background())
if err != nil {
return nil, err
}
defer resp.Close()
if resp.Error != nil {
return nil, resp.Error
}
return io.ReadAll(resp.Output)
}
func (s *Shell) BlockPut(block []byte, format, mhtype string, mhlen int) (string, error) {
var out struct {
Key string
}
fr := files.NewBytesFile(block)
slf := files.NewSliceDirectory([]files.DirEntry{files.FileEntry("", fr)})
fileReader, err := s.newMultiFileReader(slf)
if err != nil {
return "", err
}
return out.Key, s.Request("block/put").
Option("mhtype", mhtype).
Option("format", format).
Option("mhlen", mhlen).
Body(fileReader).
Exec(context.Background(), &out)
}
type IpfsObject struct {
Links []ObjectLink
Data string
}
type ObjectLink struct {
Name, Hash string
Size uint64
}
func (s *Shell) ObjectGet(path string) (*IpfsObject, error) {
var obj IpfsObject
if err := s.Request("object/get", path).Exec(context.Background(), &obj); err != nil {
return nil, err
}
return &obj, nil
}
func (s *Shell) ObjectPut(obj *IpfsObject) (string, error) {
var data bytes.Buffer
err := json.NewEncoder(&data).Encode(obj)
if err != nil {
return "", err
}
fr := files.NewReaderFile(&data)
slf := files.NewSliceDirectory([]files.DirEntry{files.FileEntry("", fr)})
fileReader, err := s.newMultiFileReader(slf)
if err != nil {
return "", err
}
var out object
return out.Hash, s.Request("object/put").
Body(fileReader).
Exec(context.Background(), &out)
}
func (s *Shell) PubSubSubscribe(topic string) (*PubSubSubscription, error) {
// connect
encoder, _ := mbase.EncoderByName("base64url")
resp, err := s.Request("pubsub/sub", encoder.Encode([]byte(topic))).Send(context.Background())
if err != nil {
return nil, err
}
if resp.Error != nil {
resp.Close()
return nil, resp.Error
}
return newPubSubSubscription(resp.Output), nil
}
func (s *Shell) PubSubPublish(topic, data string) (err error) {
fr := files.NewReaderFile(bytes.NewReader([]byte(data)))
slf := files.NewSliceDirectory([]files.DirEntry{files.FileEntry("", fr)})
fileReader, err := s.newMultiFileReader(slf)
if err != nil {
return err
}
encoder, _ := mbase.EncoderByName("base64url")
resp, err := s.Request("pubsub/pub", encoder.Encode([]byte(topic))).
Body(fileReader).Send(context.Background())
if err != nil {
return err
}
defer resp.Close()
if resp.Error != nil {
return resp.Error
}
return nil
}
func (s *Shell) OrbitKVPut(dbAddres, key string, val []byte) error {
fr := files.NewReaderFile(bytes.NewReader(val))
slf := files.NewSliceDirectory([]files.DirEntry{files.FileEntry("", fr)})
fileReader, err := s.newMultiFileReader(slf)
if err != nil {
return err
}
encoder, _ := mbase.EncoderByName("base64url")
resp, err := s.Request("orbit/kvput", encoder.Encode([]byte(dbAddres)), encoder.Encode([]byte(key))).
Body(fileReader).Send(context.Background())
if err != nil {
return err
}
defer resp.Close()
if resp.Error != nil {
return resp.Error
}
return nil
}
func (s *Shell) OrbitKVGet(dbName, key string) ([]byte, error) {
// connect
encoder, _ := mbase.EncoderByName("base64url")
resp, err := s.Request("orbit/kvget", encoder.Encode([]byte(dbName)), encoder.Encode([]byte(key))).Send(context.Background())
if err != nil {
return nil, err
}
if resp.Error != nil {
resp.Close()
return nil, resp.Error
}
val, err := ioutil.ReadAll(resp.Output)
if err != nil {
return nil, err
}
return val, nil
}
func (s *Shell) OrbitKVDelete(dbName, key string) error {
// connect
encoder, _ := mbase.EncoderByName("base64url")
resp, err := s.Request("orbit/kvdel", encoder.Encode([]byte(dbName)), encoder.Encode([]byte(key))).Send(context.Background())
if err != nil {
return err
}
if resp.Error != nil {
resp.Close()
return resp.Error
}
return nil
}
func (s *Shell) OrbitDocsPut(dbName string, doc []byte) error {
fr := files.NewReaderFile(bytes.NewReader(doc))
slf := files.NewSliceDirectory([]files.DirEntry{files.FileEntry("", fr)})
fileReader, err := s.newMultiFileReader(slf)
if err != nil {
return err
}
encoder, _ := mbase.EncoderByName("base64url")
resp, err := s.Request("orbit/docsput", encoder.Encode([]byte(dbName))).
Body(fileReader).Send(context.Background())
if err != nil {
return err
}
defer resp.Close()
if resp.Error != nil {
return resp.Error
}
return nil
}
func (s *Shell) OrbitDocsGet(dbName, key string) ([]byte, error) {
// connect
encoder, _ := mbase.EncoderByName("base64url")
resp, err := s.Request("orbit/docsget", encoder.Encode([]byte(dbName)), encoder.Encode([]byte(key))).Send(context.Background())
if err != nil {
return nil, err
}
if resp.Error != nil {
resp.Close()
return nil, resp.Error
}
val, err := ioutil.ReadAll(resp.Output)
if err != nil {
return nil, err
}
return val, nil
}
func (s *Shell) OrbitDocsQuery(dbName, key, query string) ([]byte, error) {
// connect
encoder, _ := mbase.EncoderByName("base64url")
resp, err := s.Request("orbit/docsquery", encoder.Encode([]byte(dbName)), encoder.Encode([]byte(key)), encoder.Encode([]byte(query))).Send(context.Background())
if err != nil {
return nil, err
}
if resp.Error != nil {
resp.Close()
return nil, resp.Error
}
val, err := ioutil.ReadAll(resp.Output)
if err != nil {
return nil, err
}
return val, nil
}
func (s *Shell) OrbitDocsDelete(dbName, key string) error {
// connect
encoder, _ := mbase.EncoderByName("base64url")
resp, err := s.Request("orbit/docsdel", encoder.Encode([]byte(dbName)), encoder.Encode([]byte(key))).Send(context.Background())
if err != nil {
return err
}
if resp.Error != nil {
resp.Close()
return resp.Error
}
return nil
}
func (s *Shell) RunInflationIndexer() error {
// connect
resp, err := s.Request("orbit/runindexer").Send(context.Background())
if err != nil {
return err
}
if resp.Error != nil {
resp.Close()
return resp.Error
}
return nil
}
func (s *Shell) DeleteExpiredSubscriptions() error {
// connect
resp, err := s.Request("orbit/delexpsubs").Send(context.Background())
if err != nil {
return err
}
if resp.Error != nil {
resp.Close()
return resp.Error
}
return nil
}
type ObjectStats struct {
Hash string
BlockSize int
CumulativeSize int
DataSize int
LinksSize int
NumLinks int
}
// ObjectStat gets stats for the DAG object named by key. It returns
// the stats of the requested Object or an error.
func (s *Shell) ObjectStat(key string) (*ObjectStats, error) {
var stat ObjectStats
err := s.Request("object/stat", key).Exec(context.Background(), &stat)
if err != nil {
return nil, err
}
return &stat, nil
}
// ObjectStat gets stats for the DAG object named by key. It returns
// the stats of the requested Object or an error.
func (s *Shell) StatsBW(ctx context.Context) (*p2pmetrics.Stats, error) {
v := &p2pmetrics.Stats{}
err := s.Request("stats/bw").Exec(ctx, &v)
return v, err
}
type SwarmStreamInfo struct {
Protocol string
}
type SwarmConnInfo struct {
Addr string
Peer string
Latency string
Muxer string
Streams []SwarmStreamInfo
}
type SwarmConnInfos struct {
Peers []SwarmConnInfo
}
// SwarmPeers gets all the swarm peers
func (s *Shell) SwarmPeers(ctx context.Context) (*SwarmConnInfos, error) {
v := &SwarmConnInfos{}
err := s.Request("swarm/peers").Exec(ctx, &v)
return v, err
}
type swarmConnection struct {
Strings []string
}
// SwarmConnect opens a swarm connection to a specific address.
func (s *Shell) SwarmConnect(ctx context.Context, addr ...string) error {
var conn *swarmConnection
err := s.Request("swarm/connect").
Arguments(addr...).
Exec(ctx, &conn)
return err
}
type PeeringLsOutput struct {
Peers []PeerInfo
}
// SwarmPeeringLs lists peers registered in the peering subsystem
func (s *Shell) SwarmPeeringLs(ctx context.Context) (*PeeringLsOutput, error) {
var output *PeeringLsOutput
err := s.Request("swarm/peering/ls").Arguments().Exec(ctx, &output)
return output, err
}
type PeerStatus struct {
ID string
Status string
}
// SwarmPeeringAdd adds a peer into the peering subsysytem.
func (s *Shell) SwarmPeeringAdd(ctx context.Context, addr string) (*PeerStatus, error) {
var output *PeerStatus
err := s.Request("swarm/peering/add").Arguments(addr).Exec(ctx, &output)
return output, err
}