guestbooky/src/Guestbooky-backup/internal/compactor/compactor.go
Felipe Cotti c28dc06816
Some checks are pending
CI/CD / build-backup-job (push) Waiting to run
CI/CD / build-and-test-backend (push) Waiting to run
Now it works - except it doesn't. Maybe I shouldn't hide the error in the compactor.
2025-01-27 02:31:12 -03:00

41 lines
925 B
Go

package compactor
import (
"compress/gzip"
"errors"
"fmt"
"io"
"io/fs"
"os"
)
func Compact(source, destination string) error {
fmt.Println(
"Compacting", source, "to", destination,
)
if _, err := os.Stat(source); errors.Is(err, fs.ErrNotExist) {
return errors.New("source file does not exist")
}
originFileHandle, err := os.Open(source)
if err != nil {
return errors.New("failed to open source file")
}
defer originFileHandle.Close()
destinationFileHandle, err := os.Create(destination)
if err != nil {
return errors.New("failed to create destination file")
}
defer destinationFileHandle.Close()
zipWriter := gzip.NewWriter(destinationFileHandle)
defer zipWriter.Close()
if _, err := io.Copy(zipWriter, originFileHandle); err != nil {
return errors.New("failed to copy zip to destination file: " + err.Error()) //nolint:wraperr
}
return nil
}