aboutsummaryrefslogtreecommitdiff
path: root/nvdmirror/nvdmirror.go
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-02-23 22:13:21 -0500
committerPaul Duncan <pabs@pablotron.org>2022-02-23 22:13:21 -0500
commitc83d762a75aebaf075bfc454e3d0485b1fe1e4c9 (patch)
tree2c17b1128051544a13cb1cdea7b09b1d5b14bdf3 /nvdmirror/nvdmirror.go
parentaad9d14bd0c7ee01e058908de29a6319668ffae5 (diff)
downloadcvez-c83d762a75aebaf075bfc454e3d0485b1fe1e4c9.tar.bz2
cvez-c83d762a75aebaf075bfc454e3d0485b1fe1e4c9.zip
nvdmirror: add nvdmirror/util.go
Diffstat (limited to 'nvdmirror/nvdmirror.go')
-rw-r--r--nvdmirror/nvdmirror.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/nvdmirror/nvdmirror.go b/nvdmirror/nvdmirror.go
index aeb5c24..546a0ed 100644
--- a/nvdmirror/nvdmirror.go
+++ b/nvdmirror/nvdmirror.go
@@ -8,7 +8,6 @@ import (
"fmt"
"github.com/pablotron/cvez/atomictemp"
"github.com/pablotron/cvez/feed"
- "github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"io"
"io/fs"
@@ -195,16 +194,6 @@ func (me syncContext) getFileHash(path string) ([32]byte, error) {
return r, nil
}
-// Get file size, in bytes.
-func getFileSize(path string) (uint64, error) {
- // verify that full path exists
- if st, err := os.Stat(path); err != nil {
- return 0, err
- } else {
- return uint64(st.Size()), err
- }
-}
-
// Check the size and hash in the metadata file against the full file.
//
// Note: This method is called from a goroutine and returns it's value
@@ -260,18 +249,6 @@ func (me syncContext) check(metaUrl, fullUrl string) {
me.ch <- r
}
-// log array of strings
-func logArray(key string, strs []string) {
- // populate array
- a := zerolog.Arr()
- for _, v := range(strs) {
- a.Str(v)
- }
-
- // log array
- log.Info().Array(key, a).Send()
-}
-
// Sync to destination directory and return an array of updated files.
func Sync(config SyncConfig, cache Cache, dstDir string) []string {
// log.Debug().Str("dstDir", dstDir).Msg("Sync")