diff options
author | Andinus <andinus@nand.sh> | 2020-04-02 13:29:29 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-04-02 13:29:29 +0530 |
commit | cf93554a7739e397e4977bde4fa4818bd58ae234 (patch) | |
tree | 3df0a6ffe13726e7c45afec9d6739d27df084604 /cmd | |
parent | 3c77b9c4b72350f25e61431c8b101bd9948a455a (diff) | |
download | cetus-cf93554a7739e397e4977bde4fa4818bd58ae234.tar.gz |
bpod: Re-enable cache & fix issues with v0.6.2
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/cetus/bpod.go | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/cmd/cetus/bpod.go b/cmd/cetus/bpod.go index e3b898f..5c3cd36 100644 --- a/cmd/cetus/bpod.go +++ b/cmd/cetus/bpod.go @@ -2,6 +2,7 @@ package main import ( "fmt" + "io/ioutil" "log" "os" "time" @@ -55,6 +56,25 @@ func execBPOD() { } res.StartDate = dt.Format("2006-01-02") + // Save response in cache after marshalling it again, we do + // this instead of saving the response so as to not break the + // format in which cache is saved. If random flag was passed + // then the response will contain all 7 values so we have to + // marshal it but why not save non-random directly? Because + // that means the format in which both are saved will be + // different. One will be the raw response whereas other will + // be marshalled response. We're currently not using this body + // cache but this is just to save information. + file := fmt.Sprintf("%s/%s.json", cacheDir, res.StartDate) + body, err = bpod.MarshalJson(res) + if err != nil { + // We should warn the user if this returns an error + // but the program shouldn't exit. + log.Println("bpod.go: failed to marshal res to body, not saving cache") + } else { + err = ioutil.WriteFile(file, []byte(body), 0644) + } + // Send a desktop notification if notify flag was passed. if notify { n := notification.Notif{} @@ -87,7 +107,7 @@ func execBPOD() { // First it downloads the image to the cache directory and // then tries to set it with feh. If the download fails then // it exits with a non-zero exit code. - imgFile := fmt.Sprintf("%s/%s:%s", cacheDir, res.StartDate, res.Title) + imgFile := fmt.Sprintf("%s/%s", cacheDir, res.Title) // Check if the file is available locally, if it is then don't // download it again and set it from disk |