ficsit-cli-flake/utils/io.go

232 lines
5.1 KiB
Go
Raw Normal View History

2022-05-02 20:07:15 +00:00
package utils
import (
"archive/zip"
"crypto/sha256"
"encoding/hex"
"fmt"
"io"
"net/http"
"os"
2022-06-05 01:56:46 +00:00
"path/filepath"
2022-05-02 20:07:15 +00:00
"github.com/pkg/errors"
"github.com/spf13/viper"
2022-06-22 22:24:35 +00:00
"github.com/satisfactorymodding/ficsit-cli/cli/disk"
2022-05-02 20:07:15 +00:00
)
type Progresser struct {
io.Reader
total int64
running int64
updates chan GenericUpdate
}
func (pt *Progresser) Read(p []byte) (int, error) {
n, err := pt.Reader.Read(p)
pt.running += int64(n)
if err == nil {
if pt.updates != nil {
select {
case pt.updates <- GenericUpdate{Progress: float64(pt.running) / float64(pt.total)}:
default:
}
}
}
2022-06-03 22:46:59 +00:00
if err == io.EOF {
return n, io.EOF
2022-06-03 22:44:41 +00:00
}
2022-06-03 22:46:59 +00:00
return n, errors.Wrap(err, "failed to read")
}
type GenericUpdate struct {
Progress float64
ModReference *string
}
func DownloadOrCache(cacheKey string, hash string, url string, updates chan GenericUpdate) (r io.ReaderAt, size int64, err error) {
2022-06-05 01:56:46 +00:00
downloadCache := filepath.Join(viper.GetString("cache-dir"), "downloadCache")
2022-05-02 20:07:15 +00:00
if err := os.MkdirAll(downloadCache, 0777); err != nil {
if !os.IsExist(err) {
return nil, 0, errors.Wrap(err, "failed creating download cache")
}
}
2022-06-05 01:56:46 +00:00
location := filepath.Join(downloadCache, cacheKey)
2022-05-02 20:07:15 +00:00
stat, err := os.Stat(location)
if err == nil {
existingHash := ""
if hash != "" {
f, err := os.Open(location)
if err != nil {
return nil, 0, errors.Wrap(err, "failed to open file: "+location)
}
existingHash, err = SHA256Data(f)
if err != nil {
return nil, 0, errors.Wrap(err, "could not compute hash for file: "+location)
}
}
if hash == existingHash {
f, err := os.Open(location)
if err != nil {
return nil, 0, errors.Wrap(err, "failed to open file: "+location)
}
return f, stat.Size(), nil
}
if err := os.Remove(location); err != nil {
return nil, 0, errors.Wrap(err, "failed to delete file: "+location)
}
} else {
if !os.IsNotExist(err) {
return nil, 0, errors.Wrap(err, "failed to stat file: "+location)
}
}
out, err := os.Create(location)
if err != nil {
return nil, 0, errors.Wrap(err, "failed creating file at: "+location)
}
defer out.Close()
resp, err := http.Get(url)
if err != nil {
return nil, 0, errors.Wrap(err, "failed to fetch: "+url)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return nil, 0, fmt.Errorf("bad status: %s on url: %s", resp.Status, url)
}
progresser := &Progresser{
Reader: resp.Body,
total: resp.ContentLength,
updates: updates,
}
_, err = io.Copy(out, progresser)
2022-05-02 20:07:15 +00:00
if err != nil {
return nil, 0, errors.Wrap(err, "failed writing file to disk")
}
f, err := os.Open(location)
if err != nil {
return nil, 0, errors.Wrap(err, "failed to open file: "+location)
}
if updates != nil {
select {
case updates <- GenericUpdate{Progress: 1}:
default:
}
}
2022-05-02 20:07:15 +00:00
return f, resp.ContentLength, nil
}
func SHA256Data(f io.Reader) (string, error) {
h := sha256.New()
if _, err := io.Copy(h, f); err != nil {
return "", errors.Wrap(err, "failed to compute hash")
}
return hex.EncodeToString(h.Sum(nil)), nil
}
2022-06-22 22:24:35 +00:00
func ExtractMod(f io.ReaderAt, size int64, location string, hash string, updates chan GenericUpdate, d disk.Disk) error {
hashFile := filepath.Join(location, ".smm")
2022-06-22 22:24:35 +00:00
hashBytes, err := d.Read(hashFile)
if err != nil {
2022-06-22 22:24:35 +00:00
if !d.IsNotExist(err) {
return errors.Wrap(err, "failed to read .smm mod hash file")
}
} else {
if hash == string(hashBytes) {
return nil
}
}
2022-06-22 22:24:35 +00:00
if err := d.MkDir(location); err != nil {
if !d.IsExist(err) {
2022-05-02 20:07:15 +00:00
return errors.Wrap(err, "failed to create mod directory: "+location)
}
2022-06-22 22:24:35 +00:00
if err := d.Remove(location); err != nil {
2022-05-02 20:07:15 +00:00
return errors.Wrap(err, "failed to remove directory: "+location)
}
2022-06-22 22:24:35 +00:00
if err := d.MkDir(location); err != nil {
2022-05-02 20:07:15 +00:00
return errors.Wrap(err, "failed to create mod directory: "+location)
}
}
reader, err := zip.NewReader(f, size)
if err != nil {
return errors.Wrap(err, "failed to read file as zip")
}
for i, file := range reader.File {
2022-05-02 20:07:15 +00:00
if !file.FileInfo().IsDir() {
2022-06-05 01:56:46 +00:00
outFileLocation := filepath.Join(location, file.Name)
2022-05-02 20:07:15 +00:00
2022-06-22 22:24:35 +00:00
if err := d.MkDir(filepath.Dir(outFileLocation)); err != nil {
2022-05-02 20:07:15 +00:00
return errors.Wrap(err, "failed to create mod directory: "+location)
}
2022-06-22 22:24:35 +00:00
if err := writeZipFile(outFileLocation, file, d); err != nil {
return err
2022-05-02 20:07:15 +00:00
}
}
2022-05-02 20:07:15 +00:00
if updates != nil {
select {
case updates <- GenericUpdate{Progress: float64(i) / float64(len(reader.File)-1)}:
default:
2022-05-02 20:07:15 +00:00
}
}
}
2022-05-02 20:07:15 +00:00
2022-06-22 22:24:35 +00:00
if err := d.Write(hashFile, []byte(hash)); err != nil {
return errors.Wrap(err, "failed to write .smm mod hash file")
}
if updates != nil {
select {
case updates <- GenericUpdate{Progress: 1}:
default:
2022-05-02 20:07:15 +00:00
}
}
return nil
}
2022-06-22 22:24:35 +00:00
func writeZipFile(outFileLocation string, file *zip.File, d disk.Disk) error {
outFile, err := d.Open(outFileLocation, os.O_CREATE|os.O_RDWR)
if err != nil {
return errors.Wrap(err, "failed to write to file: "+outFileLocation)
}
defer outFile.Close()
inFile, err := file.Open()
if err != nil {
return errors.Wrap(err, "failed to process mod zip")
}
if _, err := io.Copy(outFile, inFile); err != nil {
return errors.Wrap(err, "failed to write to file: "+outFileLocation)
}
return nil
}