-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsealfile.go
159 lines (118 loc) · 3.28 KB
/
sealfile.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
package main
import (
"bytes"
"crypto/sha256"
"encoding/csv"
"encoding/hex"
"encoding/json"
"flag"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"time"
yaml "gopkg.in/yaml.v2" //YAML Parser for external configuration
)
//Conf stores config parameters
type Conf struct {
APIKey string `yaml:"apikey"` //CWSeal API Key
SealURL string `yaml:"baseurl"`
}
type Cryptowerk struct {
MaxSupportedAPIVersion int `json:"maxSupportedAPIVersion"`
Documents []struct {
RetrievalID string `json:"retrievalId"`
} `json:"documents"`
MinSupportedAPIVersion int `json:"minSupportedAPIVersion"`
}
var (
Cfg Conf // Config File Content
)
func main() {
readconfig() //get config file content
file := filename()
cryptowerkapi := Cfg.SealURL
//get the hash
hashresult := filehasher(file)
fmt.Println("...Registering to Blockchain")
retrievalId, err := registerToBlockchain(hashresult, cryptowerkapi, Cfg.APIKey)
errlog(err)
fmt.Println("RetrievalId: ", retrievalId)
//log retrieval ID to CSV
seallog(retrievalId, file)
}
func readconfig() {
fmt.Println("Reading config")
confFile, err := ioutil.ReadFile("sealfile.cfg")
errlog(err)
err = yaml.Unmarshal(confFile, &Cfg)
errlog(err)
}
func errlog(err error) {
if err != nil {
log.Println(time.Now(), err)
}
}
func filename() string { // reads filename from command line with flag -f
wordPtr := flag.String("f", "demo.txt", "filename")
var svar string
flag.StringVar(&svar, "svar", "bar", "a string var")
flag.Parse()
returnvalue := *wordPtr
return returnvalue
}
func filehasher(filename string) string { //here we hash the files with SHA256
f, err := os.Open(filename)
if err != nil {
errlog(err)
}
defer f.Close()
h := sha256.New()
if _, err := io.Copy(h, f); err != nil {
errlog(err)
}
hstring := hex.EncodeToString(h.Sum(nil))
return hstring
}
func registerToBlockchain(bufhash string, cryptowerkapi string, cryptowerkkey string) (retrievalId string, err error) {
headers := map[string][]string{
"Accept": []string{"application/json"},
"X-API-Key": []string{cryptowerkkey},
}
data := url.Values{}
data.Set("version", "6")
data.Add("hashes", bufhash)
req, err := http.NewRequest("POST", cryptowerkapi, bytes.NewBufferString(data.Encode()))
errlog(err)
req.Header = headers
req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return "", fmt.Errorf("cryptowerk responded with error %d", err)
}
defer resp.Body.Close()
// Successful responses will always return status code 200
if resp.StatusCode != http.StatusOK {
return "", fmt.Errorf("cryptowerk responded with unexepcted status code %d", resp.StatusCode)
}
seals := &Cryptowerk{}
if err := json.NewDecoder(resp.Body).Decode(seals); err != nil {
return "", fmt.Errorf("unable to decode Cryptowerk response: %s", err)
}
registerID := seals.Documents[0].RetrievalID
return registerID, nil
}
func seallog(retrievalid string, filename string) { //write and append retrieval id to seal log
t := time.Now()
f, err := os.OpenFile("seallog.csv", os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0600)
errlog(err)
defer f.Close()
var data = []string{t.String(), retrievalid, filename}
w := csv.NewWriter(f)
w.Write(data)
w.Flush()
}