Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Commit 6b35ac3

Browse files
aschmahmannpetar
andauthored
add support for pinning mfs (#116)
* add support for pinning mfs * add pin conceal selector * add RemoteServicesPath Co-authored-by: Petar Maymounkov <[email protected]>
1 parent 1a8f582 commit 6b35ac3

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

init.go

+3
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ func InitWithIdentity(identity Identity) (*Config, error) {
8686
Type: "basic",
8787
},
8888
},
89+
Pinning: Pinning{
90+
RemoteServices: map[string]RemotePinningService{},
91+
},
8992
}
9093

9194
return conf, nil

remotepin.go

+19-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,33 @@
11
package config
22

3-
const (
4-
PinningTag = "Pinning"
5-
RemoteServicesTag = "RemoteServices"
6-
RemoteServicesSelector = PinningTag + "." + RemoteServicesTag
3+
var (
4+
RemoteServicesPath = "Pinning.RemoteServices"
5+
PinningConcealSelector = []string{"Pinning", "RemoteServices", "*", "API", "Key"}
76
)
87

98
type Pinning struct {
109
RemoteServices map[string]RemotePinningService
1110
}
1211

1312
type RemotePinningService struct {
14-
Api RemotePinningServiceApi
13+
API RemotePinningServiceAPI
14+
Policies RemotePinningServicePolicies
1515
}
1616

17-
type RemotePinningServiceApi struct {
17+
type RemotePinningServiceAPI struct {
1818
Endpoint string
1919
Key string
2020
}
21+
22+
type RemotePinningServicePolicies struct {
23+
MFS RemotePinningServiceMFSPolicy
24+
}
25+
26+
type RemotePinningServiceMFSPolicy struct {
27+
// Enable enables watching for changes in MFS and re-pinning the MFS root cid whenever a change occurs.
28+
Enable bool
29+
// Name is the pin name for MFS.
30+
PinName string
31+
// RepinInterval determines the repin interval when the policy is enabled. In ns, us, ms, s, m, h.
32+
RepinInterval string
33+
}

0 commit comments

Comments
 (0)