Files
golib/archive/zip/reader.go
Nicolas JUHEL 984ba51587 Rework Error interface
Package Errors:
- add function to check & cast error interface into golib Error interface
- update CodeError type to simplify management & error creation
- add function to simplify call of Error function from a generic error interface
- remove some useless function from Error interface

All Other Packages:
- apply change of package Errors into all other packages
2023-08-28 11:22:08 +02:00

215 lines
5.2 KiB
Go

/*
* MIT License
*
* Copyright (c) 2020 Nicolas JUHEL
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
package zip
import (
"archive/zip"
"io"
"os"
"path/filepath"
libfpg "github.com/nabbar/golib/file/progress"
arcmod "github.com/nabbar/golib/archive/archive"
liberr "github.com/nabbar/golib/errors"
)
func GetFile(src, dst libfpg.Progress, filenameContain, filenameRegex string) liberr.Error {
var (
arc *zip.Reader
inf os.FileInfo
err error
)
if _, err = src.Seek(0, io.SeekStart); err != nil {
return ErrorFileSeek.Error(err)
} else if _, err = dst.Seek(0, io.SeekStart); err != nil {
return ErrorFileSeek.Error(err)
} else if inf, err = src.Stat(); err != nil {
return ErrorFileStat.Error(err)
} else if arc, err = zip.NewReader(src, inf.Size()); err != nil {
return ErrorZipOpen.Error(err)
}
for _, f := range arc.File {
if f.Mode()&os.ModeType == os.ModeType {
continue
}
z := arcmod.NewFileFullPath(f.Name)
if z.MatchingFullPath(filenameContain) || z.RegexFullPath(filenameRegex) {
if f == nil {
continue
}
var (
r io.ReadCloser
e error
)
if r, e = f.Open(); e != nil {
//logger.ErrorLevel.LogErrorCtx(logger.DebugLevel, "open zipped file reader", err)
return ErrorZipFileOpen.Error(e)
}
defer func() {
_ = r.Close()
}()
//nolint #nosec
/* #nosec */
if _, e = dst.ReadFrom(r); e != nil {
//logger.ErrorLevel.LogErrorCtx(logger.DebugLevel, "copy buffer from archive reader", err)
return ErrorIOCopy.Error(e)
}
if _, e = dst.Seek(0, io.SeekStart); e != nil {
//logger.ErrorLevel.LogErrorCtx(logger.DebugLevel, "seeking temp file", err)
return ErrorFileSeek.Error(e)
}
return nil
}
}
return nil
}
func GetAll(src libfpg.Progress, outputFolder string, defaultDirPerm os.FileMode) liberr.Error {
var (
r *zip.Reader
i os.FileInfo
e error
)
if _, e = src.Seek(0, io.SeekStart); e != nil {
return ErrorFileSeek.Error(e)
} else if i, e = src.Stat(); e != nil {
return ErrorFileStat.Error(e)
} else if r, e = zip.NewReader(src, i.Size()); e != nil {
return ErrorZipOpen.Error(e)
}
for _, f := range r.File {
if f == nil {
continue
}
//nolint #nosec
/* #nosec */
if err := writeContent(f, filepath.Join(outputFolder, arcmod.CleanPath(f.Name)), defaultDirPerm); err != nil {
return err
}
}
return nil
}
func writeContent(f *zip.File, out string, defaultDirPerm os.FileMode) (err liberr.Error) {
var (
dst libfpg.Progress
inf = f.FileInfo()
r io.ReadCloser
e error
)
if err = dirIsExistOrCreate(filepath.Dir(out), defaultDirPerm); err != nil {
return
}
defer func() {
if dst != nil {
if e = dst.Close(); e != nil {
err = ErrorFileClose.Error(e)
err.Add(err)
}
}
if r != nil {
if e = r.Close(); e != nil {
err = ErrorZipFileClose.Error(err)
}
}
}()
if inf.IsDir() {
err = dirIsExistOrCreate(out, inf.Mode())
return
} else if inf.Mode()&os.ModeSymlink == os.ModeSymlink {
return nil
} else if err = notDirExistCannotClean(out); err != nil {
return
}
if dst, e = libfpg.New(out, os.O_RDWR|os.O_CREATE|os.O_TRUNC, inf.Mode()); e != nil {
return ErrorFileOpen.Error(e)
} else {
}
if r, e = f.Open(); e != nil {
return ErrorZipFileOpen.Error(e)
}
//nolint #nosec
/* #nosec */
if _, e = io.Copy(dst, r); e != nil {
return ErrorIOCopy.Error(e)
} else if e = dst.Close(); e != nil {
return ErrorFileClose.Error(e)
}
return nil
}
func dirIsExistOrCreate(dirname string, dirPerm os.FileMode) liberr.Error {
if i, e := os.Stat(filepath.Dir(dirname)); e != nil && os.IsNotExist(e) {
if e = os.MkdirAll(filepath.Dir(dirname), dirPerm); e != nil {
return ErrorDirCreate.Error(e)
}
} else if e != nil {
return ErrorDestinationStat.Error(e)
} else if !i.IsDir() {
return ErrorDestinationIsNotDir.Error(nil)
}
return nil
}
func notDirExistCannotClean(filename string) liberr.Error {
if i, e := os.Stat(filename); e != nil && !os.IsNotExist(e) {
return ErrorDestinationStat.Error(e)
} else if e == nil && i.IsDir() {
return ErrorDestinationIsDir.Error(nil)
} else if e == nil {
if e = os.Remove(filename); e != nil {
return ErrorDestinationRemove.Error(e)
}
}
return nil
}