Skip to content

Commit 9c278d6

Browse files
committed
Sync ipfs pins and refs before creating proofs
1 parent 4c648c8 commit 9c278d6

File tree

5 files changed

+45
-17
lines changed

5 files changed

+45
-17
lines changed

ipfs/ipfs.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ import (
1212
// Shell
1313
// Create a new IPFS shell
1414
var Shell = ipfs.NewShell("localhost:5001")
15-
var Pins = map[string]ipfs.PinInfo{}
15+
var Pins = make(map[string]interface{})
16+
var NewPins = make(map[string]interface{})
17+
var SavedRefs = map[string][]string{}
1618

1719
// Download
1820
// Add a file to IPFS
@@ -50,7 +52,7 @@ func Refs(CID string) ([]string, error) {
5052

5153
func IsPinned(cid string) bool {
5254
// Check if the CID is pinned
53-
_, ok := Pins[cid]
55+
_, ok := SavedRefs[cid]
5456
return ok
5557
}
5658

localdata/localdata.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,15 @@ type Message struct {
1919
Status string `json:"status"`
2020
}
2121

22+
var Synced = false
2223
var NodeName = ""
2324

2425
// SaveTime
2526
// Saves the time to the database
2627
func SaveTime(salt string) {
27-
fmt.Println("Saving time to database")
2828
Time = time.Now()
2929
timeStr := Time.Format(Layout)
30-
fmt.Println("Time:", timeStr)
3130
database.Update([]byte(salt+"time"), []byte(timeStr))
32-
fmt.Println("Time saved to database")
3331
}
3432

3533
// GetTime

main.go

+37-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package main
33
import (
44
"context"
55
"flag"
6+
"fmt"
67
"os"
78
"os/signal"
89
"proofofaccess/api"
@@ -88,15 +89,48 @@ func pubsubHandler(ctx context.Context) {
8889
}
8990
}
9091
}
91-
9292
func fetchPins(ctx context.Context) {
9393
for {
9494
select {
9595
case <-ctx.Done():
9696
return
9797
default:
98-
ipfs.Pins, _ = ipfs.Shell.Pins()
99-
time.Sleep(10 * time.Second)
98+
ipfs.Pins = ipfs.NewPins
99+
allPins, err := ipfs.Shell.Pins() // Fetch all pins
100+
if err != nil {
101+
fmt.Println("Error fetching pins:", err)
102+
continue
103+
}
104+
ipfs.NewPins = make(map[string]interface{})
105+
for key, pinInfo := range allPins {
106+
if pinInfo.Type == "recursive" {
107+
ipfs.NewPins[key] = key
108+
}
109+
}
110+
111+
// Calculate the length of the map and the number of keys not found in Pins
112+
mapLength := len(ipfs.NewPins)
113+
keysNotFound := 0
114+
115+
// Iterate through the keys in NewPins
116+
for key := range ipfs.NewPins {
117+
// Check if the key exists in Pins
118+
119+
if _, exists := ipfs.Pins[key]; !exists {
120+
// If the key doesn't exist in Pins, add it to the pinsNotIncluded map
121+
ipfs.SavedRefs[key], _ = ipfs.Refs(key)
122+
if localdata.Synced == false {
123+
fmt.Println("Synced: ", float64(keysNotFound)/float64(mapLength)*100, "%")
124+
}
125+
keysNotFound++
126+
}
127+
}
128+
if localdata.Synced == false {
129+
fmt.Println("Synced: ", 100)
130+
localdata.Synced = true
131+
}
132+
133+
time.Sleep(60 * time.Second)
100134
}
101135
}
102136
}

messaging/messaging.go

-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ func HandleRequestProof(request Request) {
9393
if ipfs.IsPinned(CID) == true {
9494
validationHash := validation.CreatProofHash(hash, CID)
9595
SendProof(validationHash, hash, user)
96-
9796
} else {
9897
SendProof("", hash, user)
9998
}

validation/validation.go

+3-8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import (
88
"proofofaccess/proofcrypto"
99
)
1010

11+
const Layout = "2006-01-02 15:04:05.999999 -0700 MST m=+0.000000000"
12+
1113
type RequestProof struct {
1214
Type string `json:"type"`
1315
Hash string `json:"hash"`
@@ -31,7 +33,7 @@ func AppendHashToFile(hash string, CID string) string {
3133
// Create Proof Hash
3234
func CreatProofHash(hash string, CID string) string {
3335
// Get all the file blocks CIDs from the Target Files CID
34-
cids := SelectIPFSRefs(CID, hash)
36+
cids := ipfs.SavedRefs[CID]
3537
// Get the length of the CIDs
3638
length := len(cids)
3739
fmt.Println("length", length)
@@ -79,10 +81,3 @@ func ProofRequestJson(hash string, CID string) (string, error) {
7981
}
8082
return string(requestProofJson), nil
8183
}
82-
83-
// SelectIPFSRefs
84-
// Get all the file blocks CIDs from the Target Files CID
85-
func SelectIPFSRefs(CID string, hash string) []string {
86-
cids, _ := ipfs.Refs(CID)
87-
return cids
88-
}

0 commit comments

Comments
 (0)