-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpinner.go
88 lines (83 loc) · 2.51 KB
/
pinner.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
package pinner // import "github.com/wabarc/ipfs-pinner"
import (
"errors"
"io"
"os"
"github.com/wabarc/ipfs-pinner/pkg/infura"
"github.com/wabarc/ipfs-pinner/pkg/nftstorage"
"github.com/wabarc/ipfs-pinner/pkg/pinata"
"github.com/wabarc/ipfs-pinner/pkg/web3storage"
)
// Config represents pinner's configuration. Pinner is the identifier of
// the target IPFS service.
type Config struct {
Pinner string
Apikey string
Secret string
}
// Pin pins a file to a network and returns a content id and an error. The file
// is an interface to access the file. It's contents may be either stored in
// memory or on disk. If stored on disk, it's underlying concrete type should
// be a file path. If it is in memory, it should be an *io.Reader or byte slice.
func (cfg *Config) Pin(file interface{}) (cid string, err error) {
// TODO using generics
errPinner := errors.New("unknown pinner")
switch v := file.(type) {
case string:
if _, err := os.Stat(v); err != nil {
return "", err
}
switch cfg.Pinner {
default:
err = errPinner
case "infura":
cid, err = infura.PinFile(v)
case "pinata":
pnt := &pinata.Pinata{Apikey: cfg.Apikey, Secret: cfg.Secret}
cid, err = pnt.PinFile(v)
case "nftstorage":
nft := &nftstorage.NFTStorage{Apikey: cfg.Apikey}
cid, err = nft.PinFile(v)
case "web3storage":
web3 := &web3storage.Web3Storage{Apikey: cfg.Apikey}
cid, err = web3.PinFile(v)
}
case io.Reader:
switch cfg.Pinner {
default:
err = errPinner
case "infura":
inf := infura.Infura{ProjectID: cfg.Apikey, ProjectSecret: cfg.Secret}
cid, err = inf.PinWithReader(v)
case "pinata":
pnt := &pinata.Pinata{Apikey: cfg.Apikey, Secret: cfg.Secret}
cid, err = pnt.PinWithReader(v)
case "nftstorage":
nft := &nftstorage.NFTStorage{Apikey: cfg.Apikey}
cid, err = nft.PinWithReader(v)
case "web3storage":
web3 := &web3storage.Web3Storage{Apikey: cfg.Apikey}
cid, err = web3.PinWithReader(v)
}
case []byte:
switch cfg.Pinner {
default:
err = errPinner
case "infura":
inf := infura.Infura{ProjectID: cfg.Apikey, ProjectSecret: cfg.Secret}
cid, err = inf.PinWithBytes(v)
case "pinata":
pnt := &pinata.Pinata{Apikey: cfg.Apikey, Secret: cfg.Secret}
cid, err = pnt.PinWithBytes(v)
case "nftstorage":
nft := &nftstorage.NFTStorage{Apikey: cfg.Apikey}
cid, err = nft.PinWithBytes(v)
case "web3storage":
web3 := &web3storage.Web3Storage{Apikey: cfg.Apikey}
cid, err = web3.PinWithBytes(v)
}
default:
return "", errors.New("unhandled file")
}
return cid, err
}