2021-04-06 19:39:02 +00:00
|
|
|
// Copyright (c) 2021 The Srpmproc Authors
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2021-02-24 07:27:51 +00:00
|
|
|
package directives
|
|
|
|
|
|
|
|
import (
|
2021-02-26 07:54:13 +00:00
|
|
|
"archive/tar"
|
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"crypto/sha256"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2024-06-10 15:31:26 +00:00
|
|
|
"io"
|
2021-02-26 07:54:13 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"time"
|
2021-04-15 04:41:12 +00:00
|
|
|
|
|
|
|
"github.com/go-git/go-git/v5"
|
|
|
|
srpmprocpb "github.com/rocky-linux/srpmproc/pb"
|
2021-08-19 10:09:53 +00:00
|
|
|
"github.com/rocky-linux/srpmproc/pkg/data"
|
2021-02-24 07:27:51 +00:00
|
|
|
)
|
|
|
|
|
2021-02-26 07:54:13 +00:00
|
|
|
func lookaside(cfg *srpmprocpb.Cfg, _ *data.ProcessData, md *data.ModeData, patchTree *git.Worktree, pushTree *git.Worktree) error {
|
|
|
|
for _, directive := range cfg.Lookaside {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
writer := tar.NewWriter(&buf)
|
|
|
|
w := pushTree
|
|
|
|
if directive.FromPatchTree {
|
|
|
|
w = patchTree
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, file := range directive.File {
|
|
|
|
if directive.Tar && directive.ArchiveName == "" {
|
|
|
|
return errors.New("TAR_NO_ARCHIVE_NAME")
|
|
|
|
}
|
|
|
|
|
|
|
|
path := filepath.Join("SOURCES", file)
|
|
|
|
if directive.FromPatchTree {
|
|
|
|
path = file
|
|
|
|
}
|
|
|
|
|
|
|
|
stat, err := w.Filesystem.Stat(path)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_STAT_FILE:%s", path))
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := w.Filesystem.Open(path)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_OPEN_FILE:%s", path))
|
|
|
|
}
|
|
|
|
|
2024-06-10 15:31:26 +00:00
|
|
|
bts, err := io.ReadAll(f)
|
2021-02-26 07:54:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_READ_FILE:%s", path))
|
|
|
|
}
|
|
|
|
|
|
|
|
if directive.Tar {
|
|
|
|
hdr := &tar.Header{
|
|
|
|
Name: file,
|
|
|
|
Mode: int64(stat.Mode()),
|
|
|
|
Size: stat.Size(),
|
|
|
|
}
|
|
|
|
|
|
|
|
err = writer.WriteHeader(hdr)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_WRITE_TAR_HEADER:%s", file))
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = writer.Write(bts)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_WRITE_TAR_FILE:%s", file))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if directive.FromPatchTree {
|
2021-02-26 13:06:02 +00:00
|
|
|
pushF, err := pushTree.Filesystem.OpenFile(filepath.Join("SOURCES", filepath.Base(file)), os.O_CREATE|os.O_TRUNC|os.O_RDWR, stat.Mode())
|
2021-02-26 07:54:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_CREATE_FILE_IN_PUSH_TREE:%s", file))
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = pushF.Write(bts)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_WRITE_FILE_IN_PUSH_TREE:%s", file))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
md.SourcesToIgnore = append(md.SourcesToIgnore, &data.IgnoredSource{
|
|
|
|
Name: filepath.Join("SOURCES", file),
|
|
|
|
HashFunction: sha256.New(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if directive.Tar {
|
|
|
|
err := writer.Close()
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_CLOSE_TAR:%s", directive.ArchiveName))
|
|
|
|
}
|
|
|
|
|
|
|
|
var gbuf bytes.Buffer
|
|
|
|
gw := gzip.NewWriter(&gbuf)
|
|
|
|
gw.Name = fmt.Sprintf("%s.tar.gz", directive.ArchiveName)
|
|
|
|
gw.ModTime = time.Now()
|
|
|
|
|
|
|
|
_, err = gw.Write(buf.Bytes())
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_WRITE_GZIP:%s", directive.ArchiveName))
|
|
|
|
}
|
|
|
|
err = gw.Close()
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_CLOSE_GZIP:%s", directive.ArchiveName))
|
|
|
|
}
|
|
|
|
|
|
|
|
path := filepath.Join("SOURCES", fmt.Sprintf("%s.tar.gz", directive.ArchiveName))
|
2022-11-06 03:53:02 +00:00
|
|
|
pushF, err := pushTree.Filesystem.OpenFile(path, os.O_CREATE|os.O_TRUNC|os.O_RDWR, 0o644)
|
2021-02-26 07:54:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_CREATE_TAR_FILE:%s", path))
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = pushF.Write(gbuf.Bytes())
|
|
|
|
if err != nil {
|
|
|
|
return errors.New(fmt.Sprintf("COULD_NOT_WRITE_TAR_FILE:%s", path))
|
|
|
|
}
|
|
|
|
|
|
|
|
md.SourcesToIgnore = append(md.SourcesToIgnore, &data.IgnoredSource{
|
|
|
|
Name: path,
|
|
|
|
HashFunction: sha256.New(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2021-02-24 07:27:51 +00:00
|
|
|
return nil
|
|
|
|
}
|