You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
988 B
Go
43 lines
988 B
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func saveContent(kind, filename, content string) {
|
|
p := path.Join(kind, filename+".txt")
|
|
if err := os.MkdirAll(kind, 0777); err != nil {
|
|
log.WithField("path", p).WithError(err).Error("Unable to create directory")
|
|
return
|
|
}
|
|
|
|
if err := ioutil.WriteFile(p, []byte(content), 0777); err != nil {
|
|
log.WithError(err).Error("Unable to write content")
|
|
}
|
|
}
|
|
|
|
func saveJSON(kind, filename string, data interface{}) {
|
|
p := path.Join(kind, filename+".json")
|
|
if err := os.MkdirAll(kind, 0777); err != nil {
|
|
log.WithField("path", p).WithError(err).Error("Unable to create directory")
|
|
return
|
|
}
|
|
|
|
f, err := os.Create(p)
|
|
if err != nil {
|
|
log.WithField("path", p).WithError(err).Error("Unable to create file")
|
|
return
|
|
}
|
|
defer f.Close()
|
|
|
|
if err := json.NewEncoder(f).Encode(data); err != nil {
|
|
log.WithField("path", p).WithError(err).Error("Unable to encode json")
|
|
return
|
|
}
|
|
}
|